set_parentage( $parent_file ); ?>
render_screen_meta(); if ( is_network_admin() ) { /** * Prints network admin screen notices. * * @since 3.1.0 */ do_action( 'network_admin_notices' ); } elseif ( is_user_admin() ) { /** * Prints user admin screen notices. * * @since 3.1.0 */ do_action( 'user_admin_notices' ); } else { /** * Prints admin screen notices. * * @since 3.1.0 */ do_action( 'admin_notices' ); } /** * Prints generic admin screen notices. * * @since 3.1.0 */ do_action( 'all_admin_notices' ); if ( 'options-general.php' === $parent_file ) { require ABSPATH . 'wp-admin/options-head.php'; } users.php000066600000056702152330733730006442 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

' . __( 'Sorry, you are not allowed to list users.' ) . '

', 403 ); } $wp_list_table = _get_list_table( 'WP_Users_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); // Used in the HTML title tag. $title = __( 'Users' ); $parent_file = 'users.php'; add_screen_option( 'per_page' ); // Contextual help - choose Help on the top right of admin panel to preview this. get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . __( 'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.' ) . '

' . '

' . __( 'To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.' ) . '

', ) ); get_current_screen()->add_help_tab( array( 'id' => 'screen-content', 'title' => __( 'Screen Content' ), 'content' => '

' . __( 'You can customize the display of this screen in a number of ways:' ) . '

' . '
    ' . '
  • ' . __( 'You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.' ) . '
  • ' . '
  • ' . __( 'You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.' ) . '
  • ' . '
  • ' . __( 'You can view all posts made by a user by clicking on the number under the Posts column.' ) . '
  • ' . '
', ) ); $help = '

' . __( 'Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:' ) . '

' . '
    ' . '
  • ' . __( 'Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.' ) . '
  • '; if ( is_multisite() ) { $help .= '
  • ' . __( 'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.' ) . '
  • '; } else { $help .= '
  • ' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.' ) . '
  • '; } $help .= '
  • ' . __( 'View takes you to a public author archive which lists all the posts published by the user.' ) . '
  • '; if ( current_user_can( 'edit_users' ) ) { $help .= '
  • ' . __( 'Send password reset sends the user an email with a link to set a new password.' ) . '
  • '; } $help .= '
'; get_current_screen()->add_help_tab( array( 'id' => 'action-links', 'title' => __( 'Available Actions' ), 'content' => $help, ) ); unset( $help ); get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Managing Users' ) . '

' . '

' . __( 'Descriptions of Roles and Capabilities' ) . '

' . '

' . __( 'Support forums' ) . '

' ); get_current_screen()->set_screen_reader_content( array( 'heading_views' => __( 'Filter users list' ), 'heading_pagination' => __( 'Users list navigation' ), 'heading_list' => __( 'Users list' ), ) ); if ( empty( $_REQUEST ) ) { $referer = ''; } elseif ( isset( $_REQUEST['wp_http_referer'] ) ) { $redirect = remove_query_arg( array( 'wp_http_referer', 'updated', 'delete_count' ), wp_unslash( $_REQUEST['wp_http_referer'] ) ); $referer = ''; } else { $redirect = 'users.php'; $referer = ''; } $update = ''; switch ( $wp_list_table->current_action() ) { /* Bulk Dropdown menu Role changes */ case 'promote': check_admin_referer( 'bulk-users' ); if ( ! current_user_can( 'promote_users' ) ) { wp_die( __( 'Sorry, you are not allowed to edit this user.' ), 403 ); } if ( empty( $_REQUEST['users'] ) ) { wp_redirect( $redirect ); exit; } $editable_roles = get_editable_roles(); $role = $_REQUEST['new_role']; // Mock `none` as editable role. $editable_roles['none'] = array( 'name' => __( '— No role for this site —' ), ); if ( ! $role || empty( $editable_roles[ $role ] ) ) { wp_die( __( 'Sorry, you are not allowed to give users that role.' ), 403 ); } if ( 'none' === $role ) { $role = ''; } $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); $update = 'promote'; foreach ( $user_ids as $id ) { if ( ! current_user_can( 'promote_user', $id ) ) { wp_die( __( 'Sorry, you are not allowed to edit this user.' ), 403 ); } // The new role of the current user must also have the promote_users cap, be a multisite super admin and must not be empty. if ( $id === $current_user->ID ) { if ( '' === $role ) { wp_die( __( 'Sorry, you cannot remove your own role.' ), 403 ); } if ( $wp_roles->role_objects[ $role ]->has_cap( 'promote_users' ) || ( is_multisite() && current_user_can( 'manage_network_users' ) ) ) { continue; } $update = 'err_admin_role'; continue; } // If the user doesn't already belong to the blog, bail. if ( is_multisite() && ! is_user_member_of_blog( $id ) ) { wp_die( '

' . __( 'An error occurred.' ) . '

' . '

' . __( 'One of the selected users is not a member of this site.' ) . '

', 403 ); } $user = get_userdata( $id ); // If $role is empty, none will be set. $user->set_role( $role ); } wp_redirect( add_query_arg( 'update', $update, $redirect ) ); exit; case 'dodelete': if ( is_multisite() ) { wp_die( __( 'User deletion is not allowed from this screen.' ), 400 ); } check_admin_referer( 'delete-users' ); if ( empty( $_REQUEST['users'] ) ) { wp_redirect( $redirect ); exit; } $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); if ( empty( $_REQUEST['delete_option'] ) ) { $url = self_admin_url( 'users.php?action=delete&users[]=' . implode( '&users[]=', $user_ids ) . '&error=true' ); $url = str_replace( '&', '&', wp_nonce_url( $url, 'bulk-users' ) ); wp_redirect( $url ); exit; } if ( ! current_user_can( 'delete_users' ) ) { wp_die( __( 'Sorry, you are not allowed to delete users.' ), 403 ); } $update = 'del'; $delete_count = 0; foreach ( $user_ids as $id ) { if ( ! current_user_can( 'delete_user', $id ) ) { wp_die( __( 'Sorry, you are not allowed to delete that user.' ), 403 ); } if ( $id === $current_user->ID ) { $update = 'err_admin_del'; continue; } switch ( $_REQUEST['delete_option'] ) { case 'delete': wp_delete_user( $id ); break; case 'reassign': wp_delete_user( $id, $_REQUEST['reassign_user'] ); break; } ++$delete_count; } $redirect = add_query_arg( array( 'delete_count' => $delete_count, 'update' => $update, ), $redirect ); wp_redirect( $redirect ); exit; case 'resetpassword': check_admin_referer( 'bulk-users' ); if ( ! current_user_can( 'edit_users' ) ) { $errors = new WP_Error( 'edit_users', __( 'Sorry, you are not allowed to edit users.' ) ); } if ( empty( $_REQUEST['users'] ) ) { wp_redirect( $redirect ); exit(); } $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); $reset_count = 0; foreach ( $user_ids as $id ) { if ( ! current_user_can( 'edit_user', $id ) ) { wp_die( __( 'Sorry, you are not allowed to edit this user.' ) ); } if ( $id === $current_user->ID ) { $update = 'err_admin_reset'; continue; } // Send the password reset link. $user = get_userdata( $id ); if ( true === retrieve_password( $user->user_login ) ) { ++$reset_count; } } $redirect = add_query_arg( array( 'reset_count' => $reset_count, 'update' => 'resetpassword', ), $redirect ); wp_redirect( $redirect ); exit; case 'delete': if ( is_multisite() ) { wp_die( __( 'User deletion is not allowed from this screen.' ), 400 ); } check_admin_referer( 'bulk-users' ); if ( empty( $_REQUEST['users'] ) && empty( $_REQUEST['user'] ) ) { wp_redirect( $redirect ); exit; } if ( ! current_user_can( 'delete_users' ) ) { $errors = new WP_Error( 'edit_users', __( 'Sorry, you are not allowed to delete users.' ) ); } if ( empty( $_REQUEST['users'] ) ) { $user_ids = array( (int) $_REQUEST['user'] ); } else { $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); } $all_user_ids = $user_ids; if ( in_array( $current_user->ID, $user_ids, true ) ) { $user_ids = array_diff( $user_ids, array( $current_user->ID ) ); } /** * Filters whether the users being deleted have additional content * associated with them outside of the `post_author` and `link_owner` relationships. * * @since 5.2.0 * * @param bool $users_have_additional_content Whether the users have additional content. Default false. * @param int[] $user_ids Array of IDs for users being deleted. */ $users_have_content = (bool) apply_filters( 'users_have_additional_content', false, $user_ids ); if ( $user_ids && ! $users_have_content ) { if ( $wpdb->get_var( "SELECT ID FROM {$wpdb->posts} WHERE post_author IN( " . implode( ',', $user_ids ) . ' ) LIMIT 1' ) ) { $users_have_content = true; } elseif ( $wpdb->get_var( "SELECT link_id FROM {$wpdb->links} WHERE link_owner IN( " . implode( ',', $user_ids ) . ' ) LIMIT 1' ) ) { $users_have_content = true; } } if ( $users_have_content ) { add_action( 'admin_head', 'delete_users_add_js' ); } require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

' . __( 'Error:' ) . ' ' . __( 'Please select an option.' ), array( 'additional_classes' => array( 'error' ), ) ); endif; ?>

    ID ) { echo '
  • '; printf( /* translators: 1: User ID, 2: User login. */ __( 'ID #%1$s: %2$s The current user will not be deleted.' ), $id, $user->user_login ); echo "
  • \n"; } else { echo '
  • '; printf( '', esc_attr( $id ) ); printf( /* translators: 1: User ID, 2: User login. */ __( 'ID #%1$s: %2$s' ), $id, $user->user_login ); echo "
  • \n"; ++$go_delete; } } ?>

  • 'reassign_user', 'exclude' => $user_ids, 'show' => 'display_name_with_login', ) ); ?>

$update ), $redirect ); wp_redirect( $redirect ); exit; case 'remove': check_admin_referer( 'bulk-users' ); if ( ! is_multisite() ) { wp_die( __( 'You cannot remove users.' ), 400 ); } if ( empty( $_REQUEST['users'] ) && empty( $_REQUEST['user'] ) ) { wp_redirect( $redirect ); exit; } if ( ! current_user_can( 'remove_users' ) ) { $error = new WP_Error( 'edit_users', __( 'Sorry, you are not allowed to remove users.' ) ); } if ( empty( $_REQUEST['users'] ) ) { $user_ids = array( (int) $_REQUEST['user'] ); } else { $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); } require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    '; printf( /* translators: 1: User ID, 2: User login. */ __( 'ID #%1$s: %2$s Sorry, you are not allowed to remove this user.' ), $id, $user->user_login ); echo "\n"; } else { echo '
  • '; printf( '', esc_attr( $id ) ); printf( /* translators: 1: User ID, 2: User login. */ __( 'ID #%1$s: %2$s' ), $id, $user->user_login ); echo "
  • \n"; $go_remove = true; } } ?>

current_action() && ! empty( $_REQUEST['users'] ) ) { $screen = get_current_screen()->id; $sendback = wp_get_referer(); $user_ids = array_map( 'intval', (array) $_REQUEST['users'] ); /** This action is documented in wp-admin/edit.php */ $sendback = apply_filters( "handle_bulk_actions-{$screen}", $sendback, $wp_list_table->current_action(), $user_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores wp_safe_redirect( $sendback ); exit; } $wp_list_table->prepare_items(); $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); if ( $pagenum > $total_pages && $total_pages > 0 ) { wp_redirect( add_query_arg( 'paged', $total_pages ) ); exit; } require_once ABSPATH . 'wp-admin/admin-header.php'; $messages = array(); if ( isset( $_GET['update'] ) ) : switch ( $_GET['update'] ) { case 'del': case 'del_many': $delete_count = isset( $_GET['delete_count'] ) ? (int) $_GET['delete_count'] : 0; if ( 1 === $delete_count ) { $message = __( 'User deleted.' ); } else { /* translators: %s: Number of users. */ $message = _n( '%s user deleted.', '%s users deleted.', $delete_count ); } $message = sprintf( $message, number_format_i18n( $delete_count ) ); $messages[] = wp_get_admin_notice( $message, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'add': $message = __( 'New user created.' ); $user_id = $_GET['id'] ?? false; if ( $user_id && current_user_can( 'edit_user', $user_id ) ) { $message .= sprintf( ' %2$s', esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), self_admin_url( 'user-edit.php?user_id=' . $user_id ) ) ), __( 'Edit user' ) ); } $messages[] = wp_get_admin_notice( $message, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'resetpassword': $reset_count = isset( $_GET['reset_count'] ) ? (int) $_GET['reset_count'] : 0; if ( 1 === $reset_count ) { $message = __( 'Password reset link sent.' ); } else { /* translators: %s: Number of users. */ $message = _n( 'Password reset links sent to %s user.', 'Password reset links sent to %s users.', $reset_count ); } $message = sprintf( $message, number_format_i18n( $reset_count ) ); $messages[] = wp_get_admin_notice( $message, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'promote': $messages[] = wp_get_admin_notice( __( 'Changed roles.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'err_admin_role': $messages[] = wp_get_admin_notice( __( 'You cannot change your own role to one that does not allow managing other users. Your role was not changed.' ), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); $messages[] = wp_get_admin_notice( __( 'Other user roles have been changed.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'err_admin_del': $messages[] = wp_get_admin_notice( __( 'You cannot delete the current user.' ), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); $messages[] = wp_get_admin_notice( __( 'Other users have been deleted.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); break; case 'remove': $messages[] = wp_get_admin_notice( __( 'User removed from this site.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated', 'fade' ), 'dismissible' => true, ) ); break; case 'err_admin_remove': $messages[] = wp_get_admin_notice( __( 'You cannot remove the current user.' ), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); $messages[] = wp_get_admin_notice( __( 'Other users have been removed.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated', 'fade' ), 'dismissible' => true, ) ); break; } endif; ?> get_error_messages() as $err ) { $error_message .= "
  • $err
  • \n"; } wp_admin_notice( '
      ' . $error_message . '
    ', array( 'additional_classes' => array( 'error' ), ) ); endif; if ( ! empty( $messages ) ) { foreach ( $messages as $msg ) { echo $msg; } } ?>

    %2$s', esc_url( admin_url( 'user-new.php' ) ), esc_html__( 'Add User' ) ); } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { printf( '%2$s', esc_url( admin_url( 'user-new.php' ) ), esc_html__( 'Add Existing User' ) ); } if ( strlen( $usersearch ) ) { echo ''; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '' . esc_html( $usersearch ) . '' ); echo ''; } ?>
    views(); ?>
    search_box( __( 'Search Users' ), 'user' ); ?> display(); ?>
    add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:' ) . '

    ' . '
      ' . '
    • ' . __( 'Drag and drop your files into the area below. Multiple files are allowed.' ) . '
    • ' . '
    • ' . __( 'Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.' ) . '
    • ' . '
    • ' . __( 'Revert to the Browser Uploader by clicking the link below the drag and drop box.' ) . '
    • ' . '
    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Uploading Media Files' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; $form_class = 'wp-upload-form media-upload-form type-form validate'; if ( get_user_setting( 'uploader' ) || isset( $_GET['browser-uploader'] ) ) { $form_class .= ' html-uploader'; } ?>

    ' . __( 'The fields on this screen determine some of the basics of your site setup.' ) . '

    ' . '

    ' . __( 'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.' ) . '

    '; if ( ! is_multisite() ) { $options_help .= '

    ' . __( 'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.' ) . '

    ' . '

    ' . sprintf( /* translators: %s: Documentation URL. */ __( 'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.' ), __( 'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/' ) ) . '

    ' . '

    ' . sprintf( /* translators: 1: http://, 2: https:// */ __( 'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.' ), 'http://', 'https://' ) . '

    ' . '

    ' . __( 'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.' ) . '

    '; } $options_help .= '

    ' . __( 'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).' ) . '

    ' . '

    ' . __( 'UTC means Coordinated Universal Time.' ) . '

    ' . '

    ' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $options_help, ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on General Settings' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    site_name ); } $tagline_description = sprintf( /* translators: %s: Site tagline example. */ __( 'In a few words, explain what this site is about. Example: “%s.”' ), $sample_tagline ); ?>
    admin.php000066600000031207152330733730006362 0ustar00 50 && mt_rand( 0, (int) ( $blog_count / 50 ) ) === 1 ) ) { require_once ABSPATH . WPINC . '/http.php'; $response = wp_remote_get( admin_url( 'upgrade.php?step=1' ), array( 'timeout' => 120, 'httpversion' => '1.1', ) ); /** This action is documented in wp-admin/network/upgrade.php */ do_action( 'after_mu_upgrade', $response ); unset( $response ); } unset( $blog_count ); } } require_once ABSPATH . 'wp-admin/includes/admin.php'; auth_redirect(); // Schedule Trash collection. if ( ! wp_next_scheduled( 'wp_scheduled_delete' ) && ! wp_installing() ) { wp_schedule_event( time(), 'daily', 'wp_scheduled_delete' ); } // Schedule transient cleanup. if ( ! wp_next_scheduled( 'delete_expired_transients' ) && ! wp_installing() ) { wp_schedule_event( time(), 'daily', 'delete_expired_transients' ); } set_screen_options(); $date_format = __( 'F j, Y' ); $time_format = __( 'g:i a' ); wp_enqueue_script( 'common' ); /** * $pagenow is set in vars.php. * $wp_importers is sometimes set in wp-admin/includes/import.php. * The remaining variables are imported as globals elsewhere, declared as globals here. * * @global string $pagenow The filename of the current screen. * @global array $wp_importers * @global string $hook_suffix * @global string $plugin_page * @global string $typenow The post type of the current screen. * @global string $taxnow The taxonomy of the current screen. */ global $pagenow, $wp_importers, $hook_suffix, $plugin_page, $typenow, $taxnow; $page_hook = null; $editing = false; if ( isset( $_GET['page'] ) ) { $plugin_page = wp_unslash( $_GET['page'] ); $plugin_page = plugin_basename( $plugin_page ); } if ( isset( $_REQUEST['post_type'] ) && post_type_exists( $_REQUEST['post_type'] ) ) { $typenow = $_REQUEST['post_type']; } else { $typenow = ''; } if ( isset( $_REQUEST['taxonomy'] ) && taxonomy_exists( $_REQUEST['taxonomy'] ) ) { $taxnow = $_REQUEST['taxonomy']; } else { $taxnow = ''; } if ( WP_NETWORK_ADMIN ) { require ABSPATH . 'wp-admin/network/menu.php'; } elseif ( WP_USER_ADMIN ) { require ABSPATH . 'wp-admin/user/menu.php'; } else { require ABSPATH . 'wp-admin/menu.php'; } if ( current_user_can( 'manage_options' ) ) { wp_raise_memory_limit( 'admin' ); } /** * Fires as an admin screen or script is being initialized. * * Note, this does not just run on user-facing admin screens. * It runs on admin-ajax.php and admin-post.php as well. * * This is roughly analogous to the more general {@see 'init'} hook, which fires earlier. * * @since 2.5.0 */ do_action( 'admin_init' ); if ( isset( $plugin_page ) ) { if ( ! empty( $typenow ) ) { $the_parent = $pagenow . '?post_type=' . $typenow; } else { $the_parent = $pagenow; } $page_hook = get_plugin_page_hook( $plugin_page, $the_parent ); if ( ! $page_hook ) { $page_hook = get_plugin_page_hook( $plugin_page, $plugin_page ); // Back-compat for plugins using add_management_page(). if ( empty( $page_hook ) && 'edit.php' === $pagenow && get_plugin_page_hook( $plugin_page, 'tools.php' ) ) { // There could be plugin specific params on the URL, so we need the whole query string. if ( ! empty( $_SERVER['QUERY_STRING'] ) ) { $query_string = $_SERVER['QUERY_STRING']; } else { $query_string = 'page=' . $plugin_page; } wp_redirect( admin_url( 'tools.php?' . $query_string ) ); exit; } } unset( $the_parent ); } $hook_suffix = ''; if ( isset( $page_hook ) ) { $hook_suffix = $page_hook; } elseif ( isset( $plugin_page ) ) { $hook_suffix = $plugin_page; } elseif ( isset( $pagenow ) ) { $hook_suffix = $pagenow; } set_current_screen(); // Handle plugin admin pages. if ( isset( $plugin_page ) ) { if ( $page_hook ) { /** * Fires before a particular screen is loaded. * * The load-* hook fires in a number of contexts. This hook is for plugin screens * where a callback is provided when the screen is registered. * * The dynamic portion of the hook name, `$page_hook`, refers to a mixture of plugin * page information including: * 1. The page type. If the plugin page is registered as a submenu page, such as for * Settings, the page type would be 'settings'. Otherwise the type is 'toplevel'. * 2. A separator of '_page_'. * 3. The plugin basename minus the file extension. * * Together, the three parts form the `$page_hook`. Citing the example above, * the hook name used would be 'load-settings_page_pluginbasename'. * * @see get_plugin_page_hook() * * @since 2.1.0 */ do_action( "load-{$page_hook}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores if ( ! isset( $_GET['noheader'] ) ) { require_once ABSPATH . 'wp-admin/admin-header.php'; } /** * Used to call the registered callback for a plugin screen. * * This hook uses a dynamic hook name, `$page_hook`, which refers to a mixture of plugin * page information including: * 1. The page type. If the plugin page is registered as a submenu page, such as for * Settings, the page type would be 'settings'. Otherwise the type is 'toplevel'. * 2. A separator of '_page_'. * 3. The plugin basename minus the file extension. * * Together, the three parts form the `$page_hook`. Citing the example above, * the hook name used would be 'settings_page_pluginbasename'. * * @see get_plugin_page_hook() * * @since 1.5.0 */ do_action( $page_hook ); } else { if ( validate_file( $plugin_page ) ) { wp_die( __( 'Invalid plugin page.' ) ); } if ( ! ( file_exists( WP_PLUGIN_DIR . "/$plugin_page" ) && is_file( WP_PLUGIN_DIR . "/$plugin_page" ) ) && ! ( file_exists( WPMU_PLUGIN_DIR . "/$plugin_page" ) && is_file( WPMU_PLUGIN_DIR . "/$plugin_page" ) ) ) { /* translators: %s: Admin page generated by a plugin. */ wp_die( sprintf( __( 'Cannot load %s.' ), htmlentities( $plugin_page ) ) ); } /** * Fires before a particular screen is loaded. * * The load-* hook fires in a number of contexts. This hook is for plugin screens * where the file to load is directly included, rather than the use of a function. * * The dynamic portion of the hook name, `$plugin_page`, refers to the plugin basename. * * @see plugin_basename() * * @since 1.5.0 */ do_action( "load-{$plugin_page}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores if ( ! isset( $_GET['noheader'] ) ) { require_once ABSPATH . 'wp-admin/admin-header.php'; } if ( file_exists( WPMU_PLUGIN_DIR . "/$plugin_page" ) ) { include WPMU_PLUGIN_DIR . "/$plugin_page"; } else { include WP_PLUGIN_DIR . "/$plugin_page"; } } require_once ABSPATH . 'wp-admin/admin-footer.php'; exit; } elseif ( isset( $_GET['import'] ) ) { $importer = $_GET['import']; if ( ! current_user_can( 'import' ) ) { wp_die( __( 'Sorry, you are not allowed to import content into this site.' ) ); } if ( validate_file( $importer ) ) { wp_redirect( admin_url( 'import.php?invalid=' . $importer ) ); exit; } if ( ! isset( $wp_importers[ $importer ] ) || ! is_callable( $wp_importers[ $importer ][2] ) ) { wp_redirect( admin_url( 'import.php?invalid=' . $importer ) ); exit; } /** * Fires before an importer screen is loaded. * * The dynamic portion of the hook name, `$importer`, refers to the importer slug. * * Possible hook names include: * * - `load-importer-blogger` * - `load-importer-wpcat2tag` * - `load-importer-livejournal` * - `load-importer-mt` * - `load-importer-rss` * - `load-importer-tumblr` * - `load-importer-wordpress` * * @since 3.5.0 */ do_action( "load-importer-{$importer}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores // Used in the HTML title tag. $title = __( 'Import' ); $parent_file = 'tools.php'; $submenu_file = 'import.php'; if ( ! isset( $_GET['noheader'] ) ) { require_once ABSPATH . 'wp-admin/admin-header.php'; } require_once ABSPATH . 'wp-admin/includes/upgrade.php'; define( 'WP_IMPORTING', true ); /** * Filters whether to filter imported data through kses on import. * * Multisite uses this hook to filter all data through kses by default, * as a super administrator may be assisting an untrusted user. * * @since 3.1.0 * * @param bool $force Whether to force data to be filtered through kses. Default false. */ if ( apply_filters( 'force_filtered_html_on_import', false ) ) { kses_init_filters(); // Always filter imported data with kses on multisite. } call_user_func( $wp_importers[ $importer ][2] ); require_once ABSPATH . 'wp-admin/admin-footer.php'; // Make sure rules are flushed. flush_rewrite_rules( false ); exit; } else { /** * Fires before a particular screen is loaded. * * The load-* hook fires in a number of contexts. This hook is for core screens. * * The dynamic portion of the hook name, `$pagenow`, is a global variable * referring to the filename of the current screen, such as 'admin.php', * 'post-new.php' etc. A complete hook for the latter would be * 'load-post-new.php'. * * @since 2.1.0 */ do_action( "load-{$pagenow}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores /* * The following hooks are fired to ensure backward compatibility. * In all other cases, 'load-' . $pagenow should be used instead. */ if ( 'page' === $typenow ) { if ( 'post-new.php' === $pagenow ) { /** This action is documented in wp-admin/admin.php */ do_action( 'load-page-new.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } elseif ( 'post.php' === $pagenow ) { /** This action is documented in wp-admin/admin.php */ do_action( 'load-page.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } } elseif ( 'edit-tags.php' === $pagenow ) { if ( 'category' === $taxnow ) { /** This action is documented in wp-admin/admin.php */ do_action( 'load-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } elseif ( 'link_category' === $taxnow ) { /** This action is documented in wp-admin/admin.php */ do_action( 'load-edit-link-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } } elseif ( 'term.php' === $pagenow ) { /** This action is documented in wp-admin/admin.php */ do_action( 'load-edit-tags.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } } if ( ! empty( $_REQUEST['action'] ) ) { $action = $_REQUEST['action']; /** * Fires when an 'action' request variable is sent. * * The dynamic portion of the hook name, `$action`, refers to * the action derived from the `GET` or `POST` request. * * @since 2.6.0 */ do_action( "admin_action_{$action}" ); } load-styles.php000066600000005663152330733730007541 0ustar00get_etag( $load ); if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $etag ) { header( "$protocol 304 Not Modified" ); exit; } foreach ( $load as $handle ) { if ( ! array_key_exists( $handle, $wp_styles->registered ) ) { continue; } $style = $wp_styles->registered[ $handle ]; if ( empty( $style->src ) ) { continue; } $path = ABSPATH . $style->src; if ( $rtl && ! empty( $style->extra['rtl'] ) ) { // All default styles have fully independent RTL files. $path = str_replace( '.min.css', '-rtl.min.css', $path ); } $content = get_file( $path ) . "\n"; // Note: str_starts_with() is not used here, as wp-includes/compat.php is not loaded in this file. if ( 0 === strpos( $style->src, '/' . WPINC . '/css/' ) ) { $content = str_replace( '../images/', '../' . WPINC . '/images/', $content ); $content = str_replace( '../js/tinymce/', '../' . WPINC . '/js/tinymce/', $content ); $content = str_replace( '../fonts/', '../' . WPINC . '/fonts/', $content ); $out .= $content; } else { $out .= str_replace( '../images/', 'images/', $content ); } } header( "Etag: $etag" ); header( 'Content-Type: text/css; charset=UTF-8' ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); echo $out; exit; index.php000066600000017270152330733730006405 0ustar00' . __( 'Welcome to your WordPress Dashboard!' ) . '

    '; $help .= '

    ' . __( 'The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.' ) . '

    '; $screen = get_current_screen(); $screen->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); // Help tabs. $help = '

    ' . __( 'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.' ) . '

    '; $help .= '

    ' . __( 'Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.' ) . '

    '; $screen->add_help_tab( array( 'id' => 'help-navigation', 'title' => __( 'Navigation' ), 'content' => $help, ) ); $help = '

    ' . __( 'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.' ) . '

    '; $help .= '

    ' . __( 'Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.' ) . '

    '; $help .= '

    ' . __( 'Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.' ) . '

    '; $help .= '

    ' . __( 'Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.' ) . '

    '; $screen->add_help_tab( array( 'id' => 'help-layout', 'title' => __( 'Layout' ), 'content' => $help, ) ); $help = '

    ' . __( 'The boxes on your Dashboard screen are:' ) . '

    '; if ( current_user_can( 'edit_theme_options' ) ) { $help .= '

    ' . __( 'Welcome — Shows links for some of the most common tasks when setting up a new site.' ) . '

    '; } if ( current_user_can( 'view_site_health_checks' ) ) { $help .= '

    ' . __( 'Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.' ) . '

    '; } if ( current_user_can( 'edit_posts' ) ) { $help .= '

    ' . __( 'At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '

    '; } $help .= '

    ' . __( 'Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '

    '; if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) { $help .= '

    ' . __( "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." ) . '

    '; } $help .= '

    ' . sprintf( /* translators: %s: WordPress Planet URL. */ __( 'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.' ), __( 'https://planet.wordpress.org/' ) ) . '

    '; $screen->add_help_tab( array( 'id' => 'help-content', 'title' => __( 'Content' ), 'content' => $help, ) ); unset( $help ); $wp_version = get_bloginfo( 'version', 'display' ); /* translators: %s: WordPress version. */ $wp_version_text = sprintf( __( 'Version %s' ), $wp_version ); $is_dev_version = preg_match( '/alpha|beta|RC/', $wp_version ); if ( ! $is_dev_version ) { $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); $wp_version_text = sprintf( '%2$s', $version_url, $wp_version_text ); } $screen->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Dashboard' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' . '

    ' . $wp_version_text . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    'success', 'dismissible' => true, ) ); endif; endif; ?> user_email !== get_option( 'admin_email' ) ) ); if ( $hide ) { $classes .= ' hidden'; } ?>

    'error', 'additional_classes' => array( 'hide-if-js' ), ) ); ?>


    $taxnow ), $sendback ); } if ( 'post' !== get_current_screen()->post_type ) { $sendback = add_query_arg( 'post_type', get_current_screen()->post_type, $sendback ); } wp_redirect( sanitize_url( $sendback ) ); exit; } $tag_ID = absint( $_REQUEST['tag_ID'] ); $tag = get_term( $tag_ID, $taxnow, OBJECT, 'edit' ); if ( ! $tag instanceof WP_Term ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } $tax = get_taxonomy( $tag->taxonomy ); $taxonomy = $tax->name; $title = $tax->labels->edit_item; if ( ! in_array( $taxonomy, get_taxonomies( array( 'show_ui' => true ) ), true ) || ! current_user_can( 'edit_term', $tag->term_id ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to edit this item.' ) . '

    ', 403 ); } $post_type = get_current_screen()->post_type; // Default to the first object_type associated with the taxonomy if no post type was passed. if ( empty( $post_type ) ) { $post_type = reset( $tax->object_type ); } if ( 'post' !== $post_type ) { $parent_file = ( 'attachment' === $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type"; $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type"; } elseif ( 'link_category' === $taxonomy ) { $parent_file = 'link-manager.php'; $submenu_file = 'edit-tags.php?taxonomy=link_category'; } else { $parent_file = 'edit.php'; $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; } get_current_screen()->set_screen_reader_content( array( 'heading_pagination' => $tax->labels->items_list_navigation, 'heading_list' => $tax->labels->items_list, ) ); wp_enqueue_script( 'admin-tags' ); require_once ABSPATH . 'wp-admin/admin-header.php'; require ABSPATH . 'wp-admin/edit-tag-form.php'; require_once ABSPATH . 'wp-admin/admin-footer.php'; options.php000066600000033672152330733730006775 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

    ' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '

    ', 403 ); } // Handle admin email change requests. if ( ! empty( $_GET['adminhash'] ) ) { $new_admin_details = get_option( 'adminhash' ); $redirect = 'options-general.php?updated=false'; if ( is_array( $new_admin_details ) && hash_equals( $new_admin_details['hash'], $_GET['adminhash'] ) && ! empty( $new_admin_details['newemail'] ) ) { update_option( 'admin_email', $new_admin_details['newemail'] ); delete_option( 'adminhash' ); delete_option( 'new_admin_email' ); $redirect = 'options-general.php?updated=true'; } wp_redirect( admin_url( $redirect ) ); exit; } elseif ( ! empty( $_GET['dismiss'] ) && 'new_admin_email' === $_GET['dismiss'] ) { check_admin_referer( 'dismiss-' . get_current_blog_id() . '-new_admin_email' ); delete_option( 'adminhash' ); delete_option( 'new_admin_email' ); wp_redirect( admin_url( 'options-general.php?updated=true' ) ); exit; } if ( is_multisite() && ! current_user_can( 'manage_network_options' ) && 'update' !== $action ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to delete these items.' ) . '

    ', 403 ); } $allowed_options = array( 'general' => array( 'blogname', 'blogdescription', 'site_icon', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'timezone_string', 'WPLANG', 'new_admin_email', ), 'discussion' => array( 'default_pingback_flag', 'default_ping_status', 'default_comment_status', 'comments_notify', 'moderation_notify', 'comment_moderation', 'require_name_email', 'comment_previously_approved', 'comment_max_links', 'moderation_keys', 'disallowed_keys', 'show_avatars', 'avatar_rating', 'avatar_default', 'close_comments_for_old_posts', 'close_comments_days_old', 'thread_comments', 'thread_comments_depth', 'page_comments', 'comments_per_page', 'default_comments_page', 'comment_order', 'comment_registration', 'show_comments_cookies_opt_in', 'wp_notes_notify', ), 'media' => array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type', ), 'reading' => array( 'posts_per_page', 'posts_per_rss', 'rss_use_excerpt', 'show_on_front', 'page_on_front', 'page_for_posts', 'blog_public', ), 'writing' => array( 'default_category', 'default_email_category', 'default_link_category', 'default_post_format', ), ); $allowed_options['misc'] = array(); $allowed_options['options'] = array(); $allowed_options['privacy'] = array(); /** * Filters whether the post-by-email functionality is enabled. * * @since 3.0.0 * * @param bool $enabled Whether post-by-email configuration is enabled. Default true. */ if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { $allowed_options['writing'][] = 'mailserver_url'; $allowed_options['writing'][] = 'mailserver_port'; $allowed_options['writing'][] = 'mailserver_login'; $allowed_options['writing'][] = 'mailserver_pass'; } if ( ! is_utf8_charset() ) { $allowed_options['reading'][] = 'blog_charset'; } if ( get_site_option( 'initial_db_version' ) < 32453 ) { $allowed_options['writing'][] = 'use_smilies'; $allowed_options['writing'][] = 'use_balanceTags'; } if ( ! is_multisite() ) { if ( ! defined( 'WP_SITEURL' ) ) { $allowed_options['general'][] = 'siteurl'; } if ( ! defined( 'WP_HOME' ) ) { $allowed_options['general'][] = 'home'; } $allowed_options['general'][] = 'users_can_register'; $allowed_options['general'][] = 'default_role'; if ( '1' === get_option( 'blog_public' ) ) { $allowed_options['writing'][] = 'ping_sites'; } $allowed_options['media'][] = 'uploads_use_yearmonth_folders'; /* * If upload_url_path is not the default (empty), * or upload_path is not the default ('wp-content/uploads' or empty), * they can be edited, otherwise they're locked. */ if ( get_option( 'upload_url_path' ) || get_option( 'upload_path' ) && 'wp-content/uploads' !== get_option( 'upload_path' ) ) { $allowed_options['media'][] = 'upload_path'; $allowed_options['media'][] = 'upload_url_path'; } } /** * Filters the allowed options list. * * @since 2.7.0 * @deprecated 5.5.0 Use {@see 'allowed_options'} instead. * * @param array $allowed_options The allowed options list. */ $allowed_options = apply_filters_deprecated( 'whitelist_options', array( $allowed_options ), '5.5.0', 'allowed_options', __( 'Please consider writing more inclusive code.' ) ); /** * Filters the allowed options list. * * @since 5.5.0 * * @param array $allowed_options The allowed options list. */ $allowed_options = apply_filters( 'allowed_options', $allowed_options ); if ( 'update' === $action ) { // We are saving settings sent from a settings page. if ( 'options' === $option_page && ! isset( $_POST['option_page'] ) ) { // This is for back compat and will eventually be removed. $unregistered = true; check_admin_referer( 'update-options' ); } else { $unregistered = false; check_admin_referer( $option_page . '-options' ); } if ( ! isset( $allowed_options[ $option_page ] ) ) { wp_die( sprintf( /* translators: %s: The options page name. */ __( 'Error: The %s options page is not in the allowed options list.' ), '' . esc_html( $option_page ) . '' ) ); } if ( 'options' === $option_page ) { if ( is_multisite() && ! current_user_can( 'manage_network_options' ) ) { wp_die( __( 'Sorry, you are not allowed to modify unregistered settings for this site.' ) ); } $options = isset( $_POST['page_options'] ) ? explode( ',', wp_unslash( $_POST['page_options'] ) ) : null; } else { $options = $allowed_options[ $option_page ]; } if ( 'general' === $option_page ) { // Handle custom date/time formats. if ( ! empty( $_POST['date_format'] ) && isset( $_POST['date_format_custom'] ) && '\c\u\s\t\o\m' === wp_unslash( $_POST['date_format'] ) ) { $_POST['date_format'] = $_POST['date_format_custom']; } if ( ! empty( $_POST['time_format'] ) && isset( $_POST['time_format_custom'] ) && '\c\u\s\t\o\m' === wp_unslash( $_POST['time_format'] ) ) { $_POST['time_format'] = $_POST['time_format_custom']; } // Map UTC+- timezones to gmt_offsets and set timezone_string to empty. if ( ! empty( $_POST['timezone_string'] ) && preg_match( '/^UTC[+-]/', $_POST['timezone_string'] ) ) { $_POST['gmt_offset'] = $_POST['timezone_string']; $_POST['gmt_offset'] = preg_replace( '/UTC\+?/', '', $_POST['gmt_offset'] ); $_POST['timezone_string'] = ''; } elseif ( isset( $_POST['timezone_string'] ) && ! in_array( $_POST['timezone_string'], timezone_identifiers_list( DateTimeZone::ALL_WITH_BC ), true ) ) { // Reset to the current value. $current_timezone_string = get_option( 'timezone_string' ); if ( ! empty( $current_timezone_string ) ) { $_POST['timezone_string'] = $current_timezone_string; } else { $_POST['gmt_offset'] = get_option( 'gmt_offset' ); $_POST['timezone_string'] = ''; } add_settings_error( 'general', 'settings_updated', __( 'The timezone you have entered is not valid. Please select a valid timezone.' ), 'error' ); } // Handle translation installation. if ( ! empty( $_POST['WPLANG'] ) && current_user_can( 'install_languages' ) ) { require_once ABSPATH . 'wp-admin/includes/translation-install.php'; if ( wp_can_install_language_pack() ) { $language = wp_download_language_pack( $_POST['WPLANG'] ); if ( $language ) { $_POST['WPLANG'] = $language; } } } } if ( $options ) { $user_language_old = get_user_locale(); foreach ( $options as $option ) { if ( $unregistered ) { _deprecated_argument( 'options.php', '2.7.0', sprintf( /* translators: 1: The option/setting, 2: Documentation URL. */ __( 'The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.' ), '' . esc_html( $option ) . '', __( 'https://developer.wordpress.org/plugins/settings/settings-api/' ) ) ); } $option = trim( $option ); $value = null; if ( isset( $_POST[ $option ] ) ) { $value = $_POST[ $option ]; if ( ! is_array( $value ) ) { $value = trim( $value ); } $value = wp_unslash( $value ); } update_option( $option, $value ); } /* * Switch translation in case WPLANG was changed. * The global $locale is used in get_locale() which is * used as a fallback in get_user_locale(). */ unset( $GLOBALS['locale'] ); $user_language_new = get_user_locale(); if ( $user_language_old !== $user_language_new ) { load_default_textdomain( $user_language_new ); } } else { add_settings_error( 'general', 'settings_updated', __( 'Settings save failed.' ), 'error' ); } /* * Handle settings errors and return to options page. */ // If no settings errors were registered add a general 'updated' message. if ( ! count( get_settings_errors() ) ) { add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' ); } set_transient( 'settings_errors', get_settings_errors(), 30 ); // 30 seconds. // Redirect back to the settings page that was submitted. $goback = add_query_arg( 'settings-updated', 'true', wp_get_referer() ); wp_redirect( $goback ); exit; } require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    ' . __( 'Warning:' ) . ' ' . __( 'This page allows direct access to your site settings. You can break things here. Please be cautious!' ), array( 'type' => 'warning', ) ); ?>
    get_results( "SELECT * FROM $wpdb->options ORDER BY option_name" ); foreach ( (array) $options as $option ) : $disabled = false; if ( '' === $option->option_name ) { continue; } if ( 'home' === $option->option_name && defined( 'WP_HOME' ) ) { $disabled = true; } if ( 'siteurl' === $option->option_name && defined( 'WP_SITEURL' ) ) { $disabled = true; } if ( is_serialized( $option->option_value ) ) { if ( is_serialized_string( $option->option_value ) ) { // This is a serialized string, so we should display it. $value = maybe_unserialize( $option->option_value ); $options_to_update[] = $option->option_name; } else { $value = 'SERIALIZED DATA'; $disabled = true; } } elseif ( str_starts_with( $option->option_name, 'connectors_' ) && str_ends_with( $option->option_name, '_api_key' ) ) { // Mask connector API keys and prevent updates from this screen. $value = _wp_connectors_mask_api_key( $option->option_value ); $disabled = true; } else { $value = $option->option_value; $options_to_update[] = $option->option_name; } $class = 'all-options'; if ( $disabled ) { $class .= ' disabled'; } $name = esc_attr( $option->option_name ); ?>
    <?php echo esc_attr( $header_alt_text ); ?>

    WordPress.org stats page.' ), __( 'https://wordpress.org/about/stats/' ) ); ?>

    the WordPress.org Privacy Policy.' ), __( 'https://wordpress.org/about/privacy/' ) ); ?>

    edit-form-blocks.php000066600000035354152330733730010442 0ustar00 $post ) ); // Flag that we're loading the block editor. $current_screen = get_current_screen(); $current_screen->is_block_editor( true ); // Default to is-fullscreen-mode to avoid jumps in the UI. add_filter( 'admin_body_class', static function ( $classes ) { return "$classes is-fullscreen-mode"; } ); /* * Emoji replacement is disabled for now, until it plays nicely with React. */ remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); /* * Block editor implements its own Options menu for toggling Document Panels. */ add_filter( 'screen_options_show_screen', '__return_false' ); wp_enqueue_script( 'heartbeat' ); wp_enqueue_script( 'wp-edit-post' ); $rest_path = rest_get_route_for_post( $post ); $active_theme = get_stylesheet(); $global_styles_endpoint_context = current_user_can( 'edit_theme_options' ) ? 'edit' : 'view'; $template_lookup_slug = 'page' === $post->post_type ? 'page' : 'single-' . $post->post_type; if ( ! empty( $post->post_name ) ) { $template_lookup_slug .= '-' . $post->post_name; } // Preload common data. $preload_paths = array( '/wp/v2/types?context=view', '/wp/v2/taxonomies?context=view', add_query_arg( 'context', 'edit', $rest_path ), sprintf( '/wp/v2/types/%s?context=edit', $post_type ), '/wp/v2/users/me', array( rest_get_route_for_post_type_items( 'attachment' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'page' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'wp_block' ), 'OPTIONS' ), array( rest_get_route_for_post_type_items( 'wp_template' ), 'OPTIONS' ), sprintf( '%s/autosaves?context=edit', $rest_path ), '/wp/v2/settings', array( '/wp/v2/settings', 'OPTIONS' ), '/wp/v2/global-styles/themes/' . $active_theme . '?context=view', '/wp/v2/global-styles/themes/' . $active_theme . '/variations?context=view', '/wp/v2/themes?context=edit&status=active', array( '/wp/v2/global-styles/' . WP_Theme_JSON_Resolver::get_user_global_styles_post_id(), 'OPTIONS' ), /* * Preload the global styles path with the correct context based on user caps. * NOTE: There is an equivalent conditional check in the client-side code to fetch * the global styles entity using the appropriate context value. * See the call to `canUser()`, under `useGlobalStylesUserConfig()` in `packages/edit-site/src/components/use-global-styles-user-config/index.js`. * Please ensure that the equivalent check is kept in sync with this preload path. */ '/wp/v2/global-styles/' . WP_Theme_JSON_Resolver::get_user_global_styles_post_id() . '?context=' . $global_styles_endpoint_context, // Used by getBlockPatternCategories in useBlockEditorSettings. '/wp/v2/block-patterns/categories', // @see packages/core-data/src/entities.js '/?_fields=' . implode( ',', array( 'description', 'gmt_offset', 'home', 'image_sizes', 'image_size_threshold', 'image_output_formats', 'jpeg_interlaced', 'png_interlaced', 'gif_interlaced', 'name', 'site_icon', 'site_icon_url', 'site_logo', 'timezone_string', 'url', 'page_for_posts', 'page_on_front', 'show_on_front', ) ), $paths[] = add_query_arg( 'slug', // @link https://github.com/WordPress/gutenberg/blob/e093fefd041eb6cc4a4e7f67b92ab54fd75c8858/packages/core-data/src/private-selectors.ts#L244-L254 $template_lookup_slug, '/wp/v2/templates/lookup' ), ); block_editor_rest_api_preload( $preload_paths, $block_editor_context ); wp_add_inline_script( 'wp-blocks', sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( get_block_categories( $post ), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ), 'after' ); /* * Assign initial edits, if applicable. These are not initially assigned to the persisted post, * but should be included in its save payload. */ $initial_edits = array(); $is_new_post = false; if ( 'auto-draft' === $post->post_status ) { $is_new_post = true; // Override "(Auto Draft)" new post default title with empty string, or filtered value. if ( post_type_supports( $post->post_type, 'title' ) ) { $initial_edits['title'] = $post->post_title; } if ( post_type_supports( $post->post_type, 'editor' ) ) { $initial_edits['content'] = $post->post_content; } if ( post_type_supports( $post->post_type, 'excerpt' ) ) { $initial_edits['excerpt'] = $post->post_excerpt; } } // Preload server-registered block schemas. wp_add_inline_script( 'wp-blocks', 'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) . ');' ); // Preload server-registered block bindings sources. $registered_sources = get_all_registered_block_bindings_sources(); if ( ! empty( $registered_sources ) ) { $filtered_sources = array(); foreach ( $registered_sources as $source ) { $filtered_sources[] = array( 'name' => $source->name, 'label' => $source->label, 'usesContext' => $source->uses_context, ); } $script = sprintf( 'for ( const source of %s ) { wp.blocks.registerBlockBindingsSource( source ); }', wp_json_encode( $filtered_sources, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ); wp_add_inline_script( 'wp-blocks', $script ); } // Get admin url for handling meta boxes. $meta_box_url = admin_url( 'post.php' ); $meta_box_url = add_query_arg( array( 'post' => $post->ID, 'action' => 'edit', 'meta-box-loader' => true, 'meta-box-loader-nonce' => wp_create_nonce( 'meta-box-loader' ), ), $meta_box_url ); wp_add_inline_script( 'wp-editor', sprintf( 'var _wpMetaBoxUrl = %s;', wp_json_encode( $meta_box_url, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ), 'before' ); // Set Heartbeat interval to 10 seconds, used to refresh post locks. wp_add_inline_script( 'heartbeat', 'jQuery( function() { wp.heartbeat.interval( 10 ); } );', 'after' ); /* * Get all available templates for the post/page attributes meta-box. * The "Default template" array element should only be added if the array is * not empty so we do not trigger the template select element without any options * besides the default value. */ $available_templates = wp_get_theme()->get_page_templates( get_post( $post->ID ) ); $available_templates = ! empty( $available_templates ) ? array_replace( array( /** This filter is documented in wp-admin/includes/meta-boxes.php */ '' => apply_filters( 'default_page_template_title', __( 'Default template' ), 'rest-api' ), ), $available_templates ) : $available_templates; // Lock settings. $user_id = wp_check_post_lock( $post->ID ); if ( $user_id ) { $locked = false; /** This filter is documented in wp-admin/includes/post.php */ if ( apply_filters( 'show_post_locked_dialog', true, $post, $user_id ) ) { $locked = true; } $user_details = null; if ( $locked ) { $user = get_userdata( $user_id ); $user_details = array( 'name' => $user->display_name, ); if ( get_option( 'show_avatars' ) ) { $user_details['avatar'] = get_avatar_url( $user_id, array( 'size' => 128 ) ); } } $lock_details = array( 'isLocked' => $locked, 'user' => $user_details, ); } else { // Lock the post. $active_post_lock = wp_set_post_lock( $post->ID ); if ( $active_post_lock ) { $active_post_lock = esc_attr( implode( ':', $active_post_lock ) ); } $lock_details = array( 'isLocked' => false, 'activePostLock' => $active_post_lock, ); } /** * Filters the body placeholder text. * * @since 5.0.0 * @since 5.8.0 Changed the default placeholder text. * * @param string $text Placeholder text. Default 'Type / to choose a block'. * @param WP_Post $post Post object. */ $body_placeholder = apply_filters( 'write_your_story', __( 'Type / to choose a block' ), $post ); $editor_settings = array( 'availableTemplates' => $available_templates, 'disablePostFormats' => ! current_theme_supports( 'post-formats' ), /** This filter is documented in wp-admin/edit-form-advanced.php */ 'titlePlaceholder' => apply_filters( 'enter_title_here', __( 'Add title' ), $post ), 'bodyPlaceholder' => $body_placeholder, 'autosaveInterval' => AUTOSAVE_INTERVAL, 'richEditingEnabled' => user_can_richedit(), 'postLock' => $lock_details, 'postLockUtils' => array( 'nonce' => wp_create_nonce( 'lock-post_' . $post->ID ), 'unlockNonce' => wp_create_nonce( 'update-post_' . $post->ID ), 'ajaxUrl' => admin_url( 'admin-ajax.php' ), ), 'supportsLayout' => wp_theme_has_theme_json(), 'supportsTemplateMode' => current_theme_supports( 'block-templates' ), // Whether or not to load the 'postcustom' meta box is stored as a user meta // field so that we're not always loading its assets. 'enableCustomFields' => (bool) get_user_meta( get_current_user_id(), 'enable_custom_fields', true ), ); // Add additional back-compat patterns registered by `current_screen` et al. $editor_settings['__experimentalAdditionalBlockPatterns'] = WP_Block_Patterns_Registry::get_instance()->get_all_registered( true ); $editor_settings['__experimentalAdditionalBlockPatternCategories'] = WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered( true ); $autosave = wp_get_post_autosave( $post->ID ); if ( $autosave ) { if ( mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) { $editor_settings['autosave'] = array( 'editLink' => get_edit_post_link( $autosave->ID ), ); } else { wp_delete_post_revision( $autosave->ID ); } } if ( ! empty( $post_type_object->template ) ) { $editor_settings['template'] = $post_type_object->template; $editor_settings['templateLock'] = ! empty( $post_type_object->template_lock ) ? $post_type_object->template_lock : false; } // If there's no template set on a new post, use the post format, instead. if ( $is_new_post && ! isset( $editor_settings['template'] ) && 'post' === $post->post_type ) { $post_format = get_post_format( $post ); if ( in_array( $post_format, array( 'audio', 'gallery', 'image', 'quote', 'video' ), true ) ) { $editor_settings['template'] = array( array( "core/$post_format" ) ); } } if ( wp_is_block_theme() && $editor_settings['supportsTemplateMode'] ) { $editor_settings['defaultTemplatePartAreas'] = get_allowed_block_template_part_areas(); } /** * Scripts */ wp_enqueue_media( array( 'post' => $post->ID, ) ); wp_tinymce_inline_scripts(); wp_enqueue_editor(); /** * Styles */ wp_enqueue_style( 'wp-edit-post' ); /** * Fires after block assets have been enqueued for the editing interface. * * Call `add_action` on any hook before 'admin_enqueue_scripts'. * * In the function call you supply, simply use `wp_enqueue_script` and * `wp_enqueue_style` to add your functionality to the block editor. * * @since 5.0.0 */ do_action( 'enqueue_block_editor_assets' ); // In order to duplicate classic meta box behavior, we need to run the classic meta box actions. require_once ABSPATH . 'wp-admin/includes/meta-boxes.php'; register_and_do_post_meta_boxes( $post ); // Check if the Custom Fields meta box has been removed at some point. $core_meta_boxes = $wp_meta_boxes[ $current_screen->id ]['normal']['core']; if ( ! isset( $core_meta_boxes['postcustom'] ) || ! $core_meta_boxes['postcustom'] ) { unset( $editor_settings['enableCustomFields'] ); } $editor_settings = get_block_editor_settings( $editor_settings, $block_editor_context ); $init_script = <<post_type, $post->ID, wp_json_encode( $editor_settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ), wp_json_encode( $initial_edits, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ); wp_add_inline_script( 'wp-edit-post', $script ); if ( (int) get_option( 'page_for_posts' ) === $post->ID ) { add_action( 'admin_enqueue_scripts', '_wp_block_editor_posts_page_notice' ); } require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    Classic Editor plugin.' ), esc_url( $plugin_activate_url ) ); } else { // If Classic Editor is not installed, provide a link to install it. $installed = false; $plugin_install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=classic-editor' ), 'install-plugin_classic-editor' ); $message = sprintf( /* translators: %s: Link to install the Classic Editor plugin. */ __( 'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.' ), esc_url( $plugin_install_url ) ); } /** * Filters the message displayed in the block editor interface when JavaScript is * not enabled in the browser. * * @since 5.0.3 * @since 6.4.0 Added `$installed` parameter. * * @param string $message The message being displayed. * @param WP_Post $post The post being edited. * @param bool $installed Whether the classic editor is installed. */ $message = apply_filters( 'block_editor_no_javascript_message', $message, $post, $installed ); wp_admin_notice( $message, array( 'type' => 'error', ) ); ?>
    ms-sites.php000066600000000327152330733730007035 0ustar00current_action(); if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) { check_admin_referer( 'bulk-bookmarks' ); $redirect_to = admin_url( 'link-manager.php' ); $bulklinks = (array) $_REQUEST['linkcheck']; if ( 'delete' === $doaction ) { foreach ( $bulklinks as $link_id ) { $link_id = (int) $link_id; wp_delete_link( $link_id ); } $redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to ); } else { $screen = get_current_screen()->id; /** This action is documented in wp-admin/edit.php */ $redirect_to = apply_filters( "handle_bulk_actions-{$screen}", $redirect_to, $doaction, $bulklinks ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } wp_redirect( $redirect_to ); exit; } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); exit; } $wp_list_table->prepare_items(); // Used in the HTML title tag. $title = __( 'Links' ); $this_file = 'link-manager.php'; $parent_file = $this_file; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . sprintf( /* translators: %s: URL to Widgets screen. */ __( 'You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.' ), 'widgets.php' ) . '

    ' . '

    ' . __( 'Links may be separated into Link Categories; these are different than the categories used on your posts.' ) . '

    ' . '

    ' . __( 'You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.' ) . '

    ', ) ); get_current_screen()->add_help_tab( array( 'id' => 'deleting-links', 'title' => __( 'Deleting Links' ), 'content' => '

    ' . __( 'If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Managing Links' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); get_current_screen()->set_screen_reader_content( array( 'heading_list' => __( 'Links list' ), ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; if ( ! current_user_can( 'manage_links' ) ) { wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) ); } ?>

    '; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '' ); echo ''; } ?>
    'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] ); } ?>
    search_box( __( 'Search Links' ), 'link' ); ?> display(); ?>
    ID ); $updated = false; if ( 'updateblogsettings' === $action && isset( $_POST['primary_blog'] ) ) { check_admin_referer( 'update-my-sites' ); $blog = get_site( (int) $_POST['primary_blog'] ); if ( $blog && isset( $blog->domain ) ) { update_user_meta( $current_user->ID, 'primary_blog', (int) $_POST['primary_blog'] ); $updated = true; } else { wp_die( __( 'The primary site you chose does not exist.' ) ); } } // Used in the HTML title tag. $title = __( 'My Sites' ); $parent_file = 'index.php'; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on My Sites' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; if ( $updated ) { wp_admin_notice( '' . __( 'Settings saved.' ) . '', array( 'type' => 'success', 'dismissible' => true, 'id' => 'message', ) ); } ?>

    %s', esc_url( $sign_up_url ), esc_html__( 'Add New Site' ) ); } if ( empty( $blogs ) ) : wp_admin_notice( '' . __( 'You must be a member of at least one site to use this page.' ) . '', array( 'type' => 'error', 'dismissible' => true, ) ); ?>

      ' . __( 'Global Settings' ) . ''; echo $settings_html; } reset( $blogs ); foreach ( $blogs as $user_blog ) { switch_to_blog( $user_blog->userblog_id ); echo '
    • '; echo "

      {$user_blog->blogname}

      "; $actions = "" . __( 'Visit' ) . ''; if ( current_user_can( 'read' ) ) { $actions .= " | " . __( 'Dashboard' ) . ''; } /** * Filters the row links displayed for each site on the My Sites screen. * * @since MU (3.0.0) * * @param string $actions The HTML site link markup. * @param object $user_blog An object containing the site data. */ $actions = apply_filters( 'myblogs_blog_actions', $actions, $user_blog ); echo "

      " . $actions . '

      '; /** This filter is documented in wp-admin/my-sites.php */ echo apply_filters( 'myblogs_options', '', $user_blog ); echo '
    • '; restore_current_blog(); } ?>
    1 || has_action( 'myblogs_allblogs_options' ) || has_filter( 'myblogs_options' ) ) { ?>
    comment_ID ); ?>

    comment_post_ID > 0 ) : $comment_link = get_comment_link( $comment ); ?>

    'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ); wp_editor( $comment->comment_content, 'content', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings, ) ); wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>

    comment_approved ) { case '1': _e( 'Approved' ); break; case '0': _e( 'Pending' ); break; case 'spam': _e( 'Spam' ); break; } ?>


    comment_date ) ), /* translators: Publish box time format, see https://www.php.net/manual/datetime.format.php */ date_i18n( _x( 'H:i', 'publish box time format' ), strtotime( $comment->comment_date ) ) ); ?> ' . $submitted . '' ); ?>
    comment_post_ID; if ( current_user_can( 'edit_post', $post_id ) ) { $post_link = ""; $post_link .= esc_html( get_the_title( $post_id ) ) . ''; } else { $post_link = esc_html( get_the_title( $post_id ) ); } ?>
    ' . $post_link . '' ); ?>
    comment_parent ) : $parent = get_comment( $comment->comment_parent ); if ( $parent ) : $parent_link = esc_url( get_comment_link( $parent ) ); $name = get_comment_author( $parent ); ?>
    ' . $name . '' ); ?>
    comment_ID&_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to Trash' ) ) . "\n"; ?>
    tables( 'ms_global' ) as $table => $prefixed_table ) { $wpdb->$table = $prefixed_table; } if ( ! network_domain_check() && ( ! defined( 'WP_ALLOW_MULTISITE' ) || ! WP_ALLOW_MULTISITE ) ) { wp_die( printf( /* translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php */ __( 'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.' ), 'WP_ALLOW_MULTISITE', 'wp-config.php' ) ); } if ( is_network_admin() ) { // Used in the HTML title tag. $title = __( 'Network Setup' ); $parent_file = 'settings.php'; } else { // Used in the HTML title tag. $title = __( 'Create a Network of WordPress Sites' ); $parent_file = 'tools.php'; } $network_help = '

    ' . __( 'This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.' ) . '

    ' . '

    ' . __( 'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).' ) . '

    ' . '

    ' . __( 'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.' ) . '

    ' . '

    ' . __( 'Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).' ) . '

    ' . '

    ' . __( 'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.' ) . '

    ' . '

    ' . __( 'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.' ) . '

    ' . '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Creating a Network' ) . '

    ' . '

    ' . __( 'Documentation on the Network Screen' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'network', 'title' => __( 'Network' ), 'content' => $network_help, ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Creating a Network' ) . '

    ' . '

    ' . __( 'Documentation on the Network Screen' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    get_error_codes() ) && 'no_wildcard_dns' === $result->get_error_code() ) { network_step2( $result ); } else { network_step1( $result ); } } else { network_step2(); } } else { network_step2(); } } elseif ( is_multisite() || network_domain_check() ) { network_step2(); } else { network_step1(); } ?>
    widgets.php000066600000002130152330733730006731 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

    ' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '

    ', 403 ); } if ( ! current_theme_supports( 'widgets' ) ) { wp_die( __( 'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.' ) ); } // Used in the HTML title tag. $title = __( 'Widgets' ); $parent_file = 'themes.php'; if ( wp_use_widgets_block_editor() ) { require ABSPATH . 'wp-admin/widgets-form-blocks.php'; } else { require ABSPATH . 'wp-admin/widgets-form.php'; } images/arrows.png000066600000000363152330733730010050 0ustar00‰PNG  IHDR{YKÇ®$PLTE·································©¡" tRNS*CQ–ºÌðüþ}7n5sIDAT8Oc` Ttu€Þ»w;€l»·A¤˜fO‚*Š€2¤  f†‘ à~‡‡,|à!Cx¨ÂÃy w(­¶B‹Î†0˜WïÞ…*‚PƒÐ5 Ø  Žm PÆî©¤Éµ{÷bT¸¸.‚=ëm4¥vwIEND®B`‚images/spinner-2x.gif000066600000016560152330733730010527 0ustar00GIF89a((ò™™™ÓÓÓŠŠŠñññüüü±±±€€€ÿÿÿ!ÿ NETSCAPE2.0!ù ,((@ÔxºÜþ0`ªµÁ…Ëy'Ž$Y0[©®4Pì ÑÀ±dµ’ªÆ‹Å[䎣Æ™ ö„k÷y>@P šõ1Q£¸Ž8ò#U„Uq1`2×®ý(`¤÷2 €f!„"'O‡voc‘’“”’hS‘Œ€ce"3Bƒ¢5#šq%ŠK*s>2ª¤"™—S mˆ$s¶¾ Â, zÆ#} ¨Ê®uÏ"x½Ï²³ÔÚ °ÂN5 {¦‘RG;• XZz^`Öëó !ù ,$$»xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖæ3³MGW3pŠ@+È!ìjBÆÏ…\Li޲Uhl‹ÙÍ—ð“Ð !ù ,$$ºxº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖeÄšŽŽG.“‘qCØñÁEà‡c̈†Ç)Ò2¦XC€s%Íp–ÜàÀaAÕQ;s±·ã]y¨•I5†"‡‡>Šƒ“”,’•-˜<›5ž4¡-{ž p¤bh§•nR¬­V¤^ i›±C°Q¼¯jK)2y0RÁmgȸ+D&sÍ I¿ !ù ,$$¹xº¬a(a´Í €!ޤD§‚e[žjCn]i<„voj„¼€2ÞP`^9m(*lžÄ–*@.­æBIzZ€Ü–jð:\b2ÕÚ˜¾`617³=ô%v5F€†††‰€Œ>Ž‘=”>—=š65r  k b£—i §šb ƒ—t «®B”n ¼¾1}Œ8į¬60É·,˜(ÎA‹É !ù ,$$¼xº¬#(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢H€LF€ƒ¦á'`Ï O} !ù ,$$¾xº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cД¯ÂsTh $A`!m„$ö롘rW¬‰35|ÅÐê&½¨G]ô¸Ž`f^mjG3-~#‚$‹J“–—"•˜%›6ž5¡.¤-p¡y{¤_a§EM®›d „—r ±›L]–F*Á~Ã1ˆ~81 ,P0Ì2Î='MÑf€ !ù ,$$½xº¬a(a´Í €!ޤD§‚e[žjCn]iL„vojÏçeCb1Ç )Ÿ…FàI5<ɪ¡0è(¦ÜT;Š2Æ¢ë!K0Nà0 æ´áa™¥$}o q[lU zr`ƒF_%ƒ$–—Z™š-= 6£5¦.‰ x¦j;©a ¯jp©‹ ²­…¬UF*B—Ã:‡Š¿,T01Áw(Ð1`G* !ù ,$$ºxº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#U ždu‰£nY… {Ð~މï0øŽÀE[ôp‹¤›$ÄN!7žb|x I|Mo|wMBŽ-€’<˜<›5ž4¡-f¡ ^¤} H¬EM«¡~ –˜„YžL‘Žh½§U¼02v70 +P/É1Ëœ'Î)jq) !ù ,$$¼xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 Æ$Bz E ¢Ka¿ `§(r4E‚hg„osw,R H#Šh7YމbEOš4 5£4£et¦u ’®EM­£y Ÿ ‘©cL‡½UFAÁDÃ)2•Œ*Å,/0ÍE'Ð9›r) !ù ,$$µxº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\OŸlÄ]:’:˜Ñ­Ð M# #n{ }tL B>mkp+"ƒ5›4bže}ž`H¦>M¥›‹”R1¡h’nFAµP»)2h70|½4/Ä1˜d'É)‰v) !ù ,$$¹xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\÷"n‘E\œÄoެÝ-e ã$@ ]{cg…tUM „q`N"qF#€a-e„€$`¨#Lš¬"” m¨}~Œc®B˜‚»¸J™)2hx0À¤²Ç É>'Ì)v¾ !ù ,$$·xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\÷"î¡$ޛИ6}t[GvhM€bUxIn` mnRIn@~#‡UF e]’`H{.M¥¬©°“ «{LnŸºP½2h}0 +ÀŽÆÈd'Ë)§™) !ù ,$$·xº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î£ÐïnûCô"nR ]#kM mke†{“bPŠm‘“Z„ “`šP}‡M h€`Œx"¢§cLBqF*¼h¾13h81…¸50Ç2,K(Ì¿sÌ !ù ,$$ºxº¬#(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…<Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î›Ðïn;¾e‰c z$kFm#kG bhe€$bJR]& šU‘ “"`c`zL PGB#¦ ‡ž¡"˜ ¤w©¯n…A–ž‹3h81 ,P0É2Ëd(Î*vÄ !ù ,$$¾xº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…<Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î£Ðïn;¾eÙ».nb$hGz$c‡ g-ƒCRbe]U` m"`“=•$L šJM%œ žQM¡„´UY§BUŠ?*¾hF13h8ƨ¢50Ë Í#'¬Ð vG* !ù ,$$¹xº¬a(a´Í €!ޤD§‚e[žjCn]iL„vojÏçeCb1Ç )Ÿ…FàI5<Éj›jŸ×Cökdê# v²}‘7Q"÷Qêø÷=ß²ð]-l{.d8 36cpn$f^jh-a;UL-\ —JG š$a “>ª«7` #¢™5/¦ BoF1ŠŸ1,T0Ä2Ê[(Í*†"¿ !ù ,$$¾xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#U ždu‰£n•؃öËdè# ~²{‘÷P"ïMêø÷=ϲð[,‚$_{4cpMB4f^DM5aH—REM–=a ‹,¦ n<Ÿ ®YC@ h.™¶¡.µŒEµ’Kq¸02i7Ç +P/Ì »#&¹Ñ¶tÌ !ù ,$$½xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\÷"î¡$Þ›Ðïn;žeÙ·.~,$^z=b<‰ ]CR ‘… HCM m,L ”5e™` K¥#– œ<@NŸ B¦Ÿ°>¶»4&¡%ÀGÆP70 +P/Í1Ïd'Ò)ÅsÒ !ù ,$$·xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\÷"î¡$Þ›Ðïn;žeÙ·.~,$„#b4&Š ]d@… H=` ’‹M-Mš m¡Q›$–˜4LB¯ ¶d° ¹%‰K»­©P70 +P/Æ1Èd'Ë)vÁ !ù ,$$¶xº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î£Ðïn;¾eÙ».~-osc68 3cb"R mJe]%G gU`ŽMUL –#˜›‘$ ¤oª` ®dŸ™bPF*Bk½1‹c‰1£Žd³Æ,K(˾sË !ù ,$$¼xº¬#(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…<Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î›Ðïn;¾eÙ».6bZ.`fzZ.ˆŠia/mPe]#R™V Y› •DL GŸCŽ•¦Ÿ¤C¢X$¬[BqF*¾hÀ13h81 ,–®Éƒ-'MÎvª !ù ,$$ºxº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…<Éê2GÕ*¯‡¬·8 ÆÐúû\û"î¡$î£Ðïn;¾eq 0mh-8 Bh/Mk7bia#` Pe]"R‘D`<‹›cL œEG^– ˜pcž £x©‡nF*½¨G3ˆ¦+ 601É$'ÇÌ và !ù ,$$¸xº¬a(a´Í €!ޤD§‚e[žjCn]iL„vojÏçeCb1Ç )Ÿ…FàI5<Éj›jŸ×Cökdê# v²}‘7Q"÷Qêø÷”!å%a nd$Q2{_|cTŽ…ZC‰ ‹Uf^"ƒ •Ua;#~¤T\  yV ­l™Xy¯rF*¼i¾:µD81 ,®¢Ç /(Ì¿tÌ !ù ,$$¹xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#U ždu‰£n•؃öËdè# ~²{‘÷P"ïMHLá^2u|@ƒ_%nd"R^iŠŒ_#…‡[I…Blf’>—daH}.M§®a ªo ­}L£o¼c[»0d70 +P/È1Êe'Í)w› !ù ,$$¹xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúû\÷",€Ä]š”€2zeÄl´õ` zv@ †c"‚Š^"RSt#ŽBn6cb{ze]€$`H©|M¨­Žz”ƒ£h}šnFA¸P¾)yc70 +Á²ÇÀ|'Ì)vˆ) !ù ,$$´xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 ÆÐúûô>âq¤tĵ˜Ñ]ODMk- ƒ{ }h%Bƒ#o+ˆˆ=œ<wŸeŽŸz†¢”M¦ŸŒmŸR1ªx…vœFAµCº)2h70|¼.¯Ãp½'È)u) !ù ,$$·xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêGÕ*¯‡¬—8 lÈdM¨¡ˆŽ›w ¬›ŒBŠ‘»l½“c70 +P/Æ1Èd'Ë)kƒ) !ù ,$$»xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðÖ<h]ohøq;b€cÌ”ÄB#…<ÉêG]žZÒõÂp -Œƒ‰šòXoÀjˆHºéÎ#v xa#g rsŠ>g2s=Œ”4—Cš‘~- 5Y£> Ÿ§cH«>Mª o ƒš| ® Li—FA¦ZÀ)j70 +P/É1Ë<&MÎr‡ !ù ,$$ºxº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cДÄB#…IC†0xVGLutu~Iå¤TF94'û}È7Þ3„´fÚn%e yg%†g€‰n’“#”5—KŽš|c. 5t£b£ƒ ¦ša©ªZ œ“}®n° B—F*½’¿13’81 ,P0È2Ê='MÍÍ !ù ,$$¾xº¬#(a´Í €!ޤD§‚e[žjCn]i<„vojohe<¢cÐF–ˆ²UhHÆE`2Jb yf^u#8 \„R-kŒX‹’>”•˜™jš=œ6Ÿ5¢.¥-}¢wi¨p«šLZ°{†šl ³Ÿ¶B™YA´SÅ*3’ˆ1ZÇ50Î2,K(Ó*\QÓ !ù ,$$¿xº¬a(a´Í €!ޤD§‚e[žjCn]i<„vojohe<‘!’9mõL†B#@ Öð$³œ‚ØY=pIÚÍ{\>œ‹é±é0h ê }z".kz6wzMƒX‘X‰”—˜%–™~ŽœOWŸ-¢5¥.žŸ s¨d`«˜mn°±R¨q ³zµ B™F*”Ä13”81 ,’€ÍÏ='QÒb_ !ù ,$$ºxº¬a(a´Í €!ޤD§‚e[žjCn]iL„vojo„øH lX 0Ç Ç ‘ hÔ€}–ÊÅ`+r*v-ª‡l˜*´¥°ƒm03‰+p×pgzl=‚tFtlŠld“”5’•6˜=›6ž5¡.w¡|p¤ug§˜no¬­U¤] h›± B°r ½“I13€Äo¯60ɸ,>'jÎÀÉ !ù ,$$¼xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ðºQ=šŽŽ$†>CØÁ$ À1f.6YhZÝÍ7Y*š-€–L©*ƬblÊ6;YËó–­$tl„‡"‰Œ=‡‡ƒ“–—D˜wšx{6p $£-œ£j¢¦fh¦JV­f Ÿ˜a °šnH—yÀ¾)2“70 +‘¶ËÍ>&Vп’Ð !ù,$$»xº¬c(a´Í %Ž"] ’,i¦ Q´4Y ð²Ø³ÓMG× 0¿Vƒl6ƒ€cÌŠœ¤³¨7Z¬¢I{Æ&RUÑ­ „‹kÚð “§Ã@>èç€$ƒ†$‡Š‹‡ކh‘”•-“–4‚™5œ5Ÿ4¢-vœ~m¥_d¥kl­t |™fG¨‹² D–KC»€Á)2‘70 +†/Ê1ÌR&UÏPÏ ;images/imgedit-icons.png000066600000007727152330733730011301 0ustar00‰PNG  IHDR@Ëhùö÷PLTELiqUaiÿÿÿÿÿÿÿÿÿdddÿÿÿ;=?TWXÿÿÿ_eiUe\ddd`daÿÿÿSh{ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿlllÿÿÿ÷ùø7kMkkkiiihhhfffLÅ=hOßßßéééìììllliiigggÿÿÿ¸¸¸M‘ÆhffÕŠ¾½ÿ†r ¢×÷ÎóÀÏÝÊÁÐÈhìñâ*º«q\:ºî¹»ù>†ØÆ·ƒÅ½ªGå$~ *IDATxÚí™iX×ÇN7¶ ˆ@AÁ}­û¾ÝºU»ïŸ2É„Â6) !Hv•Mƒ ‚•º/¬ Ô­µµZÛÚ}¹ýpÏd3“ÌA¼Ïcóÿ03gÎËÀù1ç=ïœ?…â”SN=+rA§p}¾¼àâ9r¤§Ë Ï7ƒ!Æ6äy¦àê2dø‹[¶¼8|ˆ ñŒ€‘gwPàܹ[-²îz|ˆž°gOËÝ[U­ÿÝZuënËž=Ï„ ‡÷í³4dAŒ™áóßÜú‘IX–»oÌŸÉ ‚vêÌÉcG¸Ü#ÇNž9•ö¤ ÕS'AŽÿg“¦®†áÜ Y^&n -|ñÌש”­± _&\¼´ÍBì¶KA¸K}}æâp„ìâ;U'¸@'ªîgÛ@È0 F,—ø£{O¥9m*ü`4 ‡0 Ìå†SÁévlBjIRò¶n[wÞŽÝ–œT’š`¸K çÎÅFqv±ò4× ÓJа–#èmàAð÷+ WRŠZ ÿŽó G ö‡ÚÚÚnܸqø0˜ûPfrÑÓ§fŸZw~j†`¸ÈI A©D€“-׌S_ýõíòòr‡Û q*Ã.{B³»ÚÓaøòæ©~Ì~Åô›ºù2 §·wÍ&õ2Ôî°Ö>¢°×¸T²¼¸¯@HËHM5BHMÍH+Æ®ÅgîÆÅ•””À8ÄÅÞ9Sl»’B+šE0Ò÷нÊD˜+*ïòU¢¢æYd(Ôž;Šj¯ADæ£ù|p±Ó a§u÷N3„Ö±x SSÑîÔÔB,P?Ü9Yuº@Ø #»„ÂÓU'ïØÔPÐoà,R¦_©ôà äWy%])J7Š~ "A¡¡¶öàÁƒ_]¸°×’läÎå†{‘ƒ`‰µÓOiq…F…qi?a뇪c'¸q@蛀ž¹'ŽU ÇR u—îÚµ« ½ý»C‡¾;ä[‰“ù I—}¡Ýíí ¶´;ˆF*-üï/7МH òòâÅ/SÈA°ÄâAØ]RhPÉn „žÃ^”1æL‚ñêHÙKí´Í ÌJèóŽî{ß_ š5AînäÖɃ¿ÿÓP„¸[12@øÂºÿ l”] „«Ç^5CH‚‘$3„W±Õ1×J æÌž}­ûáÃŽîMæìîxø°ùZô¬Ùs J¯Å¬ö É€R»wG`ЄíVÚj(–l!€b …ó˜oÒöäæ‚¤’_nîž´o0Óá¥_ŽØB8ò‹Ítƒôb„Íêú#ÆÝ}|Pt]ssǦõ !feGss]tÐxw÷˜?ºf…1¼ÈÖK‚¡VøêèŽÖ´Eå±Û,Ú^ d 6 Br®áUß›Œð‚ËÈá­ 1æ%ÃH2z‰±uøH»EL‰Ù1An^nb\¹R‡É Фº+WŒ›àúƒbfƒ©@ºf|´-þ9pðèŽ6ÜR¡<öR²I—¶—³ ²î7ÞÁFáBh9k†p¶ÅºDªÀ™›|öüy9þlr.X"UxŸÜ•éΤQ Ã=¦îþýq4L­|ÿ~]Œ;ƒQh Š:€²ùZ"ýýw¹s8¹ñÇØ‹I&]Üþ#ÑcFO»{6×ðª'åž½›v[,?s øöÛoa‡[gŽãn;@4/dHã£ï×E[WÐÔÍu÷£ÇÒ€9Ь~~ôÈP, .\¸`ðYlB‰I Û?#zŒÃ¨ãÙ5ÉIFIÉ5ÙDZesÅ©ššš»---0wAãTEÿÛpÃïÚŸ]nVwÜæüyÍ1±Û熣;~ Þ—©&}ÙQ(ó”ŠØþJìèKÑc\Ý8 „èºh’uqMá“Ø‹¶Bôã£:³kn™?¥oÕdwÚ@0 F,—Žö Üü¾÷ÃLÐvÔ‹€VеÃ{¬þ 8ˆêÄnªt~g‰Æ bb#ssp/±>Æè‰£:;oªù²¿®_ÿKÆWßì|  *³ضŸÝÖW^yz­Í ÑžyÎ-w3§ù( 6ÜsÎÀ)§Ì „Ó•v&Fçù¸X;ö_ìJO˜Àkb³‰6UØì&CX³éõ}eÕ:YS“LW]Ö§×?SÙìÇî¡+ÍbE͈àµVs ÂB0Þ«nåËb±ˆ\i½ç´ÉÁy¼‰Á“§yú<)(,$€„+6Z|¶Œ‰Ð•µ†FÃå÷ñ÷«¶êý Ü¥†±ÖŒ"øË£«¤Z5H­•ªèyØ^‰Y0b¹Ä¿Ž"áJGÁ ÿPÈŠ·@ t¥#壨†áòE)ñB{Âøßp—:JIÁ¥^¤ç¤Õ»ØBð¡»Ð}\o‚«¡"…a1 WZ ÃÒÉM¶µ2‰\i–|…Ê9 ÿõt¾¯H„2‰|ùôzlΔx*jø`j…ÂSbïJGðr€Ë(ö‰tëgPn‘!ÞBz/‚ÔË Á˜!l¢°…r*YTùBügð}TS|}Q¾¾ST>|ìÚÉŸ¦gÃÆ7m‚‘M›>ܸáý4¾Ý†{T½ÒèǦÔWÌ Âà6£¢>ÅèÈ*ë£ÈPÐä …:ÝŽV«%‚0O4K¬T®’eS¦ ¦LY&qUaë‡üÉÕËÇ¿»a#ŒlÜðnð˜åÕ“óm]i­ÒäJ+ÓÓõ™‘¸®td¦>ô•Z2‰ág&11Q.ÏÊ#„h£ä¤s‚%ÖE5}™²頭´Á ö ` FÏlE°ÖÖ•Í …E9ññWSRR|E<œBþ<‘/è½þ{…ù¡äöÛUR6šÅ„( zæX;I(ü%K—ýhÙÒ%|ŠUÚ3¸Òii ŒŒ1^M”Ú¹Ò,ž6§¨}s‹œxžÝ»EòâsÀèèt¢¢-Er÷Y“€ºÒYâœA! Á‹•#Wzl£)7/‘%¦ËƱv®t¨XÆÈî‹-§G'Ì´MÿŒL¡Ìl©ª— (éÅ¡d]iMõU6êJgõ@À, l"Ø(»È+MêJG°º"qÀ÷{ï9Ý{.Ø#5kÔB6WÐÓ~×|tÁåxÆŽ“FúèVTC…‚Ô´÷[lV¼î·jÕ>÷¯5dž ¶Fá1UÓ ÂSÂÁÕ‚fñ–p§šVâÂ'Â].(|cé± ?Yœªð§Åz${»°+õ‹c¿XMëYay9îlfEý¹õ’–DnnVb¸ƒ0“øq1Í| 1*³~¼ ÈŠùƒåüò’«Ê¬QDg™i xD]‘ê ‰IÑ22­þÿí«‘öVª·ø¡áÑ4_{Á± _%Óü80ͯC¨{€ó\5?¿#o¢—ªš{ÚÖáô¢ªÅ¶álºî5EWÊR¸=™„—chBÇ4-Vzö³ÏÑDÖä«.agúä|ÛÒ7p“gê3Ë pHYs  šœ¶IDATxœÕ{´UÇ?÷òP*$å•a¡¾@ ¡ŽÓhùàòò è2­¥µ¬ÕÃÌÒ 4ʵZ¹zXXYkYxA±œ†“†hšSK|€ï| Ð{Ïïw~ç7¿™3s/ý®õ[sçÌ™9göì}Î~sÛØ‰ˆÂ`0°?0®Gû7\«nÖ;¿'ôxOœ˜ç{·çu´õvƒQ¼˜ tS€¾9Õ7!}Ü=§Îà&  X'扞é©z…€Qì¬8Ⱥ´0Àc4s؆81¯éý»Í¡£€¦ÏÛüX tʼnù×}1v £0hN¾Œ±.=€pK°&NÌöhç#Ô?ÝÖ?‹âÄ\Û6ò°C…ÁÀeÀx-Z-NÌ;¢M«í1Ô‰9Q‹o¾'æÖžn¯G …ÁX`ðq-º éø_=ïwƒwêñ àIDÜŸ‰³­DC>ä-êÎïÉØ#ŒÂ`p 0hÖĉùCÎ=}Œ‹û?©lžFˆù_ –ljy¸ ³€o{#d"ÚOù¼_ºMÀ( &K€=€§€yÀqb¶dÔí  ÌBfâwu·}ÅýÀrýÝÒ¢í~À§‹´¯ëÎ81·w§án0 ƒ3€ýË®{1£ÞàsÀ9Àî´éÍÀBàqb^ÊèË àRà3À«Àqb®®ÚX%FaÐøðyàuàì81WfÔ | 8 Ø­j'+bð]àò81/gôíLàG@?D¼¿^E#(MÀ( Þü8 ÙéqbV9uú_¾ ¼­l=Œ§‰äGqb^±/DaðQ`1"Ò]Àœ,®ÍC)Fað~àD׺8>NÌ:〟Ѩ0¿p0+NÌ}vaïCïý{câÄ<æûÐvߊQ¼“:ñ–“2ˆw>°†7ñön‹Â`Ž]'æQ`Âcë£0èûP/T‘\ŽˆíbäKn·®@Tƒ“}ÞÉX|6NÌ«iZ4‹i1§ûŒ‰¾ø=„xwsâþÊ[‡xÓùªV ï4¸±b.öyP!ªª²±±Ç‡( †"Äû`™ÞïDÜ œü£wEað^àvdb9¥HÅÉ% *É+/Çqbþf]Ûq#-ñ;× ³ìkEuv^X>Sò”í–TѼ ù§Å‰¹Êº6qCoqû› OcâÄ<ë{CŸ~ŽX,µ2ûòÆÀKâ-´‰§XÄ[‡x—!@œ˜Eˆu5qÉe"“€êU™‹PÿBçÚ9ˆ-ûVÂ-ïû*2öŸ©n²&´âÀïèµoĉù_Z…ÁAˆ™…­À Ñ@ì&£ÞÂÃH\ãy½· ¶Ï"™Ç ên*y¦Õ*™‡xˆ.ͪÓä:ŠÂàpàˆæþ çò3Àd ð ð’þ^tÍ$}ÖHàA͹mÀø81ÿpê­ã.ÀËv;ÀKqb^wî=øMÖ "Œ0(œâï…Aë<¥U6µóÃiF0Û§wqb6"¶jŒ@’|p=ð¿ÂZÍØ£…jvÍ¡Ž>4¦rà0Z§™õÆ žÃ…:|—Wx~âÍqáŠo ›€M¸ ¼¤È›¡ÆDa0!çºÅ”÷6§èì1nPøÕ”l56Úvt6:Î<‚?w<‰Ä«àîÙ¨ËÏu<¯ý³q¢md¡F@Íhx% 4›^EcÊIŽ‘‡ªÜá}Ÿ†®/ùüueyÙ.¶míˆ<sš› ‚ÄM|PEŒ·ë}ePöC=hŸ¨7ýØœú›­ºý¬O ØŸÆtÛMðã§‘ †2¸µÂ‚™À“/\œJ~.£WN5”¡>ƒ-á ,ë9©q“FÜ ¡ãR™ ØÎ¹ëÂwa°¦¹´" O¬¶?pbAKìxlG”ðZ*q‘÷Ä‚¯¿ŽØ³h;ƒ‘ ¤¶Ñ8¬ås ÎÈytÄWŒ7Ù.À*µ¥Aâ$Ã|ÛA¼3MIî¸ÅIåŽ0D+<àdþr ø¹æÂ`ozàÏ×X§b5Û'j§¡Ñem¸n°¢ÜF7;+“€®î·Ú£#ào™\K~ª4Šo?„3Þ æÙŽÏx[# :p(¨ïåGêq};’‘¹…fÛÓ›€žÜ±™fŸ£ [|#Í'_1¾Ã[á1gç,Š3ukÔw šÝÛ®qÖ›€ÑŽîü´û½(l§(ã,ñM1Ó'j§y3KsªüÉ9/ßç€;¬óqˆ´Þ'æ¹”òi,$ .'fkAGlørGžÛ⻫Ý…wÔŽüUSuÔ571§.Àb'™©!~”pò®—ö—E=UÌÒ—ÎEœ˜ç€?·¸l‹ï1Á\ø~¨á¯ SœDqž¸›#݉Ðj)(ãÄ<ްé8'V°‚âü;¥©ÇyÔƒÖÜ‘'¾)Â( ²ü” P•Ã0' ¯HyÞü%=‰Â`4ê¸CiÖ0x6EÝÕòë¢+|¹£ QdmØâ;áÀ,ô¼,²?”-¾ûEW9¡¦ðo.WP¬~…A–ƒ²-’ƒlñJk—ø¨„f§ˆí±)â¾—ï;e)mjsC€:µÿ ¢0°Ãx?ñèp_üÛ¸Üá#¾)ÆúäêdˆñŽƒ¢¨ËÕ@“ìܵqbþ™–»úÏ…È ºÀ)Ÿ‡ä?Á—;ìä [|ã—áÛŽý¡jܧ¹Þ™I㊗¥²6.ÓcCÒ}uw‹[.<Ú*Æz@ÆEa°oQ%MJõ1[|g 1Û"øæê¬ îY²=5E’²@íw¢0è:€Õqbü”Yxš‰¹À‰I,ñètYî°¹¤H¬R %ß{@œ˜7Ýsª «%‘çEºY¥€ÖïkŸçVn" f¡w!)³­òW,šP|cºËÐÁbíèP<³Te>Ôr+æÓd¬fá5d1¥ízû$"îË4Kµ­^ô|Ä7?’]ƒˆs²ø$^éºêNúº%¾³¨'ôø`ªæKÁи\#O|/²d«›ÿ›ˆo43!)“€º¯Ê"äK]è\^HqÇ—;~`ýí+¾)vÅcÅTœ˜­éÚ7[Ýs ÍÇň?òÊ81k³nʵ‹Wב컒vh;pù«fDaP¸WBª¤j†lGQý ”ÉÕñ¢ì™Q¾YÉi¯ƒ> Y`³‘œ¤Ì–ÔՉȸðË( ¶®mFÜ_÷·¸} þ†?È ^e‘ÉQìU¢~—¯¦ÚëT¢0è~м{§¦©d"w°×u²g Ѫ¥vö¨¥œð …2ÜQV|S´áéÐÕPät§x-p”½’3 ƒQH gଢ%…³¥®Ø¾ñ]ëL*"fqâ‘>† 9}¬ |=âG#N7Î üÝí`(pYœ˜B?€oîÉ×ëa"²¥I jM Ñÿ*÷¥Ø[E®öì{5Ây5——ꇿB ×S¬mžÔÁu6²¯Êœ( ®r8ñÅ81' ƒ®­'úˆqw XØŽNhÇ!Ié_NuƼݘLާøæå”Ýxg’È3‰™LsØ( ET Ô¤;ÐN^wêŽEBÝųÀðV £08 Yxzìl}§À2àd‰ï'âÄüÇ·aïwt¼è .η۳³ÖùbÅœ‹¸“ò¸£'¸$s*Ï¡ûo`rñ&!!˱X†xP’€P³ ¦!v½Xië‰Zç81?DöëËÛ£Ï7³Á-?Tœ˜Û5ÆSC$Û¹D/¼ Qe|‚ò èîöw'W"Sþ¥Èº\¯5lš¤Yu]]¶#m^‹v"jœ‹èygù̶­Pšm¨Š3ñv\<…Á\OgB™U EX‡Œ»-“¢0è…ÁÙHÊʹˆ…qXwˆ=·èžÈJÈ3Ïô=ÀWâĸ1Xûžvd%Ô$+~âõÈsçoEü{O"{Ú¬@E¹»­Ea0‘ê3~\˜gaø¢§7¡ƒt45ã p^œ˜;ZßÕôŒHFÂ=¶!ãèSÀ¦i¿é$ñ]êK–!›Ðf:ª`GmƒÜt¼qÙê;{ïÍW±íÑÔ·AN7ˆXì&\uÿ˜–Ø¡;™«+|>ða«øNê{JßÛC팣N4»­ûQ]Òíd¡·¶‚ßú Ž·Ú}˜zðÞÝ þéÔ½¤fÖžHVÔë8 Y–®ªÚޏäSn¯EÏvvÆ?#IýŸNë ÒdvoCœšyõn¦N4ŸLŠC¯ІºäÇÒüOì_ÍÜiÿîµ½ÿX¶ol—[ïëIEND®B`‚images/comment-grey-bubble.png000066600000000162152330733730012367 0ustar00‰PNG  IHDR l»Î¤PLTEFFFrrráÝMìtRNS@æØfIDATc¬Odüÿ гÿddûÅÈòf]ÛA³IEND®B`‚images/about-header-freedoms.webp000066600000117670152330733730013060 0ustar00RIFF°ŸWEBPVP8X ÏWALPH' ʵ¶½m#ü 0Ó9×0»ë™~¦¤Tɬ¦Pø,µãëç 1†ÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãÿ¯VŸþ|ßšWæ•å®åKË—•ye^ùâ­\Z‹µfk-óÊç•ðVzk^ZËÜò”N›o_¶b%VúÒ*Þ*¾+±²-­ô–{+¢å±2¬ ¥•¥Þòh•”Nøÿãü¯)ï¼WsVÄþÇÿøÿãÿý¾„˜Ãÿøÿãü£ß½‡søÿãüÿoô/‹9»+jÿãüÿ±1çÞ‹9üÿñ?þÇÿ7úï–PsVÄþÇÿøÿCb/tÿãüÿñÿþ9ÔþÇÿøÿ㈻ôjÿãüÿñÿþ»Bçð¿Â.M»ÃþüìzÉ ÿO°õÓ.ö‡ÓùyÄåšyÎÜô‹uR}̼fŸ½ð´´C·Øç/y×Éô2ŒÛëku=_NqŽþrìtz±Î÷»8ìháoÞÇ«ÓùPºÞtºo3‡wŸ>øõ`f6tR}xv5;Ÿìù ¿¼ðã¦ôT/£ûùÍë¼ÚåqzþòÅ®“ê‡iGw?»¿ö·¯"ŽÝ›rÿw? ”ÿÆð?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿEâ¦*Võ¥òªxU¬3+^y#^y©¼*^«\'ýñs½™•¡Šmaf%«Ì*½ªŒj¬JVÕP:³>«ôJwÿþ©ó[SóÿôvʹsƒœK9øOo'ž 9—j.LÍçœ[ÔÜ0«¹p57Ìt.\Í墿=7«¹XÔÜ çz9znVs¾¨¹Ðs³šó;5 žs5×˹05Ÿr®—s)çÿá?AœxÎå\â¹QÎMxn'çF97á¹sƒœsü'·ËFÎþÓ[œë圩9¿SsÅðþÓÃýš+šïïÔ\15×›š/xÎå\15çwj®tj¾—s“œåÜ^ιœÛṠϥœåÜ$çBÎrn+çz<·ÁøO»œ ü§·]Îþ“ÛÅÔœþãg.ç‚Î9EÍy¨¹(r.Ôœã¹(jÎCÎ¥š —sEΙšw9r.å\È9—sç\Î¥œs9—r.ðŸÞv9—r.ðŸÞN9çr.ðŸÞN97ɹQÎíäœë«ïŸšÿõÕ_OÍ¢¯ò©Áÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ?þÇÿøÿãüÿñ VP8 b›Ðô*ÐX>1‹D"!¡" Ò8À@ inùÏ{f~1“M!ündlžIy Ð¿Çl­{´ÿM»‡Ó§ú Èÿ§Îú¨zžã_kÿAâÁdÊ[_5¶5§IºþÙ™üŸÅôîë¿Ùdy ÿægÄiÞ˜Ýúƒyàôæùößõ_ã½í='žõý™õ¹õPô ýfõ¿ü®øtÿ]ÿkö{Ú#Ôÿß¶Wðÿýbþ©äCîhþÝüOÿ?ßû‡ÿÕ„ÿ§ð/ü7÷ÿãÞ¯õõúäÿNÇŽŸÌ/¼ þÔÉÏý~_ÿÃìúËÖ“ÿßD?ÆíýìøþËÿ ÷C¶¤PQ¾ª|P³aÚj›U>(Y°í5MªŸ,Øvš¦ÕOŠl;MSj§Å 6¦©µSâ…›ÓTÚ©ñB͇iªmTø¡fôÕ6ª|P³aÚj›U>(Y°í5MªŸ,Øvš¦ÕOŠl;MSj§Å 6¦©µSâ…›ÓTÚ©ñB͇iªmTø¡fôÕ6ª|P³aÚj›U>(Y°í5MªŸ,Øvš¦ÕOŠl;MSj§Å 6¦©µSâ…›ÓTÚ©ñB͇iªmTø¡fôÕ6ª|P³aÚj›U>(Y°í5MªŸ,Øvš¦ÕOŠjë_õ¶¤aœV±HÃ8­c‘†qZÆ5# ⵌjFÅkÔŒ3ŠÖ1©g¬cR0Î+XƤaœV±HÃ8­c‘†qZÆ5# ⵌjFÅkÔŒ3ŠÖ1©g¬cR0Î+XƤaœV±HÃ8­c‘†qZ»° V¡ãÔ;Ña×WÎ F5±SŽS½rSU>(Y°í5MªŸ,Øvš¦ÕOŠl;MSj§Å 6¦©µSâ…›ÓTÚ©ñB͇iªlF#¨lV ‘ º”+Âýör xÍ:ÆöBt›Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½›µ4§*¦˜fvg¡ÆLxå˜ì ,ZI9ìtõìAðÆeû‹2Óni·´Û„ZmÂ-6á›p‹M¸E¦Ü"Óni·´Û„ZmÂ-6á›p‹M¸E¦Ü"Óni·´Û„ZmÂ-6á›p‹M¸E¦Ü"Óni·´Û„ZmÂ&êUbö6äVqûSž.ûY~ÖKÀL¦¯Ù‰ŸLü%ŠîºG×öõ!Ñ饛µÐ‡*àC•p!ʸå\r®9W«UÀ‡*àC•p!ʸå\r®9W«UÀ‡*àC•p!ʸå\r®9W«UÀ‡*àC•p!ʸåZôZÞ„ŽJ²õqmâ˜>ÜCÛ/,{”¹EAùE+¦¬¶fPË Ou¬LRêr÷Ôåï©ËßS—¾§/}N^úœ½õ9{êr÷Ôåï©ËßS—¾§/}N^úœ½õ9{êr÷Ôåï©ËßS—¾§/}N^úœ|l @û-2è·°gd誾à9ù…h úòO 2Ú¼®îݸm*øÚy¤Š`™O¹ÎJ4ã P’Þ`ˆ ¹•Ø´—ý›˜™õ` NÔ£Jüš¶¶CÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamL-©…µ0¶¦ÔÂÚ˜[S jamGö…çbæ²êD”­7þ™bâµ5+ÛËZPlCs?œð­ºMSÁ¾tm®æÆ…Dª†Îþ×Ò¤›Z2F.“{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷ž7'Žn»ƒDÀ’:U!Æd8ß´¼~çZ4F¨N¤Éíâb2!¨qØrŠv° º•ÒÚ·]§µ™®Ä/Ö#¿ýœ1ßÃuj @ŠBï" X廳·½¶ ÕÞ,ÐBfª“æè‰Xá’ù„É|„Û„ZmÂ-6á›p‹M¸E¦Ü"Óni·´Û„ZmÂ-6á›p‹M¸E¦Ü"Óni·´Û„ZmÂ-6á›p‹M¸E¦Ü"Óni1 6qÄá |HŒ¿q„ºEWÀÕ*"ZÝʺmF½%ú1Éãw·”a6øçL¤ÒXßç|0¿1!+ȭǺ³´»OóÓ©æÍ2V^¾~Šï¹›ø ë!ÞÊ8Žk.X’¹/0µê£)„žÐ½*ó¾ 6w þM>©~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ôzl€åcºÜ‰/y…Ó„Ò6 @¿~1V£RòÈÌXñ¥OY“lÍ'ãm÷˜‚+©É…œÜ—•h™„]‘ËŪpȳsIÚ¬CmЫ„_Ðáªm Ào gplÑÛ:x –Ród{›_µ¶S“4ëq EÒozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõ¬Än¦®WZ‚\È{(™ÅR7- ᚺÉ ,=ÙRÛ î8èy×VØínW‰âœ -ÇAIΆ¸cmAzµè»ÿaG)ÛséÕS2ò2áð‘m¢'ž&{o~—µ~d¢ÆC°Æ]X’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å!à„n‹ó عáÿÀ~r¶H2Þ³’Š#šµ`¨„¥içίHÇJê“ âDnÈó Ð._o=½¾'Éí<”)íÚ^C5õȆIõÇÅkþ@cXá\ITõä•â çÕœJTË7¯´¢ F¯†lÇ-Qòü¿lÇYŒÿ+¹€¢¦ån€aªHVø&ÌQ6[¹¸ˆ!%Ú·£aÃOúîaÞ=D3•p!ʸå\r®9W«UÀ‡*àC•p!ʸå\r®9W«UÀ‡*àC•p!ʸå\r®9W«U®w'´…¢ñ±½I\@ ¹Õv²›',§³Ê'‡Ð)Pa5û²Òä½úX÷·UóçÂ^÷ æwô#öBÀ@ŠÜ×·Ø3˰Z8E·KÕT©¢v7œTÕÑÏt[7@´°¦"diuGpùKËoÁ?±\(W=’˜Û²©4Ÿâ¿Wbqk²OÉ2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëòð`_ŒT Ã㻑Eªµ=>å8•a‡‘ÅË“}é!Çx¤{ø"£¢¶²› >À¦vh³7˜ô ²}CŠAÔŠÐù€¶à˜Ï8Êü÷™{Ä5œia§S¡(ÁÂwÙIQF ¸&4€Ñxo +'Z¢cH;4þ¢w6|EG‚”¦BS}˜ 7ÒC0Â> þ|÷@,!÷5U{µ³øKa×Åè¡Ñ ½PŽkMï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸6›Ú¨&äšG6Š—‘y˜‘ï‚HĉaâEùæª{].·N‡™sq²Ê¡T™:j|Ïmú¤aKàç)Î4”•GÓž2~¶·ËÈVÆ1ñ°Ãqwƒƒ ¦G~Õ”¿E)@ƒ(§È@ÌÉD&ìöoåЧs´ù> ãrèk¤èã¼fc{!:Mï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ìXIzV[Ea<ýn’TÑ&Ì©x.px[©p®ÜÂpœ˜‰,¢ ­!вÎÝ‚ÖÂzÎÈìr¬g`ÿD>ÚÖéºV¼õÙóìHë±¶~qy¼­ö`²n]ÒѼªY½ ­A ÿp2e‡XJT¢Ùóò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_‘1¢cQáßd);Ó,o¤‘ò&”Ø´Æ¥° ”‚ Ã8þlWÁÔÖ;ï:ø¿Ù¿LŒˆP®9 zßP;Ë †Þ¤U"Ä4&hûv\]+{c—3ö:¼KÅuœœâós€©ªÐÇ‘¬âHP+ø¦™ÃðÝ1Žf}ì„x5nwññ°ãçà-Ñvªíù&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI2ü¤™~RL¿)&_”“/ÊI—å$Ëò’eùI0Ž/ÔËa]"&XóQ›žé¨v9о ]ën…—Úû?ß}+3S±_Óg¦:ªF@ÓÀdCÄäŸ)H‹iæ1ŽÔ¸#ìÒ¨ž!Ñ, Ÿ*?â´óÛB Wbp4·é_^lqJ±ûžj‹Hð@ ¦ó¼Þh¯ÿÀ”éh(Ÿñ¶d„Æ3[Œ\v³4æðÿnÏwe^.÷œW¾§/}N^úœ½õ9{êr÷Ôåï©ËßS—¾§/}N^úœ½õ9{êr÷Ôåï©ËßS—¾§NÌ6¡ÏL¶;Mdít}Ñ?"ëy£¢$oyT¨ök¦,Ù™Ò¿^<õ\ʸ“RÉ[Ë‚ú"¢¶´Í¡§È HÐ1k{F!³=0 _µpo÷)è^¯’a_ÖùÒŸTøEN×ÊW„ò¸ÁHìÂÑÿ5xiÿÙ#Y7ÌzáA©ÅaL•{Ü 7E’Áq -1"†ð\H LH¡¼Ó(oÄ€´ÄŠÁq -1"†ð\H LH¡¼Ó(oÄ€´¬þ»wç;æøÍ©[æ“åߌ¥©ÆðKÖ9òèÊ|ÛmM ¹Šlˆd˜Ö¬#ÉÄàˆ)fÏ.ßÇÓ9µ‡Ò€2ßknEùsÏ_@uv÷ÈmüŒÿxpû& k=¼g%ÝëE·HÞìS+v+ë¿ó^X Äã½§ÏrBḀªÇ±¼TÔFv¯‹–nÕ„[™…ø!‹w>'\I4_·Ò­¼Óâ…›ÓTÚ©ñB͇iªmTø¡fôÕ6ª|P³aÚj›U>(Y°í3ä ×þ}íÒ !)½‚'C°ÍkŠ]Ú*Uqßn”£Œé\¸•¸êiw’´:hv£JÕ.J°g0ö@ÇP X¶rp÷x¥úðiÝç,%ÆŠoZ \«—Šß#)èÙ“Ìxø}XǦln÷ÉôÈ,йÄ'ØõhO[>N‰ˆ­Û!/²oªyäµi~¡YO6áQ:Mï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ï\Þ¸7½pozàÞõÁ½ëƒ{×÷® ìUïB=•‰LÂûˆ°Ì33jÇA ÓqjÖÆ>PžPÄ32Û®´ÉöÚjäÊç!B¬œ“™ݼùæ ÏE½S¾sEÀLéæÖ‚?‘µÇ!~ý… æßOΨȷ󙯆 Ñ Z )¤Ô?'–·ÊþÖ)Û@2+דãÞ JãBêb³\( gEˆm.ôs×z9ë½õÞŽzïG=w£ž»ÑÏ]èç®ôs×z9ë½õÞŽzïG=w£ž»ÑÏ]èç®ôs×z9ë½õÞŽzïG=w^ÓcúE®G´Ã«œÞò£púÁá–dê>7þa1-•m>û ín-ë’–þ/lž6+Ž72LCÜùÖû­¢\ ¢Ô"-ÎêD·-Øê¨Š“ªäÙ#Ô²'.·–Á¬¬’>„iîÁ‘˜™Rt{~†õ¶ŽDD¬G²”¬—öjž6b>d>ÐßÓF¸ôyyuB;ÖþÿñÅ`#ÿ–€­ÿþœ.ÑfáŽé‹ošÑ‹2ÔS#ÒÌžãÜÙø_{¯ ¢ãõ†Š®„î‚Ù¨©Œ¨§ñrm}†ñ¼h¹C¿ùÏër€^ÿñÅjw;¯ÚYƒ­£ L ±ê­©Y&@à§z&¸¬B!HÝw¶Q_‰€ò5‡·÷EÕ>^<@· u9²Z¾‘®óœV•!x›\*²”9Ð…4¦RüL§WéñÂkúxË~­Š£9ΞeBÏ.ù2VvüuBM·Í.q‰,ÙºOÀ8È`vªí¥M«¬T}Y gô¶Dà`¥Ó#5z&Æ•Psl˜¿‚¥‚ÌS3?HtÐvôn6©üQþ&)Ëç\ ¤\=¨„Ç8ö1û¸ÔœÇÒ¥:aP¨¤×\(0Ñ¡¸ƒÝ~«4t˜4.28ÒÎÅÙ׉¹o-IMÓuiæÝ^ßͺ¹då íE¯]7ëÜ%…«nÿ!UÉ|C…úr³wP=•Ñ ³UutxÐsóé`Ä… a”œN,ÿÔè’¯])Ñ&ÎÛiþ&/»Dwªþ,W³™§¢Y®„Oßp¢’Ìý'ˆ—ÅÃoµò½¢4¨mâRŽ„ì!¾n€¸Ewí´6ȶúîEµH5Lý)ÑSSçœõ=sK>=ràŸ)ç/D}³lŠC4°\Ö°•EûËd©ñ¹-ÑgboW§¨v*L„^ìÞ6Û N ‰xþKÖ)Ȳ3—­ˆ¹ñ嵈1Y`ºŠÉ¾9hîéÕÙ–%GF´\Ãôa£µóÃk¶;w^P““AÌ—šhamñ¿ å*Â9`¶-¸ê÷F@~yíJ/[Zå[ËßF²€2l£À'¿˜)¾é€Á&–…j—ÉÌ‹c»Þ$öçõL´ÇŠcEÎÆ?_©€KVÆ•íé#ž<)çn Üé+opñþˆ—-ÚÜ=d=í³U…L¶Ž=ªõkïKKÌÆ iµ0Íê´/Ö©‰ƒ"ã®Á¸ ôh*rAª0Ï›v²ZéÒ|/qf<í¯ìŸÌ¿èö~6 ¨!5;”bâK_DÜ‚.Jr5Æô4 ¯‡Ð£'û űq‚[±ð‚ ¨\ÃgxûÂÎ4˜ŠÒ¦‡C±T ¨ŠSgý“™‚w8[’ùmM+»|%b2ušNh²=¹÷ÇgïAá(îod Íñß» @o:ÉQy¿±§!÷ÒÀ%λü飾 ðx7zw˜Žâme¾*¼ÇÚÅŠpæeuNý7Ýéý|ž±+2w¯·bU»m{eŠù KTUæè`Qp[×»#4öÿþ–r7Î?¼&µ øÛÎ`«4à9@³ˆ7¿Üìï{‰Y;¼µz sŽìQ“g<:} d˜5åê ¦Èù_+™ï´’¯ëo÷§às=µøÙ¼Œ¨/y·A,Q¤’H.>Ye£™ èhg:]áeÌ ËÕ@çPu^=PO¥ µlúþpªXӥ͞΀±3¶°#9´!:ã—Ÿ{ž¼A“L¤tk‹Ù]QÝ¢dYUCaÛ¥s0Öë˜õîæ?ÿ Se2yétgÀWÏa+ –üã_,F#]ÙÅ×ÔàlŠýJaNÚyÀ,H9|çA¹Þ4]-aýþ`xâÒùId(†Ð3 ^ ŽY­¤$BjøE•€¡A^ #;ãd¬|YcôCjÏÈŸ]`oÈÌo5ŸD…¡6¿Pò’G]O'÷wŠÕ)GP¬.ØK[?€ÙM½/bÙŒh2)ë^õn@ ïZô¤ ÏX»‹ ËæqÑOülm, å튅H°ƒðÿ£ßŒ“ (÷·+ã;·XuÞ#Õ¤sªÓDôNl–8»[N`ÆB†ELOûfKÇ’@¥z€Énõ•%¸«9K¾Ó­±®PåP&ÓG‡YÁ—kø¶èúZ”ñ…b®Ûý¸9 "“@K§ ÅXÉ­̆"A_ýWm¡‡ˆÕÌ·Z 68¹÷'úΞh“‰ÆºÁäbPKqŒÖšj¥e اUI<„Ö “yk•{› uÀÜ'óÈÄ,¿¸¹¥Qv}àà:„ÄŸ*¾Ù~¼uÜN $ùPEðFËõã®âqq'Ê‚/‚6_¯wˆ‰>T|²ýx븜@Iò’(õ Ó„v [ræ)øYþCãü<`"„ 4à@’ªÊ¶1õ& ì&z·&¼(nø#Õ„ëÌEXrÄGĺ­ÔGÁ±(ˆ£µ µ™;g™ü¦Xª³”Ô™vÎpü£éß:*AÆî`Y±!Ãß ÅâÛɺ;Ë× ‹S:Ûpßütbßr§ô@þ¼znBK2]di€Ô2[¯íû;GGÃû>„õlcy1<ÕBÿië5‡æ‹Ì‚î’¯›ž±ù™¥»)7‰A½þÐè»"úK+¥7‡YBš„?°ÓmmbÛ±ÔÜÀÿòÇ`*Èú ¬"g/çºý·É¸³™MüŸNÑHÃoE¡«<¤KDþÐC—Ø^ªMªŒ™~¢åŒ]ÏíÃe§2´½@Qš}·çj®‚ßS[Æ:ïÚ))¿æÇx§—Ä’USµÌ-xç~ÒÓ`ôŸàá«:IGÌ…-×0,=·cüw“&Ùj;°èLîЋ5™Ïšß&ĤPà´DŸº92l+·Qý­‰:sº)MÅPഠʨ¸s àÐÞµ²M¶ÛõN±T9ÎFz]<Íe¤y¾ ˆ}"d#ä| >@}{û¢RV'2>F<›4JŠ–©Å6þÁñüà(Tôû?§yQéyƒß„Ùq5ŠØ¾åýoèFsreúø¹[Ë}3^Õ%QÑ’µî<ŒÄŽCÝKWHd Š»•Ç{¾ÕÙo={ÂXÄüä’u‰µ *Òä69Ä!:œ)ÛNÄÞP$ºÚ”ÅOߣ-¡Ê*‹½ÏãÈ þoäZMnyL?´¨÷ò=óÿæ/÷dÝú‚¥!öFÿ1;q“÷"{ãQŽÃú׈#z¢+PÛ90¼ÜµØs^ÒüÃ÷@Â»î ¥Ι¨à¤¬,TZ YH{‘i 5ƒÒήÚ•9¡wô0ÓŒÝ<ÿfX¾FÀ·@¹&¬ÑPu?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?±U×Q€÷u?¯kzN*îäĽMÜŒÿønÌuOãõÙ=PgtÐ&Í åzA‡Oóãòj'öUU8¢‚¾]`‡4é’oúÀèâÙ‰¯3¦9•Ö>Ûî{‘ôA‘ ¥rF4ò®¤µ.­ùd%§Z$*­B9ãù- Jô‘"Æ8×–C´ò¹³ÀÝxe•qVd·ÆKS*ã=åa:ÿH÷ã§³@ &×ÌiŠ›Ä~ŠçÂìVsU |a i0»v¢IÎ"÷ïü6¾~cÑ?èJ¯›É '®±HÍ+ÈŒŸ r’ÈgßáâUË¥‹ü°!8MeÇ]CD3%LÝž§œyŽI~ËË8@¯iP øŠ¿äšã§k Z/sÁçÆ¤==ø‹§e Ô kÔ ÷îæŸmD: '¿,QSú•¥Z- •²È¹ y‘ÞÕi¡GwéÙ1¼´Usëúí‡:ˆ»OçÆïlº¯7hÓü1y§ Ö—E#5Þ›L,…êœÅ¸®!MYoeÁæ#‚}r?Ùº­Ö·‡WÃ+ì ’§~XAÈû›ïHWÉ_±_w­íÊâ’«c܇ôoʇý€ò–<ÇW;zï'ô…¨Z*=¤UMØ,Ú-Ò[”V½(ìì°—CxøJd猾,ÇŸv¶kxi»Ü%¦C±¥åçò¬Ž¸"²´ý?ô{Ð×åsjWfŒ8Ë=¡+“ÕÙ$^ÄÝØ!ˆADÝ‹äP0Í»÷œÄLêÄG D¿G³ÃÊÛO¯Þ“1D7špø¶¹ªèé9r§™áXÛ6ôo6ë²ê³UÿÓ,ò0î·€ˆ¸ˆI¹±2äÁôMÆ#%=êøá#][+N«µ*äd_W¹´®jm`®· ~©l†UNJïgŒÖ~†r@¢šüÿñŽ›u ì³€°) nÈÎb%Q­Ïqd°u‰MP2ºgÑ•‘5¤yà} ÄÇ«¯ý·1„Š «ªÆá6O" «k¨µH¯#§½õA,²%}g ‰Ö+UeʆláÌýÓm7•Òg×§ÜOÓ6o-U_‡T,С&X2ànY9$›iþÀµóºîxë}WLFöa$Ÿ‚Øm>ÅPWZz€sò•^®Õ ]Ôoum"çWRÇÄa@s"[Ø©næKùQ ‰¾Tbëk».}P˜è\aå—Çó¯|zNŸõk90”Óšühí5ß «„m½c–ûDŽôÛ( ø¾"E‰<{îi?ã[.†°Lcõâ¥"yE­“nBŒGL¼¨ ¼ø—6µ:Ïã£|¥ï¬ YËöjó7¦ µà£5p'üÜë§ì”‡ØØò¶k¬0ÜyKÀ±cT£ŠJ¯S¨ÎníQá´g´WD5RFÛ\óñÇShm>fmMí&(è£L3‰¸]ó[ØZô¬$Ø:Û«‡ˆ¢Æ}Æ€Pt`ÿº5ù›;m|™Ó`@NºÉÃßSBS×CXÙôé ÖwEgÜRdð–ËÑ ÁÇÔ×ë/î*JŠÓ“Y}b4õØ:5¯oRXtcö»_ øPÓë]ìFPBþÙHm’"Ä e¥mNG×[V•¼€ñ=” µá>tÒ¡ñ°ã­“å«ð™lÐíDf¤¶±Ý%†¸ˆ‰[$pNÕÙˆ˜Ô‹í?©ôŸøv¶^?‚vÌa’YâÂμÝÅ’'(½ýn£kËkÌ3Ç>‚Ï]ÿÿ‡ö¤=t/­wñÐoüCDìc¸ÑTYQ‰>luÒ‡ñNÉAWpDMT×Z>¦Á.¸.ÞGN^:ªx7©Uã¾ògÓ»P:« KÂŽ`¾òèOBÀ¿7ϪÊÉ®ün6%‹3A ×Êo…=î¬R|¡š)lÉÿ { Q…à Õtáá±­o‰qÎæ‰n³Ap Y1ö³§™ò ²Bazk}û>Œw™©(wæc ¥9ÓÒÒbŸ‘©M*4»µ–UžUÉQZsi8GÞêî€ÈŠÁ6­bÝP4¿€$Â7Ø[2Œ3™Feã]@ù@Ø—SÁ»Y¦+ŠêœÄ€Uù’¸¹H ˆý WEÒ>‘ãõ7tå´³9 «~Ö…‹!ä˜LDãj¬¼Ò±ÚÇóoÎá+s3úô°3cI277ÒFéÔ‘„µ–ú&S®’Ì"’9ؼ©·H8ˆEâ="Ñp:T‰ùŒ Þ>¹ñ®—Æ7–SXÀéô­˜ç¶ðׯT¿Y4ß÷`ä³#MÌc^;æ7_÷î$Âg艤›ÉuŸ·¢‚ YôJËiIï|<Òæ+Ì­¦9…÷AqåÄf-“ýëÂø¼:Ç(! ×M.w8IEGÔ¦3ߺ\î>J^Væ±¾,2Äxvê£Ð6Þ»SCEL%2Ù•~ +í?X«ˆ "©É]`ø\`€B›£à–À4Έ“.Ê7“Â^ ö¶á9&W¾‡wþcÍ£Z·—Ó6.f蘸íPדó2DŽá¤|ÈîD+BʼnƒBX”éÑá.È´èt…0žñà󉼪?lÇ<CÈ®ï'íøKÿ/É%žÝÂe¢#S6Þä#"D&ŠÐñ†WS[Ñ·œõ| `ž$‚ÊÃO¬‚Fûbò[ÙÝ dF°ê(!îÈ*6MŒ2›Â‹]cŒÃPJ69‘ÔÏ™Dzr{ódþ<ëè~N ™ø¼XWÇÈþì°únHkÌB‡Ãz³9a[wCÖ¡ãZm£·³”\óž¢hU¬¨x‘Výs¶wœú0fN˜OMÌ)õ´ …\ù³©UR…⋌¡`¯7i¤\ZéíÊRˆ4Ì%D™ƒ®±p mÔíÚЙÆÈžc;ª'ðã]¨É3ÌÀX{CÄÛ6|ˆ,ª2Óé\f!‹j±öºÙÊGë3OƦˆkæïýrÖÑiÒHî%´‡ ¦â€ú„d¤¥—«Z´fêîAS¦ÆKùMùŸ¶»îå²SZ}º#ÀeYO)PhÇí]gz׉ƒ‡’™ýJŸB®¸†èkÀo¬=Fe¬?€$7¥zp,Ö·T½^¬S;™M‡^Sß?]'6[Žƒ# +¸Ë†¦³ÄŽÕŸÌÖlê¤CmÁƽ+Iˆk¬øècŠãùÿDQ2Ø¿^OdtŽ´^ŽsOÒf˜û#CV§E[†sÀô®†„Á=žCLþ4§œÞÝ,{™˜l)„£`¬$ð†„½øˆ8K„ÿ3µ­æEì.×;cÒQÜ´«¤°¾­n™(&¼¾ÞˆdÀxTzÉ´|4>*1å=E”d’J\AŸ~àŒ¨ê1ò~Ï}Höñ°=©=ø›¶kŠ…n-ØEÞŽ¨šR絊 óœ—ò͈4!.¸ìè2¼‘áôÔ¼›”ÆlKör~+ ©ÚïfáÆ¬díc‰Ìjób0—œ_Æ=Éa­¥Ö3Õ&‰@r˜'[ד4V/æÓWS8?øç&¹¶Ë´f2·õ“«oP¼a#úä#ýB•+ÿ^y?e=-4›–±¼5\²†ü;ÈK¶þ¯UûbßËQa+¨”G‹š73v˜‡”ÀªPáe,äi9ƒçê0Ãv{¬âs˜íD™a{eàTÝj—•”H+¶Ÿ,w;³âÃð ]ŠPð°»ÒìHGœçTe=Ñ-ü@uãQV¡÷ôºËL(š9…³(>i´$wvíkžìF£ŒøáVâÊ*3IÀ:=´wŒ±Ž§Þã–vö”D(÷íÖ*#ÙŒÈZøs©ö½2“‘öBu^—+’ÊО(ëhêØ—ûíU¾ð/z–›¶š±‡Äkx-CÖ vU‹ÍS"XNI¢Š÷Ó ý³NOÅVj:û<¬ÇìZŽÃxIýÜç«Uç-*ÃT† »Ibij‹<0ÁŠ“õQçe=fªjV ó®²~ ¼Ù.“:ALò"Õu îÑРÉóÚÅ™› ¦öÿ[!èúP™_AzÌ&䨆.~Û¡5À_‡ÿ8Úº'ªÕíó‰’Ú5z–CwÄá ¶éZƒòá@»™óÕ¥þ¦­"ê µA\Øî¹”VÓ¨YµÅ:Š>Úè·¥õmÁUü†Òê¼þê"—–âÓrQþ¡¯ %*ü,;h!–Ú ÍC,·DX»k»\ë{¦“+ç˜À˜¯õ7å  ~>}8–2Ái17ç7mdh¡z(n|w/Da|GsBSØ=+´¼&`©Ì—ùÎHo [åýRÿÀCB¤$ÈXÁ“‹»³¤Ííë2áµa\–I˜-HHÃïÖñ?ÍðÊÚâ{Áµ³sN“VPq$í"Mç^+ÂÉQñãk @„CÎÀÕ$ò%q&Ážâ€ai1™òFäá@*ÓÖ3Æ´ò´ Þ4ú}qj âÐ犓tÀúÅäú.ÑuÒ¡ Ö Í_ŠÜU{L“W–²pZÞku¤×sÇÛC&¡JQDº~òÃTP¢Ü²ê„p±{Í+µ0²Èy9 ‚ äÌ ˆ†6/ä¯öôw8&yÖvº°‰wëþòΙ„ÝšØ<|vÑäȪÚYÞÕþ”ß¹&NvÓžÏ]úk6‚3ˆrqÿðúˆlGbS$_I=’Ä—-è€CÎ=ÁXו§rW’{ùd,f A±$wƒp‰] ¶62Éà¹i;MrTQ—;ïN Å€`$ÂÜÿÒ“éÀ%ƒÌ2˜‡6ÐŽ~LîmÈØÎ-!%cT§VÛzVeƒN>”¹2ΫÝEÓÇðç'k’¥ÿ±~üš·g<Ê#`ã-¬Jc}§Èå<$ÍH”ÀWR>/Ð¥q¾øl!†Ûh÷œ&÷¡±_ÐŒÆèNª;@9=¸ ßV%Fú±*7Õ‰Q¾¬JõbTo«£}X•êĨßV%Fú±*7Õ‰Q¾¬JõbTo«£}X•êĨßV%Fú±*7Õ‰Q¾¬JõbTo«£}X•êĨ㾭SaDÛÚÌü£`HüÐ)þìöP_«Õ4] )§—ñ¨+^`;,°“ŸíÄBlèpí¢ìWâ‰0Cå›ýä@‰hz¬Õ±²GYS•Æínd¦_ÊðÇ£é±ÛÝ“U(h!cý*wG™,ñ¡_¨Ø!… _’yi¼(Uómm'ÜyU¦ô¥_MséúÀõèÆ×íÀ–Æ3ɉ!†¶“™@^"l^™®ÿ+Bؤ’@ÙÙ2¾9Š/_}ûÏÈÙÉúx’úˆûîQ‹±·Ðû ¢8nvBܶ…‘÷wÿMßú“Íîw¦:_p«ÌÜ"䘭 Á‚–êê»T‘èQmÀRDPA¯ò)fÅAëÙ™ÇuC”lršúÜó=ó<ë-O±=¦Î7à’Ùû¿6A‘B±T>Ã{¨ÀŠ©2ÇÿÑÀ»2‚µw7®¸(xË+Ïh;󤹨ñ„­ü28*¼ìÁd| øÚMDIš¢¤ìNñÀ¯¥Èø|,ÿU4{ÃŽtþ_”%°0 'ÿt•y–¹áŠºsN½N̤åaa/ä5A;dñèöõÞºï& [o`¬5ûò¿~V'-ÎÑøº¯RWDÎ5‘Às:ÏŽÝ”¼Œ8ä½dn+3çܸøþ½èÈùÓì`ãï²Öò¢·€aÇTŠ÷¾¡aZ:2 ÄóZl*¼pƒ÷fÁ7¾’÷ÀÁR¢ÃÔpZxÙ°‡V~ŒÚ°VUJS9\ÒĹJëãò”ÇŠ|ö=æ®kŸ³¼œJ0¹ˆ” ZãóC»~ 7uÖ†Lˆá¯8(ü”Ô¡Ý‹ªŸ«R µy8ÿ³öãq¼mKFTœîÊT°ùcè1„„¯¯ïOŠ1ÖJ#(†ÿ]ÉŒ™ÊÑ~s_Þ]£\DÑÄFb™€]¦¾4Ó‰7Ãcꤰ0•˜ôѸÞÌákJËA¬ËÏ]/É["%Òh~“båGb3˜ ¿J…¾X\á ºïíø6¨lrŽo@ÂOØ0ùçd¹ÍÐŽ–Û(¡7ì‘;öd­4T3pǾ)o÷ÒØ ®ËTtO,¡ŒV&®…W):ØÁˆ)ª˜†ÞÿÖ—œ‡ÝŒŠqë]&²bEÛv‰’kÈlpoˆ&t²·³h/ÍIÞ‰ki¨tv;„RŽKh¼SÚ%¤Ê‚›j¨Œdè• ¿–*{Ð>Û5‹!ûŒÞ#³²'Øùn±&⽫ ÷»ôKÕN^'úMl}:=óOøåžo4¦btÍlÉ€öõäv 66·ÿq}6þí¯ öoq4®x+Âò¤E½Ë´úïê1IFÿaÔuh\þÊÉòÕ·rŸX)FöŒŒÓÃY_4t à¸;·@šö»@>8f…©¦Ë„O¦Êk*h[†¡}Ÿ[¯V”Ys~`Wi^Gq.]L6™ÆÏ×0µêëÛÆ÷ާ°IåXÃ7$ _³³¿W£|¬EepVWxF¾iâ¹C[n€KÿÆþi4;®‹ïÃê“z[Ò\˜pÜâÕÚžyå[PX´¦ #M\}qX/­ûcµÜ°üwÚ7ÊDŽž±Ð†üz<²ÚÚŒSh"ý¯Nyµ(¿ý+¯Hc ¯–‚bƒÕ¸Åz2DG÷¡2í‰E`ÅÍÌ„W¸FykûWq'Y€æéÌÓÍøx_jù¨™ØTÂþ< 0³:x#™ÿ‰épŽÏL“•`4û€ n"$©àB–e9 Å9ÎÛ§©~G›F=‰ÈáoÌ’]nî)¹ºÔûó®:ãºÒììL#ÿL¶fÉF"*,±‘, )Y~Ö ýk>T¹œºâmÎó2õ'îmJ9 ƒ×¶3™Wa,i°Æ²Ïªóýdo³ÀhÛÿõ¦ÿ7Ö¨…©Ül¡•WóÝP9Þà+À²ÎcRƲ«‚ÌeÁjË“•tòÅÈ»<ÏtóQb5‹Û¹ÚO§Éñ$ˆSSVé' •4p©è5Ma}A‹Ž»Ï媷9/\Gt?ž1ª£Íü1 ŸÕ‰m{†ªµ/aÛBÍ»høª3¿TÈCTé€þ™–õ(T|{¨>èØð¯Å²¬À6*yu„Ì ŒvB?±ÁsÖ­Éò—²ÁE}+ìL¬¶(´£UÌ‹•Y´]B˜4æ¼ ¸ú°Æú*$ÅTiÒˆ¨þÂ)×_aL‰fªºp¿µå_î_)G¨M{Îî¥zÃfê âh¡®S ¿Bñ5üÊú‹Œ[o ÅŠkSr3ð²*À²SŸó®6äÇwQ^‰yÃï§\8ÒPéA)W ©°G¬Èt?{Ïèâ\«-ÊÿZ÷Ï$ÁrÒB ~AƒÍÔõ¹û¹óSz“®}SÓ}ÍtÀmZјõµ˜ë ‹íŒ´9!4®·l§ßVÆŽÀþÍÆ$ÛrÓ6–2}Ýš±ÄÒ¿nM¼#©¾ÄRn·Ê ò?'Yö³„ýF²%”m»d¾[‘ù”ˆ0V~ rΓ«ŸeKñ÷l[&lN9šŠðŸ‡f£È jL㞤é!p¤ÏÜä‹6¢Á½1´û ºÿ,â0%&³èÍòé$·•T¤¢ÿé"­[Ÿ;tú¾™¸ ó‹¥¾œÌí}äËêËDÔ†Èür­èº#í$#N/”ø‘8qæa'2\ ¿GC§-‹sY_رTXïg.¦i=?†R0H¸ìA8ªÐõ®™ØòÀš·"ÿé]eŽ";ûªð0é{LæIŸ8õwÕ‹ž¸<(öP00ñùZ¥öG¯lÄÉcõ)*σ=m‚ú]ÜI3»Ÿ ŽHâýðþÍbêf9¯‰n倾ˆÓî¦ðj{z“RéB…„Õ X€ ùßôXyJÐÿ3o“ì.‘èêECä@é> üòKÿfMdšÜøåoa½ùËÝêÕí˜ÞoË 0îvû—ÍNyΪz4œ­ò£çBGæÁÈSê¡ÿ§Â)hÿÑR²1`»ÙyÜõîraìLÇ@–1HÕÆ§Ztvݶ °8äüsÅÕõ¾®SñY¡œ¢_A’ÍjWæÑK†ì¹³lûÝüÊL\ÉjÔf+ëýŠç%›y(eÑ$ tâêd^nÇYc3¼ã=ùõZ­[Û"rñúm@C(!Ý_ä¡ }%»„¼pÿ;ª’2HuÝ&e2ÚpÆÌHpì’·QíbÝHl†U]¥Å0ScKêêÁ«š5¡nb‰a½“k† ×Q)?°¯ÜÜéŠÌ»ºs±ýb˾oŽ¡3*ûÖ]e“ X‡Õƒ¨QtÇê‘\S7O÷AÓ±Ô„¡u*P 'Ê ¾Ö”ªÔÜÚfwCKlü¬»‘o¸båÖÆ Écgd”†˜¦»»6Ô™™È¢nœž!háTÅ­Û¤PzÚ‚_«.Ÿ^ ·€€ÙKJ—“¹ÝwÀÄZÖõ%ÍFhRH,)¦u( ºº£Ü¦3D­±˜W¶µ [¤£‡k#ç»ûÓ6BÞ×V„–?£gˆ“tšÙEN½épTË4Áë÷—×qºNž¬ïz<ŠJX…ý/ì½â¯chÝïÔ¾Ä÷ “ß1a›g¹œìl è¨Êa|³8ñÿ°I>×PR@107é8yÒè’AP*BjÅSÃcAo¸ì¯äIŸä®-j]¢¸cLZ1*s©f¥à óÀžö n“<ÕeðsÝwS}q b~›š´;‰ó¬Ïå¹›ý-yümRãæ4܃ûHE\­œuÃR•fcˆÒ'Á¿’ȶ >Lò£Dµ[æÙÔÆœQmš ª…Uš÷Ñž+Áæ¯ ‰žâ”ʪ8¹À…Ž™ÖBå”U ß<4Ó?zÑè-w2[´©úUžì1žàŒÁÞF{Ÿ)BÂWjuj˧Ñ-ÊÿSÊQÿúã3L}wüðáL}Š×•ánÌìY¾Ç±.-@À>øW;9e¸Ï¼+i}1Ît•®)WOMýÑ×IÃ1.N6yÎÑÏ%5ÍI˜þ{¼µVæ aØñ0N©òùÙ@¤ g¢Í­èÖßFäù¡ü§2{ôtcÝV•›%¸þktŸ„~¨ÉíCž¨Ôòï¹qci4ñ@x'F»·¡1"f dØ$gÌ'È'&¹¦ƒDi>Õ&Ý&áU`ŸQyîä6î%ùþõKÕe&Üát!ÊwJÿœ{, wƒ6¸aW*åYóã¸á÷ü ]~‡Ò´â=É*ø¤ ÿ¡@ÙìJÙ’Ö¤ÃÝœ¨&u#2b09ÌNt ľ®»é@'~MõvâµhUåö¤€'šŒTe=nÚpã6Ñr†ÁFØ¢nÆftþZ÷øy‹£¤¢wçAòÖ×$I";(£Ô™ÑI¡Ñ}Šr@ý}2›Þ­ð{t*æ9Î]Å>Ž©l”iQ[*ÝíXáYâ”ÉqÏÙ º^x¥b¸=õ–ZŠ¡*¯¯ââoMÌ]žg#W j"ÉÅT<0•IÈs)å)»#HÕiS§õoŠ?éBÇ`Ÿ¬Ž÷·s’ÈqðÜSÂ#A³=Xz ÆŠOúò¡ê8Ûˆ‰}"ÇE¤²µíÛX°ä·{¿åë®5‘ŒiBlgð)B œÎ¦L¯†ü¶6mÐð±©On¨2ËõÄÚs~HSo³ü"Š÷YÓp:Lág}Ývøõw1¡ÒìN³8÷wÁšpá«X²Ù3ž½ øÂÄ6Õ·ñ®#— Ÿ¥.ì°¢û4o4­žÀp)/ðrÎS #<'be¡Ç¯ïïîXÅ•éÌÂW#Ûzh¦ìŸ´χc¬FسŸœæL°Àêe3Îcé¾(+ñE ôð1Y£´Òß¾—òò¤À/°øü®iŸyQTÀv»Y4ÙÃ!Ð-û¶V“vXÞ®XÌ÷å†pn&RîR#šÊ®­¼üÆ:¢‘HµÕXC¤þ—}·ìn‘¡ßjé‰ßÞY]²CàÚÓ šl±ÌèêÑ.%¤êƦ_ÿ€Û ë—íµXö²4ºY¢¹Wþ%‚:ʃT¦n‹}âjõ¿Zkå q\/ÞË4¨{/çàŒÜëål± gâLú„²BÐs ~{¶PŒt…å!Ö6 †»âuóÕkXjÅ(JßCëý—»Ì¹æÁB¹ÒŸW¥¨`è%>|Hi‹"›èt…œ•/;͇¿ñSØ t©Ï!DˆÌí«¢v—Š^ã>>ÈÅ5øw§k*cösžŠ·=»ùÒuž]rAÞCS»*óA9úØ/°zå'ä¹ ‘ƒ—Ùi‰-Œ2¥1áD6êeàg¾áâì¨5’ÁXÀØ#;r,~%8's—1ÑØ${õ_aêPvƒ¤{Âä•;8 õ¥16ênº>ëÔ!ŠØ£ƒÏÚ¥eµCüþoËå¡ÔsR´ì0¨±öVl´©ñ œ„Íœ/÷`è”3"e™;É!zñû¿øxŒ5áË•F„2tf±E¢¡Á©™ { X2nsÿÎ(ÅÖFàGøí­HÖhM+°Ü2È9¥¯¸æØëR‹}ZЮ³³¼ #Ø ¹h¶ â?=á¦bRnY‚Hèíûü{AQëx2:Źökšè4¦/;¡W̨ 5¦k‰Š w½D0ÿ8Úºy@„üÀçºX6%ñM†ò"°µc­R¢#<èn¯V„òîA[A!í ú& ÉDµà²mI;,aëðë|=g’ËBísê_íÝ¡Sª¬C>&s*¤'{º‚’ !§Îڃؖ»´”˜•Cÿ]•윣ƒdy¦dÝ0V 0Åg͸`b“hJŸ›§µ‰½€1xT›ó¤O*;Ú¼ÑÜ*%b2;á„áÀ_`¬3õ"힃øø¯‚ã?ôÂå!9éQXœóló€ÀçÛK6ÓØç±ª³@d˨boƒ‚3R6¿~˜å¼Ï™ó>gÌùŸ3æ|Ï™ó>gÌùŸ3æ|Ï™ó>gÌùŸ3æ|Ï™ó>gÌùŸ3æ|Ï™ó>gÌùŸ3æ|Ï™ó>gÌùŸŠJ¸Ö„#(ÿð–">ð y¬¯#šH<$Ò¦´ô—ýa¦·+¾F‹{îL«ÿcº¡ravåxùU {7×ýýI·“ØHͤ PœÇF/BÞÉJ½“ýÖ>jÿË„^¦E¬òoƒ‡(ür0…ãMaU+D¨žz2•Ž|û—5îJ>r–šŠ Иx]et‡\DüZùÛƒÏÖ'Çã¨Í°¬Gí“1ÍÜJ ùûøXîÑoªÛK  `KxÂìÁàËí9XuxÕRâ€MZwŒ¹ó먓s¶…¼Ü‰oH‡¼DöB,ä+P¯ÕÎ$ xXBÄÊ¡KCÉOWD_BDx‹A9ñ¸\Áó·R‡ü’ÕM×R¨ÁÖ?sâ oôûNi碲îlºO³ò—ËF‹TSe²e+Iˆÿ¥Oö [ðLÒ{Ðu1Øãbù¯ˆÇn³‘‡¤x\ëóNÓ ‘a2ʤ²þÉ¢_²Î`BºúXháï~bÌ.»“Ę|XÀÔz¶ø×WLŠÅÛ«îß™Ÿêzæ!(øø§ØºZwñ².©ÄÉÉË…6椃4ú¶Ñ>äB’@5ÜütYÎìê®Mäޝ7;[?¶Ö‹›F¼H÷—‚å>ò7Âÿ*u-ž_ÌÛñ +í*F“è~ªÃÜ‚3 1Ûšhò(•—²zO’™–ZÒJ”`¹ô:_GŸÚÜ |æÎ1˜ÃT÷E2¦g˧C+?~pI»=…‚›èž'QùAKêú‚úy‡A‘5TFÿ^~ûäÕ©Å÷” a®$í#ƒ lØŸ(·ªöÂGßD£Òíô“\­ÇNi ¿B2àzz·šÍ*Í+ÂÌjæ_‡j|å Y (ÖiZïk%®J™Ý®k¬Næ>$`ó êI³p2†…út9¿ÿ÷©:íö0`’­eЭyâ7Š®¸ˆ½fÒRØ ;‚DŽ2>´­:å2ïòbb™2xñ!}*%í‰+B YfÒĉJåa­ˆzÂ2{À/{J’ÂuN¨Ëw©É½ö™ß9ìwØã¡—ã(\ݳ_L£*õ{²A¤YåéÑ‘ (Å"S…†ïRÅ<Ÿm™Ó£Ÿã™y\×ݦØ;«È÷Q"\ÕâUÚ9®À@6_)¢VðDÌ`ºDäÇÊw¼›Ž2ðàP’/¡lf{ÉâÚé5}(cŸ" ä©ìù3ü(ùeú6ÕL2M{!z‰µlòn àOaä[ÕÇ îé‹ÓÀ†ÌßðƒÕCÝtà-ñ¢È«ýÒ•’®Íl¼?zÚ‰ç=V4ŠYÏ £ƒÇ2¶`çZ?ËO3pR2$L€ˆÁ,5Z vk¸c0FûÛºÎ&7H¥ˆåýºOë ê3¶7°^Z»Ç–Š¿ÃÊ;Xªÿ&8½@@•œæÊ'Å ÝUàûçIË€ †Z¹ËFƒßÛ×cŒAèSÐÆAÑý¥œ/§(À1ÏáàÏ‹¡7Ï*êKÈ.ÙC««c!:½æÙoƒ Ñ>DßÃ’H¶ÈJ¡?u;/lJ§Sw°¢3ŸþçÍRRšź¼b¶â@a!DeT®5”±¦¾©Z–eÒ=#”›ICúM£ÛäÍ}Î[,ÏÆSË[fr‘‡ K4üjßð.> ćàÁáñ|w]v½Ø.Øš?á`ìfN´ƒõ³7sÆB=OvãyëîÁ h˜hðîKíâ‘Áµ‰ï¼ÂþÒ0æT|za…H*…u tòs\,y»¶ú&€%RrYý›mpK?MÕÿZßsC„C"”ä}ƒâw‰Æ¾³õ×øÆpys!‚›3ß{ÈÒéÀŽàÓ”¼"7þ¯"”@>à€*Šƒ¢T’ØrÓæ•¢?“Ð0ftÔ` 9C\¨Òܾ^ÎÖ¤ ?»!“Æ\À >)¯‰«‰ “…›TÚ9öâêÏÇpì@ºtÛÎFBÊP}ý›$IFn*x+ð—‹·ø2+Ø^Q ç3HOÏž Nªpò씂žóFŸkaˆ£[~ÝžÌźåMÿFMg@3f¡²EåiÎ Xn–û޲òŒœ« oÙ/G‰Ñ­_œËÞ½ŒAÔ (iöJX0YTA&ë±ø ³vY¯-ü!×v¡cÆ&÷I[º=ãØ%¶—6Ÿš•ò¶¥«ä„1ì^A/7ßF3'ŽÖŒw†ð&í|~ý¥¬5>Ý,ÓwVK7«!ï,LG>V\kIIo£WÓn0¯1G­jæ‡%ÃÅLMxXç´± ¿Ès+؉›5tCëVh#›  èõ¹ý1¹ÉÃmžn2âÕüZhylÀ±Æå®6®îþto±ìùíI3yéÅíÈ-“Ç38íì8÷bÀ º?.9»ÑS¥¾|ÆÖ-õÈ‘ÿÜ@2*>áaK5£ƒníc:~€Œ]‡€%ÇY%ðçT¾jZÑÒWÊ¾äº ùd¬ˆ¹@©o†{ÄOƒ+ n’l)û+ˆŽð%ÍVÙ¬PèÌ2~öÙ ®ƒç°†ÊÈ/’ ~^Ìù#q׋¥®ige*¬"ßÿùd¼#󌎕J<E¯&JÇgw¬ª—Zè6 w¯ á›O42îJe©HˆËÁ€áIÈ u/ c>;óÛ3B_7 …ÃT}œ›äË]Q è'L%ènÖø áÙ˜<ŠöÇÛwÁõû($HäÂØ|]Ó2+Àu_ö§¢ìúbûä•Ϧõ½|ìW:ðÏ0Ž”*➟¾Hü¯I7ɯ;XhÝO/7¡zç-;_ÖÚ†»-•—ì,¢!í”'r=„‚šë &ˆž¥sŠºVŒ¥²ëxâjßýLú“ ìYw™âä¥I]ò •Ú¸Ìh³¡Ùx8dѯàË Eu-ökæß2Òk¿À í Z?2“ónîÓà#JJ|'(SK/W7ñ±jìÆ;? ,8Px¾/èÑ@ÚÕ€§göRÖܪ…îÓ+D€–ÁÃæN”Dôvp\û焊bɋȑïÍ 5íçCÀcIœÖS—‚§ldI»n“ÜfstMDì.„vEùýåïo‰ó“0V‚q@ûâtí»²m±‹¬Ô®}|P`jRŠ<òþËÔiJ|ˆ‘7œÆ¼ Ê‘mˆdBEˆŒ×HåíÙ ÒŸN´ èÆÚX&Úµ`*ž`Y¡àŽ‘Žå#°S¶+ÆHêÄeÛo6›*ƒ1´4 ïB×ãU†¸çÜ峊Lw&êQÙÍž£ Ɔß„X=@Ì$h/«œC—¶!AS ±ãDÁÖ»Ô)Ýðˆ…4lˆÐ‘ZÜÅ@âçïñ½Ô…(&‘âlœ,ßã-à3ŽÖz ¤Äƒ£,33x(*”œúï¦càòUÔôCWöXpr—2ö¶”âDÿ¹Û ­Xì±6bêÞ'e"ÎÄ Qš¸"´IOñxÿ ½7rhÀÎwËnª×h*‰;P’»õ'ÍÅIY2Ãw¯º— E¨–Œ‹]Ëöy££xõÊÆÄ¤ÂêðœöV&ô‚4 zïžRD¤‰òPUšxF¢6ÒYx˜Úí&Àð2¯ e1Ë°Ò ñŒyª`?‘º”â¿Æ\³;u¶Å”Þ¤ˆWb—a¾©óNäOŽˆÒ0:"ƒ×„õ|ÿµâŸ´)¤åP^‹U’/Nƪ°È.øy©t¢Æ½ÿ1‹Ã¬v JdÕŒ0Ùàö¢±f¯fs {ñ÷`¾|¢^Øô$=Æ`;;Œäôbæ…Û#ä'ÞV¸ã¼Âˆ—mÒfîQcGëaÊ$–Û-j'säù-HÑY³ïžó°„¾t+åÙ&ú !YFÕŒ‘€hàJ\N4“"µþL¡ÿ3»ÀZ°¡›¿%:E;ÞëçÑ)¥@hÝöÄ^ìt7É?¢[·Á£¦‚î•/”¶bõ–|óTÄóÕ°X—~˜oŽùþy´ú_å£ÈxþI™”…9#Ƀç!ÔßRm¿­‘Î|zëÒü?T¨;?¥Í± Ä…™¤¡¦îÈÿ%Æpððo@úà-`úºx¬ìˆ¬Q“Ú [ løt~£(Rp¹Œñsc{÷Mò?Ã9F••ÖëC©mJ|³⢊?­âŸQî 4G" 1¯KSÌY…ÓYâÊ5Ì¥c–&)Øh–•·®y„‡(½4áhl*…h£tÛ&´‚I¡JMdô¼}®DoƒIÐ ?Hêà¼n-CA¯4I.6l¡x@.RÍy"èÕÛß>D?ûvÈšU]­UÕÞÈ„~)¬›ºØm½D‚ÙHÕ’t_“D˜±tmY.&jÀ¨÷=¨g›WÝû ýƒ ,ÇþÛ;SîÇ™ª”ÔHj%k¼hÖ°peø³¯…2¬¼Î÷øû.Ðr%—Që9{ÎR¦ŒŽÇ †­6£¨;‘EGµ;ÖZ­ Gè]‹®gåàå¨ú`Q3j ¨ õ3Éqþtc¸qÝçqœáèfK«c@@üt™#F žíC⪚|Ž&N®5ŽîÚù¦ZtOZlp‹½ÜHpkç‹LŒE¶œ 9~gò+–Ö ‚ÍÌ[ÑŠÊ=ÀNnÝ*œfong‰ìQHê—esÌÉ9î(Üý„ùmœQ”™éƒÁ#]Km¬5†v‚»  ‚ ÔQž’‘R4rCõQ´¶?}3qZÈU/àhÉb°CÏà ù‰]SþîwŸŽ±¥2±3á U0îC„VÓ7àÚTÝ[ÒØcý!…&_Œ±H™ÔǰǬ01]áÄÔFRjvIªL¼ƒ|/„.,€4‹Ïcÿ%h»AorýFóðítpœ½')°&íË! ™×b ”õLž¾ƒAñJܤ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤£å瞆d”V÷j­ëÀU\δ?Ö#=hѬòÓËÉÓðÚI.h)ÓݾÜÐ(eµ˜áöó JЊÐè‹Ê LæEn€-““L±Æ.`Cb•ú|°ès¿DáâÙ"‚#‡‘ÊQ€ÚíMc5äiGÌÞÄU÷KEÌÁ>æ´^9Ái? K¨Ÿ”°äçz5盤wÇ¡Îûè}عî ×™áÝâe* ý 鉖c;h_¦xÜLyF¶flnTÉ9`s©MžZ [–9uスN{Ž€yKà§ñ)„a4§Óù\óŒË¸f#ÅV9páL³º?ED[ØYm)U? Pð!RŒfcûø&šAhÌw½Û"£ˆÓkh¥pÕœÜÇdûªPS=­Œ§ýßø¹µÓªæ X+ »‡ètŸ«Eb€Ö"%ÞÙùES#•ìPÌ)¢ý5¢x¬åž¸$¤×u¢Ji>&iÚ2%qdwðkmW¿Gîòñœ\Þ÷Š<Ñ6šf[˜¯Y¨ËüjÝ®éx°Æ„pJ¶2ˆŠ“Bªq×Bµü{Íêä[¿oIÚùOæÁ{¹ÚÅ›bH_å?Ç0’F—eA‹SÞý ’_ ÚS„š$äJTwcCœ˜¬< t‚#¾OOÎ_ø-\sÃæ5_¥ºnÄx»}¾uñò£ô…—X–%ü „†ÆâÇ;?.·Ìùs¼dËZÁ䪋áÓ‹h÷! B!FJ—/:8td­çé&Õ1,‡(—^ÿÒÍ&¸= ûÑ£ [ -¦n›Á»K‡Iv{*ƼN’Û>Ó‡TÕ¤àÆ·º®l!&M³ßÛ ¬or“$6³kÙÑ8Fá5àÁC¼e÷šÂh&ÆÂ«9p4*þëEVtåƒïûÜÀ†á£?¢­ÛÂ>-k÷æÚùâA\nÃÔ¶ˆ%“ò÷ðÜùÅ9év%™¦¸¥§';}a}¥Gp!ä—È3h=QÚÑTwM?Uù þ/ú$ 4ØÇŽÃ N†Nú÷9† o%'WGT`íÐË›K²ºÿÃæ& Œpžælº‚¢ò‡­Å ʼn–ï]›–!ÕsæíæóÓ(=gme‡BB_zi&ºÞ÷å圶æ§:P†Ö1ÎwÍÅ¡$©ÿaË­ÚMò´Ímc¸˜†¹rìDñ_ê—#™õ¾\ŒÜóWÞå-È…‚AèLOìúXH¡b1yrr;Ÿ× „ÊawÓ.ܤ*ÄO(ö$ðœWÑC·î’Uv”=âïâkv|%=ˆ¤€¬2§ç—>J˜>$ᤫ“§*Qys›W)Æœ#šÆëÜ“‘ô$dŽtüÄ3a…ȶn¼þC€%§šº–|þHçéÏF f{jˆàªArÓ4C 2ݱD"DN@ƒž-H#,‘‚ù€zøôâÔÆkˆyxäJqFWXM·Ê,pï5Ç$ÄÛ_ôò8à)÷ñ—µõ4 %ó–À>-ðÛi7¯ü…–ã;yK¤Ö²‹Ü\”À¤V¾ñw'1¤tBgx\ÌwO»)GEjN`“áZÊšŒ>`Ôû_^koâ'ý¼ìØ3"JHúÄ)£}2¼vßlø8Ñ0˜¤Ž¿C6¿_ÀùâžÞiRzJ]ç{TOâg•&N†¹Ê¦EÂy@ÊÃy÷ú¿Í_¾lŒýPÃÏò…£zŸ“+¡Þ²ÉÌ·wÌìǬüß%¤?æJ1²ô{s¥t^ärè‡õ è$$>zgç&l k‚Î ¤á„*YÒœ’«îé8(j1ñyDZ¿ò圑9_ÓE.6ª2¯yüNW£Ñn±‡Üz"0ý„SŒöþÊÛu35*xHCP°L´ÝT8¥±š2ºîLË4æ…Nt¹ïŠºrÅû6MãiXV)náãü‘›í?O*SíÝVÒ?2ÓLL«‡œÙ¹%>K04}ÊÍRB]áJþKŽÑ«ª‰œÎ›· ìÛs^‹ç)¨Úc%‘.OÈŒ.˜Ö†ÁŸãŽôðj!çªJ>É7ߊ§Bµ›¶íòÃÖ#A­|t3Þß>¾à^9íc½hnº ¸ÃðÇ;¨rk•±²h¾ÍÛ¥Z©ýâDÓË]»Í¬_Ø.ˆ‘u®ü0 æú·NŽš>_ ÆêL{VNO}:õû'¥Ç&v‡+w»¿¼¥’Q…¬*ñwX=°Jäƒïç›kLÖü]³ëÂo„á<¹xP°žŠÇòF»ÏUä=Ý.M&âßÈ®°nßa’Ò㞣Êâ˜uÀÏmCmD@h)Å4ã–dæðÉh³Á·eL+ïÊ¿ …|¢/ªØ­âôÝÚµbèdÖNƒÐ•“—)€Nq/~ÔŽþu¤„E[Þ‡ˆ†ÆO‚b˜å¬¨,3[)VpûIIMß½wÙ<„çåXä ù*#Ðõ:€ç‡ƒÞåJË Õ.Ö¿¤+Ð"³¬ÆjÜèp ü¥^ bö/vcþÏb<Œ&÷X×,°o'XO&îöàûEîc>™Ñ§  ‰fÔ…”ÌEt\È)ª£¯éÒˆ5ä‹t7‡¤qÌï†KÀM^c é9÷•ë(-ùúÞ}Šé ‘–m€v'‹“i;í˯_:M5s_?¢7Š$:éíP V/ãêú{?HíÉç´%$v;Ï©¸mWLAø 'jòÖÏEugõcJ¹ã?  ‰á¤Õ¼µ"=ùD'ÿQ·øà(ï#l¶[Œé—h÷Â4kÏTÈÈõ¸“ÇÜpi–]ÓWe„Rг® ˆ——&̱ˆàýÐÑ@3#O»YÃv´½ã;€–rÅš0œhÕbÁª?íù³„×›]R)Ú»8•òëÇßkòý›ìÚ‚Ê ë^‰û…OCßpæAçW§2…š6Ù£²âä™_ÔØ&‰97wÆ'×ëöÒžŸx$’ùòaØ&&!‰àw¸ùzêõR3[ôjÜÉ^3‡QS,B=3xg’×MÿÃðNi—®•¶CÈ­‰¢™á2ÿ.À‚ç Fô52¼€ìþ‘kæÑhD,øg¸‡Nm »®˜üyð|cÁ~Øç.PŸ|Í5åà3›=88J Ö”J1:êûË °t­k¯@½×`Òàμ뇫à—Ídôî}¬ \G\‡È­•$îº8ÒÐ¥z€Z•0á‡` ò‚ÎË ð2„ˆŒ mÙMjÞT vt?xìÐ"ÜÈ3Ö´Wu¸¿ÕG±¯2*r_TÈ. eYWMnÿÕE{Ê'qv\Ÿs½pHߢ:^‡<ŒžÊ†¾{nÆn"\ÜHÕb.¤Ñ@ó_a„Yÿ´ù¡†é½È"eÙÁûâSà:lð. ¢[Ý?I~³Ý²€JCF~Ñ]]öR­Ò稑%£Œ;Ô€¡§ªÞ¾’†4%an VĶf?ze€¾YKÏMŽ,Kꔺ–o¬Îuyzt[!îjKéEúQ©>’¶ôØiÇ5yüBô™5ƒi²ÌSmlª§@jâæxš£Ð—/\k\±Ä|‹U\D‰ìí!lùGøÎ„:•,ð½=þåûRMS‚60R µÉo”]J­*0KQ¾NÁƒçª8Ø•¬1Ý´x¦¿ýu𗥄U4ãú†ÅyÝV‹™j‡š™E)!}éH·æyõÀ®tõŽAÛE!2;ͽd Ìþà(‡$À˜³{¤dx¿É"hŽ1.r¯¬ÎŒ–¦ä,„Se€”é(õˆüÙò¬ÈÝ3ÔŠ7bøì|b‡*èHÙÆ¾h!99.z1ì ñO>‘S—1yeõx<‰D8”N%«Ë4:¯a_KX¡[‚¥±µ¿« x÷3zМ§’Ñ÷ ‰Ù¡yì.)c¥n“Ä:¡WÎÿ;ÖXùÌRLpïîÕÄwôêªç߈‰‹D,¢£bÖWTâ²Æ> 늨íï5Ÿ¤ªîaœÜŠð”ICe?Û=±q75ܸ5hØ“úçîà^äš_Q-³Aé ä~Re˜$Ü ÙѱÄ\›±»Œ²¶`e-y™ý­%ÁÆ^_ÚRó=÷–Ì,^}ÙSC§cÇj×ÄÚ„¯éïß{˜bæÖ&º u>®Q±¢¤,œH´úSd”Œõ:ÍË‚á¹j½ÝZ(°n;H6×5ïÑòzï¨yFÏØ5øî'|´rð¸ÐÈ~¤‹÷hÙ…"SF²ç¢tíD#˜p}W•U· L-HHõ-‡Ý…½Ž>}ë`N=”ÂÛµ¼5õýö*b ]£(©²öGÿ§ºPÅË@ûXq±22¿5|h‡0)X„zHÐO%Žš&S£yfßðLªÞ1ñ° G=0³däJi=µ,ØéŠ3MiO§lÀœŽ5W«K˜PþÅ]Êrk¬ïñ5VÕxy¢@)òËóuÛ+`êmÌb<©o· Õ¿Õ¿âé@$œˆö|œ1°n˜™LÓ5®¦âqë"1UÕgšjý7(yú$¥‚Ÿ;zÄU^˜î¡å©œ”ˆ·˜H>IýE!hh/r‘çÓtû-?Þrî>Çûá$RÊŠ:?Dÿ ©øÛó„ðæ³Vÿò׋»… Š'²LŠÕn£Ø!A*Ù÷x%Õ *ÔÕÒŽ•ò¸_Å:ù==è/Uå>õz÷ùbŠÅ: )¿F ½z¢½Ê’p KÒ{ÜeC Ì9^y(þyT¸vŠ¥'€E<ÇøÂ"^q¡†_Ê\V·Ê sË ô‰ufPíJfÃüå`Rÿ6Œ°øZ»_-)Ü-ÄlXÇÎ&mÔ—»™‚ §Jò|~×¢dK+þ8˜¢¦"ÜŒÄ$„a«Îó~–×^1† ‚½ h^æÊoÅC+Cõ…ª¦gÂÈ/ðš@f0ô("îœKs1,2 ß“«u?bJDv–!RYÃx%jrUEÐǵü-UxNÛ&ä#ÉeöâŸ*Áèn‰þå aËÖæèpª¸ Âs¶j}MŽüË÷›ò"-Œ]‰?}Ø<¡~fùu©ÃT2Þ°¢ei‹q–ñý|Và 5‹¿ÌõrþFß‚Ï Z–Љ8;«Ã¥CÊõ(f¿o6}ZeÒs‚m¥¼î.Òw0fŸÃ¤fÕÊ_}+¨Jñí±~@Ñô ùvEÊÄ+~l„' £P¦ FWdÔpšwgÉ¡Ò|¹™Ž5öM)£~ÝqEKÎ>.“ îúL©÷x:0M£V,ŽYg·%" *}Z{þ‹ÓÜÆ¸F9ÜÚ»x+oħBš¢Sk±ÆBP'?,ñÇûëŸå†«æ9Þ#gÎTªW ^PÝónz¯Á÷áÒàMɈ*!ÎäÐŽÓÿȱÛGÞ ¥H_g=1^ˆã3¼WÕW¾90òÙ÷êtÞ ¢´íÕÈί ‰å˗׌‡OÍ“·?R{Õ«d€V4VÀãý·º‚ø­ë«°Œ0cƒB›7³¦Çzù°Ç98,(ñ–sÙI]Þ¨À¾îÔåãé·Ãgó¶ÃÉI=#ÿ@Æ”T|¬p›2^7Ìæ!gFþE÷L"%)°Œ¡Ášz¬ÒëÏb¡Ð©†äVgX0>kÕn(Aèœ[æRÒ¸A ª@Ù½ràðíšA sÞ‚¡FåLêÁuãÈ ¨ÓSÓÏX)>Ãì"¾É‹¢æ©Ž6QÄø(!n䲨ÌÀtLĩԿOün4­ÔŸ²–Í «Ï÷a¾‹¢ ÁÈ Þ¡{t»S¨M@"ÀÛ½ÝÄfYÃÉô-O~Œ©‰ëj†á¶ó¡büA'‹JØÚ[bœ¼òîΨB´Àó.αU`c§Çwg OØv€ š;¯“c-Þ¡íßj±Wö³@?n+öS»„æ{ånì‡/6ãX⿤ťH¯‘Wüžãé÷’¼êé×CÌõ!Q´)vƒþ&ÊO·01KZ—gßS.zGÄ%®êÏfn£úZ@wܦÄÖAˆ?ƒÓà¿ ÿÍpSš2¿WÊ#²× ”,ˤ¶)ë›1“€¹ã€£Ûá™™˜"u(‚C.솈2Æ5JŒ×¹ë h•êZèGV ¾¼9ГµÝtP•Að´Ì¦pHå²þ¥oÊUŽ!€g›xE†^•Y)LÓK”æË%½ÌÈMDdûµÌâ\NÙ¶GØ„ LÝ,¢¼À”é‚2KúàWÛ[U²ûÒk2Ù÷¥ò0“0¬k˜=™º?+W™5¤Ìµ-G m¤×’LÍ CŒ›E5ÇìJ–iðIòêš7Ö—gýf;æ„ áÿ0غ#„vTö/_ïO²cŒèfžð!¡‰®l—!­{æt«}Oý±„ÂÎÈ„TTÐ;>÷? 5߉«BøäZžóJ¤—§…êDYˆEç»–KÄœÚ&l2÷ì¢Ð×6à–p;›~NujP¿ƒSHŠ‘~'"ôÇ-lóÍaB©ÄKö8íü¨8ºG’Áb=αÔ¯¶A%ÀÈîô¢]ÊN5âI0»›³vÓS~ãAí,ÏîP™ÒTp˜Á˜3†¾G#h„l–ÉP Œ®ýq7'_›s¿K>nóH,{ÈU'H™Rú!È~ŒDN{»Ì– „o·[Lpm‹ƒ#‰„—ž)¼»qÚ艚PÚSj2ƒßç?Aÿà À‡ÿ$¿ÿîVï<†¸à)݇ÄA`=àß÷—›çJ*”%r^£ÜšwÆhmóì\•§ëÍ+>„·À+þì1´£.H¯bI?— ð±üÐpߌÛõä/ ð㟠›(}[ 9=–o¢Œ~Éõwà/Š®EU^}„oQÄÂÀ“¾FÌXŽW°ÇÕžwÄÊgx?Èâ-“*¼NòªÿinýH6-£RfíéVNsGœ¿Å¯„W¬¯,ðòéCv-=j&4×ä‘KR|MNÒ˜©"ì 8`DU]vÈÕmiá?ñÈ£òSìú ñ`O`᣼>td¤ÑzºZ«óÆ~Ýc90aL;t^Ö½ ~Ï@é<%¿nÍPÅ:ÑŒŸ‘ÖàóÄd¶me!f»È`%%f*,z51L6Y¼±×(ìÝ?>ݘx7ÛDϬ7dëŸ8?.“Á–œÌ]ißÐlU?ΠöÒͶY_ÐÙ\1BiMkyû:µZÆzmê©*»¢ßápeƒryÚfÆWê  Ÿ§üɆàd×ÿÛw}Éa¿Ø(uÆ&º_Iôä’âº-IÙñ}s|Òd× KL50øû ðQ÷í3+mC´ñŠ×cÊ×%÷—S½ÜR{+Žv: `þïE'ùƒ5„óÏæ¶_‡|жßÊêÑ/”‡ÿ*Z¦;üý¼/H_É¿¬ óÒÿÃÿÜ82RkÑŒïžçwd3£š%ŒpB‚xL: w? _d_7£ð²&~áW±N­ñü"§Å=éRu¸IˆétÃ#VË\SlsêeH.Æ¥±üe²ËZ­ÌH1®þº&¶¸ý­ŒâD˜d¿EFŸ—˜°IôÈx¦êRµ°Ý^tlVÞ¡m–—‘Å®›üxC–y ®*3óµ%O> .ù³²è¥Åî…Ÿë¹2UCB!ìm„d©¼š±]‹öÌÖ*ô%ú¤g·{gwÕ”E4uüHŸrÕ~¶Ç³cåÚK®-… E²-æ°ãm:¡§åÿÎ9‡¸!o©8 +—ÊHÔ]¹ÿæÂÍXÕ3oÐ&ÚzOM:nF'ªçV0ÄI¥£µ*áÌ)šóòB¼FbqeÏ…Xÿ~JUÊÓ@©*áôÐŽ˜†‘[Ø C£Ä|“Œ­J÷>p9ïµÓÏ_íØ’(\{ëAûH²œáŸ¾ ;OËÉiiÓ:,ÎKS“±© ¼*å{˜ShÚêGë¼ðÖ_RµPªØ|@X´À¢:yB3C83ör†éé HC¨îþ8•‚HZbʸ)àÈë°üϲ™#ÜAÝ KúÙ<¥ùÉïÊ»¿¼À *†ç©«‚bĩڙ×ËÇÊÓ䦞ëÖ—( ¡¹{ÚQ7/Þ­ò8ûöÂWÏèú­ˆ7Uk"zÉb:Òh·ƒMé œã|#P¢RŽÞĽô3¬žx•pûÓoD¼Z¼ÙHåHÏ5 ®ð6Ú¯ý{À Ro)gòÆëê™±›or16ñø¥([bì«È¨Bâ:ÛTHL5àÍ­];ó麱è}VÕ;_Yq'3JYŽCW¢äÇæ9Þ¢BÔo‡œÛÅ'@µÛu\ §B ™Ií1´ë œ©Â¥ÊáRï!ty&ç¥HС‰RötϦ9ù1¥h]òú/ZÑ(6@¯ÚÊÀýB„È–ÈĈQÊÙ]j2$1.#2WœL:¹C:§`ž’ÃéÏý¨kð¡?%¶1>Ìe¹¢6• ¯õÖtåÉð?V ÈkßÖ:+¥a?Øä5­øƒQÍ;›2C£¢º®ññITÿ}À®FQÖ}¬#¼@«blãºà·£¡]Y°3¾"ØîÚiŒo›ÚY‡ ®$Q£ô•Twa˜Ò§^éf³+ »ÄÒ«B Á ì-àƒ¸…$DÊqlôcH^ª@|6!­X—r$)¨ÂDrQ®ì$˯“s °~‡tn1L„™f(¼… ­xéI4Û•Ä£)íÈ[#N"¹_èç¶âÍG¼SßäÕùß ·Äu:÷KþD_âæò/H:`Àîß0³3êxË”Q×5„ÈkCæõkûrH ñ?ÇJ•ßSØØw¯X@¢£†ùh±Ê²PÍþ E0hÖ¼ öIˆ“)ݱMì¹y˜XÓ1“›§wœ½@g-Aõ´ON5È%û>Rƒ/ÎÑFJåK€ã¸â…¦”;Êk¸>e Ê‹O-®¼‡ v6oüÄÁ¯/Ý2ýäÝo†>|›ö¥1YhL‡$6ØÑ2R×: ÍiÃ߉HVÁV.žWöãîé»@µÛ0#‘ ÝìgƒÍ—6Y½BØ}q#µÅVó§ âv!¶>‹A*÷½µ¯ß–JoG¨Ý!lƒàèvB»§«Ü©w]¬ í |ÐN Fú·Ö H#Ù7Q”z³É¥1ø:@¯pµ/@a_.0Ê(X®Û·UHU8åŸ(Wò¦ËêçN—÷ =üƤúŽ]U\7B1¨L·ŠØÛh×n€p’ÿ®Y¼cÚ°q”3.ÊG>SðãØWNJ‘Ü[Eìc%¨½Á¥åWùs,óâ‚¢N2ê¡£G‘À:[‚´ú¥mã)IüöNO=/J92­:‘þÀ‡‹ïb"¦sÑ8Ÿ×¥Mã‰ò÷·Þó?GÚ'.%ûAýÁÑ‘— "Ç. 39'¤ 1±E¥Q£÷Ëj•µ¾_ÀaßÝ•Ì?°«©¬áÄ»ºÕóÇ)RŠî“Ä7b…зÅ# O§"û(Lžäí¹“Ç¼íxI¼îNY]M­S€9cŸÌ¨òÙFêL–í7Hß% A[òKeì±aõaIŸ'Ðgºer…•@ئ YÓwß8ª‰É®À$®–·?:ŠÉRÙáOˆ: ð±oî.es×½©“–øb”Ñ…­l‡Œw5^1p ôÿi+ò7@ÝÚ¶la‡/zãÝj­0•mP­ÏÿXoé”ë.›W×ΠPÒSŒZDJ³fgûʶNkúxRãdI¦64¤Š•= ¬ˆÔ?cñ Š…M†ìo²Â« ‹îçYgÍ> @V&®!%ûŸõ"Ú‚¿3ð`¢ìë\×zÊ/ÚõTÇlW,¸ÊÃÿ&*7>D+eÖ:µéŽpü–fü• `ºQiäKvºlrÍ{\cD  ©°Ä¾dMGÖ À^ GUX¼Œh3 iAŠVÞ1«ÿwÖ@È—¹hþó@Hc¸g3J¶ r¿wÁŽKCZ[ ‚@ïCä '˜Rkê ·ýƒUø°™jAIE‚ÞDIÐá® NÅמ@dÏÊÃ[ÛÐÔ šÄ¿ÄHí(44ýg‘Ѓ N›U÷Ú*¬ql! îCà3ª¸…¸o &<ï÷ÄVÄJBOÀD¢Eœòe -˜ÜMý.Hà¬ù®]¹“S1¡ì£³zM¹y^ûxNª‰|¥l<:¶÷ÎOê_cïCJrƒ>à@Ï$TA¹>ؘ**ãOÝx‹2#9žWçUP»:t§èeWYƒÝáÓ¯`´B KR¶á%0¾—Omœk’‡ÜÜ×|iœWª~\X‰*ñ†AÒY"›7]ÇÕf€Ž…Ĩ¯€K"{x>„+î–2¶wèÒy/jñ9ß9·®‰TB!4q4ƶˆ¼à;ç)Ò›`Pš› '߆eà%@ãªqp‚ÃÁ…çG Z£_l=¾¨¿¨4–ÓRJÝUŸXJ±<@—à}U© _ñ!#½gô;0HÖ|·×—ˆW,ÁiG ]Ô>;œ;|iíÙ9wgQoVœð$ÍÕ$ )ÌÍ 5ðFmÊ;ëŠàÙœ\èžÿÜÍ=š ´«å ¤ó®vß)ºÌ•X¯—•»'ÄØK^gM˜° ×dG›3ăN8TÛÖsõ½†«Ô{ùp¶Vã³éi Â*ˆî–3Š]§¦íµÇ–urÞ‹Â^VÇÜÛC[Ùç LPØ}ä †îÙˆ#Vµrù¬´{æ¤Ù-Üo§ƒ«`Ñ~«~aMSå|yü"@Ë@$1QÍ!Õ¯—Cµ\–©«3÷ë4ücùêô³×°ŒYÏEóÔí±÷ÿŠ‘É6VÓÈ&e€ë:§TÖˆ­µteBÌô2­$Õè‡þRåÛ]f+0 ]’Øþ×ÍÌF!ÙT©€ÐׂG¢ÓΫ$ߔڨWK4Ó³K>|Oäüùzþ«ÎH´‰„RzKÙñ×”ó ¬ÀFU׊qÂŒ`À sr0SÅΗ¸0n3)3QT …ä×ìš±[:ŒT@Ü3¡+{ÔõLz{ä\»§1 ©ÂÁUE+×V¦V¬â9 .¡9ÇBú~»}J2B+w‘æ°xß)R}í»*†xœZ\Óaß,,,P1\ӱŸ)ßÜéDZ·*~hçôO§DâMW¹ëÈè²V!JLÅB).~gM¼§°¥î_–Ï¥aÊó¾S&Õøn§®‚ä>‚—:6,—¼ìZA’eùÚ‘Àec·!u#ú¿(k…Ã(”¾ ™¢/ÕÀ©ä›†ÄãÚHÌ ‹½ ËE¸w³ gwBÞž•—ZåI¡5ÖË)--& 0( =îK´QrÔ ä¾ÏFš)¼zèm‡²2àáÊi64œÆÆÙ^n²žÍm}hÔ‰ +¡FÇ|ABÏLfN¡ˆŒ¦|~ý‡ÓSfAõ©•"qc_Ÿ³ºZ|Ý¿ÞMoö€4¿èÑØ”¦Á©üMÔË(·Ú³‰X*mZârqhÊOç瀮 Æjh~àWæ#¸ˆ=xi•½*ª©‚ bç»ÞʱÔë¿£íƒ)ʹ×>ˆA„÷ƒ šõn¬%BF6nÌ.ÃSµÃ¿äÑO7ƒ©´ÿ±‡ù5~há" G%åß”µÒl®=+âÿÓ#(¨{ö'×¶OFÇísVWÉÝ| 1F”ê÷S;•R’’”i“ó1Ÿ~Ê?¡^²ÀëügÐКr ž¿ µ” E…–¨6¤´µ!Vè6O0ëúÄêmó¾–#¢1€©ª\=јªAöõQw.Û¹h§ëÊoü±!QwåŒlWÑ$?œCÝY™©h“íka!˜1¬Åå ¬J“,ÑÅí3jÛ7¦»¦|ƒs éõM ÞŒò‰È!E,¯ÿ16eH›¨.íõÖGøö¾˜Bwñš;q¥®0tèÝÖ²äRó-͵éØ> ëH³ã†Æo°Ü*ýQ±rÃïÅòhzèc0Íö{ç¤USxÀ1pªþÒ·|/Ûm½0yyÒ|× FiááiÀµaN˜óà7_0âzf#þ#ÒBËwñ;ßg˜1RÖ‚t¸©õB c? $¶qÛv£ å(®¶}¡ÄÞ>¥ØD¡.ÿ‡qB4°/[U@îÐ×…J9@§!¡ê™& at|6¬îêˆö~Õ®Ya&Êã½Vœöñºöð^¼†ýRE…E$ŒÄ°rÍ÷ï—5 OçÑ&?èõžödžŠ7áæn–ô¸.¯_¥—£h;ÂÎHÖf!â®x>B¯¿lÈ*ðücðÈ—às&òµ-UÁâ zº=á¤Ú\zâi¶s [`gAä¥è­=ö¦"'Ìð«]©vÙ˜ß}R3¥›Sò“Üi§sû˜ÿ`FÌ.,þn™³sâHñ5‡ÖrÕ”81®Ñè­«Õ!á,u†¡¹œ5›8¼Îtåu7x¸:¼YÄ ùbŸ]} hô€òëûMÍÞýþ@Ÿ.‡Ý¶¸ô~Ì#|OÇ<8H¿žÁ]S¬U=èÂ+ßxÑ™ë­Dýñð&ÏÇYxH<0¤ÊI‚k=X;øÊfõ'ømZ®vÖ8欢<›þ¹Ã®Ì°z£@ý?õ‹7ˆ îb,ñ{;'“Ã,r4GÓ·Ê A¥SÍš•Žâ¿À0ýär3íütÉ!¢~-3n‚c޳³¤öà’ ‚Ï2Ù23|…7²†µ Øåq‹Ê1G6Ùvômfº¼õ¸€ü#å™k_ÐÞÈÓU:gEQS¢£O¿|« {çor=¢˜{Öl©û'o(âáiþ{P`þ^µSxôPöŽôË­†»Ðë²wPÊä‡èE_‚înªü"ÈdzîØóìzÚ"­Vƒ˜+qzG½{ì£Éu:Lª‹|h-'ÃIÑÄDcœ3z½7)¼¬Þ*ô[ÄV'Æ[`‡=Ý¥¥-þáØ±½Ÿˆ/FFøW0œÐóEÖU£G—ÊÍûú¥ìëWÒ,C\öêZ’p€v¸}‰†²©7fcO><Óðq TI#m´“¡±‰ñ› "Cÿ|Ðâæ,§Ê4K?“‘Ä÷@ªž³Ók'g1éTM„Ý0&¨ã†ÂÆ*†d(Œ~›Ô #3Ý·†ØÖb>±B°“~œ¦0î.Qå 89ú˜;«ùn cìÉ—Â5k/&R²ª]œ–ÍË7Ï<Òã‘k¸; .ëæ#S±zâWAûÎÂPûÉS2N+ayãGJtÏ›/âаí‰öD¦XB­Þõfïú×¼øò9)«¶;FžCJVP¤ñcLçøÇíú±£b•„v"6jKU%ï`é狚՛1¿QwÀ0gß x9¼K¢Ë CÏ?ñV:KtÆ—]Có¨âÁ`& 6¶Ò±>5Ñ3ùÑÃõF“ò“é.6ŵè½à¤Ûg*Z ûŒ7!^Ë´Yv6HÞ׎_N«)%ÊCôýg¦q\O3yCw‘XÖ7ƒ+ü;–Ü>ÇSìÀ¡}>ÊÓ¡ ¥õm¾MUFYs8`A#ØÓìÚµ¯bYШP âdOR®Bmœ×7Äÿ†Õ×Í´¯k’cy‰MˆFY2¢×Ò}é]+Rì`Ìè|Q61 DtG™<ãÚ¬YúŠ¤Ñ³7J»ÍY:¥ùž‘JÑ6!àõxg// dûåö@ÕÈLT6|KSJª§“3¯š‘«3åÍ+Àˆf=jB¿hÅ0ŸsòaÄíÊòˉc/ÊìïÀÚ³èbuší`üJ3»‘‚mX8£›Ò^’5k_Ì2%._rX*Þ¢“ƒj¯Ùnk8˜Œ…õ’\ÉjP£íÉk4 s§ë`u'vŒïšòt„vUOêÖE2Õ[\=¤w+Ô+Ýж©#î“wíömêâ~œ†sÀ¢Ù¤Å[¶.tâ—ŽDw E2\ììÓÓOËrÐÏÌ×s,2¢aü,à7”•øœNçx5ìÏ)¥zŽ«5ÁRáfÀfaeÅÞÈ¡[¾Ôìã7/qÖ=š•LÀ =j®Be&­<0—yrÀÞ“ìÃri÷Œ ò:¡îTØm¹@uˆ‚«§o‹+AÉcÁ×vˆéB£‹±‘W–©€†¬!S àò>М€²ñ;1Y¢ªáíŸH_"¦œ@)h‘e4æ*Á‹Ï(Æx‹è;® €ž¥Ñƒ‘Gq:*‡KµÊäUýü¸M´­õ3¨;Ø/N@Š£Ná@.OòoÊ6ºWÁO])“Æ•¿‡™³äÁ›ÕáÉk±±d ë~p)¨^X¾²2³C3†‘&RdÔ¿î3#MÔc)NÍiÏú´°Ú.òÇñóù´»QÔ€H.›ì‘\Åæùbh®dŽÒ–)ìé½Ò¼ÉñÍó(uûwdcºÓƒ£EFL QЇªûR @Ó=–ì¢`×5¹™ê;XsjÀùPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBjPš„Ô&¡5 ¨MBdˆ¢=ïò òˆ7³Í$Í¿‚ûâyñÝøbUu¼Øÿiݵ]£xm®¾ˆè`ê=ì3F$ÁlÃÞTüy² ¼Ï‘T ]øûYõ=• Ú›ª¤0-^1Á‹µÁB[Ç#“2>½;ë<²0EÁš\¿œîÿŒ˜/€è Ñ z‰wkr&¿¶âkUá!PB»ß2_dB3ìâù5®/åhò·AbÛðˆÍÀ`»ÚìüS®*¬F_ªú§mQ:f«LWM¹z}52‹Ë5Ük@ ¬·MaÔ!ï:¢fARP½ŽLÝ Pl@ª,ôs¥Òè—³:™/Æ~Ó¢S ä˶Ÿ‹ñ姦HT×)7;J²Î Pur†šÏIVÊÏ}pj8‹Ág٠܈‘ªÅ¨„· ]Û™¬5GG,¸ÿFH²ÿv/Ì8·WÊ̺¢¨òAd4ÀDRE6† ëe˃êj.ò\Ÿ|°Ù™ÜfŠ~nËß²ÏKkKýÂ;FííÜ<^Z`·p8ÓLŠÌæ@êŒ@¡s 0.œåÜu¸sÅ‘xù9mµ:b0¡Ë~rL6ßH)2™ìÝЄ¹…lÒM£ð|ˆ<~¹1|®‰]ŤY¡y‡!šu¥buÖoÙ*¼X[K0o*©äOö‰p»s6½=énò¿¸sÆ#´ó´jT‹"ÙðTž†—yïaÔÞÛõ Ž%€T7m³™!zÙ8uªôxZÂz±Ãêµ4…Ky˜@?2J˜œÄ>9·qÓ¨† Ââ¶Öæh—D1p몕­³DñŽ\Ý7ó"¨µÇ'/ ëMîÝä—;9r%±j‚ÂŠÿáÀ¯r§Y;“."i£ýž=5rýùôÛA y&,|‚Ið "• k¶\æ]ö$tøèoÏk¨uƒSnrµ_ðe œAðjµBàµñW¿-U»IéÒÇ$0• Óî \el‰š-xÿ2ËKqÅJ™g¨rf{²Duv`˜1)ëh4s˜ïkpâí?ý 7­O¢¾üýÁE›Mt!P¯ês>#Už‡3Of‘ÛqíÛ•ÈgÒZ•NDÙÉD”žØ™¡fâ­ñL‘4é*ªk<ܦ€z§ç#>•XvT2?ß &¶ÄÜ£«q–‹*Ÿ;Ô-õNèÏC3v²C9‡íçVõƒeûIê{>â!Þf ¥~¬o<+ŽAÚˆìw×CgºäFCð9ͼ/¸¥sõ¨ç ÐØ«ÚÒ¸b Ï­bX³àâ‚$wuæQ9[ðÄÙ^ 鹟†È2Ø$7Š+_òOù›IHàçËé œ‘døN}4Ìðsé”Os=uÅ5 @½^=tE2Dekú§é¿,– CyðŸÔ)ÔqŸ¢Gôfž.§ÊÜ ê2¼b›žNO]¨†9ÿ,–5N‘¿ÞçÂ?•<[aÞ+æù=_ª¬„ºkg ý™ÂVݨS „­Åâ-‰S/uŸŽÂ Y˜c¢²Â¬ ´m: #ÚÂà\úó…jvuzé…‚9ÀÍïÑ-zf !ú¶–Np,•ãb+G̲§ôÆ|b.ôj¬è„[‚g¹û^ao«^G•#F*n¼:@ltdï9]„òë‘oä­ªœý=”‘mA.„‰ë ŽB_ü@F¾šÅû^ZT»ÆÑÍÃxßp.Ÿzz)^¶£!Φb­¡CÕ÷7Bê ­½±€“¬tH#8¦·¯;ì´OI .F©ú‘Hƒ0ΈôÇ.!=ÜüF 1+Ç{ÍÉæ¼=í+Ùµ÷Iù?%Š;ð|{™h;yxµhÍÃF®)iG†LÙäù@¿‰€yL¸ÞÒP´ÊUvh“Z\)ùÓ` 3ê í îÇæGô¬å­ÑÈf‡Í¦%B)J*g”©3E?sAÓ}û²å&.Jk†Úí°Ô6_g²0· åÐþÅÒ’Œs”@ \!¡éÅ-«À ¼á7¥qá¤Àæw.±_€d³ç«€ixR^ ËÂ]îõ11Ê÷¦æÎöùû‡+Ü9^áÊ÷W¸r½Ã•î¯på{‡+Ü9^áÊ÷W¸r½Ã•î¯på{‡+Ü9^áÊ÷W¸r½Ã•î¯på{‡+Ü9^áÊ÷W¸r½Ã•î¯på{‡+Ü9^áÊ÷W¸r½Ã•î¯på{‡+Ü9^áÈþëˆW¸w·÷Rgþ/ ’nÉ#│xÄ gFƬaDœèŠdNÆ»q;Þ/j¢KꪛÏÙœ!}j !ϲT‹•ëFÁ>Œè¥/j!ÖÊ,SFª/ÝfóHæv©¾C{¼¨G«±QGS,Ié/g‰oÜJœÅð³¯es➊É E…qäSb«Ž„ŒÕ]aZgˆê8 iLý÷ü,šÆ¶ªO‰u»;ikŶ(-Ÿ£˵³¢©@¸ÝL¾»åCµl(¥h‡YÊÕÎ|ç’º„ÜøGÀ¹A•÷€‡Ý2)†Ú…u€Äc–¾:èyjT€ ³;G  ßzy}·¹íï³’NÄ8¯µ‰ª‰íîÓ!)àÝ;$û•5÷¤òѤ¢Sg8Ïr™Q ‘q¸Umˆ‰¿äëBóé|Uë<ÄLÜ#JTð@Ð É <çW _‚ÙT>øy\îƒ5ü·{vš°ZSÂ`oQc³® 7°å ÿá²´__GLŠÓk–1ßUŒäH¾ù÷èX©«ÙU° \Jh|‹ê}çÞ Û›{üÛ[¼JÊѦϢúÕIˆb³8Žïtwñ W™—®Šq$C-UKøêc®k9÷ìHï5dŸ>ì²ü‚ÚÁW¼6Eé‘Ϲ«.ØßÆó`Œ¨<µÚ[Î¥ðîª,§>§Ù¥ž‘é¡Ar˜Ÿ»rèðôçÜ4HkeÅRP¥'õ—k äoêbÛ. Ž7–/ Õºv„ÄHkj.ã‘­# ½sïA-ÛA„v!¥Ýô$i&™ÚÊ |\½E#ZÀ—øC¿•À|™Ôñ*ѽټ`ò%Iß ÷û õ;4uKÞú¦îPÎÆˆh/,éP-¼P·s{åBZ$ŽW$jb94ÔÜÿ ]‡>’îz`RƦX>¦8js/ô¯©(Æ ÌÀ&™n€¿$º ã™P̘XöÅüÌÙJ’5^¯0z”Ç:oQ!ßòÚ)ÛŽQ¬Y1ñ1fìHFëïÅÕSÿ‚}Ê4`²õöœðû#Wëv‰´Ü÷V’'ì&Á·J&ÞÝ!býjÒ¾j‘P.CwLX+Ww~#t-Na“i‰b“GÒ¯3Ñô\Åý\€.Áãyf²¬Ç…´³÷Bæ:Y{'GKóPa¤zõDŸ1´ÏQk'ÙC_ÃÖQ9¨x˜Õ;ÄÿŠö&xV)©ÐröÆãÅ´YåüõR‡´[1¢§¦•É<ÿHt½r¹aØß+àw²óì–öO°uX÷ºS®“;};W­Ì7“|¥0ßËô©Ÿé¥úê/^2·?’…:t# ÛÆaH›†vò‡V’ø—Ø•Z…Éy>¨6‘ì“ Wø ¡Yïc±>‡:xKQ˜Ì ȉM¢vÇœ3Ͱ$IHÃ¥7÷öHÁ—s£ ê!9ŽcŠdáÇ”wB¡ÞÞN eÌjs*nS=|ºF_Á0x%‰†JÍÌA)*ZxÅX1„̸yU÷tög¨zŠâ ÐnÄÿö9u— l8ñÜû ž¡Ì45ŽOAøy:ÖÛIhUÒ^á3úBr¨v¥ ±«ÄÃ`,ñêŸ]åµü©IÁÏþÔó ¸; Âjgõ •UW‚½ü—a‘”Pwè`öÇp@l0PQBDh«¯úæüšzèa­]>‡*gS³ `–±:Ô~ºX!€šæ)1@Ýм¹:tœQa4\°5[Çf7¸‰ÅÓÔV§ÿö@–vìËZÌw&:M¦npÚ~ÌTòàÿXïeañI+N´j/¹hܵôÙMÎW“‘³lþÐôº«L?̱¶t±#ûx—„Ð5ªãí@çëî¼Ùâ»RE=”ïs¥Qò>B üÜ¡SáÄš<2Å.’„6%¼?û²ƒ‚Ÿ¹ú£èXšÁ˧M#Ä@_ŒÁëåÕö“"Ö2‹=rWÙNj@X–R¦£œ˜3ô““h¥6njbÍ̬:s¸Q(¡úŒ¹8ð9ë4AE5Ë`ܱ˜0oÄþ«ü‚ñ¤9·]Ú»#:ÔÐ[yÆ´0Z§`Œ5y|äôõþmÄ¡¨nWß 2MŒ€•]ëtóxÜ&‹¦×Ê4Ò-8íÌNW-@F!d2ð*J›!Ùf«p‚<¸Új‘ëóϹiGë­·qëšöèµ£7¾ù%¤Àô¼½Ü…ýÒduv(›XÄûÈH" ôÍRÜ«ðNù7~(Æú¤){uËgŸ”…ÖYù¥ó¦õ¼®Ë­÷YÜ‘ÚÓh!éÞ{SG ôJÈÓo‘ˆ€Gñ­}ßXŒOòÕìü­FníHsÚl°^ììœèc¾­¯õ£2ô4c†…Sñáõn®ÿ¯ *Å«‹¯}8;ÏA×ÚF¿¤O3®p±’Ÿú 2ǫߧb[K#ED8â©ò¢4<´€B3¨ðX‹ä´øy1 Ê3€ $‡¤–C› ªX%Ä8KWWLNÎÓ5èjbbû`¦ø“Î䯰)Cë6Hé?Çm ³Ä”®bVѺœÕLj&¼ª¾µ‘‰¿ “MýÂåËdÞ|ž‘·˜?'C¤/n+„‚E6W®pðúwí÷fƒä>[ßp²«Åùh»NÕ^œ0Å®—΂8Ÿkòý ]ÉÓ†hc ù|Qœê±U³ö ¢+âøÕaò„ëmÎdItSZåHwnrCW°J²·޳žRϱåZ£_+ëÒ›à W²¡ßñ7ÒnaºS}‚)ü?³ÓŠoR—‡jÞÇôÝúÐîwŒÉ_w£TCEÙòà…ÙÄ¿Ximages/sort.gif000066600000000067152330733730007504 0ustar00GIF89að#-0ÿÿÿ!ù,@ŒaËØxVR22ú ;images/w-logo-blue.png000066600000006051152330733730010664 0ustar00‰PNG  IHDRPP¹ÏŸÇPLTEt¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢t¢fJܱìtRNS  !"#$%&'()*+,-.012345689:;<=>?@ABCDEFGHIJKLMNOPQRSVWXYZ[\]^`abcdfghmopqstuwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÊËÌÍÎÏÐÑÓÔרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþŧ%IDATÁCÔõÇñ7‚àqG$š6Q¼s>”­²´ÅŠ91ÁDI¦3ÍYºËµdkµålµt®Zc–†åSуQ. ­áfO6|8ðiN%9¥“¸Ï±»ßï÷ýq>¯—1hZåÚºŵì¯[³´t WÎ?su£lÍq²…«Ê²¹=J^J ¯[R2¦Oqi}Æ”,Y–Ôº¾ØÃ·“:,Ek梋Aók¢Rx‘îË®l–þ9ÏÏEøçÕK'CYtOÚœcÒkãqy‡ßQ2­tráõ½qMj*§;†îÞ‹-kÒ£ÛËuøÝGèÅvc­´­€ËšQ¸‹·â­Vuq¾¦Ü‹¥4¬3³¸´¬—¤U>†­hÑEDžB‚o•ô|—0`NO%!ørL—Ð^=„„’ÓÚ•ÇE ë“q¾emºŒè2?qÁOÕä"FÐV?qEauCcqþíjÊ ;¡ é@eꦧÓôÍj rÂZïúüCÝöA_À³Y yt‘µG[ÒÀ>ußg½@ú6íÊ ³—´×›Ômu7cóªçédžNƒ›Ôm›Ó1§5‹C#š\ó…º­1›?Ñ™’¤íÐ3€§VÝ·˜d«´$st 7ð{} ÃH–V9®ìcú1P“-z싈¾ ¥T§›äÈ ÅT5eaTê-âFÞ<&Ð/ ¸îŒ¤oF9ß Ž™PT2±püèÁ¹WA™l>RmSGNslýGÒñ4ºê/Û8RÕI¶Ö‘¬Ï°[§=¯„¿O¿}˜Wk¯¿ãÞZÙ%ɵÀf-ÂÒã°n"Ù'Jv¢'Fßvu8’N‡%Àm {H(ÑNRüJ)ŠqÕ*ÉB:l|¤b^W°( c¸R¼‚ë~%ùßÕ¸6¯æjqþèY/d·LÀõ‰’Es0ú¶+É \¯µxÁmÍfj0[ÏâzH)æáÚ®$±›0v¨¨Q°Z?¶ª9# ;qÍU²÷1êõ&pŸª€Fõßyi:®z¥(ÀÈmS²É8Nª5* ƒô9P"©WH)ÁµEɶc»FÒ$à2MUÀ“’Úò0Jñ%®¹J1ËI¿ªUJ¥;÷s\õJq+Fn›’-Å’´xHKY«‰ÀÅ}Œ+¤+qmQ²÷±l‘t˜ª5Ôi(\+ËŒ¥8™Ž1WÉΑÐ3¢8ŒV” ãdy×n¥(ÅðG•¬?qw+a\£ýDÎwËÒxƃJ± W’$îe%AZ¬fËv'F¾RDÓ1*”l(à=«„ Yè 0[¶*\»•¬—?ª$>à^YÊf¡ƒÀ4ÙZ²0T²jÔ¡•¸YfÍBGb9îÅÈW²*Ôa7{^– Y´œ¾/ÇV\»Ô¡ž$þ¨\+€ûd›´·°_™0\Žöþ Ô!àÚ$×L V¶«Ô)½e,Æ“+@Æ©1fÈ•ýÛeóà ªc&G娋k§Œz(Ö1¼­rü X Û1 XkYª…ÀVc0ÈÁAŽÇݲ½üB•”êàqË1Ä䑦`Ìc –ã1`J¨Ï€I2Žz0vÊVÓ%½‚ám•å¤BrL”aåAÖy“1È‚ ’¾ÎÁØ ËKÀ¿eûº7 P#P¥YÀk1ú¶ËÀߪ¸ye²Ì€ár¼üLU@™ª¹2ÎecÔ*¡*”ðFfDqm9ðk9fUd·F2Á‘1ã~%„àmYÕŠ{øB¶3½ÁÛõ·^åÀ*ïaômW\€Ü6Y*1îQÜð=9V³µ‘„bíFÆäˆåcÔJª‡ù²5¤áÈŒH Ëd‹:“à k4P-c Æý’BP+ÇŒjésH Ëö2p³šz`Y¤‘ßÈñFßv)À€v9žÅ¸GZ·Ëv>¼¢ÅØ|'c#§eÜ‚±Uõ°@Fs/™ ٖccÍ98BÚ\}LŽ?aÌUvË5ãÅÓ=ðüW–C^àm=Œ‘Õ¤»€)rœè‰#·-@¾:¼‰Q¼&ÊVLÑ/®rí묔c*Æo!¤mýpdL¿Êòà=¨ ’lÓ€ô]²½Š‘{”d!2¾R»=gT›F’‚3±" ÿ!Y¢Wã®d{è0U _æSBŠY:~ðݲÌÇõˆRÜ€«ZqMƒ‚SšC'Ïé£,`Ô %|ˆës¥xÃ{VRSðíUeìÒF0ô‚8F+ÕaŽ’öåé[ôq/ºÈkÐê4 ß‡Š«Äñ;u2GôN.àyUûqÁ&­öéOIjHÃ’¶_¬Á–m̤¿ª£A.(ؤYÄMn”Æc§ÎÎfc™ÛPHœo‹ŽŽâ"‚ úè:â²—Ÿÿ –'ÕÅl,?Ê$nÈ^ rQy»t¼ˆ„àS=ˆ»êˆºxŧôq?.!ã9ÅþÐ W¡ºŠåãðþYú[/.mÖí» c¥ºˆlƒíîCj™Ãel“6ÄÖ«péæ2Ú½ñpQ/lc·JµtGy“b/ŽÆ•>è¶;KJ~0.Ð×-¥ÃitOV褴£<“‹ðÎÙ%5ÿÒK÷ù…¥Hõ¬<ºè?{C«Ô´ØÏ·ã)^ß*é³N fbÉ6ùÁÕ_JŠn(öp²ËªÂ²œ;rðà±VY«Êü\¹¥K×ÔíoQ\˺µ•¥ù\ÚÿÜÂ÷µ0l°¸IEND®B`‚images/resize-rtl-2x.gif000066600000000226152330733730011141 0ustar00GIF89aòØØØýýýÚÚÚ³³³´´´ÙÙÙÿÿÿ!ù,@[HrÜþÏu‚¤Ú¹6õ‹fäñ]Eu…%3¾ëÚ’'7‹=–2l“¾@HÝ Ñxd¤ eó MJoÖÁSYœm«\&Lî"Ãk7+n¨¿kô¹ o3Þi´:;images/about-header-get-involved.webp000066600000043370152330733730013652 0ustar00RIFFðFWEBPVP8X ÏWALPHå OÚ6)’lÛ–ˆªšSxÀdfff¬óìͬÏ23u`v`¶€¹ÄÌs†àpS‘BÒ`ôù%"&€áÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üþÿ‡ÿÃÿáÿðø?üR§õj¹É«ó‹K¤=Ì µhÑ¢E‹Rª-ÔBR ©…¤»¼"¹Ë$gäQÖB&S³ÉLRÏŽOÏ ÞLøØ³ñ*[Ö’JQ—2“L2½§±Ó’»Î™Üq¶ìɤµÅµÓbZ\;ÕlõÚâ§ÐiÅÄ)&NššSÜÄ„œòZe+~~všy’ç—Æ™L·$»[wëÆîÖݺ]jf«­¶š™-³NÙX™Ì–•µ1“̬jNqšš Íâ2±íîøæ× Íö“ïÜÉ ËD6%¥¨da’I¦ÖVX“SÍV“ÙJÖV[¥<Ü ¯aKæ´áÞ†[®—…L-IV)©…djIe’E¥[7’NR†Ójyð´³ï#›—Ê屬 I•ë«På‘ÑÙ~\FÛŒy‡6½Ž˜A›1Ç6®#æÐæj1bÚ\.GÌ ÍùÍ]-F¬C›Ëåˆ9´ÙM#ÖáœA›¹˜C›^GÌ ÍÜÐܘ;´±2bm\†Ã9ƒ6VМktn’wh³2ƒ6+8·…s‡pîèqa8´92C6ºDsƒîÈÆ­ŽXG6ƒîÐÆuÄ Úô±mÆÜ¡ëˆ´™Ûˆuh3æm.—hîdþ{LÚáœA›«Åˆ9´YqÄ;´Ù>. l;fÚœmÐÜï_4bmn{Úˆuhsç“GÌ ÍmOƒsOjÖ¡Íý§Ï0‡6§÷>kÀ ÚØÙvÀ:´ñ‹õ€9´±ó½ëÐÆO·ãeÚðxÀÛžî—ƒ›óõxYAs.Øöb5^¦Øæ|æ.Vã…nÏ×ãÕ ¶¹\Ž— ¶=_—)¶¹\Ž—ƒ›‹Õ€ š3Å6]*š³i¸\°í¬u¸¬`c/Á¶ÝÇËÜH.C7ÞÀœÍ‹á¢c›nÓpõ n¼ — ¶µ> —)¶é\€9ëÓp9¸é†æüt;\½`žŒ—+¸¹ÿ`¸èàæx¸z7÷ ¼=ÙW¯àæx¸\ÁÍÕb¼Üî¦áêܸ— ¸µ‚æ\‡Ë šs7o¬ W/àÏ»—)šë n¬ }àôz~3ùÔWïŽïË“näÍhaÛîO¬$[m5ݼÉnœÙÏNxenô[ÓÚöŸ–G{Üpûÿ§Ëu¸Ö4q¡‰?òèƒæ§8)NŠóFzÍÜ…«ILè”B­Ì’:=é?¿÷ª°2I.7krÅ5sA.§%í”'¼;3ï³½'>ùIܸõ]ιÓ催SËLV6j%¯1!93ïà/{õOËëÅÙùñ½¼ï¶­žõÔ'äáfoÕ¯fóN“kµh-$µH²´ÅÒ®ÎyyÊcæ]wÜyÇéìÛç¾äyO{êAÊ™ Ú|ß7Š éEyÕ´ëº(MEMÔopÝþ㟽øý“1º¨«©‰ W¯X«Ð\\\n½ìq›OÌÌ•ëj©[RÄ¢B&ó)|²\»X®Ö{[ñðiO—¹HÑ¢ N«Üäz»·Ï|ÒSžü”µŠÉÿ ·2\ºê#ÎCP)JRXD¥¨èÍ-ßö!UXDåËr’‡ ÞàѹT•¸ªktÎ šÃóVМktÏ[AsxÞ5:gÍáy×ð_ø/¾…ç­ 9ÿÒ‡º9ÈW†ÿÃÿáÿð„Ø šsEsáÿðø?ü)žw9ç.çÜeÏùZff2¯¿›“»9s·ýüž}ü[³%µ&K¦–¤f¹®^+·¬ïx<ûë½ò>»Ÿ=Ôm·sz×èœw0GW4‡ç]Ñ\¯hÏ»¢¹¹¡¹øüÜÐ\|¾W4gÍáyW4774ŸŸšsEsx¾W4çŠæðüåÍýóhîö§¢¹ûÑÜÙ&:w1U0wU𫉿JCs¶s»Ü€¹Å$`~M4¿™áœ¡¹¢ù#8÷d8÷ìèœ>͵Mtn±Bs¯<Æ`xx”›ÛÝùóoÿúOWŸx¥`ð<Ж*ÐX>1ˆB¢!¡$­õ  enÿÀ»Aø*Ô™'6ZÎræ þ’ÿ éòîlƒ–>›û¿áêòwÓÄHãæ‚§vÎ݆»_Ë_ìŸ\ƒôœu´[ììú´þó½ÌÏê—ùOh.u^¼AÛZoüÿ·á¿ãúGjsûÛÓ¿¶:òÖƒÙßúÉt­¼ÙgвÁå<¾ø™­gœ]HˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu"!é5 ncˆ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêDCÒjÜÇxÝHˆzMBÛ˜â/©I¨[sEãu!ùo°©­E¢ØpÏ¡­àöš«¨ûSèWgO{[q«ˆºá©®Ã_~e?аT:ýÌqÓ—L‡@‹„¡Àxý÷x9[Í6FéWE  ÅÂPà< þû¼­æ›#t«Î¢Ðâá(pÿ}ÞVóM‘ºUçQhqp”8ÿ¾ï+y¦ÈÝ*ó¨´¸¸Jßwƒ•¼Ç~›x`m£°ÿ€Áq ¸\œ¥Ò à¶f¾..ú|Zÿ}ÞVóM‘ºUçQhqp”8 ¾5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mVù‹©R›ë®‹nbi¨k)›£óÊÅËVz~ZŠ(¢Š(¢Š(¢Š'–a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†a†£Š(„âc}Q¤Ù”ßb ŽhŠìÙMWªÝÅA†a†a†a†ÁÙP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº(ïäœw 0wØ«êß%´X—…”Wcõq|“}Y‡êÌ?Vaú³Õ˜~¬Ãõf«0ýY‡êÌ?VakNþÒwö“¿´ý¤ïí'i;ûIßÚNþÒwö“¿´ý¤ïí'i;ûIßÚNþÒwö“¿´ý¤ïí'i;ûIßÚNþÒwö“¿´ý¤ïí'i;ûIßÚNþÒwö“¿´ý¤ïí'i;ûIßÚNþÒwö“§Ùu_е÷¨˜”jh ÔÇF{uÐËvv[³²Ý–ìì·ge»;-ÙÙnÎËvv[³²ÝbuôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hb{â\JrÛ¦¨žì Š¦È…fÁ'‡ ·ge»;-ÙÙnÎËvv[³²Ý–ìì·ge»;-è"\Ù³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fˆðÔÙ½ûÚµj_šˆ5½‘òÈF¶« q_G-ìÆ™äôŒïBúŒØYºE…0ǼHœšO×H%½Ïñºì)çG­„Áé:•-®t ›<Ãà ƒ¢1ceC˜·Æ•C±ÿíªè \WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³g’|ù­¸ð[•A¾ªÓaGg]rø³ÓEvŽÖ¿µX£î¸¤K×V­Ó³6È}Z$=áÀõ”¡­ªè \WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕsýÄ”w4ðg\oC̪üÏà O¯Á碨…¢Œ•õ?äj€s¥oëõ}ðÒ¥}ŽPÃâ¹t¤dF*!k!Ëwƒ•¼Ódn•yÔZÜ\%À¿ï»ÁÊÞi²7J¼ê-n.‡à_÷Ýàåo4Ù¥^u€7 C€ð/ûîðr·šlÒ¯:‹@‹„¡Àxý÷x9[Í6FéWE  ÅÂP¿zS]IÑN,Wq0”sŠþƒbºq©~„Bf˜c*ŠÜôwd˜ZŠ»a(GJþx%žÐºKµ¾×s(›ã$?|%ûŒÝbSÉ\Iº$ £ø[Rº<•ï¿Âj·#rÕüòU¼Ódn•yÔZÜ\%À¿ï»ÁÊÞi²7J¼ê-n.‡à_÷Ýàåo4Ù¥^u€7 C€ð/ûîðr·šlÒ¯:‹@‹„¡Àxý÷x9[Í6FéWE  ÅÂPà;ûÞ ç8š±U¯Â_B¦\G¨{fV´JuÐi''/Š‘ŽÃ `hÍ%sn}/d¾,/N›<Y=i¼,‡qaýB G¿Z¬ê"6ãýý+ÚbêšýÛB8=‹¶’0?¤B|œÖK¸ÿ2ø¸ë\cx4Ú}“õæãYo‘—[Í6FéWE  ÅÂPà< þû¼­æ›#t«Î¢Ðâá(pÿ}ÞVóM‘ºUçQhqp”8ÿ¾ï+y¦ÈÝ*ó¨´¸¸Jßwƒ•¼Ódn•yÔZÜ\%À%m€ƒ §óþ `_§bz·Íì µßŒ– Äj=Z¿ rŽ/Œ]bþæ49«#e½sñô›TÇÁ¢RVy‰C%-Š|mÄbµ{O;X¼µô@ÂÒ-?"ÝeC¬Ù³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³f˽Ïá9Z»Q‡c6ù¤c¶« q_G-ìÆšj1õµ]” Šú6Ïvz±ñ”H%—é[JÌ߈úÚsf§~5™±ètßs…º[€dØbÓ§U¥ý”&éq”}›ÅÂç78„Ö<#Ç;l-´X„óǰ7ñj`+³fXqDàsëjº(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆši~??~t¾ÌHO·É ÄÆ_ME%°ÎúZññoä™V™(DNV¢£Žm˜DÎ I•£r&}£zع;) ý dÐ6÷éòœ+`½“\/¢ú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÄÿ°ñ“€©Â„êÑõ˜íÖÓmbLÐïÅ%ö=¦øÏøèIÚÀñ~{›¤fèÄ<ÕÊŸ=Ä8oäz½sÛÔdÍËKÆð¿b3Šoýidõ˜½?9æÊ‘µTF?žŠÞ6ÖóM‘ºUçQhqp”8ÿ¾ï+y¦ÈÝ*ó¨´¸¸Jßwƒ•¼Ódn•yÔZÜ\%À¿ï»ÁÊÞi²7J¼ê-n.‡à_÷Ýàåo4Ù¥^u€7 C€ïãðHn{Öp% (ðb÷á=w¼hT³(±Ð`EÄLö.BŸØÎ zÑÛxÇßäÓz»åº8 ¹*Wê([ÖF‡L½ª?g‡®ÈÝ*ó¨´¸¸Jßwƒ•¼Ódn•yÔZÜ\%À¿ï»ÁÊÞi²7J¼ê-n.‡à_÷Ýàåo4Ù¥^u€7 C€ð/ûîðr·šlÒ¯:‹@‹„¡Àææ£u¦Ðfr*{¼ï’¹ NÐ4Áàè ‡¤Rõ)ñ§5·v‡Tn÷݉–¾:0Z…±…ˆÜZË*PÚC.Ð PÍb¦¦ hÀ2-F`\WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå—ªÏPd«“‡áïÃö3Ñ;ÂH ÎÒÀSm-ŠÇ8[ÎÔ‰1˵£äÈ1¸øjË’ )§OX,šBäÜ@554-‹p9€õ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÊVÐ×ÖšÔ‹B‹? Ǫ.þRb‘é^PN vp6”1S¡Ù1ï«Öd t³ãoü5~€j¯ÿr(rhÿ†)${û^VFÖ§Ý™‚ÍÁL9iâ"&µ5ï))S€®¤­dmãJ¡ØÿöÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mW@%⾎Z#d@8ö5ÒXñ³îÄÂxÔ½,YùsAϦβ¾q‹MòÓ‘{H¾„ú\©Eª†{"øÝÇpŒ"©eÇ8õ4×([MÞNwû™R]eãJ¡ØÿöÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mW@%⾎Z#h è[ñg@6N•Ôxh² þP«ÿ‚°6C¹šL™PÝDLáV2Ô•Ûƒ$²“·ð‚ð6mQb~ºTœõÈc–H1•öAàä%&-ÈB÷çŘ~ʹµq*‘aŸ[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓN‹DáaNF‘«å-c\jƒ‘°+ó'8‡¯Ï(A­d·l×¼[âÅU´1Õ¥ŸÄyÑýé-H.¤IŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ8ãŽ7|Ô¥úŒ}ô2vœôƒ¤—jÝé&ËG¼£GûÊÜꆃry*¡(ôrÑÌi¦£[UÐ @¸¯£–ˆöcM5úÚ®€JÅ}´G³i¨ÇÖÕtP.+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ\ÿÿ«õvðÅÇv&”‡Po‚KׯHšG)îüƒðâfŽR/š?‰øŽY(ظév®+èå¢=˜ÓMF>¶« q_G-ìÆšj1õµ]” Šú9hf4ÓQ­ªè \WÑËD{1¦šŒ}mW@%⾎Z#Ù4Ôcëjº% “yç«AjÁNIs/ ¾^—/æOp8†ÉÝ4ÀR*¸³7µ-£Uð0Â(pAx%„¹ƒ¬‚ÖjÞ¼n¤D=&¡mÌqÔˆ‡¤Ô-¹Ž"ñº‘ôš…·1Ä^7R"“P¶æ8‹ÆêA‘w„ý‡˜Ïy jR-øZx´Ýc±ÃPzlÝDŸ*É*ß}^´âþÿwÚ¿ÿú´-Ù§q µ`Ød -¿Vótû߉‹5‹Ð¶šöÙÑŽ„é]GÒúîn¤!ÐÓ³êÕÝîŸV*”¼õÎkeþ¼ŒïFù›{fwýw©Ý4¬È?ÈQ„õcÂHÙåËײ®CíŸnîœ 8qþùeG7Ûdgp è_]>Œ÷ÃËoÿ<¾s/ν±S}‡5ÝcI6±ÝŒÝ‡ÞêÒ,nCš23'„uÖ1¨¿û­ÔïáÿæáWƒC™ Wê\vŠøÏÂOEºé¥/âä"„BÏò"IµüÀKºçÍ›ÑC Õ#ùàZTªÛK@¼úÎŽC0”³GZ‚bâŽ×ü¨Vy¨øB+©|™¡§<¼ÛÐn‚ä|iä“:U|#’úáL•9÷"ñäè¬çXö|+IgNÃh2óQD\¬Ï–u'µ@®ü6C"ÿý4ñ¤w{äJHŒù²$HíÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-ÂÜ-įo÷Ò¢ú úô¾zƒ’"o ¸ál}øì܈M3Ï>G\j¤Tª¯~˨áª9Ä ¼<ñRá}×è}¶¼ …ßÁ-ÑŒŠ5Ù™gO O¤7v†.D±Xû^E@?ä°'›Û:èäN\Q¾É¤¯ Lµß0wšè–K5 ¾÷Ã{‘Î*¸¹n–\PJÆè{Åj1Àlq-q÷èÎ`.‰ÙÕ[î~0¯Ž%`Ör»ÜQމ·A‘eàj!îf„»¦ ßµY.Å0¸Ï£*ŽléKÓìv®ãr"0pÅ€éªxqb¾U}SQÕÄ,¢’SšI(=S¶ÐZ`_eþ+Z)ðÊ!!!!! iJ½ Z™Ä%¦à8„´Ü–›€âÓpBZnˆKMÀq iä~tKT„«üyÿlóNgØ3i,„*~^È8aÜ^›áMäëM,á…Ë#4çéà:7i4 ³5Z1Awåapi¸¶¡Å]/) ç€!t[ŒñJ¾Él0ᮑ _‚éè{ò,“ÜØîØÕËUI#÷ÕS'ŠqÙ­úI ¤~ÖÇfÏ8Ê.;_3tÈf:Lå7ú‚f˜Qgœå¯™ºd 3&r›ýA3 ÌN¨³Îr‹‡×ÌÝ2™Ž“9Mþ ™†æ'TYç9EÇkæn™LÇIœ¦ÿPMÿ¡A]õÇÅ:YÂú\Ò¼  ¼—]ÞÀ0îߊÚuºXö½`ƒh™fG jÖ¾ë36îVo8®aMaz_™võò±Ö¡H 1ÊÝQo­}½½'ˆ¿ïN*A'À((FàmÕvó‹ëzF¬¸ãÅê‰_N´^>½ŒEo,!9.:7”¿Q}ع›%Ü'Æ:‰}@æ/ûTë‹z&^mSßôI0PCî4`„”ñR<|à«ðšðÌ¡=%¤º@‘_€6ð“`3b cÊ iŒðì€æ:¢é˜pî:Fcª.™‡ã¤f:¢é˜pî:Fcª.™‡ã¤f:¢é˜pî:Fcª.™‡ã¤f:¢é˜pî:Fcª.™‡ã¤f:¢é˜pî:Fcª.™‡ã¤f:¢é˜pî:Fcª.™‡Cÿ³†bãÎ3QÖ¹ÒImqä•ù/zá‚ÐŒŽs¬àvpJOô$Õ¦¸y\{iÁ€™åÒê»ü4/êgßmµD¡o ^©Ê¸ÀŠÏ¢’¦?UT¼¸º5-4uñà7;×rª^¹°ò.§›×Ik7S2!wb¤3+rôªßd˲ì».˲ì».˲ì».˲ì».˲ì».˲ì».˲ì»`Ri­FqÀç®b9bx-n‘Ëå$™‚Š¥Ù”Co*(:Õ8HB€ÊEë쟎<êˆTäò~àù_A7ÇÚÿ,¨‘â ³ÌÈå¦ôö4>â¦Ü>A¯ÃØN` ßZ6çoÝÙñíõêm·C(v{ÅûÃ+ï)\Vi!þŒåsˆÔY55¬9Œ=möTùG™«‡õ¿49÷Ûh|ÿÇþ`ÐЯ¿¿¼ÔþµÕþ·‚šDû÷-r„ µÛ–NHˆfj 1gK›SJZv”hÎ+o‰H7Ã]À¤k“[;$‡bîOÖ[io«> Б/hÕéÝ“¿°mõN zmýUN'w~vÛRÞÜ…«H´’íüȸ„f[§èÝŸl¹ð ÙëÒ-nâ,D?óÁ9„/ÀÆ_YÕ+(Jd{t˜m“¨Ñú·ûžA™˜•æL0]D—£cš“—–¿x¨}4 ïÏ?Xެ¬X·ðh¡d0Zœ¾:_t{"zœ+½‚a™=9YXMä_‚"• 8þÿ¿ñRÊ<ÛáP6þ@ý[ù.!±CJÚ:m¤JHkrs¥뛞}ÓÕÖ¨q‚Àë]Žèôó÷ñÏÈ¢íUš³Ï,îA­_~ÖX«ö§éeW5«}Ú¯×Éo—!Õµ=MÞáVÿ«¸pƒÖü–šÂeˆÑÂÂ×%·Nõ’Ôý ð(ï©ú±¾²Ýà¯ÎH~ £93=m¬p?_þòÎF»þù‚=¨3ƸzÖEtš,äœO `ÒMˆU MˆU MˆU M¨Ç©}‚{½ùýÊò9.Ü‘ð5ú㯸ˆ}Vé-¤¿MæKûi"R…¥ò9ÙòL–çp‚iUƒah¤ëÖŒtÇ Š} †Ì·¬¹¶iBã.dµk‰ÑÒùψgE€ûïsÐ?Ȧøý‹RÙô* tƒP]W3Â<ñÇ*‚o…‰zv—c³@yz?p*«~pƒÖ•Jì xë*äå?”Wðÿ‘p nX0Õ&L5˜Mçë»fe  hkBã«?1ý²:hé°]rü¿Ãóí¼LtòÜh)ß5ù€Ðï º™Õ»’øojOiPµ+‚œw¯h»ï Ì—«aÑ/T‡§„®xFä^óȼô9!#¯[i"M€qnçÖ ü‹gð¦mw¨`(YLžv‚gøc0ˆÅgg¤ÉÒ€u’­"z‰@‚>Ùˆ"$ç§Ãt}¼}5¿¼2,1Ç®%ŠT©´üúƒ'9¸Ê •ÛTÕz¿ûÏ”à1ÕLÇqÒ3QtÌ8w#1ÕLÇqÒ3QtÌ8w#1ÕLÇqÒ3QtÌ8w#1ÕLÇqÒ3QtÌ8w#1ÕLÇqÒ3QtÌ8w#1ÕLÇqÒ3QtÌûI É€Éf†k71ñáÁÌ ÷8¹Ò*sUÀÜ‚ð!ò¤4ìUØøÉçè$¹š˜_ˆZµ%Ф©8a0²Tþ w—%³âjnì.—wy~Àix&¥”sÀ©£4FªD¯ây[Ù%%DÀçìû°(þ À,„×.R~ƒi·|–Y0Jýì*®úT+Ã&C QZ¿¬ÄüeÚ›à 9 çr4úw Ûèøx±;ׄœ4¹®óDǘÁg™|ØZ½Öƒ@À Hë«üê¯o­S´)Ê&”~Ñf‘»p=Ì1’S%3è¹ùãt‘î *µ±S¬ÞBUD<ÇŠƒ`AWÌB‰éŒ•ÞÓšwÍÎ{8Ýþoßå¾%’`^_Š=Ë$,KÎM(ufgj @€ô\7rË ‰2Ä̬h!ÞÛ]Å-ÕLa÷¿H4|G¢ 4XÌ›:ûê@Î|ó•{¬|¬9r%gh_ù‡Òè#¬¥Æ;©•–ðW>)¤N8{9 JI9cÝàUÍ×ïÐØ._b¸ú–Tˆ"¸K@{÷©îkš¿n4 )è¨]NZ5Q çãPd"ùæªMÇòœÚ5»+Yþ+ÿ; Ç'0q ­ûz$ 2f¤uùŠ×çØqŽÅUSã‡É„屿̵Àq¤ùÊjûžsõ‰ Š´Í×fÏøÒ??ó+þäƒï ]—Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|Æ7Ìc|ÆN÷ÁNЊ…ÝT/ƒEú ³-c~¢ÿ[ª·{Ý€W(tñeˆÁjW1î‰KDìZ¦Ñ1 ð}~o!À¢×2cjáŽ-°õI|‘†jUϰŠ?Kýñ”`‘t(zÇõƒŠË†Bzqn¤Œ±£ý¦vg–_ïF ­ ¾5öhE¥Ù ‡¨ªu¬pD>x0†ÃÔÝtâh.½w͹ðå®0ЊH¹²66>Ÿd‚†GîÖC‚Ë‘Û.1ô䦳 ¥ùúŽÍ굫vLâü¹ŒŒE5²­}š¹°˜ÝžûNdÿûÌ^W_A§¯té‰úßÑÊ5 g%MŽo`H5ßëŽCö0KÀàú·lÛjD5pÌ` ÷T³IËsÀü«pàØ[ØÎÑÞ°j;Y½ÍŽ´ì¬ªžEûËžFà6wa^ð‰r²„Ú­8 çahâ(‰ü¡s%djç®ü ‹ƒ·~0yV5…Šý=³RèÂ6ÏÏ.ö§4GNÓ!ˆi m ̰zqåó>>N[†Ì±V:{Â~à•[^wÌ­=ý´ÖoÅ.ÓH³ ’G¸†_4Š`)5b?@sÓ¹ß!>þêT€r±¸Tã–|0µîè4øf¯©d­Ñ‘ƒzk.xûÕ²p.¶ÃÕû§‚Öê ŸµÌ²q^¨aˆ™ B>Îã§–K,E7xþ"UqóÎòö9D©ç¯æ°|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|PçÓ¿Å};ð|[áŽ)JXñDËqñ$ptzµÆP}WS ™µÇu«ž€-ÅȲnëŒïÙc=:µëT às0|z±C»æ ÃÆ£Y¸qd\ô¬b^jCÎg”k\Íæe4êÝA¬Kª.OÑU¨–.¡þ™“jII†!Û”ë> þ~x7=T¥á P(gß̽j6ø3W _Þ$ÇçÁ—øN¬ð˶ÝÚÐuLû²(ÝF˜ª«¡Ø¶·¿C„rõ)XxYÏ$Cã÷Ö™¬’XÚõ–»ùýr¹·è,˜Ñ('RÒ"ö LÇ©·#eô«´IÓÌ)U:zˆæƒÌ»½FëÚ5nK3Y­ËW4Á·JÎébƒª*ò£¿d³o5²)‰£…Ü—<”V$9œz’%©ä!Æ=Rã•êªñ)²Ž†7l¾¤ÄlòÿlS‚BP|'Zs¶“UÒÌz,ܼ%ºª’ƒzóL¿RËiçQ°õiÝNÑlÂ>Ñ//aDQÜúŸ¨ä^ï>;1£[OôUz« ô54[dº³ÀôàQ¡xPý—êˆ Ü=´(yÀ;…š‚óQ+´M;éI­±RÏ8Ó'c I³? Ä?+íŵ;O÷žÅ¯§oõÔï㢠@ûÖ»Oôl)"^ö¢È¡—±r°6þ×ߘû>³/9k‰%cýqØZ®ž³ÿŠˆ¶ËÙϺJÛÀØ I0AÔxÿîåÍPcCXp{—±®xv[^¹:åÅåñûR)/ÆR oç†×¼&Q¸…\øm$Š”~õX7P&8ÒAÜ`¨=?è–Æ¯kŒ ææ¶’Ë¥gØÙ£[]w$1íÉ“±ÅÁQ‚»¨½båÏTŠ\«wkýú®¶mBÿŽÌ/†ÌÒ|–Cœ6_ÿ*ïò§Ú’³Šðgd.2Lí“6‹¿Ê’að…Ã-WYM.x$h½Õ2„æ–húUûB*Íay¢¸-d°TMòd£€†YK+b•¦Šéû‡<Þ˜êwI«ŒÂélϬ8èKC3«9n2ÜF¿¼zfœJÀñàˆö)˜ÔVK|Œô™Y_‚ŵ4ÖYÚgáb§.‚F3:{áêíå“!Ü™wlMž³.–i,gÊAmÐÉ‘–‚•ñòï;J2;µ§½R­By›ÞòvÏ!)ÎÁ­òXhe KMÀq i¸!-7Ä%¦à8„´Ü–›€âÓpÄrªuf.x‡”1–‘/!jÛ«>Æø §Ý® qËqx¨Æûˆ!]€8­2 Y|Œá ¯]„XäÀÙÔ,$^3QÏFET‹{xå&Õ®•–ÿzv*ªò•ÃJ)¾J™ÜaeZLQ7´©¨‡’ŠSäˆÐ3@‡ÏÒŽ­ÞJ‚nÓ \`Ëï€qŽ!¿iZ}諟x¥S'Ý †Z D¹ +NöÆ™rì,'’ôHÓöN´c•«[øÝlõ¨BÕ(ò¥å¥´¢alá¤Õ¿äŠËzs0矅;‡ûXé\˜ùcЄgcXV‘µ®)µÞ<§Þ@ëa=e'ü"ZoÂïÃ9­ÐQ:mîð²R$?à<Ñäèž•ì—*$žhì.Aã²ÞåSÒþÅ5û¢S &ý¥Líªc}ºÍ´˜´µdáx0™p–z’Ó wç ¼z,Dé+hâ&e P«ÒÏ;a‚Še/Zd”oYRç’:€*}'Ѭaû|¢õ{1QÐ_â&ìyï<­™ã“zP\e8Š]ú’5LÚè(RØäñ<_=KMoèV×å£VðžmÖ5Õu²S;s:Cš(ízxÐaD«†[d[*£BJxûÝúÌÄuf£š{s‘AGLv æ’fÎbkŸ8DÔØ“ÕáÛ¥¼óÄÕpFþõ+AüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎüàÿÎü‡?¨°¸Jý ëZ5?þn…X*tcwTkòs–½u“Ý6˜¯²X¶· Q6˜]¯”F]\ÞS à¸q™vQ€%ï}ÈöùCøz}Jk{Y¬â™kœ5öcD KªåÚ»L(‚a&â8B®!G[·¤4­ôÖ9²öÅÄÿe‡õâ³)uy«,@ V8rÇ»] ‡q ø€¢kˆiÛ·ù ³ömutâŽuÈ¢ÎkÿÃÊà<(ôHãµKÿÇ6Ÿ‹¼ûC7vNÈe Ùµs=¾ä.g—$#û¥¤ÑIZˆÞp‘U¹*üº¨³×=9þ^ ñ2ØALM§’råxÊ‹Î/tÆv³Æü3ü¼›ßVÁ:ðÉõ  ?`ŽF PÕúù ähðÅ _¯ÞF PÕúù ähðÅ _¯ÞF PÕúù ähðÅ _¯ÞF PÕúù ähðÅ _¯ÞFåÿ½«µß"»äàÛJêÞÔA0î“¢Xýìt‚ÿ ŽIWÔ!÷kÑxüŒ7·D&s  âH}mÜ3XPÚ¬ü‡@¦7,ˆ«~'ØW›x&ì‹l±xZ¯+µ¯lO×¶e ›Ž¨©O—πབྷÐ}Z©ÇTÜ\Ôp53«r1Ž$©Úû6/]zhp€Ï¢¯6jºç×YÏýðæÚ¸näC¹•ï2Ër7G" ýf¼˜ähr“ê÷Ðx¨,Ikj_ Ðß»ïîŽU4˜6GG©†‡‚SdùlŒæ~­¬¦3E2ߘgÔ]ÙW>Ý C« ˜M"Çu¼*™8µ'̜̑­’æàtBŒ4; Gø>(§™™ÚÈ9ÉRu”€†ÚÔ./2p jO™9™"Z%ÍÀè…hvŽ<ð|QO33µs’¥ ë(  9µ¨8\^dà<ÔŸ2s2D:´K›Ñ 0Ðì-xàø¢žfgk ç%JAÖPskPp¸¼ÉÀx%©>dæeßäñfXöe­Ž1 µÝ8kqSšÚÞÓé]w»nÞ$ûéȱx•E©ÛÅÂ^ÄÐ }†ÓGµïCÿóñÁO¶¼p%Mç[-S5±¨aKÅɺŸß¥ÿôšT×n}°m9µk c9ÙØðÜÄ2’¿¢Œ^×èwЩæ"?Š ã×ßõå bôæÀº?N¥4ˆ3j) ’3€ð;r+01ÞŽ®™S•¹¡TâT?f›ã·þó¯eS‘|W¯í~ÃL‘ÎÇŽ.WÉ€"_{AûÁx…?önæ4+ÅÎ~μ™óªÚòÍC¶W»aºb•²ö/ãßß…$–ô8ðõ¤¥k圶‰€.©˜Ù>"³¹…Ûk5nàÅÞ^e _ñç¼Ü¬pÌÓê’[íÈÂ. ¹Œº÷h ´ˆ7tWö³³;W·`æøÜ/Ï&ÖC 7•ô½–¦ÔÄ¢ØtšŒ¬°S,KÒnV´w„Ó3Côà\¾Ñì)ÁS£7^¬ïB%¬«¶¯¶6€°yh©c"°îÜ¿õß×?ÖqSŽõpåfq§hôûÉ)6üJP¥÷j* ?Ë™Gxr³[ÿ¿ÞÐ}Ý,52É9„OR¡–ÿ‚˜u5Uê±jM®T<“®ÔAgh¢Á8e½4a^š–é^7Êþ’­¹Qhaåßù3À‘dÔr„àB£.›èëå+}E<åâůS+³:Žq V¶Þévz‰62€Ílåx¯A±@Ö¼F-™B—Ñm‚”<Ñï­²`ì¿$7ö½¼É?ò57›u­ïk°—áÐ3NÛͨeÎnu.Þ¾4"Ö}×y»«ÑÏ–éòò¹J(ÙwÊTBADâõ*9®_L&¹"4O÷IñõËùët=6P.…Ê÷Óóc2øñæ4"úMG(h ‘yYÑl›pTÕKP¾ÑL$ h£+BVa¿cóv¹Z¡×¥¤qÛrÝ€]×5÷Ư‹^¥ØÆl¸ÌbϹ» ¿ßWÔõî ±3ëâwGºBº!u@ß§?É^\#^àœ·'¹P†º_kPÓÂ×¢RÿAºpïÌ…&šÆ¦º,‰böÌT)i”+Vác±Ü—l`ІZ)Io-é~‘ŸX‹‹â]ýUÞú¾ñýlM ò)C²tmNèq©#m€à—äoð0q\Ý d%©ª I>^ ~6ÎþóÄ:{­L#àLquö 4ßVXÜ>iÅ~Ó¬Eƒ2QHC%Å€YÂÏÚ„ií& ú«äÃ&a¸1 QÎ<[­¢V´;tsÈèÃ#M¨¯tCä‰Lo%7ŠBáàÜPò Æj&¾Ä^>¦l\9¯oón´áÌ´¼ü‹z£´ PÑê «Ñòá½Þ£ø%aÞæ£I˜ AZFu{»’—ûeꚨí ²­#©=#2‹EÖã—×Ô,—.£«GðUëŽSFÆ,‹’Ü717½ ìþ­(¦áõ€ÇU*F\)´@æÎÄtg©HµÏ\¼@zµG 9„Õkþ“F!l¢4ÊK²¨ayàd“ñëZ£äÀ\Ú çì–¹™­}Ôï¸ ·º¥­3u©ÚLâÕEžƒ‹·ßtÎë+쥺v­ 5¾­GóµØGe¾!KÓû›¢"ç3÷­=Ó£Iæ[P±M|{LÁ6{±ï9Ùär.š—Š]´µjuhôL^î“Ȉ¡àÀ®„ND$°mÔw'7Â]ó Ϩ‡Þpú°úÕ¡‰ïÚ<€q•°—r§:Õ¶ ʱ°Åj•CŸÉ§ ™ðæ¾ ·Ž0ücÀC€ôM”cÍÞÛ›èàôv‚³¹Ê$—.«Dgѽ¹Þô¤' œag¢9ÉÎÀ†,‚J:Ê$Økú¤ô…>+îÜç¿9Œgªž†ÞÍÞ» xÑ_S7šwƒ‡²¨‰8âžÇ>èeTë¿‹oׯ‰2•Ÿ ö¿YŽ!Ò­È®þ,Y¿_$ÊV|ƒÚýd^8‡J·"»ø±fý|h“)Yòkõ‘xâ*ÜŠïâÅ›õñ¢L¥gÈ=¯ÖEãˆt«r+¿‹oׯ‰2•Ÿ ö¿YŽ!Ò­È®þ,Y¿_$ÊV|ƒÚýd^8‡J·"»ø±fý|h“)Yòkõ‘xâ*ÜŠïâѨêùm¥v\8HùÞÞe¥òA®¥X– Mø_Ö!”‘@‹R•/ùbĽ­­7v´ž>¬($‰ þJ¼Û„ÑW¹YvåóR;;³‘»k~.ÌÿàÃÉð奿­È+HޱŽùD *áæn5BéðíùQ4Ð ]ÃÇíUζ¼ß0²ôMnk\Rr䪯\± ÒE!,CÁzñMÀ[Î호ô‘ a| ûu’~SˆÍ­"êŽVZ$aKCWæ6n$qö£Ùw1åwÅñ*P/èóÄU˜…å Aöõ•°É8ƒ§·š‘éMaËëQA„Va´(zòÜ_â9‘3JVå˜X¡ªÁÏXb6мŒ*fLÇ„ -¾ª¥^Üà€?Ã…·Cø`@ž”‡œמ^ÿàËA­ífq9Ê53¤L 'Aý‹è‹•L¼šØŸ8»D½bý©cõ ¼ÒÁÃ\¢/l7¤tXxzµö2ß­†ôŽ‹V¾Æ[õ°Þ‘ÑaáêרË~¶Ò:,<=ZûoÖÃzGE‡‡«_c-úØoHè°ðõkìe¿[ é­}Œ·ëa½#¢ÃÃÕ¯±–ýl7¤tXxkwûÎ1ò·=ûÝ_Él¢\-ª×n"d[ô`K5ðÇçýt(~JÅÄó/½ô.‹‚¯áiŠØð:qe™¾kæÝ(H¸ð ÉÍ  ;Û¶ûí}”æ5JÏ%†Úk¾Ë>÷ê[z&k<4 —ǘ,ÿý.Šè¼Ì°]Éð"ÓÇ^ôÌÁ6o@ÞyÈ{A› ûŸ2ò¿o[ iKëDŸÝ ´©ožtŒþÈ„¾e;Nü¡žBmCqfy£œ°båò‘%9š‘™u;¹»äÑhö©F÷¸(‡Õ‡ûZvÀiRÔ<Õ«¡\÷géüKÉfá^¤9û÷Åôž¼ãg»è¨Pï<&Ê÷Ž*Ë âä= 3d„À­Wx¨4¬Íýìª6oðq¼¯Ð<ÆQÖÕ…/Sd>¾)4®À8x»Þó“ðLÒ–æŒxÌöp§æ„"ò5ÐÒ’•ë¯N\特C[ÏŒC“ D棟pxÜ£BD±›)›ˆ@Ž+M=íÓ/u³Q¡}¢)ø$—°ú'ãþ/$»ÂÌaš¯þÈÊ¥xå*¦þ8/P(s>ei1âtøçËÛÛp÷䟈%.n9N¹Þ–+2¦„b|Ç>¶Ã¨®M_¨!¿/QgºØºErjýA ùz‹=ÖÅÐê+¢µÑ¼M ’¯ÅÎ+GœÁ¶­4òF¸¦ÃÍ‚ë˜-RÄѰ"N®t¢¤ªÐg]ð‰e”(®3¦v”ÀÑJR¥ÓrF ª_Elq¹'åi¤%Ñ‚äÕÎw¨èimages/align-right.png000066600000000775152330733730010747 0ustar00‰PNG  IHDRo¨?ÄIDAT(Ï•R‹JQÝŸˆ"ÛÚ2£ˆˆ¾¢Ìvµ¥ ¯TÌÇ?DH©¹ÚÅG©DQô2÷ÞÎîØ¶ ØËÌevιgFq‡p<ƒ7"{8?I:4$Ÿ$!É!ùa)~õŸ^~G¢ç‚¹RŽEêÑù’®]˜Ziw¦jhgæÜéaXˆ'Ewz½ÞmHÛív§Ó¹­?Ö£ •#­lL]ƵJL-šjEÔ¢jcW@…”ÕBÛ†(â}9pcz-‹'ñÕ«í_*ìEЉ5K_+Ì_èª#ÈU*”{Èår©T*“Éd³YÄhMöÛõþ†e¬X ©î-Þ˜ás}º W[`øiÁpÿù>!л{)P;—vÖ-c¹ ]ïk }¶ll’|p턨3 H@€žÑ@ÐP8/î$\¼ô½~ßÂŒ>y"Íf38—?`-¬‹Á7°œS…T»“L&Óé4Û„ún·Ë½N&¨,Èèäa˜Ó‘83cNðçóyH`ÿ!hçîE«Õ¢ñðù¥ßÖþKÅdø?û¾‚˜›ŽöÂ]ä1Àšw=p øø²ßïÿ¨ø|ƒYÒ/`T¶o° IEND®B`‚images/wordpress-logo-gray.svg000066600000002761152330733730012500 0ustar00images/arrows-2x.png000066600000001537152330733730010403 0ustar00‰PNG  IHDRööùÇ&PLTEÿÿÿ   ŠŠŠrrr———œœœsss™™™jjj•••oooƒƒƒ___¬¬¬|||MMMQQQyyy¢¢¢qqq„„„XXX­­­“““~~~xxx©©©|||[[[‰‰‰œœœ®®®bbbqqqoooxxxzzzžžž¦¦¦²²²©©©¤¤¤¯¯¯­­­±±±«««®®®§§§¥¥¥µµµ¡¡¡³³³£££{ó[ØStRNS\AY V@+FX-/1POZð¾ÅRϧð#ÑÜ´ ¥ì™KÅ£´LŽ ì«‚‚9«õ¥¼Œòϧ¥ò¥Œ¶ÑõŽQ78%[$›¡Þ£à’g9=•IDATx^íÖÅrã@†Ñn)¶e–™™™ÃÌ0’ÌIfÞÿ%¦e9NÅî«YdV©{¶_ÕýµS“w@}CXÉOéy©ä)®ÚŸ¥š‹¬ 5b ±Fˆ¬QºêBW!ým}n»Ox‚Ò óK ®¯ßF̧ÏàŽ‡Q7¤Â××_R$Ëæ‹Ç}Ä‚(’ !„²þÍùno}&'“2\w»»á0»÷Uuß ÕLYgÊ~ J¹ “žwÑ\çW•Þp¡§¬×ûJu¼P­„Ö²ëû寧®ÕÚò´Ÿ–ÚžÖ¿žsÿB!„ìNÛðÚ(\Åͽ4…ï$ ÞÍ« î#3åÞ=?ÒMœ|)Õ'/xÛ¡™™øÛ[“Ó©úr¿íbÌÙX¸¹Ò43 g‡fÌ /!„rÚ-3µy7¬rzoS´ÈƒAâ^ *“èÌ) T7sèäE]ºää‘)Û¼í©áô$°Åß36?ôåšvuÃîèá» ¢Æ]Øë]ôè^]p×Q~HIEND®B`‚images/media-button-2x.png000066600000001522152330733730011450 0ustar00‰PNG  IHDR D¤ŠÆ;PLTEnnnnnnnnnsssÐÐÐnnnnnnnnnnnnnnnÐÐд´´qqquuunnnnnnZZZnnnssswwwxxx{{{|||}}}€€€‚‚‚‡‡‡ˆˆˆ‰‰‰‹‹‹ŒŒŒ“““™™™ŸŸŸ¡¡¡£££«««­­­®®®°°°±±±²²²³³³´´´¶¶¶¹¹¹½½½ÀÀÀÂÂÂÃÃÃÆÆÆÇÇÇÈÈÈÉÉÉÊÊÊÌÌÌÍÍÍÎÎÎÏÏÏÐÐÐÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕÖÖÖ×××ØØØÚÚÚÛÛÛÜÜÜÝÝÝßßßàààáááâââãããåååæææçççèèèéééêêêëëëìììíííîîîïïïðððñññòòòôôôõõõööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ(ŒßtRNS'*?H¨«®äççìííðóÁ¯k µIDAT8ËÒçVÂ0†aŽÆ‰JÜ ¸Ðº¥DÀÕJ­Xk¢rÿW`’:ÚˆãýÁùÎésZJþÕ`é7Ècüt±¶­ó ZΫÓh6[È.À¯Ûcç¹jW ÒðÔÄ€jO–y{Óªyª#/@÷†~}Ѳm[Y˜šZPè¨ú@E×.‹ù¦i¦¢˜M™¦…ܯºÎAù²tžSÚI§3zl_»C°pU~h@®óYåèÀ)Æp.>?Ïá¹¢† J{ÊvzksãE#ljååÄ“U%Ú‹ò{;;{gd”zIªùÁ´j\Ð u†MÓ$äɱ Ã"±ÔÇ#,?£ !JtQf€ÝÌ€œ„ãã0)spE3DðÙû#n9À…“Ã}yÛQ=•øa¹`²Òî¸Ïø[”˜mš`w¸c «?ãk$=B?û»¸‡ïI–ô5Eìîí•l‚ô°%[‘5]Wžè€| ¼R¥é w `(ÃþEÜ)‚S\¯ãÓaÜ)€žx‰–èaÀEV³ÙÕHˆMÀ&‰¯îë ÝÉ~Ï`àïÞ~U–µÙ£F$IEND®B`‚images/about-header-default-rtl.webp000066600000044572152330733730013477 0ustar00RIFFrIWEBPVP8X ÏWALPH9 ÅmÛ8Òþkçz¿WDL€IÀ9AG®”âÎØH#UzøÿŸ¤ç—NgÚé^w¼¶mÛ¶íÝÓÚœµgmÛ{œµmÛ6G;h“ÏÍi¦Mrø<€ mÛŒ?ÕÁ„+wDLÀð?ÿóÿÿþçþçþçþçþçþªí6.gítyªÉÕºàDv' m…êûŽ& —cQ,~SYdçoö¡Ÿð»¯ä#oÞ]ßâÆ÷ö%n^õÏ+ø×Úh[Éü¹wŠp¶´Ëdüé1ýM|-嬷ø+•©ÉšWûø«ï—cjÖV÷ã&[iZ¥ƒ±HœÛsS4QxI$í­zf~–eRst˜93½¡ qËáY˜™wËH‚k V&UÙ­ IÆÎ±p²\ÛH²çò²‹$åˆf20à’ú &fîønð\ &*\…{tt·q° ;ãà.«3°ÀEp§—J³¯Ôc¢àf?³0/¯>·¸]ecÚåÝòˆnùI#‰rI•vÂm;FÙWÖ%ïàη¦c[)Ç)pójZ˜V`Gpÿ±£-<«éMxDåxzŽ%ŠïƒÇ|ÕX"X¹7ÄÃƒÊ mìÊol$<ìé‚ÔʧÏxÞ˜.>´ÊÜä <ó*N%ÊîqÂC+WŠ*SÉíðä‘ÃLl*í²÷ðìέT*xÔ#xþk•²õxM5Ò›C‰†Gâ¡Wg!P¢Ô¯Ð’Ïx±§ìsâ¡-#ÆÚ©SÀ˜hNÇž4¼ÉÒö14é뺂3y×¹­·ÀƘòïrBÃËJ—R¯‡Æ}×ÅD•‚Ç}€æUÂì<ÉÜû14ñ•<$IÔ»­ü¥£• ‰{ã¡¡¦¦G™VDC[_)Àr„ECs¿bæEÖ1w¡ÅåM©H‘¥í'4úÝ‚™ª†ío¥C9vÈÐö;Òq¡´Shþ·Í<(däsèÂi^$È»õèDyw $Õ¼ù¡±`?"xt¥cž…û¤\ Ýy.ñ±„Æ@~îb&=ÞCîC¯.ÊÀxDÅS2t«|67Ý1•Ù}ûq˜à:¹V~„ÞMXDtÒ =|¡ËIñÝsèäý¼Žhv"ºYY‘ŽÞHåŽC_ß«&q›K ·ãÛˆMàôhèðøŸÓ³ë°(èôçÍ|O›Ðï_¦ùð™*‡eèyåP.2“u+tÿËf‘ɼä3 @y~‹ñø áùÆÞù9ŒÃèo|苨2†â¢`î"•ÛƒQ9UÚ‹¸äZ 2¢§ÄZ‚'<€1é\@Y|»½‚qy·´ +^õ.ÂÐŒên&+E÷É0:w„0•Œ³`„>«bb)©ÆDÀ•GHÅÒé SÇn~"Õ»CõU#ÁMD齬q“ÌÌ$Çú°G2Ó’  q0f7Jl#°M[—K2ˆœ¹öiº=’o{˜\æ90|[$uÿW`r¢ëcÁ"U9c¸BD‘_`r©ç|aœ ¶ÐxÈbíð†r~Hµ.È`r¹Àpnüë#Áä¬c_ˆîÿ>¯`LW‡h{Ö"'Uý!†uqˆ"«œ0°ƒ#å”Ç0´sã«o£`pdžoç;0¼[£Ü1DNä ‡!ÞéæDÉY‡¿†QÞR›‡0Î C4?æ“˳9†z]ˆ¼‹ãa°Ç…}ÚSîi‘ìÛ« ˆœ¹éò]Qîç(9‘m1 û¦H;" LÎ÷›g0ò{ÂTãŒýš%;ÁäÒ­ŽƒáŸö°ü ¾ãŸáoÁŒZ]U@伜Ä߆ QtsˆœÈ9ó#þNì‡tÃÞâïÅz.8AäLµ¯àïÇvØ,ƒÌáoIþã?þã?þã?þã?þã?þã?þã?þã?þã¿?“ Áåü¦:?nØ8§‰ÅÕyÕ¸k¿©náoy÷á^˜Ýµb àm)ÇÆâÏ|sbNÏœ‚±™º>Á_ønï¬Y¼¹ZÑŸñ—Ç=Ú:®y€ iö…‘H¤ò“-Së¦öbgR—GHܱÃ'× f9 I:ﯭF"d¶yQHÂ÷ÂCËZ¹X·×pƒwÃû— aÙöÃ]*ŸnlîYÚ‹}¥˜®ÀÍÆÝÛÖ½¸M°.S›wpÏò£•_—LáÅ·²[¹µ¨K>_¦•nz< ãÞÜÎùƒ%†åÝæ)ècÇ‹ ½køœ q±ÐÓÎ+Sšf²1Só§ÐßÎ7[úÕ&5yö@¿_™Û­h2:3"ú^yóóÐÚ)¨ŒAx}q÷Ò6Áä\_ï™Þ&•sUîmS3X"rªö/ffrªQ'æõÌfer®Ž—§f¶IÁäTåg›B«¦”ˆœêç»Û‡öarªòµõòؘœ«üìÔ¼)™œúûCª¦¥rªÂ”Jmfr®1·WwÉoarªÎ+3[eõgrªom—]brªï¶)‘Nbr®±·W~WÞÎäT•“³º”JÎä\å÷Ç6Ë*ˆœúëmƒg”˜œküÍCjû09Õø‹k{–° "§úêÀŒn™$&§úvGXó”f&çûð×±UlLN5þò²…ìLÎU~sii÷L‚È©*‘ÇÃêf’ˆœzÔÞÑåmTî*w¶w+jgrªÊ­ÅòJDN5âäĺé%&§>¤| “s}¸¶gäLNÕy=¬mö &§úþà„¶Ù“S}»ap½¬‚ɹÆÞXZÑÂäTGÃÚIÎäTïžÙ.•S}ðãø:Á“s¼´h`Q‰É©~>:¿{v&çšðâè”ÆÉ‘SuÜ[?¼¬¿ rªŸ®¯ì™ÍÄäT£/,n”ÙÄäTcö¯œÊ¹*~þ¦èWLNU¹¹„ÌøßüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇüÇðVP8 ?P0*ÐX>1ŠD"#!!"±øè` gnòn_7óù×Ûƒ¾zuz ÊT'aôÉ |Ùx!Æ?ºûÿä÷öŽNAôgÉ=éü¡ûyÓ÷ùOþG÷/ÇO¢ñ¿Úû‰þíþ þg¸è÷ÿè¿â¿îpúÝþË×Çô¯ù¿îÿU~ÿ9þÅÿgüïÿËï仿ó> ÖÿÆðöxÿÓìýý›Ô/öóÒóÿgú„Ÿê¿ð?o~¿œÿÝìèÓÿ޿럃_©_^½™ý¯ä²·G"ãÈÿ âëŸò?“ÿ)qp«ŸUÿ“èÍ8iHsäú—ý¿`äŸÒÿ_}æÿßÿÑþ{ÓOÕÿù½ÁŽVÿƒ÷#ó­ìköŸØ‡ö(Jíö¬}h–ûV>´K}«Z%¾Õ­ßjÇÖ‰oµcëD·Ú±õ¢[íXúÑ-ö¬}h–ûV>´K}«Z%¾Õ­ßjÆèt%FÒ¹,ï”R÷wÊ){‹;å½ÅòŠ^âÎùE/qg|¢—¸³¾QKÜYß(¥î,ï”R÷TWT‚›kD'–$ oVº¤VäkE}ý¬R~¨Æ1ºU}Ógw"JîD•܉+¹Wr$®äI]È’»‘%w"JîD•܉+¹Wr$®äI]È’»‘%w"JîD•܉+¹Wr$®äI]È’»‘%w"JîD•܉+¹Wr$®äI]È’»‘%w"JîDà´K}« ?ùî6œ‚PÚçÕ9j<èœÁëÀPnµà(7Zð­x Ö¼ë^ƒu¯Aº×€ ÝkÀPnµà(7Zð­x Ö¼ë^ƒu¯A¶·(»XøÙ©¬ò!5c`”s‹ãœ#Ù%è¸Ò<„è/Aº×€ ÝkÀPnµà(7Zð­x Ö¼ë^ƒu¯Aº×€ ÝkÀPnµà(7Zð­x Ö¼RWÇ3ÁZØÖj÷»äO_Ù`Ï–Ìø·ÁŸªÐçúE­žX)½ZêSmh„òÄMê×T‚›kD'–$ oVº¤ÛZ!<± SzµÕ ¦ÚÑ å‰›Õ®©6ÖˆO,HÞ­uH)¶´Byb@¦õkªAMµ¢Ë7«]R m­žX)½ZêSmh„òÄMê×T‚›³ŒD\¢=Ù_" #ïÅBß•P¥qÏDZ¢ˆ6½õóH77¥¯ ã¦ôµá ÜtÞ–¼$Ž›ÒׄƒqÓzZðn:oK^ ÇMékÂA¸é½-xH77¥¯ ã¦ôµá ÜtÞ–¼$Ž›Òׄƒg—µ:Û¦e\ßILá¿ú²¸NÍdâwyˆÞ~[9I¤Ö ¼ë^ƒu¯Aº×€ ÝkÀPnµà(7Zð­x Ö¼ë^ƒu¯Aº×€ ÝkÀPnµà(7T´c¤} …ªl‚mY“9Pœ€9¬ ©jANº%WÇ3ªøæb"à•_ÌD\«ã™ˆ‹‚U|s1pJ¯Žf". UñÌÄEÁ*¾9˜ˆ¸%WÇ3ªøæb"à•_ÌD\«ã™ˆ‹‚8ÆEþ¿,úD ÔéÄAXLéó¹E?_Õ¿÷¤u¯Aº×€ ÝkÀPnµà(7Zð­x Ö¼ë^ƒu¯Aº×€ ÝkÀPnµà(7Zð­ –½»¡+yÏ9û8Ò;‘ã½®Ö>¬ªt×€øò{‡å¾Õ­ßjÇÖ‰oµcëD·Ú±õ¢[íXúÑ-ö¬}h–ûV>´K}«Z%¾Õ¬Ü=úB)(h4K}“&|š,†{Êd‡wÊ){‹;å½ÅòŠ^âÎùE/qg|¢—¸³¾QKÜYß(¥î,ï”R÷wÊ+=h°Q NšÛD÷уqÝL´%¾Õ­ßjÇÖ‰oµcëD·Ú±õ¢[íXúÑ-ö¬}h–ûV>´K}«Z%¾Õ« ƽ»*êýü†„­|’m+‰|èÜà +¸E~\"¿®_‡×¯Ãë„WáõÂ+ðúáø}pŠü=a&jCÒ§ÓÄ.)'p€¿u-†|€ ŵè6šà¨‚4-Rÿ奖• … êc† îÀi$¯Êa1žX)½ZêSmh„òÄMê×T‚›kD'–$ oVº¤ÛZ!<± SzµÕ ¦ÚÑ å‰›Õ®©6ÖˆO,HÞ­uH)¶´Byb@¦õkªAMµ¢Ë7«]R m­žX)½ZêfMÛ±¾ž(åmÖ]Æa¾ôÌ(ëÙ€ °JÌ \èuÔè7CɼÜúL…í¢|†RÞ»ÿ25>*n …Ó°Róâ˜P/sÙµý-nà·-‡NÏr¼å°éÙîW‚ܶ;=Êð[–çg¹^ rØtì÷+Án[žåx-Ëaӳܯ¹l:v{•à·-‡NÏr¼å°éÙîW‚ܶ;=Êð[–çg¹^ rØtì÷+Án[Ìœ&S1FŸÊ{µÇtV¯Lc./O§Áâ “ì ˜ß\C"€!q!B:s…«îÏ®~6Ò m­žX)½ZêSmh„òÄMê×T‚›kD'–$ oVº¤ÛZ!<± SzµÕ ¦ÚÑ å‰›Õ®©6ÖˆO,HÞ­uH)¶´Byb@¦õkªAMµ¢Ë7Ï,sxk ˜lÅ6yKòw3C&ÍÖ°cô†y´‹tI80E7~¡ÏÝ RþFÞÛ¬&\[ >ÐsºþbéÝÄòzv{•à·-‡NÏr¼å°éÙîW‚ܶ;=Êð[–çg¹^ rØtì÷+Án[žåx-Ëaӳܯ¹l:v{•à·-‡NÏr¼å°éÙîW‚ܶ;=Êð[–ÃÐÖ>´Lu‘š?EëB£CæÛ®5ÌV9•±lF{ç¹-½ð®]F¡’Q´N-;nDÍwÇ!ÆL뮸òìa:j؃aӳܯ¹l:v{•à·-‡NÏr¼å°éÙîW‚ܶ;=Êð[–çg¹^ rØtì÷+Án[žåx-Ëaӳܯ¹l:v{•à·-‡NÏr¼å°éÜÓ±,Ö>­Ú [þ¥áQ®¯ó˜•ó ¨P#–8‡øfByÂ`ao[+ñëBÐT3°QæJ¸(Çø®[AÌÌî£7-)Bõ‘ºðýb@¦õkªAMµ¢Ë7«]R m­žX)½ZêSmh„òÄMê×T‚›kD'–$ oVº¤ÛZ!<± SzµÕ ¦ÚÑ å‰›Õ®©7Q/ª”Ø(¥v¼ç\ŽºÐrW4rG•óâÅ®=^‹hVr_ûxÞ#„™Braø&<“»º®% ÅRrJ¯Žf". UñÌÄEÁ*¾9˜ˆ¸%WÇ3ªøæb"à•_ÌD\«ã™ˆ‹‚U|s1o _¦NÔ›¢:ÄHMiSågÒ|w7©È G;ý‹We rY;úE.ôÁw}»V½] –ªD®‰WÌD\«ã™ˆ‹‚U|s1pJ¯Žf". UñÌÄEÁ*¾9˜ˆ¸%WÇ3ªøæb"à•_ÌDBzZ Z­Çv?ý©ÿý»'‹ þME*¼Ï.xzh2Ä›ªls‚"=û‰I|=£%ÄûV.²>Öë#/ …Ò§Õ¶œÛ"†/0Í1ÿlмÃ4Çý²(bðc ÓöÈ¡‹ÁŒ3LÛ"†/0Í1îiΗ,6ƒÃ%ÿ³P<÷¹?X¼RˆÑÑ#AQW=V-ÚdÈú¤ö)„[C}«ÿ 6òçÖcDlV)åºx³ì„ÒŠMŠà}Û¼à+7oäÖ¦ÄÎí™®–€Ý—kÂgxøû Sý²(bðc ÓöÈ¡‹ÁŒ3LÛ"†/0Í1ÿlмÃ4Çý²(bðc ÓöŒOm™õí§ˆ×Žè¶~ü~ÂaHÑÙã?Ùj½6°n¸è¬âÓQhËÌMþÔìòv¯Ðl™·Þ­pEz%?AŠvù‡Ê.‹*N(p¾/ ã¦ôµá ÜtÞ–¼$Ž›ÒׄƒqÓzZðn:oK^ ÇMékÂA¸é½-xH77¥¯ÿ‹c³øÌ­ ¢ß,ô¼€’à_z.’ï—‡1/÷4¨y¨±ü݇i™à,pƒ¾žßc‡öYE vå ½ïSÛ á¶R˜@ p[^°g5¢[íXúÑ-ö¬}h–ûV>´K}«Z%¾Õ­ßjÇÔRKøŠÿ“¹LÒºa0š‘-öF <çÿ@3Þ(ßZ8bƒêoOß")Éaˆ+ãQÿ×oÏ0Œ<¯yhâr¶NQ·}õ„B†Ý¹ÇŸ°}=ùB‘ì2êðc ÓöÈ¡‹ÁŒ3LÛ"†/0Í1ÿlмÃ4Çý²(bðc ÓöÈ¡‹j N–šüÚVmt’p—!YÓÌåæK“}ÃÆ9»íl¦Ç<Äü¼Eb!Špú ‘O¼—㨬 `Ü‹ìêŠñšç»^5Zb¬}h–ûV>´K}«Z%¾Õ­ßjÇÖ‰oµcëD·Ú±õ¢9-°¡¿¤†uý–™g5_iá6¤¢ˆþ‰ÒTÆŸÜ«€…Sï_ñšãõc!X â8”‰3…±î¦â=Øë~/T'?ë‹»¶Zðn:oK^ ÇMékÂA¸é½-xH77¥¯ ã¦ôµá ÜtÞ–¼$Ž›ÒׄƒqÓzZäò©ó¡µâìw¿D¹"g×µ"ÓÖ°tñ­g\No•ÃÀ¯&jÌ7¦<åÿ÷C9 ¨¹©µ '¦–»ƒR:×€ ÝkÀPnµà(7Zð­x Ö¼ë^ƒu¯AºÕq_©ig|òþ•ƒNùá÷gHßíœ1•êj`Òyrê9lŒÓôà´þÚKÅ4²ü¦ ›UÀ——Xä8³¾QKÜYß(¥î,ï”R÷wÊ){‹;å½ÅòŠ^áö¡¸NéSÙ᬴~ñÂä#iFÀÐÿR˜£áLº¥Â¸„Nä÷‘ý»îäˆxÍ(®C‹;å½ÅòŠ^âÎùE/qg|¢—¸³¾QKÜYß(¥î,Û†èqf1ôä0ª›È âZöpÐ÷!”é6&AjMލúì¯L îË-¶%¤ËóËZNÂÖHïÃë„WáõÂ+ðúáø}pŠü>¸E~\"¿®_‡×¯Ãë„Wáõ(†‰TŸ ¢• §“Ówž½C5HÿXS‹ïظβϟ´¤SQREw]9¨¯8ªe¡îØÝ2Æ—ƒf˜ÿ¶E ^ ašcþÙ1x1†iûdPÅàÆ¦?í‘Cƒf˜ýhþÿq–»ÿg)Ü]®iïUÛæ¯y7÷¯¬ð~$ýš¼e†f† ´üºAûά°®NèIv²7 bÿ®dôc¡…&2,#@Zÿ®Ý=€q»=Ðf¼¥®Ÿ ÿãVtò8w0Ç@—ÆÑ‹££~¼`+× Z¥ˆ½ÃSqª–R;›0üìnö9ŽoŽ„ˆµ ãÆâ ̘Ф#@B=VÃ.W=2*ÄXaÅÿ†ç^çsÈlaõ XØ CД¬§´Ð~2ê)l>2€ì{¼jc*[Ú¾òÿÿÉø)/ü}’eIpŠ]•›¢[d..jRÛ!qsR–Ù ‹š”¶È\\Ô¥¶Bâæ¥-²5)m¸¹©Kl…ÅÍJ[d..jRÛ!qsR–Ù ‹š”¶È\\Ô¥¶Bâæ¥-²5)m¸¹§Òs÷DÚé¡Ó:&ׇþˑԈ9ñW“8ž\zú"Ø ª.gùeŸâ¹Té£jåÙ€u°­ÿDbw(¡¨ d2×X‰Ÿ9ÂÂLpTxS£hkƒ >í3iµdÕñšs8¡!øÝÏãyÛãäþeQó>÷:¤³Ü –pß–sXhhñcOƒåùñܯñtd:R»H¢xvwšO”â+IõÆl4KçWQ<K~¥È 3óŽÇ‚À†T½nÿ °ýüßÀÁð¡kßÍü  °ýüßÀÁð¡kßÍü  °ýüßÀÁð¡kßÍü  °ýüßÀÁð¡kßÍü  °ýüßÀÁð¡kßÍü  °ýüßÀÁð£ Ç Ûþ‘m.è³úBà©n»¢Ô`ÿ:­Á?›'®–º9bNbÎëþFè+KÕ$=ÊáóÿßÀMôÏ÷ÿ`’’”\^°ÿ¤m"I Šßè3¶¶ÿùZÑæP2àÄ1ƒÿ(ª`HÓãB†Oä1¹žWòõ—¨øyÍòCTeŽ<5G|Q”DQL‡¡+;œUò„·¸Ö›ë/ÓSÜ;dA—°9#Ê!×ú‚)~+„”ô­|‡´ÏÔ>šÝ(Ô¾­ìä‚¢õ¾'ÿÛt‹äüéë4aFö3ÈYÃQË2`U©é*Žo¶(çÿµ¦_sÝ•Ë:ÈÓ·³†Ï3uü¨4svñ«îu3T}_LüöúÓ©ÿâ½{Œäj4Š E³2²ÜàíÙXžê1‚—k?Zü-‡9X/ذ4åljȢîÓ\lÖ{_ÿVë| oŽÃ>5ªŸ#9œå/ˆ¡¾JäˆK›qoÏü2˛گ'MÛ´YËÆ¡!è*‘8Šíj’åG‚¿agͼ0²% SŽÌ&œ¥Hpji³ó‹È0ôFüëÿ\Kh‰;'`ãÀb$4÷\¾6ò|š›‹è.`z„Ü´ú¥Ö­eòR9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%#’R9%+?U&Í.½ÃÆ*_µ ±¦.?qÿa-Y~¨9]Ú?¸ÌšÚÜ_ÝiJ¿Ç‚ډB[x|y­GïÚ¨ì^Ëü|P'Gg©^_Ü}Å’.«¹)ÿ¿ûèN½+Vq§¯s2íŸ%ß-óÒ²H¿ßHºº…ÐÒ³í 9–jO ýI=2ß3›yž« ñX^H„î~ò\ W¾µ8?p˜M@Á,@@cÈöU÷ÈîódÂ¥Ëx]êßš¯i0UÉs•ŒqF¥ãWø¡tú6ô+¹;ã¤T]vFúH—÷j^KõjFÖ0jÛ`\¿õ™2Í–?“X3oÝ(Dø$í-è¥óòžRðU¯N‡Þâá—´]ì·?Wtöœ+¤,W„Ÿy6À:ÙU/_°@½¼÷õ+¾ÜûSîX\è+T[‡Õ¥tÖðw]Àð_hsÏ$žw´ÿ*ÏLÙµ¸¢5'tJ榰Ôj"À»Íïkþ}ÕWßxÅ#½§ui'j‹Äƒªœ’²©ˆ¡U¶Ù×_ûð0æ¨'Û+ÿŒyðzW°û/X}4|RE¡þFßGa -ƒ_ˆùü:õ²ÛÐCR‚Lþcdt?©GÁwãv…J¼AXN‘AúLI@'¯!AÏŸ¾­:ccü ”‹€ ×ýÎØ Ämdµ'šÜbɘZW;…JtÓµÃ1Ü·†¾—†üÜ¥Þ:ÝÛ^_"Gf_™ÂYºx¥ØGŒÿþ1>jìŸ&%%Ô³å¤;å°f¥ÍÒù!>áÖ·ï½A&KPš^Œ*œv%$‹\OŠ~b›dðÌSƒÎádÕ6\g(×ý‡|%Ęq£A±Š¦Ô•ÝÐþWæÓT¨¯þâ¦v/ÓŒÖÑ„KòK°ÒXH݈½aò>›á"ŸødQ-h>® y,CÍçg(a‡Å\ÿZœgÄ‹+7§é8}ß䟌À¿mìƒï 9:¡°? ›‡üB$sÌ[®Ì>_á•a»œEOð…ïö¤›å?º1½ÿ… mñ3ñOpLä;¼ñyWY­Ð§ƒÄ¸Œ¹ëÏ È¨ÉK"¯±3îè¬×ïoÞ¥ÊÎìªè3P„Äs{Æò–äûvÓ2 33!܉.ŸÇ‡ú–0êwVD¨zþk¦¨=<@an×PщÆÉ=Ljš+'5¨›ý\`§/ãõE° z»àMÒ‰¦ŽTîÔ‹oÍÈ:ØOá³çFÁÀx_§rRÆš”¶È\\Ô¥¶Bâæ¥-²5)m¸¹©Kl…ÅÍJ[d..jRÛ!qsR–Ù ‹š”¶È\\Ô¥¶Bâæ¥-²5)m¸¹©Kl…ÅÍJ[†,<ù´Û¾>µ» pÌ'ò^_ü´×|¼Ã}p`¸ˆVß±­QêÂC}Ì^›7~¥± $47¬tÓ+è>¼±²3{‘&¸o<#”yéÿäkÉWAeñö¿a"ê§!x[¿øÅù¸×ûÓºo¿¸û`Ü.°6ì²=-ö«úÝͦ¦ûm­òŽûAìØ—«»5°ƒ‰°ÐUg?'Ý€ Fº£j8Æ£¸-:+~¬âÞǺfxeY¢DdQy¤©)Ý»‚Ú¼R9€É5´ÕÝ*Þ¨šҹΡ‡â„B¿K캬r%=}gäjo?JÛ{‰ hê‘u§ sÎG™,Mk3{ba ìSĶï«{T©i߯&tYÉ%½úyi.ùµø½Ï9aèé³±Ì{¢NÆ—^±­ ¼e? %®ï=LÊÁ¾#µB øBZsmuê]®F.q´3º€¦•-L==îrÒ[¾¾ú:Hü¿ø‰Ñ|ÝÎlÐQvuŸéC{”mTî JKzþùÿ¿î÷0·®Qk‚nаL±ƒ£—ZÔRy怰§Äj™\k7rOm(hP ä*òJòãKÿøQûbò šºµCÇ?ø`%© (Ö„œ¶¾”™ÿò³Xe«ÕãêAÔØdÔ˜"×w¼Så.¼a7RTñæ£ë7{QÒ9>üßâZ¨ç@mºƒ‹CÈnþ ”Èo²sìÅtI’óUŽ™ÌµöOëYyVëL;ÕzXÙ4Ç#R¦…ÿk×çƒÓ£þi?v›Ä¡@ÿ”€,§ªá‘hÓ:Ùw¤ÅÛ&ý7½ó¬hV9•² 3¿ ÍJ‘‚8<€Àátú1‹y-ö¢¬Ïé¿QÕ/þ[ÿ“°eÖܾG=Qò<{á;K¢žík÷Õï‡%¶Î°«‚LàHb =„½n¬Í§lˆÐÀŠÞl¼ àü!!ƒ[àªHÖoüùÐØ¾}ucD¢ oçûï¬I‹¬³<Ó"Âññ‚aÔ©+Ub•Hymh8†’}°TÎlÈNËE“ìîæ*ßoŒ¢Gº-Óý2)'‚Ç£9oÓÚ»!œÙi¼»¶àl¤f;(&õá×Þw¿ÔnpĤ¼ÃJlYëLûU¼ÑäN?Ÿ »"$2ˆa€Bf° 1µÓïR_$_*7WîÇÜÚÚÐëHD*ïîÁ—5Îx<ù¬‚†5ñxøºyÔ‚%ãükö®ºé³áu¤Äñþ~C8X”‘£µÃýÍ; W€‘2£BfßõÒgSÇ–CSW…×t 1 ò€ŠÝø†˜zo!ó’õÁǼœ$ü7•}Z›*í^`ðóÅ‹zu}ßTͲÑv9ý=ðÒ¯2¾0©Û’/ Á¢zëkzÈZÈ!§ÀT½’ì:²“Œ'™¸æÂ~œ*»Tí×ûÊÌØ *ÒGÄ@fµî¹„¦b޶L)ÙvÞšA–#gÍ쉕¤ðÆ× &Ðä°º=^4#Ë–«ßçVP§Áï›nAJå*&ߨŒ¾–Û_úÀëM/G‡^6ðPžCŸgµ°ÿ“b~5ÄÔ@½|K…è Jò[‘ÛQݹËýE÷;N|ÜãÓÜ’ïÛgðžžÞ“J,÷,üÄòǷ׈D`ø,¥Ð Ÿ§Ýê£ôÂ_njŠn‹³g–ÿéÛQ62ê–ÙåZ¶¥I2¶÷úäø¼†1˜]€Âðo4ûRN/L°¤[yã8 Gÿ{²*pîA}Ó ÿ–OåL`f©V­9ˆ$àkN—ÆjHiåïÚ ÔøOe*×--FÚò¯òX :d>(a"‹I7öî\Æn7°¶/)ó ùæX¦b<-½p`v^uÝ),¹ôzÊZóÈ–Y£twMH™ sFÈ®¦„%Âsz·J‚ewÑqÃPð®'G}d-›w 2þê`&-(‚åÁíž,Yçn°Ø†—ù™´_‘õüóbZ0¦§­ä³—hL·²®<ÅzÏ®.,%{#TTóˆ/ñÜþ|B%—}«…¹g|NÝ$ÿ°5_ÿ†%)õmì§ðxøp§ïè¸x»‹ü'V¼ "iª¹äjü‹ó, yp™x|¤wQ~·ún/W°¶ž@ïêÙ•;îêîq`Ê#<†å hòN_¸Z^²/Sc¦§[#bD ØÑ–ïÚ(Aÿøâ'Ÿþ +΂H6>¿PìÊæüì¯3¶G\ói·m¾Ø7SÝ‚ 3d+r€®û?¹>Ò]ºÚ?äžØ ìî“loô\Ð{‘ˆÎfz9i| ÝÈsæ~1™®ß„èÊó/éuæ@‹ »î‘Î òpïŒ)ðP€†`FD“'e‰°Ø ^Ò‹hH_ϪXtR…ÄJ¦Ã%tÀ†LðÉ[³™£=žˆìÀLÝxE )Ñ ø[ùŽ£”xBš5ðtFÔ$sÛ»£¨¾Á±Q;(ê¬|N¾ѱ;IhJ É:ûÅLýÝÑFf\+dzõƒ²KM²;Þý\L;—TÅmZõÌ>äýD{J‚†¥†MS¸$+d³XË-¬í¯Š¼VXÉõ­)ŒWÞv™èòl{Gƒ-†È" Z)$nḔ@|<†Ü÷¿±*·['îGÊìˆ šùÅî¸òW_ªgþÿX2ð@ŠÜœBò‚£ (-³ó#‚žœMD5¼ý&þbCöœ¨H/áWšè”ÕÁ–= ½ÒÌe!!ALÙ…5…m?qeõÏÁ sÁäëAáµê} |ËÌ sdÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dɺˆý/£¢ícÊ çfÑ,&Ü~³jH~í^1F¥y½ku K@ªrñtEEóäæ/H æ¾†-ý˜SßëÛô^õú¸vß:Îx«üÙ!%%rÏ^JEu vWÉØž¡&¶U ’\Í:lÆ™U$„Ë÷6é.Û°´õØžâÂUuCÞÚZέøÍî³- á½1˜©Ÿü;qÊʯH3ÞŠrâ^›?/´lO–µŽØBçF‡™hQ£h!Ë‘÷_x®¡ÃNZ|†‡eP÷¡p´cöæè‹ue=¤`jôr6B[âÅg䃩y²_ãõƒÄÖöíl–x?\¾ÏÕÖOó;¼»7]ÖÞ(ÿíÐÅqkO Ó±©UÌf'bð·)[EÌLg2çÃJ@?ùÌýëaÈeÊò˜ÔhÿÛAõƒGøÿÿûýïÿë°g÷h{Êxþx ÚZ㌿¹QTúƒºd¯0¦!Qx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâ¢ñQx¨¼T^*/Š‹ÅEâžÜÛ¡Ñý+Pu0Z½`Ñ×Óôµî9|ŽôùE"%Þg7pŒGæ…Çpž­¢JÕA&ÎÛ\sÄ|ËÑ•C©G5Ùä{Ãblr£‰ãs>ê|@Ð’Ôtwƒ€¾A{Y¹A ƒµ¬·ÌõÄP0¦§úwVøÄQP›ä9Ñ‹jñ*ÕM»¨A`9bX–¶ kµa½åIÊ”– Ÿ™Kûµù°”)úÎl•ÎÖ{|3ô_T”Û$ôpõÅÒ£hÎkán‡8ËPÈîz3^°9Æí´€ü=ý7ÈÝs9ꂷƬ| ¬ì2çð6Ž:7fEj¹<‚"»èÄR¹3/¤É1ß‹!ʹXŽ|NÔ½Mt~ Ø»í±Û*—¹ÅÃð:YöÔIøÁØÌË@'ÅëÊb!8{`v¯‰.¹Ð¦œVÖùдª®øâAï{@õxõv§zVÒád9­™Z˜êj=ÉóùÖçfX¥ ‹ý˜k®t6´‡ÿœGJ!ßA°maÖe\×æÈºdܵ¡Ð›+ºè›lÉ×&!3´*ìÃyD‹ç0&W Ý’ÊÝéŸÿºvú(`!¤·ƒFLÙkÀE;ABËz6k¸½q~îÌBNáú±°]¡BLll!¦Áá‚WèãŒÀ’ãs8Ê%©‹ƒÓøki.u~†Jù–SÐ6îÔ|êRÖíØaõË„‹ŸÀ»Ç\¾Î5ADàÛêé?ÎQsp¯6NÅëaeøè_*ë/Q=® ‘Y^ž¿’îQ6v4&bB°f÷}Âåæ3uãä2¹!Nhº3šã îÐs3–e }ßrkÉO}EÅžNÅ)„Ò¨\͹,›SÍ­È£ZF-#]-ò™ñN±{3¦Z"ãS™¶ÔSHÈ%—ޏË7Òö',8œ‹¢´;5½Ç\äTšò6é/èã·ÀåxDzKI4õfîyL›V}+ž^Ø»ðQÉ-úX¢T"%Râ[3%ú%±däŒô/SGÝÊ EÉ—í˜èž›‡­Õ2Á:yÆÑÈ9ÄruY@Ûf#I|@SÜÑcNìÏú#˜XÅ7«¹Wb ? -ö?*˜É1 5µý ©§rIk‰8œû Žq[D©Î²ñ—}û8*Ìiˆ4& ç@^³«¸Œ*å½)q·Å†•U¯j ‹e^å…¸1HöS¯º v¯ ÊE{‰IÎé§‘C“jÞ |´ÀKI+6]GN{mQ AxÍÃ(ÙÆÿÇɆ›üe¾.Ï|­£~šiºîËyü§sÑ>‘ólƒñG‘M²ùQJ5Þ>À§ég—áœùXé:NTE &ǬÞôýj²dFåoDâÜX`œŽ¢Z½IÍ&|£·Û® 2¥–î1càf´ßóc$ÃÅV—`¥z~´³•Uï¦ú©¿rÛÏóÀnMÄgãÛ_¸Õ3QÈE…LöCg¿]jíÇ™þ²éT'ÉPèG öGê3;˜2µ»¥sW¤Î„–µLw†€G6Ðæþcœë[##nKX(K…WŒqÖüú–Üio¡P’Êœ-„®6Oeö ãe;ßÞîÆúÿò_4aùÒ]~ÒóAW‹8ð¯Dª³{®æÊl0¢.´ŸŒúc^ÛË]ù⤘qú+h«IfM¸ç˳5Îü® ÚŒüûˆd¹Œ?.&»$´µ2¤Cr ”µð™™2ñ *­›¨|Y²a‘«ð¿w‘>ë¶¡ùÏò%l4e‘‘ÍãÁñ÷ßžrgPù=&j‰Ajç­ÑõÆYv¶åž»BÄÎf–r6CY#¨ßBEf¦`ýn¤ÿ¤„  Ï•-ë|FF+ Ëãݦ+²ktŸÈ=·y¸ É;Œ8¦·À£ôÞz ¯¯XSRŒÛÿÀè$¥Ý=gÚS:©14ÔâÜpP¼ÎAñxW‚zžOÀ K}¡ ]ϲý c{~Î&,’g É°Œª‘¸+aãRYµl¯†5,È~GüPõÎát¼@'—õ8‰6‹—ÐREÇWä÷£\h1#6cJZÀ„V>×', /:R'Ñí·ûK ™t€£Íÿ³xõ|¢ÿÊH3±•öõã벡ïÌ!`h—îzÑ“QŸ,½’ÚH«¡›ÿöXè‚¿(±Â˜œõñ û÷?íîÿñ*‰48¡!%L¡=ŽP@rÆàq„šÓÐt Œš‘&‹X:SÝÓNs†Þ8=5‹b¯à7ØùU{E:4Úû•.æÏ‘µsæËLC*7Ìs…¯pì3†}¥Œgú´ë_i)~¬ÉáÂÏÌû¸þ¼¢iUàµñS­ÂîÊ̽¿1v1÷w¿ß³Ž-µ TÈô#Ž€ó_å—šõfôJ$0 ƒ?Qþ$*1E_ônzì¹ôýÎÖx—„fm'³BÞø&>ˆiÜ8×ÿë%1ûl@ á©ò#ÓcU”"ýÁ BMŒ¯¦‹ƒ]P¬â‡úŸ°cÁ -G™êÁy@89Ñß„™e7Õ¤|s›“…í%òyñø•üÒDô¤-ñ?á©^Xàq§G ºÁ«ªg Ô~ò)óÆR¾)žò”QRê[›¬ƒ[úWÁË?Qx Pì…V«S;ÜÔ]Žfö;}(êiÅÇÆŠ> huEêo‚èºþÕdÜ Ýà™°XB-жmžÐdsW1Õ¹´¹ «jõ4ªë8J‚…²²?m#>I¤n¬3>Xßö‹kîX™Éø8ø¦ïØJå­$Á¼.ô¼í¡rÖI4(WL³2an+®È^¥öG×[ÎâÔÖˆxŒƒb‚½0ôš˜‘µ»•†^ A¼ÀaŸ•’ªD¿¬Š6¶ºbª @I…8ƒQ'â—ÍÀ±|Î…“K€¹ðNíu˜Óyªg/&JG‰W…:»³¿ÂAéz=6 êä„1“íûø<+ö¾:àphBטƒSó9JRÈ©e&–ÐD{ÿÒð'úQ­¨Ë"Š„‰ÚÒh=ôlϳPÕún>Þ¯¾À"´4uóævHIÖÖóÑð¼.2ûV8´g2{Ç¥$¯ãi'ékK²ü¿üá–“ï8ÈX¾*õì|³€k/É_3xê¥ì'žµck¿Œ™‰ðíQ” ¤+ «^áK¡€EvÌLCir÷6ÃÏ%±Ä‡@n¤êfI®¦e(¥[1güY^'Qûž¨~œ†€©LgS¬4a“Ó*è&‰¹ˆñǧ¸YÓwÿÞãµB>Bí«œE…¼Îƒ4±ñ_Ž1ÔÛ¿âᢧgë3ކ>L¯¯ÎE-”¤«ü¿ÆÛDÏhµƒØDÀ»ÀIÖˆ”_:îÊíEgiUAÁ”˜ÿ@ŸFÿ`ò“wh£‡ ŸÄ'Ýb“¯Wnçý1–¢äé°Q•Ì u2o2‘ž_K摬#Ùd'î¼oöJ’—­›¦x–$/ÙÙõÅ,3(M3ktM$IaDf— U5ž„YÓS6×ËÙŽç-kÌ\#¡´áî´Ò0¨)ÊI“Š£bÈÉUÒIœÿ YX¨1ˆ@˜ÍÓÜÆ©S#[«c[6Î` ‹±D ‘D¢H¢Ø™ÞÑ›ù¾Zó91±ç{—CÕ$ƒËÛ¼ÛLJmq lU£‹â ÷ª5¾ãà‚í=êM#`ú£§;•t)%ã°9S¼qŒ×Ÿã›Tb?œ^žhüäü´•Û‹p\’|)šÞ(EÓO… ú¨½º¦ËGöŠ,ø}D§“OñÆäÇ?ÏvWM†=¿õí×Kgò)ohOÕf¡¾‰cŸœÙGú¨Ø6Á@¤nÑ–f[˜ÊWp¬“苽óæ“î…ÝbmˆöÞ,Ê`YƒÉ! øÖ²j˜] E¥~FT ÖHØ+‘µ'êQr'P²F¸µE¢ŽÌÙ–/z`“ÄAn“¶£´Q@ ý‘S-²o¼Eò Óè/ËXKKÕ›¬‘õjï­nëè]0䶈Ç*ïPÒ©9h2ØW~ÐR&"h¯’DvèÖÀ‚î—‘^Aàž8ØhJœ}S] Ô•FÝ/Š[9f‡:ž%O·{}[EòÇ Zi­lÃô>èuƒL˜hfYÏÖ®‡ ÇG \žXmZÏð}]6ìßNdgé8xv=UÝtöFÊçùIÜ# ¦ž':á ¥»—V“’¹ÍM¬®tõئUû´‹ºŽO6,Æ Â®×šéD:ÎKú4LÌ2m°0GÁ™íTLmLsÈÃhnœŸî'T±¸’µÿ-¼8Mía><]WõT4e•ÿƒèÚi‘—ÈoÚÞ+š5Zh¤C®Î3Û³ŽŸ6¼ÁœùÞxõµq’YYUçªbvó :ç)#`täÊ03èJ?‹z¶w $í²;ÏYŠÌàEXÍ}%™¿ /r¿¡–z®äD–ÂB.Ög9ËEPšpY[®Õµ¤ao-‘²Û«Ô™}P1xO‘I Lt©HP±inýòm (; ¦QÚqbcŒë9³ô~(VÚ|UI<u“‚ÁÒ±çºå;å\×NºZvmNáÕ]}û syªÀ šÉmFr 3ªÏS@̤¥èÜ)f¨…]æˆD#Jq9ðŸÄ›"dÃû¢€§fD¾ƒy©èNM³‘ä&ýWøšíC0ŸÕ":ç¡Êzz‹øy†.êÇ P®$_¡º )è'!zÄÈP7åõÊv“`ïH˜~ŽÌ&Žùµºº¹.£X :ÆNk&O¸'),‡›<Ô #zs-O†Þu‘¥eÄT æ~(xœóèf6’æølpÒ@ŽDÀ³@A.Юåcæ£ °ÿ©£‘ºÁg•A¨jBÆIZÖĵØüÑ!l“&Vj;%ŠØ¨‡¢¼R{±~IÜ ¾™ðÍ\<‚\­r‰Q³LJAãõ@*ôÈu•Ãå>5"ŸÙ•6þÅÚz¢ô²ÇÝÃÿQ#jC J” š³G§OE©–I«nÌ”`OÌÆ¿;ÅéêH)i¬3gÈZü­gê &¿Ù†Xî~V *ol’3P®nú%ýæ!¸/‚KUw)ÅWÞ$”ÞG¸±geqü¡ã¦™z^q_ð;WjvÁ8EÛCÿŽç{¸+¿]ÌÈÅð°:gòzhwÿ/¼š²Û½N4,d•µ³AµbnK¼¨ÏSÃu4ˆ"v¤B(ÉA»ŠM„åfí³åm`é['­‡“¾èân¤ùãȼ…°óY—„X¾A"]À€ìnÔ@HÌm¸Í$åå.YG’E5ërÍcîn_€^;k H‡£†"ዤÆ\ WØ#þÃàê?×j[«­Ñ\,H2qSrÈœ-WþaùïÚÍ¢Žê.âsE•}VBDE”ôÆ„u÷&ÉŽ¹REè›Ënë±ëÑïG‹ õ@í;aÌÁ@æáiRb$BiXõÌ5+¡ªøbÁßï6¸™Ïå}`Žøƒ¥Í°¯†ßUwéõ­•~[•I`JïV‘ ñ*ôg»`Hƒ™i¾9švÿ#mн'¾‹I:ûTÑtG¦à¢h»k1+[ê(šjC0åÏgì6Cìiè,ÄŽû!:}ÿ(¼Ðã9:[}äšÕߣuX…µåZeÜýú®WÞU -€Çî<üG®&ß­`†‡C ^3æ©¡o߉½ý«pêno§­°í¢úN7xÇsbQ>þ%%ZhÚ·M í° ‡žv¨>„ö¦sKXøü›2n·yŠÙ‰»6¼ã†ü’_x¸þb$K°Ÿ ­‘™û} n† èãVï_hZ´põó†=Ä\D›3Ï|Ô Ü¬ï­Ù&J,uÌç6|œŽÅXˆæg¯#ßÇ0$EÒ¥Lû9¥KÕŠ×vÀãu„:€òÆ= åtOa8‡j$Q²£}M%>é¾/³2ä–FÊî¬kY€  Á ‡Q1ž®Ï—ŸŸ¾“ÿNr¡—nŸ±G Tƒƒ KÎ'WÇ è³ ð‡ð&¤4å¶^·¢÷‹æ~â„Nt£Í[ÛïbŒFLqüB4PT:Q¼læµú,±á¦T¤&¬8¦Sgv|~%Ž@šÕAJÅYòmöûëÙÆwT{ää5 5%ô~6¦ [w8+`2A’6Ävé*'+ŠËØá›vâŽÛ]”qˆt5Ö¤\÷ì1}…´U¤v_GnHg„òÝ!!wÑx£ŸaÀkHû9L·%ú]²PÆ¿¥ºÚ ×¾·ÑXõ=Ðç¡®q‰€41iR$Ñ(—ºÉ$)Åõ$÷ÿí×…N—»vÎBÓ'‡*Ló#Ô*«>0ô"ýÛ6ë4®Q>€€1ÑÎYaÄ ß!èÚóóR–Ù ‹š”¶È\\Ô¥¶Bâæ¥-²5)m¸¹©Kl…ÅÍJ[d..jRÛ!qsR–Ù ‹š–ľ)Ǜګ#¦øKTi/Jb2´¢#ë©'ÜÇSGQODŠD!½Þç0öAÞ¾@ZkÆ ­C  ¼ÎÑ+ï"ùÚ/z ùšf¨öʆ<§ôîãzL–Á:SûŸBãaf$ûÜï`áÏ[‰~é0‚0Ïc§yKÍЕ®h%à(k{ ¾e²˜–e^ ú›ùãpô:\IÜh…²vñ — 2ÙŠoàrÝØõLÏSÙï[eºtO?R%lüÛ¨§rµ²l¿Bd°[§à?uÔ ^ûmêöÀ)ã{ø\•†ìqv ûMƒÏÏ%Öÿ¸¼|H” Óúe!ï™±=¿à33 ‘©–™éѲ–{<Ô‡M„tîX}+Áü6{*N,Úº[OÏõ°é°ín¯3+XBrâk''´ùóìÐVêP±;BTS'2³‘3d=ˆáš+¥±Äå8qÎÌøÈâ§(Cã÷2z`êð—V€O8“qhÑìaXé«•ðœ@Þ?€îsê>‹)K“­À"k*ãA8éî¥6JÒ«|áû4°kç‚‚i‘”i<ÏG±(Ì5™Äé%¶*images/about-header-credits-rtl.webp000066600000117712152330733730013505 0ustar00RIFFŸWEBPVP8X ÏWALPHšµmÛ0Òÿw{J#bü\(7½X=Š5U^žmÛ¦$i¼HvF²lÛ¶m£mÛ¶mÛ*Û¶m#m#°Úˆx7~ö1’²m[¶È[èÖmK V”Ð`ÍA:°å Dp à2óe¹Ž3"&`„ÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÿùŸÛȹÌk-1««9²o s°²©š#í:5GÑ󖘃y±j޽õÔ'Û¨9R/Wsð¼œã½5ÇüªjŽ“íÕéÔ%·¨9x˩昧æ8\]Í‘ÞUÍQ`‰9x7XÍq NÍ‘Ö^Í‘7AÍÁ“AjŽù1jŽÍÔ)ýÔE7Xb¾ŽVsl­£æ8ÓBÍ‘9QÍá}Ç)æà·jjŽ}µÕ‰cÕWs쮢æ8ÓUÍ‘qšƒçƒÔ¿TVshªæH­æà9Ç—Ñ5Çš©šãf£æÈºLÍÁ›5ÇŒ5Ç¡fjŽä‰jŽÂGÕ|¥æXQOÍ‘Ð^Í‘v©š£ðI5óbÕ‡ª9⻩9r®¶Ä|j©9VVQsh¤æH¬æp=¤æàÇ`5ÇæJjŽ#Ôùש9Jžvˆ9ø:Hͱ¿±š#mš£àVKÌÁ –šcS 5ÇéÆjޤ¾jÏ£j~‹Ps쪦æ8ÕJÍáºJÍá~.DÌÁ§šãxs5GF_5‡ûÁP1ŸG¨9vVSs\è¯æÈ¾]ÍÁ«ajŽ9UÔ§[«9²¯RsðˆœcF¬šã`C5GüXã«1áÃ_¾óìÔn­ê‡Irî´ ÎêñĆBþÕëŠ?ºâ±QÑò¾ 7µˆëŽQš»«ëvU3²ZwÄSÊç:è.ö4¯zŸæPú¹·7/d_gX1OQÆg¿êc_nO9=ë±^ÕŠÏ[FuÃYÊuÎñoî.W`i c겇ŠèZòâ´H±ÂÉ&Fdõ]NÅu]øõžžaB…œáÆ<øË*|ñª7?ø}ùÛ“# Þ',“qÿ4_úq~´2*Oà‹S©uý7ñøÞß—·U—'­c!]nù%ŸíY19Vœp¡³a´›q_ÿj#m‚÷“h·Ø‹?ôþðÉ'Ÿ<;@–à}3ÂÂz¹ò®ÇÇ¿&=Ø×ÆN…\PˆýÍR¦Ø%«Ë+‰Øâþ ÿ1Ë5¸uƒ› ðµÓîDL]äÅ>'»Øš%c«„„®¶¥îƒ{°ÛBæ}¶$î¦ynìw…À–Ýp ø)[Þ!,‹µíŸ;ƒ]â[ØçÕ+ÜØ÷!s‚-pþ9[Ÿ"ð¸ÃßY-¾HÄîdz£üZ»vc€5±F~+bÂF˜#$õõKŽÞŸÄ{„Â{,¿Óú±Sdàý*ʯ8¯ZìÆ(‹¶Öõ!£gfašM©Ž~Á1æã, 4J(¼Þç9º}~3­xßáˬöÏœÆX»„™5}V­ûv`²aÂÁÖ>©á=k=˜m™9ÅçÄ^¿(ãMxÜ—8¿¶#޾öÑ—ÎÎǔ넭|@èÈE©tžp¶s ù< ³îŠïªH _8„q |è¨ 5®ÙíÁÀ…Õu+À%7¬paæÂÑŽå,tôŒŒ=RÈ»©÷{; “¯J^*'uŸß‹ág ÌŒ+ÍîYçÁøC…£MË(òšEÅK…¼Éeà9+ƒaªPô°U:V×WS ¶ üS í^ßê%X+œü?êÞ²‹@c®õ`ðh¹¤˜Àc¯Àº:ÿTõÍ‘ÅBæµVÔ䉓â L& t¸Œ–€&ÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñÿñߟVP8 ˜þ*ÐX>1‹D"!¡;Œ¤ ³·q£ Ä<À5?ã<º( Ð þÙu”ßBçÿŸþëò/òßæã¨xxWú÷Î…â½_™¿³ø%ý´öþ÷ Ü'õû÷ÛÔÿKÿ”žÁ–ÿaÿ»ýûÞïÒûPòþ™þ«‹žvý¿x>¿ÈàýÐøþmþ#ÿ§ü_pÿžÚ_À?üt—ñÏgÓúÕý—ö?üÿ¾öâÿc ÿ9àøoïÚÿ³¾á¿ÞýÞöùo¢;Ú†úù£ý7þ¿`Ü¿N»Ý¨ú/Ö[ë·Ïðÿù?x¾ÿ²ÿ¸ôðÿÿÿ×àÿïoÿÿÿ?º?ûCŠÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¦‡¼>'+‚Œ={±¬c݈ucìC«÷bXÇ»êÆ=؇V1îÄ:±v!ÕŒ{±¬c݈ucìC«÷bXŃã/Èv§¹ßr#Z…†íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì5¸—v­Na­Ä¸ëµjs n%Ç]«S˜kq.:íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì5¸—v­Na­Ä¸ëµjs n%Ç]«S˜kq.:íZœÃ[‰q×jÖhß`ÞÕïÊip…ª“Ô•±aíS­ Çû):íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì5¸—v­Na­Ä¸ëµjs n%Ç]«S˜kq.:íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì5¸—v­Na­Ä¸ëµjs n%Ç]«S˜kq.:íZœÃaÒHˆa(/¿˜S`͉¦0N­Ìnã FM“š»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕ¾ ;$œõöÏ¡~°ç_ª´bz5I™ àäŽ@r™SÒªôµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>'¡êª7l¾Ö!x–4ÎïÖi·üH†5®òt;gG<­þõ ]5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ\*ŠÒ0 áywÀ-—‘ÑsÐuvÑ´A ާœôO¥×fu7À…©ñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖz¨aÙ„ó4¸-ÜS]ôܱR¶ÝË„Q+•§Ér'‰JhfGdÂ)9X ÂäM”P¶.XÛ†s¾ƒ†Ì4ˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆr¦áp$á㲟U(¸Y8ŸSèu]EðU‘‚•££[ŽBö߀Ë>jèâoc‹s§óa0 kÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—w>›Ëà µ±-¶í’V qáFzŘ™A#_üÄ’ ¡&âoK3e,;ÝÝmËÖMàdÃ>ïAo>É@Ò¨9ª-ÆIÀé8'¤àtœ“Òp:NIÀé8'¤àtœ“Òp:NIÀé8'¤àtœ“Òp:NIÀé8'¤àtœ“Òp:NIÀé8'¤ài»¬*«@'g$~èý™©»ç´¬%@¬4@ç\ØLž&#„¿–‰,xe˜œ¸‘ÍÈw£ÿ?¶nز‘c®Õ©Ì5¸—dñ°74%k“i*ÍÎCéµ~[xiÖl–p¡§Gû):íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì5¸—v­Na­Ä¸ëµjs n%Ç]«S˜kq.:íZœÃ[‰q×jÔæÜKŽ»V§0Öâ\uÚµ9†·ã®Õ©Ì6Žl$]Læì$Nh«ŽlÖ¹!Ì•NöÞ¹Œj'ò|Àq€_ÓW3@“¼å§WÀ HF°Ø,€\·L<`=N¡HÎ §4²‘c®ÔT*ù—ø7`Ó] -gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹YñX¨2¡Ëì¡l¶c`ÓÁ6–Jið„šþÀ¹Jz8 _9sÚÏB!-¦ûñÉ÷qô9ægÓû±û'²ÿŸHÎÛ·¥8gøRb}Äbê»Ú´Z½²`Z=¢þ6—€*M•ñÊχ,=ó»ßï€.è^3.ÌLw¡Ùi+Ý·W)ü`£";R¶^ ¢ z¶ëŽ·í”ÆJB2¶9u‚S|Ö,óÙ†ƒ1j"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆ\иúzPO̦Ç"L˦’ŽU,) IĈ6ü½8Åøb=ÌÕî¦æÞ[¼»¤"¸ýÀ“9‘ýô[âש¶/éÔ¦E½Jˆý]¬ƒó‘à¥B÷ûÉ/|Bxú»Qe¢•nªVšÕÃ#€˜¦-0vÈ‚²*Ð<ÞDž(ÿÝ./1ìQ-c Ýù‡õ‚K@£övØ}jüD܃.^ˆý„1MK¸EfC(l¾:NIÀé8'¤àtœ“Òp:NIÀé8'¤àtœ“Òp:NIÀé8'¤àtœ“Òp:NIÀé8'¤àYæÉ‹,ôxð¹`—òƒl UpQ–V6ãñ¢ô1þ¡ ‹ý—Ø­·"7[tþétÄj؉ÁkªÇ` ÚÝëZýÄä>\Xò<¾dð —}Ý(e­6Ñ#í–bÇ3—.8üß›“¶Gz\bRkÀQ¡Ve¹ì\­kÞž#ìd£[¼$HLu bÕŒ-RjOÌ}.¹¾â[±$~ÍÞ‰¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj"-DE¨ˆµ¢"ÔDZˆ‹Qj,^De â¼íû ‰Ú½»]0¸!QŽBÞ–®ü]†-?ÿ¶™ÆGu¡7ÞTn¶wyŸÞ(ó£7€<¦ð-%‹ø˜Û¢®R3hZ!ˈ];KJ§º‘ǪP¥(Œ †ÅU[­î%£>ïUû)C¶Í,UðÀ)Ç\ˆNŽý‘d€å€ðo Y#33­HpJ]U=P¾õVüyÒ‚&“Z{ô®íA…,>–܃ÊÕ^mýÙø},5¹•ª¼Ûû³ðúXkr6+Uy·÷gáô°ÖälVªóoîÏAðo­)>5þ«aœ[ÿ Àø÷r_‡g(}õ¨\v[¯ø›&¶Œ»Zê³apØÍ ýö¾¾~‚IJ&z»Ôœ¦5°›óuïÕÏ;Q:þ Æt8äº×!Ex°êœ>Ç7ªÒË^àÈÈ#†àØ?6a%ß>82D˜·L£J©ì~ ŒÇÒ|z'¼nÄÁzäáIðÏ® BôC~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®üÕßš»óW~jïÍ]ù«¿5wæ®ù9Ñ´4¨#P!A'œß7HÊíš=Юâ‹BÏpVl¶¨¦„ì2ODp÷Y?‹§?·=”gœYõú:Á†ž{Ã|yÆÙÝã£>sU> QŒãn$q¼2y%¢)ŠZ¦kÏ‚zå’L¸bQRæ‚›‡úú|æ(A=™KWC!ÏþÇýð‰[wØÊ›–é‰Ï±"É <· U`Ú L+”°W’4ozˆ1¹M4çŽWÐâÌ`œ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ ËÁ9x'/åàœ¼—‚rðN^ Ë¿ÌnieØÍ)^RÈ3ŠyË7é¶¿`&?ôEœf8 Šy´´¦bô†Ûßqµé_ËÊ¢û]ÔÐ/¨?¼“QO:‹ŸÏßWxøÛr˜×Åž•ªwce2´ÕyÆvJ¦Xa:ð‡σÍ>;­sw\j)Y°G¼@ A,±¥Ü¦!x½·"D²Ö誎K؆™`2»E3B×$¨ì•^–³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ0C’älPé¸Í 刟rD,%Ÿ/‹j²™T¹pÀ˜éí*É`à Â’Ì«eiö ^ë ÷½ý00O8o‡i:îŸúäㆇ…$Éz[RÇâvkRŨÃäÖÚÓ ½QUP$ˆGó¯Á8 úaH޽Ø&]½Y›køÔ@e$™«Ï½&ÍØqº8Õ£çþaåÖ=š×M`!’…;w o<¾+äpê k’TvJ¯KYñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-g–cêþÉד3ÜÝ‚oqÖ¼HF‰/˯im/en<ÖS¤êô»Shc\Ê ñ´Â_Ñè0EL…Á>ùŽ°×Œ~$IÕX|)ˆ‰š6͈·×#á«,‘Bj=`ñÿ­ ´¶¨cÍSt¼_ ¢"T¬Þuº1F[Ô¨ä•ÔJ² ü®%”{ÈÐVZÓPÿÛ—Çv&ƒ¯]÷šÐÕr@ðî—¥¬øµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏ‹Yñk>-gŬøµŸ³âÖ|ZÏOÛoö²‘½²c˜$… ܺ$OŠöQÖ¢¢Û7eÙ+Á×!6‰N¨?i{i²L¡Â]*úh zSâ5|ȳÁ¨àïDˆVáF‚U!ZH7y^ëö’Päqf>¹{ÚBYûŠˆÖû ¨ÝyÍ)ÉÓÈo±üÞf¸ñŽÀ:sy–v§Âq]¡˜Ì$o wÛTÈÙ\ò\ÀÏÚ{ê‚S8ó»?¥†·#`òµW›v~K nFÁåj¯6þìü>–܃ÊÕ^mýÙø},5¹•ª¼Ûäþÿ»!ÿªÃHY@dž@Ȉy²RFuÔ­5ŒÞFäxZ”§‰¢ç×nýß™NŘ£gãwÕk&ªdaC}«%*çóT®‹èvȹf|i°ÞY_} @,!›9Œ€’»ÊN}”&l ;ê!$²o§_6ix¥›fzËÄä ª¾¶)¿u#ÆEÃnF±)'ÑF)÷çÜÇô[€êzwÙH¤ÿz¾˜9†ä FÉìtǙ哻=¹PJßÕÐ,áöër¶#z7¨³z»Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw;Îçs¹Üîw@«@[ ­ŽJ=Šª”§YêRð»Êyü³<ÃT¶­%ügn E¬x â„SÆw´h8öª ¾qºJSh÷9B¾¸H[)ßžÕ<šõéÝ*K¶©Ö’Ìpú+:¬€ÚÔ; ýâ:5ZVBb°X¬°´-™ŠZiþtÒåmrLg¢3f¡°ÿª¥&ðû›±[5ê~Çé1Gm‚bå;ÿQo?"›®~é€á¼*ÄjP&6©ÝΚɀ_/ßY afæáç|Šhbï ›ÛÇGœBÚ*7$RÔ®~ô­¾]ñÈÛU9<Ù1ýºÂÃM$=šÏ(ðÄ~‘¦?öU1Šó=… ±KcLº½Czðf¬¨ÛD´=‰Ð) X`·ù'Ò:6vRˆœx—CœZ´'˜Á2ÓFZÆ+CIœT:$*M²$Æ«›ÙÛ¬pH>zÐ3N/HJ=c?€ÌVÁ¸ ü¥è¡ät‚%+lžuo¯xêí¤õ††g3’2팶wa¦ xI•›]iÇM"n«R@IhÇM‘[L—|¦U\ £¬î·„ ¬"t² a tó CŸ Œ§Iš¤€'¼1!]É =íž»qGɱ•~""¹ÂäˆZ#ÆîŠ+óêcZL ÁíŠÜ‰J"c wä]:Ë‹—n*¾1¾ZËØ!2iOLfIÆAôêWÑ&IèaéLúl¦$:³§Zéæ‚… {Âr’r!Sœèµe±Ž âRZ”Ñ=x¼‚þ¦i¶Ë'Õ¥5À™lò×JO÷ì2Å#©e`>£ŒI(U÷Ë6©¸k_»V9Bö_O‹˜ Är0 7Æ%?Lc* }:r¢¾éÈ­«­(@.4×;ÜÖÖ¾ÐÅ ›OÀXòÑ࣯ø·XÐxŽ´²ä[²ÕiûØ]7ˆŠ‰XË ‚‹ðK- œÊŽ5(o®äë1ñ(èP3‡¦%!âA¦‚ÐxÏ+Éì•£´Ž·E£|e|3¢‹".R|Ç*«áQÍW¿½©Ö¿g:̤^ÄQÚIú_ ¸¿Ý®ib,R‰o/hØ™pe±tRû} °:³}I1›$×À$Ól…“çCYÈ· ƒÊ„Y$ɬS=x_mDª%ÒÑ}L4uÜ<1†g:µ`{uzÜ3ôÖH¬ÅÚ˜gšpZ³•ŽKÜ‘q\?¶ŽþE;ú’p:^grãV#6ö•Œìë•ÁO£êBAbG·ÃòpCü1ˆ–ÈÂ1ßðŽ˜|Xþ ¨ íë´œ8l¬Ð¾ÿ¢âŠË™˜Â|8Ø@‹©{‡~¤cW­@„ð} d ¥R+Kᩚ_Ч» ÕØ\ðŽÙÔº;×b@[9†[›^7¦:Ñ1€†ã[æž^d”Èh=ʹÃ!S¸0Å…BŒk¼ y?ˆ_4³%oO{&J¹HnAPþ×Hë3營L>­uÞƒR\ ÔÖ×Û‹9­H¢Sõ=€¹u®Ð–‰š» ¶EO©6ÒÕk8ŒMј»¥Ô ÍΛÓ =Û¤‹x«ã ëb¶—í¶ÝE"’nkïè·2^ò¡žíÙC‰ÀŽL ”±Î€âú-L7c¢•Ht÷£`nד.#çs5·…rºn&þî‘ЙNÞI/ñ&Ä¡N2 Z#ûÄxÕÝ ŒÙ«ž;È1!XÐøIl_MØ»øT¾™ÚÀ;–´áL{AyèÊýrODk«ð¶Î©c}BŠïÊ·U >rc‘T÷³|û'Mï©{¯ÿ¬Í¾¯ ¸+¸À!L!Ù}›àö¨l‹å«ô`lVדf7qýhçiÖxSÆÈ ,8›’Ÿˆ0EÚÿ61õ©GòëmQ¢ {$dޏ–Q@gJæðÂD¾Ë´„»#|”çÀ@*¬[ÓÓ!Pô·Œ‹' íis8öô,•U˜,êEäpÑ>œ íÁ¥²„‰€)\i]á]­ý]½êĺ½4iè&Ú hÓ;[°W8h›Ã+âMíÉsÎÆ…ˆë"cÄ]´ü'Ú„óÛÝFú(>K;aŽƒjÿ•!ߢ'—¹µøeƒ›š×ËÛý/'Š=/ÆÑ´¨}.g÷ }±ÿ¨ßåãóûÏÙT™¼\pk*0K¹_¯„ýJH÷FM±b EK;í 'S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:N§S©Ôêu:I›C6} s"ºHë !¥ÄÐOÚ ÷æ ÷øJjßÿ‚éYÐyqÙ¢®‚KLj¯ÙÊý!É0€ ÃÈMÜ¡…;ò:ÁöñÛ…Þ“¾e>TÚjN aµÑå´øX„¿b[RÕRXtLN¤ ÇãŒæ\žH~Ì‘(F¯Áa¸]hų, 7ÿÿVnã—Y(s S‰?8ÕhzåøVìÐ=Œê\zÇÓ@º§ZËݿݠ¬·ÑÍÌ-Q@ û§1R ò¡hs#ÀÖnp’~cþ¤Ìï~ʱñΑì™#`¨ØC™= ð5ØËHÄZ=Ë£S™møìc¶]ˆæÎùvA S/ÙÁ°ÈØ@+Â<"‘¬‘97‚àe’"6cmÂqª¯&Ÿ‰\Çßâæ©óÿÔ›sà¿wi3/¡ Ü“œ{Y/š8P´…®²ztS@…B%ˆçû˜™),fh¿XÀœT›Ñ%Ç›hQ´35ªhÍf‹M0Zx~“—ò -¥?Ùk‹µçíë˜÷e ®ÜˆˆÛ¥º9£@&  z< ¸\˜×Ñù2<™ÔDIo™ã`ÄÂ!§ÛûzdÄvH›±ÝÇÁ'Ú&ÛDq–¹ç1±¸Ií6Õ)žÀt¼ñ[k#nJEÄ—q‰6äÈ—¥ƒ`L¼[åi1oDõÇÃù&òûÔR;“”9V@!³­PBEÓ‚ø˜ÅZÿmÚÌd#ìÑ»Ùâ]&Gy‚ xˆ<{–Gñ0CŠ.m.ÖËúbƒkC¥Ë…)ñzé_(ºÈ¨©i Ö£/࣠aaê3ÖSŽ,M3íè`dÐÔ)"42/!ù²x‚ §µf“—h4šg3ØèJâÆGã;X÷òU¥t–uHµ»×øBÄ\©ˆ 2mjh˜©b³?=ØmöÔð _à|Nòñ0FŽÄ$¢è¡Ñíqx¢ºöÊSD©êË›Gù`¼’—iËw!_Ùö™«~8Q ÐO‘ž;NÜ»ÛhvÚoà*qWI‡¿÷øÜº ´dÜ…á°°7º¢öð*?±b‰”ˆ…N¬z|oE{ˆßW‰å¦‹v»IŠäl°m /št]¸½9Í»9*½rÂÂöï xIÃ}°7S ¯x=T—ÎׂdÒÊ.Y´]w’γ¼#3k˪1rÚnþ«(ž-põ’Þ4Üôéô¹·]üt⺊­l?~  ®¿:i{‘{¯ú·Ëoe9ï°w£Ã¬Ú©SÖ½Ù9ÖsuÖÆÊ²p{Ïb€ pÄÛ/lýT1îîyrNÍaf¨PÝÂWçÕ"[kô÷ô½/Š ”'L1‹ úª¤š ã?ÂU…À1þ—³¾.‰sÛ´+|,}ŠÏéߣ&wYÚÉaTæCrp¿eBÔˆ:H>Ga~U®r`É÷Œ|\æ.QçÓ2?QJ¿¨BS?môqBuMZv +3Pœؽ$óÞÃ<°«Ûf ÉV PÀâŠj.Ëd/•±Hç>üÉò`«oþ¶d[£½ån8§Uð[%È7í+®zÚBž¤×¨dƒÏr#eš ¯E ²ÉÂäÁIÛ § ©t@†m?„Êßàœõ1Ú;ƹîßõ´¥’¹_ëôF|öÜšWKhòÙc×ÊL ­õ1ÚvÜxª‡/œ©Õ¤KZoØÎª—÷ô?µŠVRÜëpSÚ:Ñl÷Ï!–*dßh’E.–Úþð:ÜþRœÆõoo­§Ô^Cjè]þæ? X‹`"ˆ_ŵøÝh¤”GcОz¤Šu¹Eè/ ržq‘²2šžDeé!’å[ßÃÑÿ™¸8ñÔ8bNù?X½«ýÕ¿øÁ2ø­˜áÖ‰pªè6 3é ¶YYœ¶*aŒÿ Zþ_…ñîq“i5†À¤™Éì1TORê§lI¬#!¼ÙKOäºXÛ+›Ð‡1¿s³hç¶½¾r‘JzÄbÃ[éjðÿÝ…±º¿ ÿ™ ¾Î‘ïgÖ]Lq¢~:™l¸/·Åhç<Ù'0¦v.Ï$.99̃ vjE‘1E8t˜›Ršñ´Å×*%¤0šÈ¨oÄ#K="ÕeînS2F§ÛøÕ«íšòzê E1î B ‘£ú$VDlŒ”PHGþú¼§ÿia÷œ–&(,QÆ ™Ï¹É–°÷3UAO¥ n\!<í5bH­ˆŒt~ˆÈŠ‘ç”õÊ+ó ´{xˆf{¸€ 2±Ò¸u$Nn–ÒªL¸(|Éùó´Ê·¿"ðú¯ž/ º2ÅæÖm;1|w#ÂÖHz?©Î}OÈ¥ç~g¥*ÃñàÞ${𢿓2àA.TM½ q!p‚œ0ä›[L›ü6Äü}Û·eÊêMÊDŠgP›ñN]á®ã’ʶtádóáDÆÁyÄ*Ê…m@ä¾|Dv  98OÎô>ûE4cY2¥£æÊ¬H‘qºbêÑ5¤àÍib*9a¾jƒô~¤èŒ ;ãû^z ]![dô×ÏC¤å¯×ÝéÁVþ2#bq'óïŶ E¦Ï´œ˜r9Ë…>ðùÈ•îmq¥”Ÿ(Kq\Ž|à¤$j޵X–•Â*\o¬!]ð 5…ŠXÐ.ñZ.ÔgÕïBÀŠ~-¶Õj(F¾×CÏ.¡(3p6“x½Êÿ9¾9 J^ÎùôY2ϳ €’&bð*ýÄÉ‹ž<ê¦ý_±" ¼iP"{'ë–+ŒA×™/M~ÖI‰i"÷0äýÛ à´TŽ€GØ,€#Å—khû¥&}hå;–Ì©J¹òsïŠqgU: Í …M¬À>2é°l¼yÌá`X[Á}kìoèG©Ü Kt8–qú’ÓÖ×9ód7 !ë¸çÐ#AºlLácFöÙŸíƒï¯ØR™Q¬Ãù‘ž&±$Ni0Lê OÄžú¥ŠOuåYfÌ„\pOLŒ8J&<ç‘ɺÆ>3+ütjß+¶ž¯†Ê»Ý6öžDYy÷R ¶eéÝšûéo¢Úk.?_xü*o‡Ê󟲈†+@¦L!@ËGõ¬þ²Ÿ^Ð5¹ÞŒx5à¤ÉËEê $‰ä÷ZBl 'Ÿ¾=%+6ZçÐaö[/ðxÝr‡—¸jû %êBý&´õ©êSN\ÅåÔ’†…i*pL { ïìß:õdÓ¢§¡?D§£ ®ý€«íØ'¡")õ2|J¶¦vG,™~#Þ™\ë |˜10xßj¿ºÁ«­ÜÇž€Ë«¬9òQ¥ž½æÀÊ"[ƒ¸·z#{z«1ø´ ü¥?c÷v= ø``•©yþ ÏõI]ZÆ#Ë¡m¤}È+}  =\8طƧJð€kÇÂó ‡› ›ù.PåUæïVIm)lÅÕÿ£‰¶Ÿæe£X$²©|ÐõG¢9+J!6¬á$)ÿ€w¦YwL„Þ¯:½Éàhou§J‚Ä^e5†Šô<öw¹Â¸1c]+ĽR™,ëwoükÉ;²=JHˆ]VÞ9˜Âò‡®ô4A²a~îB»,U¸5¤¤ôMÎÏo§#º>EuQ kð(D»`Q¶C,ÄÔо q»MÁgËê%¯³Û˜¿'fkÎô°­ª9o$øPÆü±Ž æ§ÀïñPkÈ ÁÍJÂ.õ¨¯X'ΔQžãÉb4Ày¦µè t³7-ï¿mÚ üáҋ„·Qð÷øOÃpIµ#ñ!•©Ü7†¡µã0·G{7qfÑŠÿoÂNy.F\¤9£ÁfŠ¡˜q¿1ŒÏÕäuY3ORÕ/éžõø†K¡!˜ÕBçÊ}~O²ßáÞí}ºhÿ #ÔI—ýÒœ‹:õ$IH§LµH¯*é9qFG8Àþqô©ÌïmÒCKµž2ë?ó˜!ÒäÛBËiˆ¸ìèäJ‰˜m‹€…Ýþ‹Ü£ ƒ!/'¸5žQ ¾ QŸˆá¨AÒÊ~Ŷ{ô„œÁqHa⼸LØ‚ Ãðöœf#‰„‹À\:¬ulãSzÛ>‹ ç á#‡\$.-u¬75!@DÁùµ))%O‡™KnÆ€/µl¨×Ѻ ÷Ȭb‡NÒv 4¥Ú[g67Aóß–ÂbztÍ}aÊN}_Z9T×U¿m[<÷ÝÝá|СNpj`FüP<úë¯`tì)Œe'ã¾¼æ(s­_ªÃïàaÂ)óCЀÿe’ „Y‰íú:÷¢Ú5µ9;Á®ìæ¬d%‘n6èûñû—Ó`œž6Fòn·.[Ð0c,[;ûÑ$îhUÅl:E´ð<<¶båQCgyа¸›FqizM¤âÄõê°dwÌ®b°#ÄvI¸²¼Ž9b—íÖAÒ¹ÒêÚÅs•#@r ¹bæ‚“þRäÕÕ,„ý®¨ì§»U_*<í¡£]‡¸%c¯bø±éLð¢=bh刂Îy¢È 'ÞvËC‰Uàé…3¸ÕXƒ\Y1ÁN»x„‚Ú~Ø{²‘BxÍÄCGÂÊÔiŽÁ t;‰ÅÎH ÷®zŒ„ù”Š¡EJEþŽ`¸ø@I› *+FÈ œBÿÁ^ÿ¦Læ4ÝÔŸ½œF—Ú ¯›ìLô*G,\P¼žÉŸÂ+›l†xð «qcw2Rw]y#µ…cnil”;ºüSé¥LŠªàÇZÁNµéjGãÌÇVl­˜å¿²‰º| Ä· ¬­h9Fr¤m’茖¬E'¶÷ƒ¬¢Ð>k °x€„±Cÿ?|ÊÜò üZö…ÇÌ[îÝÙÈÔGØÅ ¹–DìÞ—N+f®ž` r-þç²5`j‘â ¹¦¾å‡é9¦<¿eƒ°\C$–tå¥Y0$ÓS‘œúèfì1è º Pøø0”å±ÇúºØŒì8‰èšÁlKÒáµÏôv­ ËÁÖÞ¸átô3Ç|ç/ ¸+ù ›—nûcl;é¸~$ 齚©ÈŽúÊ„¡IzÏä¬é¨ ÌêÁ—ìÁ¿H<-ç º>QƒbÓ1ï£÷+PÜà~¥aÈ= qmV«ÔqÝ혯»w¥3)ê±-ØZŸêuåE¿³ª÷d”rcìâñ€MÕ螘n€˜†Ç>®:Kb‡ö8üHjj®œ1Wñ[ß~ ý­á¸~>Þ‡’ vwsÃ’êçt ¹`ˆj ÅŸ1­VN J†ÖSEKa\^€ªËçb-$¯ãÐê¦[³š0 \”ÛXv¢ZA]üÌuGè+I‡ž!¢ ã­ÝúÝ(IÅϸHå8{_„â¤]´:P]{1ë- e`¹d8ÌN‡cýU6¦ë¥ï(—°$^j8æŸô§¨fáxúwè4uƒžŽ¤ewžD›A#,ïÙ\õ{ *úŒ“UÜ\ú*GŒÛNÔéZaOf5ÆwžÒ&q/‰œ‡&S€¯igöÕºúË ¦fHÀN¬´l}SXc¼½Q1‘¨iqL÷Oÿ”¨þÚ1Ð~‰rÎÒѾÖÛ:²sîèiŽôVñt›¦†×: ɽƒj"„íÔ@0 w±È}84¬†Q"HJ14ä_j6b{âžš% p‘»£]8]CeÂøØ<ÌEìõAÇ‘¡»Htº¢o©\ŠT¼›?z´bqwÁ˜øÆ]üì]ºÒZrù¸ÛW{ -ˆI9«~OÚZË>aºKMq 6íNÊØ{m+uA%Чºõ<Ç<Å…™šõï~ÕÓ€Ìy[â˜è¾³DQMb€V3ØÏÉDSpö’ÎÛkµ¬ÌÔž*ÎnB¿7Äü 9Xd “”ħúØ£òÑkP·\¢‹*I®–Æl°›Ù&"³=ÝT2GFÌ¢RhË1(rˆéZEméÖÎ2ôbw`[½vVÆ@½iÓ57á*Ò¢ªË½ 6ôÏG5 ¦)zë? ¢AKüqæ¡&©­°Tm˜ïuç¯ÕÓ·Ï÷憋?„§2`ÔX-™öÓrúøÔÅEü±²ù"BÈ :kÜÑú¥óM&hp£K›PÅÚ ©ß{ö4$Y2aF¦nõpôè¥>‹{rêp] §4¿ÜЭø«rŽ"Žù¸þF¯XD¿?À(Ò™ /—Ë* ¨ƒd2|D-·¹#¸~)íUÃÚ+=!,á%[ÕGûvå¡ .÷°&ø´=m¬{bä„gw±Rè2IÊqyWn0WÑÛ/™ˆP,æË¡³V,*? ê]­—Ù©î:kû¯4î1gnÕe*Î ª `ÒW‰“—¡D&úaÿ¢K‘ …¹oTƒ< XeÍÒ4%æÈ<âu¼¥þÉ’%ZOвå_ºÄK µáMÔ7˯7ŠBÄñÙð&|•ë†ôÅ‘|7m‚TP»ˆ¥à¼½('ìÌ!ßA6ó Äde9k“U†l&·Î2ÀÞrRd¸ØÕ0²æÂ©¤d²Ð"¸ßíÝKKNÀ!×ïLöd¿§æAê4žGYm=2õv/ÇE–E¿œµïÙ¢‡ó îl"uãÉLöw†o´ýø.<^_Ffö9sÑšm ÉS²¡y’ãë(‰T«Å OêH?’XŸp‰óaŠZ™B`^YP)O\K•%”ø˜Ø Ñ>Pœr+C‰ïqÆ*ò;÷&Ü»,Vãx9wÕ't˜5|R1™qÓ›œÝÙqè2?$ù$î‚X÷€óâõ÷âWX·œ†yHGá÷É#E„]«+K,àWÎ];àUùê]-Ž4ÆœÅoTp4Ž&Û‹ÐãV”üžëãFèdk¿lÅ„+–’qbEj ]¦¬c‘8 |v|µ5³Ç•¬wèŒ-7¢bÓ\}2¨†Þïx<á\_;¶¤ß£ò>ßX¾ …i¤ë” °è†¼håJ|$S`¥<³/>Ç”¹3]fk÷6qm«ùµñãoÏJERÈÏ3ä W@JLéd‚‚nàraÛñ λz—³æZ©àìämWHø‹™¶Ý>ÑQhÛð C€Ð,Qø”> þ‰‡ÒdþÛ åÍ–2K§Üòr3¦§ Îló~3{aëšA¯™ïù™õZHŸ*r²RNBG>ÀE5{÷sàhŠMÏLÌïœH^|tó‰|rz”ãì$1ß’ðfˆO9óãXµô½Áu’(i7c:z9s.p€¥za3^4ùç­€T|”ksÄÙŸï'ÎWÐa‚¹@­¹oÈ`U(—¤ÞL&^Íǽ SC£ìÜ]^wíè=ŽeÈKóÁ§éMo(o‰c@ÿeké÷÷–e³+'y5ªxDpqO&?æcŽïT=5;DàÇçbÃx 2Bl­]šØùŸ/t¿‚òë1+hm¢*òiqm"h¡8&¼¸ œ4Áç97H’˜×¡|uKB÷„ ÷ýÙ-4Ç/Ƹ¡ðá»C—æ@(m’Ï·/FÑ•†-dÝP’Ë”¼ç¥N¹ØÄÖ6ÄqH¬Ò¦©Ì2zžuÆn³6t‘Æ©åímŸél(Û÷¶Ér¨z?¦VÜø„‚A§YrDcåÂY¢´ÓÁOš½ŽÕ.-“P?CO…"úžêçK‘®nò¿ zÓî¶ßcŠ:0þû„©÷–½K±0Û¿â82ʨ@úèGÌ_òæW¥¸Ò&XNôY­­xNŒMÕj†ÙÜRáÕæUqN¢EßݸöÉ®Ò)fs·[üâÊ6é“.#TÞƒqïkÖ:ÛNÜŽÇæB¹fÈäypÀÝ0¬ ˆÚAs+ô…þšmr&‚­©—~.Òul¬\ âXãië=Tj±|ë{˜ðŠ$E·½šÛÍe°XkÞa:Hé‹€iÇO^‘«~拼{&ÕÞì€1å´0t<¬Å`ŒZ~® Ñp¤)ìÂ’c¥y¼Ï3=)Šôd_†w¢%mi8H–"T-E;ù5s$&ÊÑlzç,9šbblEÔæ~ìŒ sþŸ-ùm!nÓ·5Qµ€?O)­h¤¼1 =~ù_ÂkKÿöHb¶´‹ŠäÄ7dEÕÖ@!Í(ïI Ir’œ(” ×#¾ãë€Â·Ë>ߣê¸B}ïPh 1\ïØ[+=ç¾¼+8Û>$ZŽŠÎ‚L©ÉQØéj`›Ã½Ÿj^æÜ\‹JjÀƒ}þ÷‡Ð>ÏÀy75 À3›zÖ‘j…=¢5ŒØþ6ú­ÿÜc´8”¥‡GétèÎ)åçfµ$Ø£5À*NÃ2ˆŽS¯G7µ¡eºÞ¯8 ƒ+"½´V’ÎwŒ°f'Fà(­=΄’‹^;¯¨ÿèµÀZvY÷U<6ÜÁ,²à# C'ÕsÈ#û躇 Îf®xµq‡±I¡E¤>™VšhÎÕíb-zú pÁ}ÛuËj5ç&Í/ýz‡Þ‘›õë§Ü¤IéÆaKÌr©w»š×7§œcßñKsÄ_O¦ÔUçe6•¨®&W­å lê6‡í¨w’cæ¬Ü†hí04¤9•q?ÈY<…AaÝhÒ•6-Ÿbˆâ#Ö±Ù”û%&¹ª#â4åá/J!:»Î3Wô—Ÿù¿õ]ì[Ÿ uFä¹Ô|¸äKŒW*. p8O¡ÞåÞs5<ØÂ}aæâ ¼ºÌ¢7d‹Î]èȇ½ª`€:Bð¢ ôzÝÕÅž"ûJ‰ø<žN¸úùqD70¶Ñƒ ²Äs5A¬d½5É/€ŸÔì²±\yA†ÐWÓ[tá*‡ƒüI–¹û(;b¹žNœ`µ¯Bí ÔöªrßðcÏ7ÇOì"cTK–x!(¶é/ÃઇØ|´\£ ~xµÝû‚å„AvYø×ZŠ‘¸òµw{–ê9Vÿ3ǸbŽQmi®³E‘ïz2ÌäƒÕ' Ù± KöU‡ÐUòÀ‰^Qø–&¨fm¬¡š±jË…€.u…ÎòÎÑ? ¦*š"l w0 S'óÎØˆ®ZUfÍœÏPËúF̼ùbiÚ® mWß¡œ :@«¡{ëF¯ìÐ Ú„>¯ïîî\ aœ ™â¿89¢„ÁNu:a}W›g«ÑÖDϰ#‚XÓߜhžRâQ3”½Bl·j—]¾±€¸ƒû_™ƒg¥9 ÔQ„˜`î¹/åß3ŒK» Þ±gHÁéµhK:è6ËËáÂtp^Ñk¢6$«W±[“‘—ìçû/ŒÀFãc$ÿÓÆ‡;}ì-ѳ§SsŠˆ£+K¥òä#Æœkj0R˜ŠΖ˜Pྭ@Ÿvº÷.S0Hy'ŒÇ×d]s@2ÑU-N…–ˆáòý(‘ôO^Kãv•­Ñú-wcù](©ÃdÒžW‹««óuü6çh1ჾ£"Ú7Ü¿VW¼>ÁFƒY0ºßáØ¥h»h^·ý¶ìÿ&¥:ÙhˆŒéÏISë*þ’©(+É2:VžU0¢õýš§ å¸ ð{£2íãUቖ´¡_s‹0ÄÒÿ[•ßÖ~ÌäÆíA>Ú5EÌý‚·)‘ê¥kºHW;â¸/u‘õF^ƒU˜Ë!k@Õ°JƒÂ'â-DJ¨Ì¿‡´Gêä@U¦û<öð&¿>NЉhí¦o÷¿[~óSBß™/i>Ñ›…§b?å„§fX¾Ë~½£¡Ó]!+À¢àciw)C(G/s |È„’jÚßDÏ´þàæ4Eü*ǘ߻°Ã|͵y[Ý•¥Twëyø3Œié'¶è;ÈäÖZ•·ôÁü&GÖ¬> ûçžò™cõÄH£sÈÉø·îΆÄûõ-: h«týS5Mj†b%´qÛ§*×;€¡<çËgýå…sˆ _ÌZ “›j†Á‰ÝC×gs=‚æHOÁc*÷"£09¿÷УT…FÆåeÒO­àEX³„ÓçÃÄàÁý´—&µå‚G„Ã@4‰ >†•´ZñxtFì¡eSÌúŽù·ÿpø²Î•-ÓªRùdV#ª]b¬y1íïÉÑ,Lwçk“@ø^Fx'”ކýŸè´‡¿šâŠþßþD¯-ô&iC)ôvÁ›°. ¥r[a©G õLD HÈ+ª3·©C‰ûo«ÃpœJE¤H£:€BÉF|‹–|Áf°hщê(Щß+™éŠ`ož»­*Ù6€¦ZQ*¨;·Îq=³ç«“dw%~‰:T´drmãEísÏSÒº qÌ·åk„‡ÙÌ´$€¬Ø.ÜÍG×.ìâsý†©1ù‘ßþž…cZíM Ø÷Ù†™2á “‚§f¦Õt°+5a³·Ël^!\ÌzJ¤™Ùpóø$‘¯ño‚áTÒ†Mœœ“Ë]­âÓû<&!!/NTý#a`M‹úº`±èg}–,žx³F…wu Éã"ƒ"Ë&wKœ:ý1pÆÄù€Ü$Oõ_Ò`Î~N¶>crê²i¹‘˜hWòP:+ŠFtI‚`ß{n‡ºü£ñ< 2òLýq¿±:*~gbòÑͽ¿ûkÑr²¦OiæYõ>•ËÒÚ}Þ«A˜•Í×(|[’«RÇ2bOˈ%žDyøôï*?Ûx2èñ=ó·9 oÁRm_¸‹J%úüpë²í2ÏK´3ïŠ#œf .ÿ²¾d˜G6‘siðñK0î-{I“źø-«qqJa§k¯B±þ? Ä+Þæß‘Wü«|U˜KÜ´TAÁ½§8ÖtÍ.v)à%ØvƒÐ0ÀµHL"Jè?X!–¾üx¥k¼üÞ+î)X<;­ÂŠÁ•ÿÓQ)¬¾Ýé rÞ—l)Jz1õq{‹ÖjúhB_ðóÖÞ”¼õA̘´£_7ÏŠ|u$UdÇ€?زIÛIwýÉx2]1WŸü÷ýë¾1¯Íæ%®%S‰Ö¢ EkˆH NÁG.êüŸhˆÃé¤dÁô¥tãl;>— ÑÉýÓÍŸ¯8]4Û&€ˆÛZKÈ©ø-kQ+çéÖý÷ᮢŽnèç‹]ÊŒdQÀH]šyôÉ-3ÉѾÍHÿsÿ"¬Ÿõm/:ñ4™ºõLr„òIè°0[Œ·7È–Ñ'à´—Çï/á*zð1!ËsŽƒ>FJ?Èm°Ö `Á›L´¤¥T¼€Oì2Îá™Ç+4˜5Yò¥A‰•‡rÝö•Í6–ûÙe³ˆ¤™e›ˆYµœÊpxS1§ä€.ù[ÃØ}Xð(£Á¿¿¤:×\.¢ýÐ3ÓéÝË_Š}f¢-sÆ“¯s&­”ó„©ð3ÊÑíuyNx/G–üXÿü‘²"Å/³Îý‰Aà\ÅBшÀÅ‘QÛŸMȤ/Xˆ%þ`Á<áìµÇéŒäfƒñâ Z»hey¾íì<1Lè<Æ*y…êŒp‰`^[$u#wÿXººÝNõ(ú 挹¤Ç†.õx,ÚpÃÜ*Ó“Í.Ô8b|ê²-›¾¡tÙöSÙ z¬Ä{‰­º†Ó °Ð»·—Û·ÑMe-8b‹74\>X?ò„8C—ñ ô£¯2 Ô¥•qü¨zá/Žð'ÊDÚáîd¼f^½®|×¾=½6 :(7`)so©z;Fw#Å™Q\ºŒ° Ä·" ò+4öäíáwG:Ýò¢//N™ë›—¿í³¼âönÄæl;™N¸\¢ ÃT<2ÆÚ›1ÏÍY ì”&ñÖÒªByaªþXãBö³rµGûúõñÒîÅ\jµÀEWPǰ=îŽx­h³Ä&$0btߤ"ãZ?ïW4}îyàky‡¨¸De6]un°©ox7Bué•N{Xìfdh‹£T¡Rêa %Öº’¥òÛ7×”ŸWþ¾ CÜøP;j¿IeÓû!ó·6šØFb”NÜGî~$¹é|vX§9Ö‡ºëo­¤f ÓYhmà ΞÞû ¨ªì¬’ɱ׌qÖ]²?¯–ú˜j¶ïv¸ ¥CÔû=4i´µ ãÁfY½tÆ=~ØA¾j׮ʹñG(o°ñ¦5 ³3JÍ>އ;7<$pñYÑ*±0Ôà¬*Dÿ;Y‡÷JG}’åaUœœ'$*Hú°?~Mh}ªZoá]u‚Î4ã`ŠVOÕf·¬ý \úOI±8k-Ø)[/;°pÛš®¦!.’jä c‘0 Ü6?Œré‘/ßÛi?ïäC÷Œ˜¸²È‘Ü|/æ´–àl°e”êÕ¸p›ma@¨EDáþר²^]¢Ì¬\ߨ^sÒ½¡”…¤”*#qlRø)®ôèEç WAŠ1:tj¾(g«£B•=U†‚§±½D¨jG·±"¾ ô‚Þç{¦q3a8¬<)ɹ?È+÷ÁJwí†]p²FbôƦƒ–Ò¶âèsà$Î3¦Ã šQã_´…ZáH0†·üUûCÜ”± ÕLÔØC®kµzŒg Öñ¸ú˜/ÜDiÖ}RÎ2/”œ:Ñý)mƒ“q ÄÜùo“±]f¿i„ÇúSkÝÒ="=ž|p¨³ú=±+Î+ZnöHýÚ'‹Ãìlè êZÄÉqè–+ÔöÙ¨ ó²‚HÈ6PÔÞA:ö‰›ËÂI‚Y]ŒÇ•%¶¤9\“ÎD¢ìp%š é»áÒ}”În·º–,Z v‘ÔQü{† eÈöí€92ýœÜ’8\¢êz³Ö¯þ?g¿m`ú±ÿ±éCó¸ÖÖÃIï­Dí!ë|-1pÀmk?Jï’ÖÅŒ 1Û‡?!ÇàJèØ®%3Fpõ< ¤ë$,(9md‘–Û[Ç. UQ î¶Œ„áG{å"«ŽÎ`œ»ýЬéö¤Û¸#Ù<4É—l6Цž…ñ%<\m×¢ÄCaÏùÐþ½×ïKFäÐ÷ËÄúÊž Ÿ ´ý¦ ~^Ô¿Z÷ñ¥R3¢ÝÄ“#^@fSlXÎ_sz£ÖË+¼WPÚß4-¬4T‘läßìű¹ÃKàéÐ=ï"'»|•}ò¬DäQSßþ]#4þk8šjÍ$CÁ«޶¶+Æ »µ®R½VÇ[vÓmC0Ve FÕocòñ}Bm_ ÎëTç¬UÂöo$A@{{›ÉKØË¢žãVÓý)žñÏer¬»>$ÚšeÌøV½^wåàSzÌßa‘Âìð·6ýcXpc.h‚”™ƒ B¬[mFWYŽ:Ò7ôæˆ'¿Î—žnp¬®ž£„ÇôsŽ¢ÉVý‚X,€ û X†áoLÞt%š#âBõúÏyzfN„Ó¨-Ø,øPÞj„ÉØRÉÉD<º†¢ÄW*×&º…{Ðâ²Ô´æD­¸–­(wŒIè¶ÖÓ}–¯T|eȯÄy/Y­Ì¼`®È…«^›/ßôYo¶»†”:;tùî°”y1˜‹›ZäñX$_g~å·cðc W&'Óª’§%+{4áàË1p{õä¡h*Ò»]éÕÔrÔx‚àk[g¡¤®Ôñj©»NïT;$™óEz©×ðûãm2DÚ¹š!"ÌÌù(%&>E{€¾3ƒ´÷K®-½ymbÕKuNRj sLbÁÁ† ñ­¯ÀP2ÑëSˆÏØÂ‘#ÇÜŽL™j¡,U­ãí?ÀÄ ï™~B©8[Þµ÷N&àK¿3 pšQÑJ-ý0šáNõSFê$>’¢ÐUø‘  êåhy  Eë—•ÚP&e…µ{–¡©Åò øB6£~ˆO°ULÝ ÌÿËLAUvB…ŠªÛËž!Y´ÿ8uÖ»u„ä+sœrjö€r¢µ+ÃB–~/Ô¨‹‘ƒÞÖ–P4^ì5e_Ó³½@Ù­W‘µÖf#:á Jj²‚Pâr mè…+æjWÇ÷ÿ.k~Žpºö`&1š®ŠÃ-–kXˆ‹¦ËÉ·Ç.N¦Ê'ÚqümÎ+ÏBYÃàcôL?Õ§ù* õ”fçŸÞÞ„;=?© )[Q”^K•(¯Û~þ½8}hT‡ãýÜ:󨮒[ÂBœ‘üʾ5ZÄ€N‚™>é zŽÈºG¼'À‡jB÷ýüó©äIÉ‹žEG„h)4Gc«sfÔKâьŨx/“Šlpƒgaý1$I>w,ú ; žBw³²Böuª‰f9Iùžì/×èpüß=ìúôëBÅй” ÁO"=iPI°x'ö1Äêê”AJíþ¼_꥛;å7oä+}ù=À¿¸P2W ¯fºÁÒ—Þ'Ñ2Ã…§ÿDt金°ƒÿ©9·µ–”¦Æ”ü„pµ x.ÓN²ÙÿáOµ|:àù€k-²4Æ‹ŒåÝ?Ú©ÅwÎåøg ‚¬Û YQŒèÝFÕ[õÜPš¨žKûÂÉWy¦lÒé0”µ²±þOÉ.wÆJ‚²éíüµa2WsÜ"•$xÏ«®t>¾ºd‰vY]j îF€‚ñÏø?sÎ!¸ËD3žX ÃÆ¯Î„P—J¡Cz~;/¬òضÒlæ¢YEì‹óI:aMÕj?[ ‘Â($_bX+&×m2ëP/QŸÜÈ[ÁðÆaóbVâè3d=Þô Hó†;Ýô¾³õ—ç§Ú@À¢Y6: Ð-þÝȪm7Rþ™»“Žn)z…í±x^gvš÷Þ(yœsµ}8Ìì$}½ñÓ[:ûÝgÑ]„q¶ÌA¨JºÛD0ÿ÷‹jX òqä9?ü}r#»N«ö $Oóxr8kýPÃRWPmø“ÀLí“ÿ*Å h¨µÎ&‚^}ñs_úgà⨢*T¥š»'ÀU\r{€âºò¼\¡6ÄJ™eß:Pf Žä³’–d䮪µƒEŠª¢Ÿ[«¦«UH®&­RÏuh«Q}NA„¬á È /Ÿ2¦ºȵ먉±]waǽüœo=Þ° ìWð´k°4ñqÚ5å]Á¼+@L€WÃÂp—åõxá ô¥ôÓÐÜÔŽ(”õÄ•‘¡6°®Í©<þ6Ôá4Kí 62ºë09q&¡OjK6; iÖÌÚ–•1!$òG¢µ·´ÐK\¢z»ð¢äÀi7_hl)“Ë!²ÑŽU„ôïÇ#“ÛŠ Ït/Ò†Yìþ~;ÍÁûðè‚Ü£—ži—!Ã_{h ‹áú Z f6ÎB\"èv.Æ"­Å·HÄ|©Œ¤E¶ù­{ üE÷ÃQl~²!âæYûŠ•uUT ääË©¡‚ߎ1ÚC>^«–%$7'!w¥ŠWU¿Q~¦c†5.õv;ßï\†,Ãa¥Ö0º´ÒÔÍöàIjëÛÙ‹ùþ–¨Š_»¿]gܰãœ4 ¼ D"tWkŸÆÖ#Û”àª~*-©"ÑûÔ­íÆÅLŒµH;Ü­¯ehØ9úÃâýÝV×SÉ*WØò*Ÿz]-@fðɦûŠ­Ÿ2ÄqËZüÛk+[=d™ÛfK›½\_€“b wÿCƒŸjœú¢KeoêKð/ÏçMsd%íSŒ*ýê¯ ÓŽÏèKþ×Ñ@•¢~"u0 :=á”ÃÃΆãÖÌYusa +ˆrj Zr«Ÿö=@ƒ.o}¢…É÷NL 4%`<„ëZWà y¸Ip'¶‡Ö1,”Ò;€~ƒ`Nùs¾/PðÕÅ0q¯ŽcÐ1x<#Äß½5R ø7ÊÃÈ;ÃfŠ^ ðÚwÙ ½= Dëtð7¢N®Z>rͧçL+ÖX (ß´ô, Ðk)&8ð,uiÔ:²a²Ð[Ï_kuü*9sò„<ˆ–•~äÎJy%=G¯ÙåëÚöùÁì~Àüð±4Vw|=¸‚Bþï°ª'øvŠÂ06Ë_Ú”oòÀ“Y‡ùd8þ%& ‹˜5ºóèamø½Ò\Õ‘½?‰~û“m¦l¦d×Òú~sïFñªâ*Îμ¾_›€QÈ%F}‘)”r1ˆ¹n4{ýW=5’.zr«K(hùÎå$ƒ’µýüGX@í®fGé'|ø‡ƒOF4A`eì=ÌŒ-œLöan9°¤ãâ:\ôç+ºJ shƽ‚ ü}t»YŽö„/në‰lhë:àz`9¡ï̽”gšˆÙOb1Êg^\©9•R2Ã*VÜ´§,øYÁ›uµkÒïY_Ù‘§]_ÀLÍšDP •ÉS&Qï×l\åý: o»ÍÛòÌ[Öñˆ.Ó²U¶G¾kø\s‹n³Þšßôqáu×õõŸ»ª¸hÑÄ0+nÅà€C`²¦ë™¢¤,{¡¤ÏÈ_Y±D’õM9:‚{žxÍ`nA2ý©G#(° êv9NÝ!)õ·Án^•úZyAæä—ÛѰjÞ…Ìbs\š¢®êÞÓ$Uxý@º‚$N_‰:E³ó?Å€›4-t–OY®B0´ßØËœÆ¾”p–ᤔ­!S~î3”ç× aŽ‹}×iRK[¸3jFÖ­4VKôý}\äßµ×Б|sN¨ÖÂчA‹9r¹QlH€>OSöiçƒpsùÇq ¥–#¹|Úé©ÂVŒŒ>òʽobÖϬ?¯¤·ÔIoª ݡĪgmÛÀ*9¥ÔîGþZé1d¹Òï9±(æ _)·®jèë2êÚÝÝ£·Qù§EÙ9­ðÉÜêÒ?ÐUz¥*ç0ĦT½èªš7¤ §[|e„=Ïr—ULÐ ^`œqÚ£âÌW¸1Ñß‹Àø­Ùs‡Ù¿™}ãTmgMôîÕ¾²ÚçglŽ>3)åe-Þª¬6É5|S»U þú»Á5Þ%ž‹­Ü"™og„Dá©åA’¯ý—-+3©¾TcyføQ¡Ú€.Á§ç_¿Í-¥Iy•+à1ÿH82ϲ4ƒÜ™ÈÉAó \¼2–8xÅ —4.mÆä)}-[TE½”·Œ+üç_j¬Ò*²Ê‘¦;¤Nª!ÓþãvÖž²#Ãè²îßõ­h³2Aâë;·‰É´Î~j Øyÿ'‘˜9@ú.ª½A˜ÔwByŠ{é€Ï8´g‰ÔO9¶Ç@êè=Ÿ— ‘Q,]±½­c—§7$&ôJgf‹ýÛ[XöNÑωRœ¢;ƒMÛ“Íùy‹î(ù“šx÷y¸Á0²s>"áëÌè/Wp[iÿ´dÏé‘èLÇZE†”šúš ?ZdmL*º{‘D^'l/¤S^»ÁºhäŸá¬¼ œŠÓKè:Aç•æ/8ýÁ¬xó#:4ò›¶F¬5•°O àNÓwü(xA‡t?@“z €Žhç í¤¼½QSc QK3dzï\á2¯õ€âÿ90ÛßÉ=±ì”†×­DŽÑƒ;¡XŠ+í¡‰ïÑÑÃ7N³a~d_^âl΄F/-yнV®×T¾._ÒÙb­ó±±ÏÓSQÖw+* Ài m·Yx0Õ\“–n§¹<ײ2ƒ¿û0ày–G nCp'ð1HâÊ{”tä¼E<(—ÛìxûŒçšž àHjÊ3ÔbvñC)àÝÝðGˆ>Þ„]÷äCšy3)gÈ ÷7«Dp,û‘ÖšèÜÇþrŸÂ¦¿—f¦nÅÇĽi΄ƒŽJ‘2´Ô·‰D$ž²ŸngßÑšÏ30ØšÒŸÜìFZo¦;e7èÆy:‚6ŒPøÿè¤Æ”§Ám úÈ1,§iÿÌj»j › Ú4­Ú§T©«’¸û}Y¹ƒ£ž~v ¸2¬àÙQèâÍ£uÙ}ÒKn-(µoGEWwô-\l²õVGD¢uEh‹Âeœm P+½Oüþ°À?$ÚØòVË­‘ùMš‰X¡ý¼äZ%WÔî]8ìd䄬Z(‹‘SCuéÆ1t¨?xw‘ô’y’Ýså²Xë Ïô-ŽÃ$¥ãùÝ—†£>ïò6%—àÙÅýîm¾0_ìK€6z°b ÷h×ÌÕÁ‚ºGžUühÈa§Hjƒ±"«­:æ"Ó}™„ !•:Yàé9æ‡5mT«Ab=ùx¦=VœG€(­© wñÆ ¬[©[Ü$"íz,#Æv m:íùë8ÊV%³áŽ&7ô,¦k“³_¬ñà¥o\d·áçÔq&†dF†e­æJ+NË0^¯w‰±âöxŒW-1`=~w%tr–›ì Ú€ËÓVAKRÐypy&AnÒüut8ubÑx0'‰ƒ¡-Æê[s:a-`&xÀì¼~›{ƒ³ $‚ô™_ëVãù'ü§ƒÁI}ÐÅÖÀÆaãsòÁÎñƒ|Á6^ñçà«Ö‹øfáÖ½h5ƒÁhœ‘:zY`Ü%à ·O°gpàö2BüüÂÐ_.#PÛvφž@áæ°(–¯íw\%:š<$‰–p-Ý߯^¦‘­y½‡{&@p !ºzAÜ” W Ïöÿì.ÜßPXn^dµ–¿Ñs­/ô—þ-ôÅŽñVkR»Ù90à=ÌQÓœYÕÁaæÞßRÙׄp.$©8™fêFG‡t÷°¹Æ®ÛNL õ¤UïCjôÚ`ÚB*#óÍìBL6U‹hUÇxËåz[<¦ýèèò·Ôé=ÄB¼«‹•ÈD.ͧР·ØiZC1Q:7KCŽt%¨ATĤŠBI#_yÑÎC[\‘hðuc’ûC¸yŠkS!1ØI<· _Üã 9,×ñø`ñ¿àÖÃò8ØíùãñÕ:‰þ!Ê” ß7²ðÎ Ì5O4p9În"Ijr!›µ'ÁרHMl5lÕëªÝ²ÄsVThê1·—ÅàÑ—Ç;Ór@(%ê“sãÓZ3·‘kÀbÔþòôóWJ½Ý2´ï‘"E;{Q7°éž—«3CþqbÊ “ àPæ¥~6”Ä¿ò›… ×†5c¨Ï © !W¸£1/^uǶ˹£G. ’¼šÑvQavOœ+25ïéå¿(Ž(¤r Âäm3”¹zØ.§­.ab˜m¼‹uš¸Õ‘- ✔Â0þëÎ;1ÔÇ㈠½lÑþß©?[tD2ol6÷íb„ß=uhØÎ<)›™þFŸXÿÌ_Ë»ÈÇCßwÍ[—~͘ÄÌ4;Mlä»nv…¹¥‰­rgnÃ[ûóŸo|^NoÔi픚7€[:# Ó¶¾ÊqÀJAh¥øj9A·ª7¬øÌ2¨LDÖ™‹öé8}Zã1'\×øx+eèeŸç~-“~¬ÍMÝŒ_ÙÝÆð»“ž½­y%îïÕÙ›²è}vÞš“Y`Ë5èX:^Á5‰d’Ç/¢àIww§*µ¯UNÛKÒc¿ôi_§ ºóœ*MiÉi¡Ovdƒ6ÌÛ•TÁ]Já%'5Ž9•ƒ3µ•Ú-ªÅK^Í­›‚’n®?¾ ·‹hȽ q‰Þ6T‚>ŠSÞxÐÐ"ã$o¤K¡#Ek‘ËÚÛ6JÃë锦F2Ò²åõa±‹J‘ˆŒøŸ·»‡}È—<¡MµfóÓª“Ùê…={{Ãnÿà ²¾“±ßPAÊ$k®™R^RW¹ Äðg1í±Þ¶}áeB!fwC£V#uîóó¨-U5ae£o¡=ûlàŠ*1gÐ$Zëžõá¹5bêˆ šS&ò¦ÅŠzÅ´ «bz0 ¸Íutðq â#º N÷NQ •ä–êùÅàlKßa¸œÌï#¢°‡›8‰Ò¤dIû÷BزÑÂç‹•ÀB¯_îјÉr6¢õ¥fӅ̰ÜÃÝ!ï¦äYo—:­©-zëìèKˆÊŒr˜?BIx„~<Ù ÷8OƱ`Ò‡oš‹C<È¿ÒÈ7£ /[¨ÜÚ ßô¼ª*èʵÅï½›•ô?^—£€…Nª;ºK˜%Š­ù<âI:)è‘èÚ¡ÌbÉxôú]1Ucs£G l,}Ò]ä «lsN³¿^GKIJæÇ"û—ž[ÿ§÷O4‚®Ž:I¼¦ýñØTrצ…À~#o,¡¡î?Ô˜3†Sý&ÛuYÓn7MZg Óö¦¸KV0ÈÉG6MNU)ê¨suû´H,›&e’×ÃD/õB9Ãì~½„<«uj^ò‰b$À(\±ÑΠ wÕ0?Ń4•jÕÉ—²p6yR åí ¶G6Ü®¦…Ú®£¼ˆÉi(QfõÒÉ'1ˆæ?Ÿß·CG€–kߎ=ò`Mݲ~ Á¥É£àw†й¢}ötÆ;¬™ü#¿G6íìʈ¶àü!Dg³^=Ò¬±jîTëí7I«Iá¾ížø†šw¡Zh“9®-ˆµñùý4e„‘`öµ ¯l"ËwU»ÈªZÖ ¶øâ)óx±¿wŒbÐ)¢íÉp2¯øe +°^ÜÞ¦${‡x¨Ð«åv­€5mI!ÎaU}äî@ƒ7ÆÆ$ì;épyÄœÃOA”–—;ñ·š2ÜœÌ)®ñHóÛèŠ\Ç_>]³ûÏÜáÎþ)ŨeÈ¡¼d0kšªE±XèÉ"Q ÏæÐúØ8š='Æû!Šc41ý¼~nžÜØ”:`¾]}û0´š#ÌÕÄ< }‰ÿx˜nç+ìß1¯(ÝîÄ«Áñ¥ËŇ+—è›/ÀP–€¡L pÿOÍÉ_4ù©lµ‚¥iEÂÿÞÖ3p)Mïì>µ ÛEŽ ¹‚Ò‰ýÖÌâó+ã !&MÇ ¶^1£Á“•2;É7m^¥µ!…>NœŽ+ƒ¶l§F;qÑu»þ¤iè }·1 È¿”¬‡Œ,%è‚\‚®Awò_[ÆÛµ³‹Ç(Î0+²á¥°âˆtíÐêW“Zåúd£Ò\¤â²“5+\ šè=+×íÙpEù±mÜKxä¸ûàæ|xÛÌVÉ Ð+gÄä ;ÀkFÏSýcÏ·3ò0çÊXUÖöbf¬’•£Õ¾°€º&£Þ+ïsåÀÃm«ì÷ 5ÝúŒh'(ôÄ@ð­&ÿSW,¥Ÿ³ÝÔÁ-jNjW©UY?U¦ç‰ç™Áý2Ô¶·™÷ü@¢> @tÞUMƒ¨3⨙]Qæ&VäGå­¿Âû®‰¸¦ë©/¢?’ªð êYinÆHQþ5¡ŇÌ]¡µØSOddu—|wx€Ôo«åHø¼™ºIÑÈë`O 2Ò[ MpðÄ,ޏ‚ö§­†ÙË;-w™ÏOy¬BL+PvãÚ>,û)3á *e;?蚟,–×>z.kkc¿J@hóâø´æBªîÈŒ¥ô…‘÷Šð~ßÏq§Þðlsߪ`/FQn_’“^M“á*Ñ%¸ü Ìô÷г³ãôÛCIõ¦š(d¡:Kûô§óUâíË{"ó› ³{¯Oü¬«+r°d$K Œ„‡œ­Bóð^5RUôë¶hTQBÑ£³‡/Yu¾£¨…]jè7^DHzy†0Ï=«`ð¤=× è ?Í–Ð ~‘ >{0-ÈÒkÔo²‰BמnA4<.ü4ôˆqî7_Ф@ ™-£4²‘ø¤ª ¼GÓ0B¥z0Ÿu@r!†K2Æt`Í´ºÃeÁtIqcÍ¥°VAoF&pщ½ËÕlø±gÅŽòÇp “Ì™ï³(A¥žt³K¬bºƒ­[ÓNMýïßøä{ú;nx¾U§Y½,–k÷XHŠÒåäâ²ð7™èÙGX•r¨Rß”ñþ¾Ò[xQì?¶¼¾­Ni³ë€Þ~«•'š?u|]ëúoo޾(á!޵¯&øùÍø!ÓúDf›·íVKñäåk›$Mmç¨(tl€ÈóìòÍÉ=»^Å-{$!&?°y¢ñá·2ˆR¾F¤Ó 7lš•ýOœá&¬tÇïRÄ´[rUÓäMyZï>++qZ‡m‡ˆí»åW’ù_n[µ7/îLÂP㫇iuטî.­„ SNÒA²ÀÝþg>ɳíÃkݲ¬¾•Á_’HÛÿÞ„^ AUÍB‚ÈMçÒ(ª1‹Ó•~kÆgž®¬÷H«xª‡ÿê„Êd.i4±·y*E뺣2·ÊgäQ¹Ô$*}Žv—O¿²j LOqÍÆ 彦l?í7X pÜ5öèû$¶U/+¬F`¬ÎŸS‡fçyúý† Ž£H3@†·T¹ÑdË}nar Õk,-Im3J&j•5MÄœ]Û{èºýáa fÄ´7¶Ù–pà†‡Ø_[Rž~"%Z7·ý-,î!Âáÿ¶Ö#ñ!Ìxa]Qðï£Ê•÷ŒÚÚ¡¬ ÀF+õUl†µá¸ÔÊ)r ­cÉ­•$`Ï!ƒŠÐó«’-ÖŒrð€‰5ÉáÒv×Övå¾Àø<›QRä?úüœ î<â‚·AÞg _žt@N¨8éÉ  1Ï6›nüèð­ÞaešT"_‰b£#$j÷Çï–ðJ0N3Af$x†BŠG‡.,\hšµítFœ¨|Õ.3= š‰B<1½ƒ/X5lˆúžâ°ÁgbPYƒkîLœá‘æò·‡¹ºuߘb5zpFàÆêæfÆIS~!‘S*ñþS Ãw[þÞK·W_RÜ 'ÜçÕäN?œ¨ Ú©al¶DÓ ‚uKºsç‰Y»Q[R@–ø(‰iNÏgË‹Yoô:>ôæ¤ïH’”Å[oÐÔü †bÂu —PLc-™Ñ…™|ZøÂ GHÓòމ$ÎøñEÙÍÆ‚~>ʹ9›üvâ1Ã$:茇A½|ôáC k òÜÕ·_€Á†œx´—̱\$’ h™­1Í—I¦µ1;3—+ûٳ먖©C<œ4FûDÊ"Œsfü×Çz¤®øÝé``‚Û]ša2UCÊ|@íÄp¡Þ€¼š„rÈ^[ic H ¹+öMkª÷,„*š%¿¨JGHZ™‰§‘§0#$N>^”ædù…íÍMuÕ5»Nz}-¨ûGY)íf¥©gö~;{èØ¾F-†ÚOÁ| F0´ÓÝ! 5¡Ñ”©uM/Fäönï“V«cÙ‡úP {ÿ{JYæÀ–§%qÇQè\Óæ AÇPÑlÜ›ÝÅÃ&¥1ö®)ó¤4 X R„ 4,J®adùÏ&º²2˜oê>î1,ÑÄ…âopê Nu>;ºšÚP&Ĩ¸¾ÛÅÜœ•¢34Š1â·Gù˜ DÍ#ƒÖ9^"½Š–Ó «¥•xÉu_r÷n.NO¡n¬E%m3 Š ¯¼GVÁ:›Á¸̉ þ)½cðÛ¢’UÕĤ}¨kW=H^XeÁuD D”â†[©Q’º_õjœ!œp ;Ä„ýÃo4܉ïÎnÃþ\ë᥉÷Ô­†Ü¦ÑôeigCÕU›Ûç—Ÿ¬Xb»2>e¹»ë ;®›Ê?¡ÂR€™cšàÔŒÈZTŸœØPÓÑê¹ D;toíXA“Ù;‡C ~ð<à*öE+´ò˜k•‡iÂj È4˜<'VyÑg=7/XÓIž©<ž“&°Ž#Ì÷dˆaÄ$gÅJç,/F/@ãbknêy#櫓¡[^Eµp®2§Ýå ©ÔoG'_,ÃÞÑ:Ú ç´\„Ù!ÿ•·ßBxøò5£§PŒB¡°¢‘?ST ±˜†Ü»ö#Í¡>‰3ª J=7'w`)Xäöf¹<÷ÞŽ$Ð*£¸š!ÏÅ. µÑ,6âkx¼ ‚ÀoLš–kÓì–, G}"ú©âƒj-y•ïLítq ÐÒ•6$å"Z?9f®vO™ÒjÈwÂ?Û7ÞÖ6—úH7²rRÑîlñœdºôv[Ïô¦Ê9‰Óš£4êšœ©dY測j'gãssl9i?;,Gs ìz¤EròÅÕ²z}r¥[Q®­§êº¬ÇŽ×r†mešEÓagTñѦ(FšÕoŒNÜd [³F̪Œ7z'Æ:n¾8¯‰CñÓòYD/ü¦—4­ùGEZŒ µØz±¾Àì¾ùzEùL‘€óÝv`T0„ý.DOu+"Nfäçp­º/‰C’Ná§l)õyo4J,;)ÖÝ›‡ñ„rÙXoêÑ nT¢:|%ÞìĨþÇ‹zzgžÃâ"rÃЩ¯Å¬ÙˆüȲZ/wt/ÂÖ­Ck;»†f0Æ)Q¥Åõç9n}ýˆ|-Øêý"fY¡ïš£fcb%Ï™êÇGOx÷¦SþÁëÁ ¢µÏe…wMãb¸×|¬pmñZ>µ[Štßô–3: ãÔ4S%ЎМN‡Oÿ¼0Úrœ¡M1ÜÀmk`0ï' mä. t¹à±Në—ãØ2ê,6£ÒÞe'ËáßK%¶«xƒ „ ¼ä=!ªØ¨ð¡Ezzšó+ %ÿAhË{ÈV‘Þ«Â#ØË6î…Ð]Ó7øîž<&¨:‘ÕkÒ¦Ö-ÇøOgªö‰eJ¤Ý‘²±Ì´6Ú8C^O<-mu˜ÿöQåÊ×i}ƒoúp{*Ê’¹Èz¡Räó?mnæüN¾²7@@¢«aSXã9 ž¦Z°¤5r¢Q k¬‡;Gø9î´½ZSx88Ù*nëB<Êþ!“oiž$±ÞÖÁ{”ÔÊD<¤ê¶,‚ao*XJ®|MâË«'‡ÑK³[—D³ñyÙ+ÈÀÍIÝåÕr›@Z÷™ävIéA¬®áÀTçvÒoµ4&y úœˆÏ~ö'•â5þñû¹m…rªËP`[JÔ½v„¤eªçT—S9ÏÉ ½ MnÓš>>„ßÍpÙ`Iö6ˆWvJ NÕ(}û™¦»gm| ¼BMô£º}7 áef©Ù­AÆ!#›*¶ÂzÕ™Ðtny6¹RWâ`¯#ô£› Â%:¦[Љ‚S2MÆ¢ ωEG¿˜eÏRºÂÙ:n©®N6zZH‚ ¶óš'óg‘8ßàwt-Pµ,” H¹ô&{>€º€†Q#>y›–™w§Æ÷å `Ç*¼¼!E¨rƒ…Òt{$ óžjßÉä3¢ìqð'ÎÅÏ:!®LöÖ´ºü;~Ì¢äé Ä ß¼Ù ¹ºbÞàô¿•§RN´/0ÞÜ-=sÃ×§ JþÏ^jšÙx6†>LJ]<)Æë¤M)S¾Hö@„Ù¶Ðí¥÷â†upB‰ ïTEž6ß! 1)0ÂQ‘54C/aLš•¥½×5oUæüЛ³ Š|åRDÀ© “ñP‹$^3ò·C0©wsÜ¿”.ð°Z!]ØtC=·ì’òŽŠÃÝÜuÓsR·“þòÿ–½bæ/¢íVËÛ»HßV+‹ïTƒï'nk4Ÿ›~mßž›b ÚàJ¢ ˆ]ÉöÛ×dToBšáƒëð^|¨òÖ˜äÉxa‘]Ÿ"Ä䤶10ï×/ˆ õ/½NŒM²½ ÿÑ ì°ø²RŒéTn8rPªÉÃô¤À&ÇbFS²¿"Âk+'©i×¥HÌF wsÑ+KÔh|øq[7ÖÕÂvùy³YUU72ìébB¯2œ_¸ÛkŒÉ„ t|øÉÙÝ­]]àÛÃb9ø32QéçC{–šÚôv¦­-TR,°vIÀ<šäí“X^Ѱ‰ìg¨Õp El7oXë5çbõûUv•wnïa.†Õþù5&~Î ¤ÊAãâG'ª€¡ BŠ2ƒÝöÒi4 úÐd X$uç½\R鮘+–­kø<OçŽxë.±ºðŃ©4w2Ü"´2ѹ :Îéë Ø-¹~BÿÍ%ù–…{wºìJÀ¶ÌäÉ€¨©ãk.¸—33-Ÿ4ÚhCÍ¥¼,§Å¹qð Ï…ƒ¡x@ÎûÀPEüËG(w›\µÈyú™ÄÓJÒg°,JÂvŽ é¿Xa$Á=TˆŠï"[Ÿé‚õË«ÖÆ"KvF ZÐõi¿¤vCÀ&îù .G¯ñ,)PŠ€‘‰5D{îDu0°mAIü¢…2”wHíÂñöU0gªYeu—üC4*2G«‚Šø—:kM„•5AHøyP0áâÊ»Wž‡¿™Ö`øÜÂeþ²Bí¢:ÜkêP_.0¯©ÚlHx À¬ÌÚmoi¯ö*äâUþÀñ/¶î¾ø´aT ð¶V9±Zà4ÒkÆî/-¿—Ú¿^zc2AE§³ÑéžÆJXVƳüÌïFeØñ§‰ª®,“ïV¡y’„tòïþá¯eΦ2=±sõp†ÓQð:íZ¾(ÅGQÃ2¡9û©ÈÈ![~´Ë¹—PÕåƒd^œç ˜Úe”°0wMî•" mž„œÁDpm;PŸQ/p›ƒ•¦Ÿ{d¢\ÞÁl îÀÃãñÙ“Ñ—ž$×Fîö¯×½ÖŸ‘œ¶©½ÞBWäVʦݟRK4„¦‹R¹r»Bç–Ù·~ÒX×èÈÎ#K‚µk¹mƒ@¯3®ÿ.żPRÄì+TR’ËÏ]S«[(®YJÞ[ŽIEªÆ@L™¶ý™a Åm F¤ƒ!‰(¹“g׌ï^ÓTªÎ¼Küo÷™59ˆWO,³ùsþDX:h`À÷,¦äµ4:E׫•—ä→„‚LÈ¡—Ðúñ¢$ûD¶¬D¡¾<í_a%Ôñii)×Ú^DCrÁ‡–ÄZÖ7’$__siÇFào!:¹j•½TŽ*P3@_a§w~Qh1A'òë'a=¸Â¦p\¡¾SâŒï‰ƒÝ´ ò¸‰ ^5½ýÑ !d& é0wÂÀ”:Ê\ïdY‹òЖîè*Ô'º+ÈÂÓŽŠá*:ØnË"E—nͦ´§hù“Ùd¸cÇË>5*îóÕx&MYŠ—lÅMpîê xòŽVipZ%BŸHâ™Ü°BGEê5 âÎ[Æ*v³B ”¸0U¯ÐešàEʽˆE¹S2“‹¡"oýŠXˆ€³”º×»ÉŠ„Ö@5 UDÂŒší_é"S+ð‘÷ þqºôË踽ÓI|,sæÚGß'k¶ $Ñ¡3;rßZý<Þ %°€èÞÒÛ\±@Š… ‚Û|›®­Ëm…~â¿©Ù~ݸ3 §ä¿rLé¸Ît,(Ü5ü$e9ìË Aþþ -„Þ§„.ð¯$î.0«Æ‘j¬Eú‹â…Éû¹R2ŸU^º¹=Ú=ó>$ÿgÆ©m²¢&ø&ãdÜ’i­U Ê$¾Ã;·Ü)_íÌð6kWK㾕´T{ŸoùéX™ºšžŠsUiüîÿ–€:M9Æ¥s!ž6DèLŠìXÒNh6¹3’ª0ê¼$Ã%Ål­UÁ…wd»F3Ì‚áØ•ªÎn-Ë~t}§wÑqYÓ‡LV’EuÄ–dÿ®•9r1W8F{w*ÈvÅB8/uÑÓ(DåÔï—¶wlyµgqWnsU‘ÅU+ãCÑò!Å|'H.$7ñÿœf/·¨ÜdNlsQÜW„B®rzI´>CÀàò…TOêȹ6=Ù V_RþPÊbðµÆ%™Üx";'½ÿžŒ‰[HÉ…g‡ƒ<ìæéÈÈgqr0ÐQlÓ¬°AOÈ®Ué¨ZF„6”/‰®Ç‘Qk4ÄEl”)÷w`kÇPE6ÌÙÞ8),™Xf*ì#$‡ ªgýa^$l¼âZBÄ‚ zËsF»‡BÅuœìÒ,'0 W¨ÚþÞgÛÔ›D7æ¿XPˆåÒÑ Ýåê³\1ºõˆ}C‹8HßEèÑÉívîÞ•kTƉ`øãÞ»Ò’(d»YíÌã©IpïÎø5íRè—_8™Oè;úðSõí"§©ÿp#Z¥;ò\A$13Œ$«aCU÷åps$uyS“Ž9¶í‹Ø´­©nnUÊ£MÏQÒ×ù¬^…†Þ µq§8.Ãò¿#¾ï¿GWº]ðV:a0ÎÛ?bÔð\ð©.hwuÅÓ½±$Ű`ªà‡µYbîÁЪD!çHÈÚº¬%ó§(–iZÞ?€©0X/áöRiаp—æÆÁsº¾÷oq&®ì׉T] xø3œåÊøãGw÷˜”ËŠ@õ‘üÚÀžÖ‘ùÆëãÞçÓ V!óën±ÿÆsÇœç¿Üjb*Ž6h£Iæã>i¼fîcX͸dŠlž¿cN-ý’4…)\yÖ~°üú.(‹;âtë5Ô3¯îûUbl!‘aúÑ•|-_« - ðøgXÆk|R2ÍS„ÎMç<ÏKчf†2ƒÚ2º³vÓ£ƒ¢žä8¡A¥5¤nøë Iyî4ØFmm‰$Ï;ü6!®¤Iη~œl6½ÒeüìnsÿÁÞœˆ/€‘  j.l²˜Šü}8™¬°•ð'½í_y_£Hke!á+¦pX\/òÒ;ëQãhŽXA‹¤n¬¶÷¯v+ü¤¼WOÒ6Nÿ‰XøfÓ`¿”ˆ¬ÞW åùÂTæ] óšÙŠÑÛ3Sp®¶ÊXoé¥{ðôzi"ìˆLËÅÕš•¨„T’y-ÃQ j÷*!7’ëå¸ñê=ŽüŒ¤¯Õxå…4&5ž¤(q³b“ÄÏÑÇR‚ñk@/¹=-’8T f}ÀÏü­ÚÜô¬v— Ö2 ýºG£~*†NÃ!v.,ß‹ÛÌëZ8œÕ™ÍH‡F/‡¸v››©_Ô*xK~/)ë¹Ðçm²€£íó¥$´·,M¨ÝÆÄ㎕bY˜¾-³½aíÍ+G£ÔªŠý j¾|¬¦9¤«/×40ZCXç¯Ä–˜&|aï|æ°fV ñïX£®ƒÎ^±TD M#$"<à®5´ ZÔOˆ›@›BhOÊéÒSÆZx)ˆs¥èþñâµ£_Õ)ÅéÔÑ¡ÀôT¹Û8Æfîëü¨mD2¼! ôÿµt¯ÈóätF`„D¯5ÞPDª(«¿Å“nýÙÙï•Ј…öC×päz[ÛÜJ eyýá"8µXx݆º!2Òf; òÍtö¢í›VœªÊakÀýðÇ÷´JHèsYwú]xL¢d¯ën»,£$qù”)ÛÈpÛË„ç8€È Êïl½a—cÜCil'uW¼7®êü†¦§<’åƒæÉ Th[Œ‹:e­€âAw²»5ÿ »¾–K÷Êóœþ'è¸záÓ~­Ÿ˵—v­ ?¿“îª9L}Nzû“[÷fSü¥7ƒMà Á ´þ‚EÛäºxÝ+sä²â‰Ï5ß<ÅäPK¥TúÇñ²Û5ÊÚ˜Jàõ"9mg,:j5¾7Åb0–óãá9š€‰ÏßC—(E¸ä>êÒT»p¡¤¢¯˜òÞKh«]ˆÅj0/0‘”{¢D dèP¤Ç«Hœ-û\ꖩ; ¦â‘ãÿ6ز•œ—;§°ÉÄca™Jh€„)×HÁ‰(—ˆžÄY(æ OËuùo¹¿JƒöòýÜK2Œ_Ž1—Ot«à{€–Ÿ!ËðR“ÿ°Ð)9èn)aòÏ&J½tàÞ‚6^ ýOâ1À’õÂ*H<ÿ¢9äuöú’­Iü/ĺySS®Ö'KÉ.–¨6ˆÛy GÔ©,>¹©¬‘âÈë&œ3ÊðŒn+PF˜:(RÞ3Ú`¡I›v*Ìš7*ËÀõ°M:ûîJ?qƒb,Ͱ0&áuf¤š¼˜ÁB(ýÿdXYk©Ùòhé"^·ws`q¸™¥iènš9ˆ@–€žf =˜-%Ë +xjÚùXÏ»Ü/{Ɉ|Nb; I.#¦†þYÚ†Ž,BÛÄo‰ öçŽ.>W„‰]}V$7Qm÷¬ÊÅ£/H‡Œ–mJò¦GÛ{YÆÆÛ*¿t±n‡Ñœ~m·*sfŸœŸÁcŽq ¯²:Â#…éY9¬)x·=¬3Jš^%()h"K)2V–e#›*ä3ÌŽšàÙáèHe=×0ÜRæ‚¶ß,£Xê: ÿô¿I×þãzæ@gyè G#Tž©˜Sú2Ï‚æ³ÇOPÎØB*ް+=R¶4ÙÙÄ í~Fæ*Û Ó°@óÑ ýÜs[^Œr8r:óbõ5ÕÞåàoJ´ÐÂQƒ‘È,¼ü›D?é©È5Ö!ð])ìsᦠ5H±ô0 ŸK÷–…ü£ð(½²%Xý3¹ù—ºªAÐ(Vm<fB SiG¯D§즖ÅDå„jfåJ[jaŠÒ_õ³ÿªð‚ߎo¯Kkñ.r~=OÙŠ}Xà+'|ãý»…½z”c‡ÞÏQsÅ‚÷:Ifææ’OÄé•vx‘ªZ'•mŽâ„LÎ|t‰9[þ› GôÅ,@KM’Ô›ˆvpV á{èðÔ‹zªF\¸jÝ4å—Æ%¶B8™åV¯õíC YHˆ÷V·âï½ên’Fy'x1¾„Êà>®ÉÿÉX½ëüb‡–§KÂT”$åèýMØúì?+YÉ>A—†>_4iØ£zTžb Žw·B[tÞ—N5¼Gx_ZÞê&F”CLHdG„%0©{µÎ#)1qZºùpξ Øgª)‘ØV•FCˆ j5×^ ø!Bóú‘†'LLqÖ½ô#~ÀºQ”iÔ’€] É|]2 Q©÷Ý%ªPâ n`€q¬ò¬“ images/post-formats32.png000066600000012026152330733730011335 0ustar00‰PNG  IHDR `Üc‘ƒPLTELiquuuaaavvvbbbIIIddd£££zzz¢¡¡¡¡¡sss€€€†††xxxyyyyyy €€€~~~xxxxxxŒŒŒžžžsss•••žžž„„„sssyyysssyyy yyysss{{{xxxsss{{{yyyxxxnnnŒŒŒyyyŽŽ•••~~~ttt€€€Ž¢¢¢¢¢¢ssswww¥¥¥xxx{{{‹‹‹zzz~~~dddxxx|||ÞÞÞŠ‰‰yyyŽŽŽ¾¾¾€€```ëëërrržžžÎÎÎuuuçç玎ŽÅÅÅŠ‰‰………zzzaaaxxxmmmbbbñññrrr|||µµµœœœ†††kjjcbbïïïbbbííí```êêênnnxxxŽŽŽ<<<>>>@>>ïïï???ÿÿÿŠˆˆÿÿÿŸŸŸ÷÷÷ååå™™™òòòïïï±±±öööìììúùùñññýýýÈÈÈéééîîîÌÌÌôôôõõõèèèÉÉÉÒÒÒÕÕÕßÞÞøøøßßßíííèççóóó©¨¨æææÿþþÛÛÛìëëðððáááúúúää䉉‰ÙÙÙÐÐÐ×××ÚÚÚÇÇÇÂÂÂäãã¾½½àààËËËÔÔÔÑÑѦ¦¦ÁÁÁ¶µµêêêtttâââØØØªªª«««¿¾¾³³³ºººÎÎÎÝÝÝ¥¤¤†††üüü¸¸¸º¹¹ÄÃ㢢®®®¯­­ÜÜÜÅÅÅÖÖÖŒŒŒ­«««©©ÀÀÀ€€€’’’ƒƒƒÏÏϧ§§´²²›››¶¶¶yyyÄÄݯ¯ÍÍÍ»»»—––¡¡¡²²²¹··­­­¼¼¼œœœÂÁÁðîîžžž÷öö“““ÖÔÔõóóçååkkkïííâáá¼»»ëééôòòXç‰tRNS€ ,L =%Ç*¡ðʱûÀ®õûÖï!ý.Ö@•'ö Ýâ-KîhÕ‡æv:ê`>1ãUØJ‘°HEùŠ3K%SÌ[Y“_54¿¸œ}õ¹Öù€çA€¼£­òÜ€j@ÃÅ~­€¨ÿûSê„Sôwó'¡ïý1³f«°{•–.Nj2•ßîh×HÆ$ª9?‰Cú?§xçwžyæÞ»ï¾ãÑ­«î)XÄÉ‘#G޹)žN14'·&He2~d2)%˜´Z€\²^Å&Zɰ„°T˜À²¬6‰y ¤Ið´R6&˜tÒîŒj‡YH¥:Z€%u œ: “¬îÖ7MЂ®È®Æ±éH4£ŸtæèáQBe¥Ä¡ÂqH* Tc]JZ¨ª¼2M¦¯Táy F¨2Í$‚‰™1ž—'¡‘H·K†%í°'Ø×CA %)xŸÑ0B ‹’‰‰ -ÄKÊpH!®o` ž>VFQãhú´›&zõ^“Åb)S÷5µ|š„ZZ3½mm3Ó·°a„_âL|ôÑÕ_¦Â‚,0ÂGY`„³ÀŸd!YY`„¬Üêga¾ï¼Ü³pá…­«½ãŽ»ï¾÷ÞGyæ™G¹ïCÜñèê­.¼'wÌ‘#ÇÑ …ì—¯[J*ùx—€/£ÑŠei‚rhxÈ¡ecÚT!´ïž;n¦µÛÑoÕÕ’Wl– é9½Y4õ’ÎèXyÔRV#"IÊ-"˜)ؤ u³I” #»›‹IEÑT!Ÿôý>SMíÜ; Aµ07ÐtLÅÓ„2±Úïjî~÷õ½o]~x*m›7=÷ûNØVŒ¥’ÙCÕÿ¿…‚SÏm–l~?˜MØv¼Û\‰bdQ϶ŸodÕEªM°7Yð~_ KµIΛ Ô àB5›SmŠÍ5<ªƒdç9»aÚ.?G Ç­P?Þ'äB={9碴 礪C‰J‹<Ôƒ*6rŽsi{|orFCØ×ÈŒ¡w·s8'ºJH[yþp²PN¿¾{óù÷ó{ ;Òr<ëa?q(7Û#GŽ/%o¼™yüáÍ7–àùŸþÎv3ÿä§@xÄÿ.çÉ3,¥oáMÜ0+yÊLKèMbôÀdŠóÆM™–ÄC1dä †LKJhçµÆLKJീ‹}"Ã’æ)‚`nm Pµ7lóª<éxUÕ”àTÊ'GlÞ4&Ã^JxÀŸ÷×Bžú$O=%ý€¸±x4ldŒ” 6‚lŸ…u<¨¦1ÆÔ”`VÇ"jÛl6ãgÁ„ÝL¢V›)ÁêIÞ¸çIGØJà÷[éʲú]V.¨u*]wáo¬V% (×€*}²uáoP¡±ñù0L,Sù ~û|bJiA’˜ä"÷¡šÖ!Jòe|¾ ŸÀÂó!5›ÅçK)AÞÁ0>òJXGKÁ:J¨ªÔ>ÖTÜê¯b!J()QÃIA˜5eb”`±ÐAelÀ[JˆZ²q‹çäŸ8{AŒ?,\¸jÕ… [·®^ý(`õê­[/\Xµ çFräÈ1>ÿ؆K{þÁYéÂ5¿k-äEË¢ ÿzMÚ_‹–] j°@Ä+ËRo‡îAå¢ä %åPèþa™«\Êz¬A —»–¥¢•¨O«hµ>´2º!E¸ù¸†a>¼ÕÁ0„‹@—Ò·Æ@´X8 nD=K¨ó¨ý ÑCQ×jŽ©i†¨Z©ª#j•R]sé2ÎÎ]·ßI…´±G>b#‘÷4š\ÏàlèA¡PÜ- Þ[„—d­Ø6xåÊõëW®;mXí•)+5V˜àÖû©º€’u1­vQh¸¦ú•Tm† È)¼tiXØ[a6» @ûoTð72ÛøÊvÎe8R‡Oéh@÷,#ujø2-ToÈçÜ^Ç"1»§:)¬Åù2ýÞH5ñ®«‚«W‚DÜ-¬L»/\?Õc–Q³ZT]¤qçí»v^¾ÜÙÃmTmfäáƒÍÌf&…rnsçÆyÎCó œ¿ÿ?ýÛ–,ùê7/þÆ×ÿŒâëßX¼ø›_]²dÛW¾’»6æÈ‘c^ò—î8ò!‹#;–æ³ÒwmiF,ì» Ò¼å®<&ÿ-Am¹…œ·'©©±”×^ý=<—²” òøÍ ¿¥Ü"ªª±ýÃß[Ê·û±ÔY^WŠRUêªÊK aRÆ—VV‰R¨ª”òË„p$*›t•U)TêLbiô!|ù|ª¡¡jâá‡7Èס!•Ï}H VÅÐÅ‹ÄìW…‹Ô. €_ž0™ø|ð*q©Á© …ñ^mè† ï…%C#%‰Æêí?¸yGQ|j†èÌø5öúXͨÃDmž€=¢q›ýf·&bxl¨bUP5*ùˆÊÓ_ ¨ï÷¨FäÞª @Qc#òðÕÓ}‘°¼b£‹¯,m½²BÙËñ%xS¯e*‹¨n‹Ïn“ÓA“6»Ïªnü„qúRæ©ÊNÖ “á”ûQê)÷EQ°ô¾û–Ì!,mE­OÎ!܇šLè}œðµø¾ E¶M<ÐØøÀœ;I s@n"×È‘#Ç—@éBöATZ(É#ˆ³Àš,0‚* ŒàÈt«Gñ”T[[[ž±w×u•CÐÛ¦T[›š&úÝ×[;B#,AªPøP—Ù"\¿Ùï´\¿Õ²êw› ³ÚmEÝ3¸5~®%DÚ;:ú”ʾަîÉ`¢±.ÞÖÑ1ј² —Û¢~›«0kbÔ Ö€±T¬¨Âê6s¨ßl@¬~…‰%ÄíòæÄødblá×÷¨B½‰KÐ!¦0(|³ËàC\.fà"0[ÀPb`ÅŠh+*ÆðÙ LÇ.¨ëúQ½ü8=  „”¡Ñ&}·†%TiŸ1`|ŸA!Ó*¸("®L(—!Z>†âý1mzmšFG¯z'[âª`Ø– ‚¬aJø>D,•Šù°Ö‡øÌDñµ‹hA$ãÃ&1‚Iu2ÌçÃ:\ˆÜ¤þÁPÿÑ@Ìws5‡“õŒ*ý÷š›ÿÄ™Kø×µÿ<÷‡÷ßþ%×È‘#Çÿ=´ç¡Y¡•ÉÐÃ+ÛÌ;So Ÿb‡ò÷F£ñ=ì;ÐW8“¡§ö;ð¹áÐíì¼<ÊÛÓLÌ4¯8Æä·ïW⡆ýDèÉ|ÀÀyð©äþ={µï"¾<àÁR†Gö³öñþ É<çY%>y2ú™+\á‘ÀNr•wŽÁ†5¬gÁ_t‰A¨‰*…õ^D¡PóÙ+ƒH5 ^¸S Ì0{|þ¡kbš¢FÌOêÅf³¹õÇ,áÙˆ0rû¤K­VKXsLg6ê@¤‰Òߣ°.±è5a ÒIÂeþ¸DӥϞ¤FùŸìñƒH['¹¡S©ª«e:m m=Y3/ÚcìH±Ô浩ú½ýn¬¬¬•Üjvd–S¨^âÈšlìÈXó«q„XÅþ*/;")wPÿµsâÂ.q?;òݨªÇIÒ#[AyÑ.ª þ+µÂµ‹¨ª ;rR_k§þ+UUAìC¾r³"{T–x;ŽÓ-!«t½2ê`EòWÔ—Õ;»6³àIú„ôX¬Hþž.ƒIjUN?OϨ<µ'a•ÂÉHÁÉõ7®x‘uÎKü)¼öÚ·_xëå—¿óÖ ßþáß.âþËþõ /¼õ—ÉÐk¯å®k9räøbYþøKk×¾ôøòlCÂOwùK,X\øtÆ1×Âu<5Ë!X—Á(\6cÛ•ƒã^p¿z|V>oÙÜc7u^뫇¢’YûñÁ‚ˆÍ×ä;×§ƒ*žNË/^@|ÆÎ5ø¶y!íciÂs£1WÝð¢},¸Ø•¯M^ù¬?Æ;;°é~Íïl†,Ò„J[hÀæ6¶žà¬Ó+!óKé‚óÚ€Šø«7å­ét ®ôÜÐ; ²ˆLˆq`]§Æ/–¥æîU-dñg‡íb´l,}ûð<(cå/àóñg’EMÖß:2_«Å\2¶¬0Ym=ãƒLþš­?fŸbò…ë¦êbý¶kL¾78>8ºöƒ¼dý)¬®XˆÉïÞðáÆWžXœ¬¿¾­ãã#óûÒöüg¼š×ÞyÖÆYðüº´üéa©¡_Ó¹f ‚˜Dàø:Òëïƒnh2êwS½1ýwΪ??”hr¢µÞèÙ*Òëﻨ(ñ›ÎŽÅú/Í&ŠˆõWçŠ]K/þWÄP|ê™·£Vû¬ú{¢’Μ;Upz]§›ëWðÒWÀY<`bÅSEM±z7»þ’«@(Þ×Ö"7”Í,ËðESy›®R³D¦©e¿ˆ*qŸ¥æ·‰K?ËË>¼mùé}+þ‹_ü|ÇãûÞ~ûÔ©C‡Ž=pàôòåÛ¶m?\˜÷#‰ËmnÔÚIEND®B`‚images/about-header-get-involved-rtl.webp000066600000036100152330733730014442 0ustar00RIFF8<WEBPVP8X ÏWALPHò ¿Ú¶)’dÛš}æÉÙ=˜™™™d&i3ʨƒÇÀcèCC33g%˜™Y 6 ÞúÞ×¾ˆ˜ºÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷ÿÿ(çÝýýVYXK%‹XK%‹të±Ù–æ¤$mçÚHR$E’"E•TIQEQäM–¤´­Ý­óÓEœ­Î{ßùÐùzŒd)Ë”hj™LFµ1FÄŽŒàààFIƒA2Y'qˆCâ‡4C i{wï€ÜgX]7•Íš,eÊ’Q-“L¢1©Ê˜hL–,Y2Ö²äj¹94´yš¡ó1b *4†ÃB )¤¨ÉZ’J-ë˜meÅò»_þæ ܼb/m3IJ¤H‰¤fsF0&GÄàà` ŽˆÐØŒ1†FjU*R¥Hj3݀Ɣi$“h$“h¤’‘Jv…›1Æ|k“¢6#ÝøsqÿEo~æ·?u mj¾à&´DZ"-Yº³ž?éuïøäѼ½æÕ_@6eê/t[s8‡m›õ˜ M=¶„65÷ØÎA›2zl mšõØÚ”Ñc+hS3škÖckhSs8ЦYaÛš{¬Â¹mdh®æ{Á¨p®¹ªd=6ȦæÛ=Cs;çhîàÍÝÿo4÷€!›fh®æ»ïÍí,°‘õ¶-Sh#ë1l[s5hSFh#ë1l[s5hSF­¡MÍ=†mûlçŽ]Ue ¹*4׬ǖЦŒÛ9GsÇȦϱM™îã”ȶYýÚ”©Çþ mjÁ¹€6etØúïЦY‡ýqÚÔÜa¿ß‚6eê°ã´iÖagÚ”Ña'mXs'h[S‡]Â6Ö_'؆5÷×¶i44§Ü_çpî Ûtù9¶iuô׸¡õ×Ü(÷W`6믶;ìÜ(ßóEIà†Ö]«ŒmXÕ]¥a›šúk-lÃfýeØFÊÝUš 7–º{9Ã6,Sw­2¶i´îZ¸Qî®1¡¹%¸a³îZá9Ã6ªSw'p+s²ÔÝGè¦NÝu Üôøº)Sw£Yw¸ûk nXFw­ÀM£u—à\7¬¹»º‘ÝóºUº«‚ó~K¹åfJ–¨Ìj«oýì…/™6.o-åFå&Zº!M·²Z"UÕ_wÏ3ÞÖÅëi)¥Íã $1]¼÷ú§¤‹í27¡Ý‚ú½Þ=ìž…›{®Â9<_áœÜsx¾Â9{øálŠˆy#‚An¢B FD0#²âëÄg7°%cbrî÷¿ûßý,+œkpÎýïþwÿ»ÿ¾‹Ïgœ"ˆˆ›dAHûõw´ZGŒ1âB2"ȈRµTV*ÏhSºêF’â¦*Ke©d©,uÍHø|aWçþ‡×2pNpÏ Î8‡ççÎùçÎùç œ«pÏ ÎœóÏœœÃóÎ Îáùœû#œû œû7œ;õΕš‹Šæ Ñ\T4wžÑÜéÍí¯–`n—g`nkv æBh.9>à_hî!Csùwîam`î¾Óµwî| 檀¹Ã¯Ç§·žðô×<û!ó+«7Ç“ õ®Ï×t óÍñK FŠî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷¿ûßýïþwÿ»ÿÝÿî÷?¸VP8 4Ðf*ÐX>1‰C¢!¡&&´i¸À gnÿÀå_`¾ç’ì4â×÷Õ YóqÍG;óÏóߌ“;Õ’¸ïì ²^´_ö=Ÿ¿ÂÍý³ö‘ÿÿ¬ËîÏMÞºçnÁŒÝüîåÜgCŽO«7ÁCì„‚Bê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8g «}¡øµmÛ±mQB¹]¾e£RCÑìüVò†^YYë–X o¶hc?âȲÓ$„ Õ]ùÃnªïÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕYN@­÷ †8TN…î æ’[Å9àäœAÖ·Æ€òÚvÀ²ï'lþpDÝ 9Åf­Æë>ûµ¸ †8TN…î æ’[Å9àäœAÖ·Ç ‰Ð½Á|ÒKx§<“ˆ:Öà2áQ:¸/šIo烒qZÜC*'B÷óI-âœðrN ë[€Èc…Dè^à¾i%¼SžIÄkp nJr.Фpg"í Gr.Фpg"í G\„U:CþßQÀ ™‰.šZ§.…gDr¬èŽUʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽUʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽUʳ¢8û—nî/MÈp²¤7#CPé±Y:@ìj’xî‘Éw»»«”Ã(e>ãr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Фpg"í Gr.Уôc¯VjtÆ(îd§LbŽæJtÆ(îd§L`ŠÍ¼*@²Rd’ÄÈ5/zÅ<° Äþ:õf§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd°·Pà‹b§ lTáC‚-Šœ(pE±SqÞÑ=«n8? 7O‘¿z«µ**Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6]0Ê6{'ÅZÏdø«@ÙìŸh=“â¨ÉÛ öŒ¥ˆŸé}Í·ïùÝf§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽæJtÆ(îd§LbŽäØÚÅ›*ãè#ÿ¨gg!}—4ýá±+— ¶$¹å=%D½ßìb5Hâ7Üà0Í¢0ÛÁýYZ o;ÀüÂøÃù¤–ïQñÄ×S¥2å,|‹âEÖ]öƒw Û¼²äÕz"ï5Nä§ü<³}Žî0më­95Fžˆ»ÍS¹)ÿ,ßc»ŒgzëNMQ§¢.óTîJÃË7ØîãÙÞºÓ“Ti苼Õ;’ŸðòÍö;¸Á¶w®´äÕz"ï5Nä§ü<³À¼Ý4uyX«g{[dÙ*i°ì*÷Ú‚}m¢è4ƒ.`LÝœd0u®¨Å(v|3ânŸœåˆ;¬Í%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JIþŒš… ¤ ñ5º+”÷ DüŒCâšyîÒ,ýÈ‚uÐó®°oÉ="€ àiW›±¦n»R¢­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­kq5ljÓÅ.ºnË´Œ T„y2)VÉÚÔ]vÓ<‘ÐV7÷‹ì…+s©QV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ú"ï7‡EùM¯êj-à0(´lsù…,dÄdJ¦mwÐÌv;…Š<.¸øÊ»{',8xûAܩ‡[8Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡Zïé ŒIë[ü¬TœÏÁ=Å]UɯC“ æjè¼÷÷'™Ð-Y@äu>áÔ@ïÑ#¤ÿ'ŠNháïo `™}3 üg{Åc$’ÚnE­Uf™iº‹³ï©¼íä¹Z!Dµ †Ÿdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@ÙìŸh=“â­g²|U löOŠ´ žÉñV³Ù>*Ð6{'ÅZÏdø«@Ùì@Û`/vƒ¢šªf5Àc,ÙφÛêÃu¶}¼ÿ#°…&‡ß_¼­ÊÈòæÇ‰SH`ކ|pPÊê(6îË îi¾Jý@ã€9ÀÀ69Ú¡+4Šà\_†ýkNè5¹Ê_jôÐE±S…¶*p¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S…ÑŸK‹nΖ:Xô$tSB˜ªÈËsñå°|)ë©t™Uhœ€…¢‹²ìr"b±÷DÍIÇâ ßIå}ÍÑÛ ]"•é± P—H»óöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—Ýy&ŽšätÒóo—´½ÉßèÁIG>é„<óÖÉü$—yY1Ò.ÙÄJ1‰Å’º]Õ8íxkв͆=¯{hW"@>tm5%ó4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JEi¦¤AÙʧ§`¿gzF®?ù£žœ¯6‚í½f¬BåI¢²czW¥’€ïþ”¼‚!TÞ4q•Ÿ¸tKê; ¿¿VÏŠéiÑ«:#•gDr¬èŽUʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽUʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽU›eí]k°MÊ“ì¿ ÑvœÏÖë®ÀX†ScÒЗ–Mã¦*S$uÊÃô¨BÎ7FvL_Ž’y$”e–V!Ø!¹n€¨†8TN…î æ’[Å9àäœAÖ·Ç ‰Ð½Á|ÒKx§<“ˆ:Öà2áQ:¸/šIo烒qZÜC*'B÷óI-âœðrN ë[€Èc…Dè^à¾i%¼SžIÄkp p¨â$sßx†n™aˆò3?ö%í u§ ­'ÒgìÎÄ…ÕûÙ„)î§X“Ah/ Îþ¯Xˆew :T\éNï [ÍÁùûŒ¤’˜×Žþœš£MC’ŸÇw3“Ti¨rSøîãrj5JÜ`ÎMQ¦¡ÉO㻌ɪ4Ô9)üwqƒ95Fš‡%?Žî0g&¨ÓPä§ñÝÆ äÕj”þ;¸Áœš£MC’ŸÇw3“m;kDœ}Á$ƒ\xòMäb˜-˜± |½^ü$NÔ§2|úJ•ëØ> e”Ô„œ1\å–ÖÌbóÙhÖP;lj·L˜B¹º¿Eäd­?޽Y©Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š;™)Ó£¹’1Š\È’µÉdƒ:\²$)|9ãŽeñ¿ØÎ„!u.yÑî„4Nä†ê Žñžô*´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)È»B‘Áœ‹´)ÉQFÑtÈ:E7›ö3 Eq.}÷ûqâ‚«´ø]Å^ÍbSŸ#ÈÄ–4ÛóŸ9® —ºBö¬©%Áf”§ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI!Œ1Í÷`±æþ}½ãñ·‡ÄÀþš²ôyΰgèqš3‡ð:÷ԢSVÔåðc‘’·Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡[U°¾<7t¸­Ý¥pJèqV`TÚT@û•‚®E÷‰(Í´6í3ƒ¸\ m •®´Ë“eNìpÈׇˆw½Ò›Léü­%n¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S…¶*p¡ÁÅN8"ة‡[8Pà‹b§ lTáC‚-Šœ(pE±S†;~”écü½ˆ{\Ñ´r¸>ÓÈK´Úg…\9[ÔÓþ„à j4“á^:"¯¨¥JÎc• R£Û|ªÕdæy€ìœXÓa×>¡èÂçG¸ÙyUªÉÌóÙ8±¦Ã®,}B Ð?…Îq²ò«U“™æ²qcM‡\Xú„  ãeåV«'3ÌdâÆ›¸±õ/@þ:=ÆËÊ­VNg˜ÉÅ6qcê^ü.t{—•Vz¨F7èp áˆîM'Hƒ»{už[еr~7¬ãIrtm,ÇwŸ?~'ö>f#´pbÒüž~v/Ÿ‚tdDFähj7!ÂÊÜ C¦ä8YR‘¡¨t܇ *Cr45›áeHnF†¡Ór,© ÈÐÔ:nC…•!¹p¸Æ'ð󼌹 SÈ“&‚KeL¾ÊvoÓŸãò°V0YJsæiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿f”—ìÒ’ýšR_³JKöiI~Í)/Ù¥%û4¤¿ °âwKÚþUû…¹IovŠƒ¿] cƒ÷ð.žâL.í¥ù€Õʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽUʳ¢9VtG*ΈåYÑ«:#•gDr¬èŽUʳ¢9VtG*ΈåV-RQ1îï¾P$x4W,nUMeqüºQô)F¶¸Û€öùúcÂ:½LxGW¢CéêôH}1á^‰¦<#«Ñ!ôÇ„uz$>˜ðޝD~7Ø£õçÚ,LˆlŸ÷å1½”õ~ûï %I0c ¥£5kÑŽõz1Þ¯F;ÕèÇz½ïW£êôc½^Œw«ÑŽõz1Þ¯F;ÕèÇz½ïW£êôc½^Œw«ÑŽõz1Þ¯F;ÕèÇz»£<üªdžÇ3;Á2 |¹ëg0zÍJ/ÕÆŒAi6 Ü‹´žoÎuW~pÛª»ó†ÝUßœ6ê®üá·Uwç º«¿8mÕ]ùÃnªïÎuWlþÿð[ ¿ÿûO]ôšÀf8ßËE[ÿ‡Ÿ× Ëÿ•U<¾&I™v`öÃN)ù‘$9_P¡œ(‹(ÔkF?à{ÎÒþ 2ä}‰9`trœªµõq…>q•ÃÐ Ûã#Ë]öd®¾Gˆ `ó?#W9•V¯üD/õ$^ÛüŸøºF+Ý푼¹N•`hA&üD’ÞoKô©1AöŸ~nƒJ=ú“›¸–ÏøÜèM¸¬Ï}™†TÀ€Ïù¸Ot¿ýŒßú3êÐý·¹fÁêŸÈf!™ü†gòŸÈf!°ÞÅ <“àÒy–kLB ¿´rÏ“XU¡yí¯LÊá˜Qîò×èœ^`ÇJÖÓ«V"¬­–½ ­ðä/†ŠÅùãw22ñí»÷&W†b ™Û/J5º¶¥#è&9ð%òO©ûø9õýg4³Hhꃓv?ÃÜ¢/Y}é(¬G>ãØ#ú‚¢æT ]ßßPDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐDÐc𠼕K>¶p˜Ð‡Ùv]—eÙv]—eÙv]—eÙv]—eÙv]’„“]wߦØ^1ƒ.(1‰Ó´»¶e\VUfÖaÃZÖOüz_aWgÙVE ÿ ,Rôªs©•ewüÔv_¬WœB\æVÇÛ·ûÿG$¡G]ôÃÁvL[ @÷,Ú€'Í;%y.[:_ÒÏ_¸úÁ«Ì–”š¸@–ÅqIå)8¥kkà0×jOüê, C?¢ˆ\8åÀ„Ñ·?Ž_Ÿ&cI(Ò¬àÝRïÿ¦ú¸vÓ#s‡€þ{·îÌ;œ–öQó©ŽSÿ6dV&Váa.A¾_š»¿ófEbenäåù«»ÿ6dV&Váa €ì ijeö9f7(pÄóøåÄ™¶s•†-¥•›êvé©a@W'üiÄe©:Ä]ÖéHÆ÷&üÂ|H&™^…YPqºð§¿>âí2MóžUÑš~IW¢ PÎþt÷ÏmÁ,Éùo?­»EãƒíðEËr~`[ÏënÑxàû|rÁŸ˜óúÛ´^8>ß\°G'æ¼þ¶íŽ·Á,Éùo?­»EãƒíðEËr~`[ÏënÑxàû|rÁŸ˜óúÛ´^8>ß\°G'æ¼þ¶íŽ·Á,Éú×oŠñwwfu>JöÁ).A‰©dtÍÚ6àü+ý ® àÁa׋òZ‚6éò'_T¨„¯úÿáXD;é±Ãî ]Û0ôJ»%6§QÓ÷h ´[ŽÆrõJUíEìP—OêLU³ ŸÉ<ݬ9HŽØù{M8,Z1^Œ¶ÐÕÀæW ŸQsõùì§þúÕ §rÏ¢flGª‚ž“äï'F7°ÇvÁ[njüªF¬5 ñÉ6œÕÄ”"ñзÂk°ù˜Õ´>×»2Níl¡EÒéÞoVJš˜Þí²ñðÿÿ†¤ü ñ¨°3ª¢³B“Å^CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5CPT5GÿèµP¨‡ò¼àÔ¤æfüýf5[þ6%ß{XÏ{™£òbÖû?öÿ‡÷|ôV ‡ª ÷¸ wæ½}Ï×—ò!¯ÞÅSTßKùiCõí™D-e4~†¤È ÁdIeÔK@*kG³MÊ´Ô§hå*~M}üz¸ƒ ì§m©ÓƒJ3ijº0¹5y¤ø¾¹@‘DüûÛ(I{#>¿‘^|X¸ù¾`…-—í^ª#óI‰[ôÀâ’=tLÖòâF2ÓC0å @çÞ0?à~¤^2ã1 yë¡Ñ4M<… \qÿAºµJ ‘%¡‹¡FáˆQSø+ú{¶ªü€‚tuDô£ÝÜoož¸‘Hˆ²önic½Ó™PXMcÃo‰L¡ïŒ`TªÓëQpQ4¶ý ×/´Nìãvý.ùb ¤*Ï«æôÒuC‹ãâ´7ÇF|^ïbíbsœÚ`aCÖ)vÔ\5øÉ G|Zõ¦ß~øïПùÿ– R$)'ý§TÓ|6ºúoàyÍð\¢;ý¦]3›ôAÇ"ÞÈ“F4~5(rÒºªQöMµxNx_‘–½­è,IuG°s£ŒU#¹°Åàœ‰¬]Õ¹Ä*¦‘ˆÞ-š1DrþrŽÌ0^¶^°ƒ0 A—%îЫ1Íì‚{~&Øþ}æ"ˆc>Ϭ¦2kYtL’Ç‚ù¬ŠIàöÉ&¯Ž‰<ÞÙ$ÕñÑ'€Û$š¾:$ð{d“WÇDžol’jøè“À í’M_x½²I«ã¢O7¶I5|tIàZ©ÌÌnj» û°Xñ)Ŷ£y‘Â*(G#¤º‘1–\ÑÙv($· 襚¦eñ;¥Úg¼¤tÊØF{jWñ¼± !ZaƒƒÄëè6ýó« -`&RèGg¸o8‰Íš3tu*åÕ+.~=Ih㸥0ÄÍõ âÎàAP(#¬¡Ê-n“?~ÿë"-ÊÐY>ƒÌz¸»¨h—†·•}Wai&M£X6ÆíI唆ìE¥°wS}äã›Ð¿_Kg…¥ûÆÈrÅ@Œ;òÓŽÁ\uK%U•æÔ,ÄôÀŸÕYwÊÖê&¾E,xð?9?pcP®U’ƒoSC(øp0È‚ð¹Gµþ%ø›µg¤ãoí  ÁƒäQ=¶ò²Ï‹Ã° ^¥ÞÊ·Z>§2lÊ2Q›Ö&ç$¿B.zL[¦p}ÝïÌ95tµãÄ»ÃØ[ÿØÎœIÙD¼O)üà¤Æ7ªT+G©ÞGµW– °Ä?½Ÿ²êö–hšûÛòøô¿| bÉÈý^!åŠ}£‡|ÐÆ­N©9E2ŠÝeƒØ‡»¯ì1Oοåð,I1)þúaèá%·ïP²æâx@iÅÚœêƒAªÀ0Uç6Eø0PÒc„Øb{ÝHóŠÕïÚf0†6×ÍD¤.7~-ñW¡OÑý9+/±fa¬~ä¡·¥3" ùxXéw4Cä;ÆÍu•¢üiñ–8Çɾþ*éJL;)Fg¦±nÙ+$àƒm‹áØ€ƒ¸”zE¦z æ7&N«~ŸS'(¹[ï¶\ñšíå_dàŠÐ?Dv‰°ÎÙFŠÞ»Éf!JfîP™ÆRYd‘ê¥K·G”MÂÜí»U`ËËÚO©åÊ=}&´ŽL˜¬{Jª|IP®YYÿ.P¤ue;÷IDG¯^ *„˜uÅlê—5›ä]‹®ŠÒümÕé®ê­Šb¡aZ‹W\Bœ|ùA)ª$‚>hN°Š?‚¥J·ˆ¼¤œŠT&{ƒöEfufŒh06œ+ÙËÙ¨àWµÌÑ ¸m°ú¸ZΣfÖÃk`)5}Ý´‚Aê&„+€Ìê929ßÞŒvù ½£ö¾5‘õŸ"zÔóóZüëÏ,M^—Žxï²Ç¨%+>ØÜ$?÷ò³Zaßg¢–o¡vóº>&‚$Õ£ùÂ}pôîØW)?Rü¯rrÞ 'ɹ¨Ê{KÈ:Œ“Ϫ9[“Iû¢*ä†ý–6%*4¶ ¨ŸÚíï¦JâÔìIóûþÄÓ4è46ƒs‘â7êŽ$¶*¹Ê/e8ŠxøÔSœxÿØÈ=ñ,²žd]ëÑëµóÞ(HÖ Ö Þ$ü|ím‘Š}7¶(ýÜ=ÇQ†&Ñ?\äႺï£uèÛŸ­?¨ÐÛQÈó‰ÐÙ0hÙ›aavðÛ%<к‘’«­•MŠl Xa¯‚)ß%.#Ùø¢‘÷Õ/)³ÅËE ;d,ê*hä‹Ë‡Çß®ëØÊ§Xw¿@´ßìQÍuKbW^é³Ç]ôiBkêiýé" °Én„ïý~)@ëÄÌi¬$®-·L"†±>¾T*È‚Hà‡¡Iý¤EDˆÕĵ~¸ÑO]y&H?sb d\œpýJÀ`/áô‚dÞkŠQ¢¿)è4œÅõcHƒo»^´µbÞ̪Í0 ræ}¢ÈýâßT˦ȶbÏ”Oˆrµ[m‹äK6Ѷ$« –‹Â$fï÷Ò1·ê€_z•«žÆõ Yx…ùöq<„+º5Õo/uÍ" ïõ©†Á½â«Ò ¬góípPáϘ²öÁ•ëÅ2BuÐÆ<Ù†À¥ª³”i«Ð,q×u/uÜŒ‹. Þá7 ¦=ÓåR’ß œ©nÕiµ)ÍdsýWø'+,Öâç§ùèe; exaŸbÏbÿ¢AÙ•^P¹Êo>ü›o©Uº±x$µ„\… fcøŠx%žº¶¦ì@ú·‘æ´_3 *|Õ]a,×è%b³ýŒµºê[lac672/N—‡õ7kܨ‰maMx ù§[ùヷ‘œ9ð4 ¸'§ºXš©²ÙÆ¥Š0†ì#ƒiÆ &ª…MrlpÛr2ëHösÆôƒžiï*“¥OTƒx ÿ¨öú¨šñ…¥J Foá_àõßU^0´©A( à+ü£Ûê¢kÆ•(%A¼…ƒÔ{}TMxÂÒ¥£7€p¯ðzo¯~ÓUïùþ/Àu"åªv )&_¡b& ÌKy%'> à]ìH'ÙR(ù} Ó¢ÅÛ'ëÍ!ŒÎêi¼òP]õ¼´¨É0ÓaŸÌ²ÍéÕ¹½´©ghqѪ®¸+/ôê'Þ]¿§qÌ”8GËËðß¾”óçj¾U1Í{÷ 8¤/9x§`¹‡ãÎï’îä€nËsèa™h"?'ì£_  E­6¢@H-ÉÂÎg,GæwÁp¿l@àr Ô.4ϦÇ”&˜ËaC!¿ñN,‰aíûŽº¦ã‹ðèï÷õpuŽ£Þg߉ú;Or7öÍü/ØÕíO!yÿýo­þMî×aÔwಯaÙ{½dLþŸ_úÒú]Tx£€iÒ»Ð<ñ7°’×VŸq×áý{R?5¯±Ó¿–zÿ¡Ja9+?!/õ%ú~U]Éhô °»£ü7 Ÿu/¸U[}ô2žµ#ç:³q­:t†äî¥÷ «o ¾†SÖ¤|çVn5§BîðÜ‚}Ô¾áUmôÐÊzÔœêÍÆ´è]Òñ&&{÷ËÎê}Á ‡­)£ˆ»ÒºŽà®÷2b_×ë\ÝpÆjĆÒ}ݯJîçÙ"iPG]²q$id’l‡—>®¶8ªvrº"(¹eà,ùž½W"[}1"ÿXÊM™¬ïyÎÂ`e t€"Ρïò@5Tì™°Så÷CXáz[ƒW#ÎÆ!ëè¯Êv®ðòœ—Z$Ò2^©¹ñÔEèx5£÷(w4"ÁZ¹üÔð ú®†ÇmEˆ^è®ÊƒiÚ½å C¸g¸}:;8„J¸ û?æô ñ2lâ¿ï¨Úc³“gÿ}FÓœ›8€ïûê6˜ìäÙÄßQ´Çg&Î ;þú¦;96qß÷Ôm1Ùɳˆÿ¾£iŽÎMœ@wýõLvrlâ¿ï¨Úc³“gÿ}FÓœ›8€÷®(ÎçƒÁôSFõµ¤ †øÞ )Ø(Ï<ëJÉv¢ðöX=¦ÔJÃ/ÚpçWüK@Àþip<¤ K]ø5ЪiK±íËâ¬5§½uS ÔÍX®Å<Ý[|¼CîÞKê(rDtõÁ}¶dÎ…WÚUgLò,0ó?rß;TXÇKêLAj¨ì銛ÕS¨6µÔÝ!¢&F¢‘5Óì /{:ÅnŒ0ndôce”7®+Ò¥€»Oó™` 3†GÈꊔ÷4©ûr <’S"7}ðyµËÌèû÷7MÀF«u¦%aQìnwÿn)ï†ÁÖªßÀ¹ÖŸYÆÿ>š¹®~ð†K*†Þîdòo´ŸæéÓy'š†Cºó¹ÖÎM‘ êзÕn®lå@FÁyÇ}I˜ð9˜`ÓYFLê£_B¹Õ¹­T&5æ”y — W-ªódŠ<e¥óRôsàG.v«Hë@ !s¶zzmþæ!–ju<Šu…€E¾gýœñNÕp[#fÌôhÃK¿»B6ÕÍ~Øfò[(›»¬Á<Ì\”&e/þYÌ-m¥aL³.DÚéþŽƒC1íÐÚ¼ÁrÈw˜ÁÊ‚Y :Š¢X™†Hò’$Û ŒžWXxÝÄô1É,e '¢—¨bñÿðûr¹}[÷°YfZ`¡’6tj®A%³ùzG‹Ü`o¢Q$ ýV‘eUÍÓƒà6ÍEÈ>¥Ôù¦Â·ð4ÞVõi±W³ãJEdÕýÓ1y*f¡Ô¬D¾•4KΡ³4p° ΃E¬)ß25fVA˜‡M›.à =›J#N^ܵjE²ÀºaRÐ:q´k·˜b 1éÀ¦FÅ[œø1ÍË!÷‘ n¤Ûs€N<ÍKêBSÛÔýí'™o×óÃB¨Âë$ÊÞ9O8NÛ•¥B­ó,à7ø<Å‚#€eÐ(tU=N¢ç+Åd &¿“£©† 'ŽîÉôŸiO º¸ I3fÐŒŒ  æ °¢ÎHj5 ßúÉ6½ÎjÂ’§)†²pøµd¾øS𛂠–Z#u¿ø<<ðþ³ò¾Gò³ãß•sÑsŒtFq8goD$¦}¶ƒù»‘r‰»0XyÎv%`b´Ÿj|images/about-header-privacy-rtl.webp000066600000032454152330733730013524 0ustar00RIFF$5WEBPVP8X ÏWALPH¶ð†mÛ±¹ùÿ=×=È(Ol[µmÛ¶mÛ¶ÕnÃÚm¬QðÄÞ÷}m/ë¾ê¶œ1ÿ þþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþÿ¯âŒòÁí-Ê)°ÝÞÇžwËsoMþ©¶ÒW [¢¨ïæ»zî-ýèëÅ›Òüæ—³-§÷V»îô5ÏŒ}oòìþ蟺8Y”•_6dÏã.ºëÕ÷¦Í\žâO½|¨†% Jzn{ô%w=5ñ³Ÿ—×ó®?Ò¼²Jún¾Ï)·¿0ჩÕiþ6ã³#ÑŠ2s {n±ÿÉW><ö£¯æ®ço:¾"aVù…†ìyÂY—\wÿøésVÖ§ùG¼;G¥rŠz ßáÓ.¹ùá—ßÿnÿÐcÛšS"«M§á»zÒùW?0öÓï«ëùw8­Ô•Ú”öÚþ¨Óοâ–ç?ý©v}Š¥3;©Òº†˜¿U}M‰Ç+FÛ÷·9šN³9Ò×$dȶ9ƶ²9>nos|×Ñæ˜;Ôæ¨ÜÂæX²·Í±þ$›#}…ÍÁ:ÇÓ‘ÍñY¶Í1£Ðæ˜ÓÅæ¨es¬ÚÅæ¨;ÜæHžÉ\‘°9îͶ9^kesL+²9~¨°9æt¶9ö²9–ö·9V¶9ÖïasÔfs4Ÿls¤.ˆdŽø2›ƒë3mŽZØ"›ã³,›ãÛ<›ã×ö6Ç ›£¦‡Í±¤ŸÍ±r;›cÝ6GÝá6GÓ)6gG6ÇÅ‘Íq]†Íñx–Íñr®ÍñNk›cZg›cvw›£z€Í±fw›£îT›#uI$sÄ÷dÊŒ+°9¾*´9fu³9ªÇØ+÷²9ê·9’WÛñ}6¯E6Çä¶6ÇŒ ›£²ŸÍ±|;›#y°ÍÁù‘Íq}Âæx"Çæø¸ÍñS™ÍQÙÛæX=ÔæHîasp®ÎqCdsÜÛÂæx¹Ðæ˜ÞÉæ˜ÙÑæ¨ìos¬ÙÎæX¿¿ÍQ¢Í‘º6’9â{3džlŽ©­lŽ9%6Gew›£v¨ÍQ·“Í‘:Êæà ã–Èæx6Ûæø¨Ìæø®³Í1·‡Í±tŒÍQ··Í‘>ÚæàòÈæx Óæx½•Íñq…Í1£«Í±´¯Í±f›cýA6GýÙ6GêÆHæàÞV6Çkmlޝ mŽ6Gí›cÍN6GóÑ6G|¾ÍÁ‘Íñ\¦Íñq‘Íñew›cö ›£fK›cýn6Gêx›ƒËuŽG2lŽòmŽIe6ǯ]lŽÅ½lŽÕ›Ùë°96ms$¯‰dŽøá–2cÛØß´³9æ”ÛÕlŽ»Ù ‡ØésmîÑ9^ɰ9ÞmgsüÐÅæX4Àæ¨ÝÜæX»›Í‘<ÊæàãÞÈæxµ…Í1µØæø¥“ÍQÕÃæX;Âæh<Øæ` Î]§soéÜ$›¢sÓuî ûJç¾Õ¹ïuîGûEçfèÜl›«sóun¡ÎUê\­Î-ѹe:·\çVêÜj[…έӹõ ›Û s3ln“ÎÕe†Î5ø\–Í5ê\S¶Í5ë\RçR-l.­sqŽÍásy:—¯s:×RçZé\kk«sít®½Îê\‘Εè\©Î•éÜh[3ØæX3ÆæX»¥Í±v{›cív6GÃ.6GÓÁ‘Ìߘ#s0¶ÍñK©Í± ³ÍQ5Øæ¨ms,ßÞæØp”ÍÑx¬Í‘¾Ôæà¡„ÍñYk›ã»î6Çìa6dž½mŽÔi67G6Ç„›ãÇ2›£¦‡Í±v›£éT›#¾2KæH?ÖZæàÝ2›cf›cÅ0›cã6Gê„ÌÁÃy6Çk…6Ç×lŽ…[ØK÷µ9/°9¸/²9&åÙ3ºØ•ÃlއØélIص¶9æv·9–¶9ꎳ9âK"™ƒGómŽI%6Ç‚Î6Çò®6GÝ(›cÝ®6GÑ6GòìH戯‰dîδ9žÊ±9Þjms|Zhs|×Áæ˜ÝÇæX4Äæ¨Þ:[æHÏOÈ\¦sñŒA2ë÷¶9š/µ9â»mžÎ³9>.´9ftµ9÷·9šw°9{Ù³ZÙ÷D6Çñ:—is¤÷µ9šÎŒdŽøŽL™ƒ'ÛØãÛÚßt°9æ´9Vnms,?Êæ¨?;’9âë2d^ˆlŽ©¹6ÇÌr›£zͱbs›cã‘6Gò›ƒ{3mŽgòlŽÚÙ³:ÙKzÛu›Ûñq6E6ÇmY6ÇKE6ǤN6Ç/]mŽÊ6ÇÊÝmŽºSmŽä¥‘ÌÁ}Y6Ç›6Ç7Å6ÇÜž6GíÖ6ÇšýmŽú3mŽô-6E6Ç6ÇwÅ6Çüî6Ç’Q6GÓ¾6G|ºÍÁÕ ›ãél›ãýÖ6Ç÷e6Ç¢Þ6Ǫ16Grw›#>Çæàæ„ÍñdÍñf¹ÍñcW›cÁ ›cÙ6džCmŽÆ³"™#¾3!sðLŽÍ1¥Í1¯Âæ¨ds,ÛÅæXw’ÍÑtƒÍÁ] ›ã¹›ã«B›cAO›£j˜Í±~{›#}ŒÍÁe:Ç™6Ç„¶6ÇlŽÝmŽš6Ǧ½mŽôÉ6Góu6GüH¶ÌÁÄö6Ç—ímŽ¥]mŽ5£lŽuûÚuç&dŽÔ 92Gü@+™ƒwòlŽ_ÚÛ‹:Û˶²9êv³9âÓmnŽlŽ'³mŽwKlޝzÚs‡ÙÿßÂæh8Ðæˆ/²9¸#²9žÉµ9&Û?w¶9ÞѹI:÷¥Îý¨sótn‰Î­×¹”Α©s¹:×JçÚë\™ÎuÖ¹ž:×Oç†èÜf:·ƒÎí­s‡éÜñ:wŠÎ¥sèÜ¥:wÎݨs·ëÜ}:÷¨Î=¯scuî]ûTç¾Ò¹™:W¥s«u®>²¹¦L›KfÛ\:׿⛣Îê\™ÎuÔ¹îÿ VP8 H,°\*ÐX>1‰C¢!’m 4@²·yD ì@qz6PV–OoòŸÇÇ, ÿ(VÑ,ÿ¹||]Ö?å{"ÿæ—Ó·ö«ý'°åÜ?ã€÷uô«þGÔû7¤÷¬÷õ¯S?9ïù¿ô¿×ü,~äþÓ{@õu+ù_ìW¯Þ–yÏnü~.uÖOŽ&ËGúÇšDÚ$‹Ð¿ê¿ó½H?¤ÿÓö¥ïßõǰ?ñïèßïÿ];y~Ìûþƈ‰zh«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÇH«u["®5ÕltЏ×U±Ò*ã]VÅgÜÝñ”Ÿ@œ¼² §gZ)J3nÜ./ìby“ýŒO2±‰æOö1<ÉþÆ'™?ØÄó'ûždÿcÌŸìby“ýŒO2±‰æOö1<ÉþÆ'™?ØÄó'ûždÿcÌŸìby“ýŒO2§qŠÞ\¯i™ ó‰-Ū~8;z}„çÐWËÆûØiõ¾ÁàÝ)V@ù³þk‹ FNãƒt¥Yä~Ïù®tn,5;Œ Ò•d‘û?æ¹Ñ¸°Ôdî0x7JU>GìÿšçFâÃQ“¸ÁàÝ)V@ù³þk‹ FNãƒt¥Yä~Ïù®tn,5;Œ Ò•d‘û?æ¹Ñ¸°Ôdî0x7JU>GídþëHÓ ‘²ê·N®²G 0WËó ÃÎT'lSû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½i 6LrOø$½:ŽÖ¬VŽ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­Õ p ~Ô¨+ùU6aŠ6ì‹B×w˜iÛ[Ì4í­„fvÖÂ3 ;ka†µ°ŒÃNÚØFa§ml#0Ó¶¶˜iÛ[Ì4í­„fvÖÂ3 ;ka†µ°ŒÃNÚØFa§ml#0Ó¶¶˜iÛ[Ì4í­„fvÖÂ3 ;ka†µ°ŒÃNÚØFa§ml#0Ó¶¶˜iÛ[Ì4í­„o UàB÷ü £Fº lì æØÞm)É"—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜníð” fQmÍÓRqwÉ~xÍ/éf'ƒ(pÊêû¯F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš»@]ñFvfƒq0ÓÎííÑwZö–¶Ï'GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGHÓƒALˆÁˆÙšŒ„œ~7@ßqi ¸ÔýÎL Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz'ûË|Ê\ ÌGOÎ?Š5¦ûØ2Ý4¤½f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôœßa#ð]õóË2cj${Ÿý$3¢ÉÙàäèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèèéo¬è]ÏÃï2ÆÔ._«ª ‚GgÁþ{ÞÄLXp|„œ¨¼Ôèý u="~ãý˜°íCzÃD?ýÍåÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸}phÀµƒÂ4 'a&Ò/8—ûT$Þ‹ûždÿcÌŸìby“ýŒO2±‰æOö1<ÉþÆ'™?ØÄó'ûždÿcÌŸìby“ýŒO2±‰æOö1<ÉþÆ'™?ØÄó'ûš‹™­q7ô„—˜˜«ïPF ¯ä3YNº¬J›÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~ß3§iV‘Ø&ÞbÌE²ŒÜ|,9 õ™Ê`ñ–‰3‹ÍNÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÐÝÃ|8¢Gñ3ì ¦BNT^jt~†††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††Ñà,ôÝ:›Îbåµ¾Þ [R4Ž‘DµÇE”á@!u¦p¾¡²´©kAÂw B^NŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽŽ’IÓ$˳0¾ETlWíº£åj¸À´xNÊS Ôd¢zõ†;]c1¸‡×Nì?Y‘, Ò•d‘û?æ¹Ñ¸°Ôdî0x7JU>GìÿšçFâÃQ“¸ÁàÝ)V@ù³þk‹ FNãƒt¥Yä~Ïù®tn,5;Œ Ò•d‘û?æ¹Ñ¸°Ôdî0x7JU>GìÿšçFâÃQ“¸ÁàÝ)VbE3EÉêƒaa\JôóD½4Jzþ¨­w­ÁyäšgZâNÁ0\çè®IÉÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÑÒ7 °RéE^êd%øZñ®Õ“E[ÝgY(úBNT^jt~†††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††††ö¨È û6 ¥@‹¦Q êÁ2éP;ï/ËÑAÖ±6Ô¢%WãqŽç¢™`šnò BêeóÜF$7a[6D¼ÜJÒxY©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtwî£.#ÖjNŽýÂôeÄzÍIÑ߸^‰§û'ÆÏŒk“â&°fÙA+– ,»ôI›x]øÄP „ÂÒ{mKêÈ)i£tã#5ÙÄžŠd _Íá*"aØÕÜ"€ÀD€×¥.#ÖjNŽýÂôeÄzÍIÑ߸^Œ¸Y©:;÷ Ñ—ë5'G~áz2â=f¤èïÜ/F\G¬Ôû…èˈõš“£¿p½q³Rtp{%è! )5¿w?Ê^ÑŒÅ"V !'*/5:?CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCžô¦D&' [èŒ:$‘È]cLeë솒èZ)9S•Quf¯îCe6pG‡Y&qû•ÿ(¥Á­‘ëXò?gü×:7ŒÆéJ²ÈýŸó\èÜXj2w<¥*È#öÍs£qa¨ÉÜ`ðn”« |Ùÿ5Îņ£'qƒÁºR¬ò?gü×:7ŒÆéJ²ÈýŸó\èÜXj2w<þÿø-ƒý½ …Dà…Bú[õˆÓí_½#¹º<[8Y/­W¿~GxÚb›¾ÏYÞYì6° ¯ûF(Zk‘íú³Ý颃z†;µfè]äMèáP_ÎìLZûìN3©Àfo±_+Ë•-“åÜ1U×Å#©‰vg*–i!öÊÉìçåklïîñ…Îfþö‰éòµ%®ãíL܀Π7b6z¤ødžŒÅi]—ççsúüs؈#œ¼?2¾!nvíï(ËÊ¿÷…é€ZÑOù&-¾°+?BøZ±tÕÚc?{úP§_þ€^²ÞA|j¿$:\c§×ýw{Yú‹¬@æ@cÊz÷a‹›ÂI‘AGh¢ wNïw"ÿï'G™üç«ùè¨<ŽØá¤Ú^"óqä’Â,t‘ëÇd ?¹z|îþ–É×ÒyØöa.å]§+­›=UCÕQ§G#äÑÏÊ^-RvGÿ-™ÛFAð­ó𬰑­¦à =• A,LjMžDévK+oReè tƒ?÷w“‰#Lô€ AqX E"¾©PÊ8†/tÏÕÕ¬®b^†Ñ.Wc´w !dÀÂ5â\µº0`cz;£)‰¹S1«ÁéÔˆ>CøÁ¦¸)-lÕA b—I2ÒˆOá–úÞ˜|°% 0ÛáöâÅ,éJSŸ‘RÔtAž-q„¯*)Zä<] Ç&dµ»…û± rª\(ª‹Ô|±§Q±—ÜTöÇÖ«d·6Bváߌâ¬iã„>ÿÎÀã‰pse8)«c¹·ü§{¦Â÷>s©•Ò£˜üâÇEdÚ±‡)Ô‹¤Ç2ÑBIšR©@ªáTk‰Ÿ Ãõ¯ôëÌÜ’¯CS7?ÜHcf˜Þh­ÒÕúãÿêGÝùe+óZAqg­P1Àc€ÇŽ8 pà1Àc€ÇŽ8 pà1Àc€ÇŽ8 pà1Àc€ÇŽ8 pà1Àc€ÇŽ8 pà1Àc€ÇŽ8 pà1Àc€ÇŽ:©@é×”•`êös’ÊïïD^„¦=BW ±Í½é=Ë[Ãòì<=T¹é•ÿ_õ á¸Cˆ 004HÞ§£É.Ž+úÂ%TøTô¬ÞbGçC÷Ø9ÉÎäküd køëQN Ë«½Ÿßúd;VìVÑ‹`Ý5½HM>—öÚ•ÐÕšËmõHÑšñ–}6Z]ùaƒµ>ÿþ^V‹»‡Q}³º³òøõ9 ô¸„@ñê¡‘À"‹h{" ÑÂsöŠÌ磴Hê³Ô2ÂóvJ8ØUu•·`'ĺÓ§VlŒ ¡šÐå‹ÅÀçÛ—þj…´•#Ê<¾• ŽmÏÝhYe½èw «ÜôØgÎü¹t ­ìì´H_ýe@,:á¶Ö—€ #Rh,‡-K@jÏ{ìCÈþàæ$ü G†–3ßET茞zí¦•¼úà+-JRòñ{î*qâµò8Ž1Û[QêÓ:£]oEuÜÍ!Iâ µkØIwfÒë—·êR1üR¿ìr§ÏYýŽBæW%u¾WÞº‚Gßyá>cÁO€<(Þc\ PóS\"™ÞpM‚êq ½ï@™n<5½A›“Xìµ`ðÇ GÞÜõ9Vaå˜{‹,ŽnäÛQr4ï6(Ç0º¨47aªŠ=ýbòm9jYØ[„Çá¼Ì—Ÿ,ÈXWNñp‚þ˷­ÆC?dþ¾|^Ü ÛŸ¦ß;“æØÉ·œ£ÆÀìX”“ý`JŸB€zƒõšŽŒàˆrеn˜±&w®êÑéM8+è´¹ð›Êµ±I)ÀÔ.†Ý|®i¼¡ñ^ƃ©ïª’#hÈÉè"9Ø‘Jû ðÖF²ûíìzlΰ,{Ïzz ¥$ÁýŽŒ1êUV#¤5>9µ)"—´õß}­sS„.ÔUF;¶Óºi)æqßcá¢ÒøøëÑx`Ðê<ørr/e€cYË[bÞßûœË"9X©­&ò¨rÑ2š1¥M»yÖyF L|ÔöïuÇX[{ óX¢¦ê>(h?«˜eÉ~Ç`Òa:5pô¨šmxz±ª2É«]=þ&¦˜ç9Ãûœ™¿¹P©ô9?‰¤xä3ü/wèm hTe43ò|Ÿ"KÇ‚1.o»†à•J(Z¿@€lsÁŽ¡ j¢-œ k¯üÎD"óôTŒÔ4±#xŽÝÛÂÕd÷ïãW$¸¨NÐ×ïFÀàisw/èŠé—ØÂÿ·ù“_ËAwJh”ÓN(]ݬŸœ§y×e_òæôgWIudóº8“þQð’wÛÿÆjA`-þ}°7(ô5,µ¤ísÄ3Ý›XÔå¿bCÄYä<1ôˆ—¡°ecð•B;Š^ .”0 È‘/bª«…sEwÄ*úò?K·º9É‘·ZŽjS´5¸.nèrOÂ×3ÇÐ ÜoÇ•¶õÊØQh¿ôÿ“~8f{÷3÷½õc‰=êÌ5P»ݤëÚ÷]6åg$²Ä>[b¹™Nü;Ÿf/…®MlsuªÅ/ÿ­< 4‘ƒõe`æµuéù‡@1¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹ØÜìnv7;ÎÆçcs±¹×­dnžÖ%QѳRѽûï4Ö`_╃hæ;eœ4Y‘•_v8vt¹™$¸Èá¹:ì@O~.7ñX–L€;˜~BM³LGNKa*ñùpŸ!Ø5²£ÌÈRD¦f‡Qj`jR`y²Ó‘ifGø’âÊ],€^]™ °âóÊ@O?rÇ¿´:ùƉ#Gµyb-´%¤{q’Áÿ½T?£¸èå¢ÁMošþ¿H&?XFg¸E€u÷þöÖ‚X_ [xßž2¯-ÞI:Ä®ÚþáÑ)!+¤5V{ìÑÈø@QbÍ;ýÿôçRâ±ÏƒwYüáþ†í!ë/ÏÁ÷ë­?qŠÅ‚9 õ€ÛßUSd_ÿo®>±RtXÃ]¦œÝôß‘!sªO¢cBbŽY èvPqµÐ’°gÜÑèx“‹‡‚i0¾ñ×"à…y¿•<ß¶ãhE{0ôéêŸ).¯ª.ݱzOÚ²lË×M7aŸÅv²ÔâQw½¸794eõ€òŸgǽ;G© ŽA—Š1CÎ[л›ÏŒ‹ò°ô°œ^£jí%EŠM :ôGf’emk€CNŽQ÷àðr-°Dq=š˜ÆS|Q<$VŽB]Z²™N”v?ge5ÉTßNÞJ„‘PÞÄã 3j^/”"~q-˜ê-5ì6ø]ø©k7ÜÙ‹Çš-ñüãòã±J’!¶ívO¡êÛ3ëxü/§hr2óŽ1Ë;¾EÈ&t!]hÈ[Ylõ¸3Àî¶\&ð@g„gq?#‰·’ 6z¢âÞ’½¹ŽzèÂj kÑ•rMÄ`<#ÌO­+™å€(!ÚÚBùL‘þ€Çƒ5þ¶Þ=¶ÿVŽù4YœÌá0W–ƒ{¸¤[qdÂùnÝ><´DüQ.¤ ’4ކ^Ž|]3'ç9®úMÃxÖLËC¶¿HÙ'Œ_ t=yÞpÏòª0'ú¯Cà`¼ é¿s{çã$`‡¾-\tükKþöŽ~öã>å _r$Vóem°X1OÒÒ5.D¶¯vLÏ…ñKI[ÕÚT<Î iì*¶/YFÀ"Äh¶:¹Ã£ÃÔbéÄ$W8‘ÿîÚªXOÚ–àçNp«@¬‡\•–ËdYÉ;ðìíÁÔܧä'It¶–¦:¬‚¢Þvì‘ÖåäýJfyçõQú&P{<£¡…1¢h ¶ržåømyKB;êãaï¼â£“XÊD5äw;è¦lÿÑ~„Ú2L]¼Á&Ž©[ªåLkı˜oyÙóg¯Õeû°«æQ©qÿ"Q¹”Ãci$â ‹´ñÒÉ#‡CäK{kº>ò%½µÝ@ùÞÚî |‰omwGÐ>D·¶»£è"[Û]Ñô‘-í®èúÈ–ö×t}äK{kº>ò%½µÝ@ùÞÚî |‰omwGÐ>D·¶»£è"[Û]Ñô‘-í®èúÈ–ö×t}äK{kº>ò%½µÝ@ùÞÚî |‰omwGÐ>D·¶»£è"[Û]Ñô‘-í®èúÈ–ö×t}äK{kº>ò%½µÝ@ùÞÚî |‰omwGÐ>D·¶»£è"[Û]Ñô{:!ìÝqGN ¥þ`ÎŽAŸèßEµ£†.Ýx|ƒ!ðų̂zŽ>)ž2Wõéh÷KàÜ*Ñiðg[<Œˆê¼¨g}£/ÿÈ‹ö˜ÈÚ®é-wÈAÄ›_N¤_öŠ…Ç„òn¦öL®«Öý?À>Èáȳ¡hþÕ‹%Û®Ã!!Aæ[â>8’>:ÃÌiC|Ü×Ùé5"SGQUÀ yìßâ,Ó®¿ÏL* ÖCôõ)œ®sÆÊÔƒÐɃSsúÃŽQÿÿõJú¤Š$æì[^ú[5V4!àã>r»µXŽÑÊ)¢b^™äèHÆ~o®áäja pV~ù¢Ú:~Ú¹ýE ù´Ñ²ñ¦ìY-÷Li¶l…¸8™½±G¼.hT‡AòËÂhŽàA_ïöŒ4A’²·}2üªÒ @´]9÷GÃ%D iÀ:ï“_IƒzcRY"ý í‰Ê©Ô)í@‡X×û-luU I#°ößCÎR½Úç•+owG¸wªi@y·° ëöVÊ pÙ¿}}!KQä[«æ•Y¥ðÐù?AË H ¶&·¦ñ Ì¥gxÎlàk ÁæZ ÙPÃä^åÅtSаVÞê}qðê17rå¿üËÜËú×Á 3›âFoïÔ-¡­ ÿ ášIjÖX´„û[?gÙ\z<Êg):ã¹Å@ C|×Þ:àäÏKy…žt8T†?ý/“B³râµU‚ ¯ôHòn¿1câÁÙÿfÕ»™û<*A¾d…ÆÑä¯~²Í{B”\mý‰G±¸7×âÚùzª1}-VØX»“xíU°‡'s•™,J˜µ~«¿UnóSŒ«‡sòfVÍ©ƒ,ZIŒFÆ_ Q®¤çÎÛ IÃ3 ‡ü]“çÆMIÍßŶ+]êœÙ%ïúSæåä)[Œ%”sÃa,,Q/¡8„ªÈ-:Z;­xÀtc]K8« cÒKy[tXK0…;çýe|'N„w¯]Aù6ÁŽù«”BÿÿH–ÇææÄD—§~ÿ÷Ñæd¿Ëm?òhmH¿ œ ÷„o«£ Qá„3æõSàÕžTûO`÷9q¾†Pÿ@^ð;ÿÊBvÕ€ðççûWJ¼gŽ-½yº]œ[R(mH ?ZÆÑ—råj/"–ÈÖD, ñ]{wKt2/YRN;~ ³¿¸£‘3Šk#6%§Õ ªg£~‡¿øÈí££TLmõOv”j,árif;‘Rh&¡‡*Nšëˆ¿·µ”˜RJ8žMƒÚá9²ñÕ{~’¨ ðºÐ Ô“UØ«NãÒ¦Dßý¤‡7†‹º·)ø[[iˆÍÈ`õ^*Ñþ÷Å^¥€ÄuGœøà–u€@A{ãDƒð¨-Èù4 d°`oöFk~õpäzO÷089€MÚhŠ_žrú=Õ‚ ˆì™èÞ-ë[}óàÛ ÝiT~ÿéúcŠãÙó‘%+ämún%=VÈàßcÚóŽì5·<%öGz•´®ÃGâáÜ™†÷IzolXxT²Vp+Û_ynÖ—¬‹z©i+³Z|ÎýˆË‘`Í‹s2äÀ;/í=t@¢*ž,£@Àç@ldÅÍ–êäûK*CcbIMF†ƒ_àÌ‘¿ð+nû_ÿÌòÌzƒg¾«h"*ã1´öÜ&¸Œ½Îýül,¬ªÛK'á‡IRùO²è—LËvöèqJ¯_›áÂQ§· æ›2žäðäz.Ìr¸Û««ø°®wÍgÊõªYúÃÙ–M#ê ¬Ú.=5§O•ô3w(°% mÁœÏ£9‰ÜRyeÝATl­öõsÎZV? Ÿ²F:îù‰÷“yy¤ÅÌf4g°º›?“÷e’Ôˆ¿>ÌÿÆv~hNí!`ÿ˜4 K3€ûWÊŠb‡çT]Æ@îÛòêáÌ’an­Îî*™Á²=ùˆ§´¹Îì¡Þ@ëoŠVouÉof`¾ì•g•b­ÚHïÛ©RIþVÖàÞ#œ $°§ê¥™™ÝD¤jD”ún|€¸¡•|­ÚÖETñA¨PÌI¡&ÃÅÔ ú§“ÝrßÕbá ‡¹¨Íþ Oùò:z5¾¸ÔÓ ôðH!5­h듞ª¯¯~¥ÖcÓØ—)Ï].H[Ê$…›?D£bãÁT¯ï§Ö]‘<ÃYÑ\¦ý÷1s*ÞÞÎ{Óör~=É”­B‘› ÷R³º“¦ðÊîÙŽgŠƒp™Sæ…\ž/éõÐM[WtðøïUc›†Ä¾4–+&;O愉ç8ôUTV÷þ¹€(ͤè}Gƒ²µÉ üÝA1ì5ÿ:…U…ˆ’?áö&‰uˆ³Oãv…“  cG Ÿ*Š3Q‚ q5Ó}YÚ‚k¢[ 3AÔºu3ûœÚ§âz‡Ax°¥ x¸DèÆ¡]H’]<™,m«@3®yÞ“á>ÖÊ$ [äˆò©ý/¹ÄZt÷ºúš‡ l æ–ô³ó û2¸{Jéäxˡ±¶½ÃTâòÏ~þ7¿› ´#4”Û°Qlp÷Âåÿ"Ö¥b&à"´”œ*up÷œó¥8€k—†( ªßM;ç¼óþNÓ”RšòM—?ëxÂz»a3•B8Îù@½ËhîÌgdЄ6ð4ý$K,B œIEND®B`‚images/media-button.png000066600000000503152330733730011117 0ustar00‰PNG  IHDR;Ö•J IDATxÚ‘±j„@†­S¦¼îÊTy„{Kí,T|±ò9. Xi“BK-Dl”+¬,ROöâ…õ¸…æÛÐ""&:À÷+X¾ïWÿ$ä)˜ÕäCÚ÷ªªBš‹ò¶m9çy¦¢(0ŒÄ÷syY–×u¥<Ï©m[´9³,„aÈ)ò4M9£("9ò¢þ²&÷}™3MSªëmÎ8ŽYÐä®ë s6MCI’çyH¹ˆËzW¼au‘q ŸãÚøÏ_(^³šŒþV¹(®ŠÅ'@žã8²®&™QÂÍuÝo€ACï\Vq  6õžÉË0 P›z§rY–wÛ¶jSï\yɯ6­IEND®B`‚images/comment-grey-bubble-2x.png000066600000000402152330733730012713 0ustar00‰PNG  IHDRY ËPLTEÿÿÿ¸¸¸sssrrrqqq¹¹¹77tRNS@æØfžIDATEÁÁmBADÁ!dGÀô:yÁörÿùGc ÉPU7h3û^_>+ÍñÊ£¶X±¢“”­Ž` Éj;5IZnE*&âKLŸlS>˽ÙC(˜%1{Yå9Èsº 2{C­µÆ4R­ ¨ˆ2êÌxjcOŸúF'“cxÔíÀ¢=è^/j_õoçYo'W½õO}pÕÇ£^~Nv,Õý#‘­IEND®B`‚images/browser.png000066600000117262152330733730010225 0ustar00‰PNG  IHDRl,¸QožyIDATxÚ콋³%Ç]&è¿`'6&vwfc—Ø€agÌ,bÁ¶Ào0°À`ƒÁ€-¶,Íì» ^ÃÄlŸ¸Õ²%[~­§õ°ec#Ëz¿e=ýÆÖ£Ï9õ̬ªsîíÛÝ61µù=òÜ–Ô’Zê{»e«:"ãž>§*+++óËï÷ý~¿¬g<ã°þçþ£çŸþóî¹çžç…¾º™þmmmS™ÊT¦2•[Çêg\pÁ?QUÕÝ £ÇqµZËår]†a˜ÊT¦2•©œ B Þ»wï?½îºë~ @/cŒcb×S™ÊT¦2•§P!`'°~#ØôÔS™ÊT¦òl€õÔS™ÊT¦ò=ØSGLe*S™Ê÷`·m;Ne*S™ÊTžÚeì©Le*S™{*S™ÊT¦2öT¦2•©L€=•©Le*SyJvÓ4ãT¦2•©Lå©]&ÀžÊT¦2• °§2•©Le*`Oe*S™ÊӰ뺧2•©Le*Oí2öT¦2•©L€=•©Le*S™{*S™ÊTž®€Þ23Ne*S™ÊTžÚeì©Le*S™{*S™ÊT¦2öTžv¥,Ë©Låi_ØSGLå©VŠ¢X—Åb1~õ«_¯¾úêñ²Ë.Ï=÷ÜñcûØø¡}h*SyZ• °§ò”kõ½÷Þ;^rÉ%ãyç7~éK_óÅ8¬†qkÿÖ¸uàÀxèÀÁñàÁéóÖxŸn¤ÿÀÿLŸ·Òïø›Î9pçà·ôùÐÁñPú¼uçÒù>õo¥ºldÝêxÖqhKõ¦ã¥ïÑ|¿µåºn±žC8æà!¶ãà¡\ÏA¶[í; ßp,ëÔõÑýŽº¹Í¸OÕ϶°^ÿŸmö½йüî€ëÛ:¤Ïu-Ö™¯Ðç^ÊÖ–ÛrÈíÊý¤~Å}Ê×óï¹¶\ïÁußè¾·Ún“ë¹[ùZé÷­C:6ŸÃ6mÖ®CÜÇjÎÛ:ä¶vžúûûì@î£Cºú ý½uà{j°g3S™Ê‰,éù|>îÛ·o¼òÊ+Çü?ßüÆ75·<ÉX£ìßÜ7öïOŸSÙØ÷§ÿ£l¤ÏûSIßoâïÆþòéûÍôÿtÌÖþqsc‹ßïߨLd?ÛŸ~ß¿á:öo¦Ï[ª3}·±•ÎE½éºø‹ëáœÍý[¼ž®‹zÒï[®‹uäv¦cS{°Ø >Ö‘êÚ¿¹Ÿ¿ã¸Í-µ}ks?ëÕ=¡þM·?Õµ¹Ÿõn¢[ùºþÿÆ&Ïa{û}sÃ÷½éãý=úm ¿¡/òqîöáÖ&¯¹îÓtÜVú} }…~ußlnú~6Ô[º_µ“×Öw›ìö;>oê™àØ-?»ý>†ý´¥ûç3ÜÔïlßamÜBÿnlß×f~Îè ô×–ÛëçÊïÝnôó÷Ò8:q€}ããbïžq~Êû~ã—ÇŸÿ|Æwø Çœ(à˜íšq~Ý[ÆÙ§^6>ð‰g÷ø‡Xðßá7s¢ÚwÕ?\3¾é–ÓÇ_ýûßÿÍe?7þý >ã;ü†c¾ÁúÁ/¿ür–åre6¨‰Ö ËTú±OÁ´7RYõéó²Oƒ¼ãÿû~5v«qÕ­8º~\vËtÜ0.SÁ±}—¾Kçõ©.üX¥Ï¨kµJç§ß7–éÕ?àÜtÌjX¥ö l~[.»tþ0vËtl:c¹1.Q~KmÀñÝ®×ñü~Àï©­éû!µmX¡¾ÔnÜOª³Oß÷éx³:ÓuñŽé7TÚÜ¥¿«ô{×oè–ê“ú#µaHu C§zy>ú!]§KíÐVõÙ2ƒk,‡ µq•Îéq úG÷ľéÔf´oèu«ÔGhG¿D¥Ï«%Û4tº—þ¦çÑ£^ôÿ >Òuñÿnµ‘ú{ƒmëR]8w5¸¿{<ü¿ãy+ׇóq½î‘ϹgCú?ŽÁµ‡ô|ûtÞúq#}^±/Ñé˜t,Ç ®ù=:ŽŽ;`/n¾iœÿ¿2>øÜŸ·^ú¼q|Ù¯ŒãïüÆ8þÞoªàsú¿á‹sŽPýºqöÙ“Ç>øÏÇÍKþÙ8~þ‡Æñ‹ÿj¯ù|Nßá7ƒcqÎñjßÕß¼n|åÿhü¯/üŸÇú…àÆg?tÛÏŽÿòŽç°à3¾Ão8Çâœï°žÍfkfý¹Ï}nÜ\%6“€àÕ'°‰qIèúȉŒ ²Zâoä$é8±cú.ýžŽÁ„ïx&iúœ&@‡I¹èu)€MЉé˜Hƒ&}`aò§:»T–8&Ú2¢®ž<¦ ß§ku©ž˜ŽG €qS]ÝÀÉÇsÔé^xNª“×@E‚ÍŠ ³Š='5À Ìöhªø ˆ£=˜äènÅká.ø?Ž%˜¦ãÒu‡ô{Ïsp]ô+î߯ø·hÃúcÉ6¡>€@>vzö->£Ñ&\³¨u©¾ê᢮“¾‹~´'=/´}Áç£6¬|ohÛ’ÏhIàŠƒúõŒºõB…þ]â/މ+‚/ž3ú×(ö7CT¿£ã Ø‹}d|ðE??~÷×^2ޝú­q<ùãøêG)ø-ƒcqÎÝu°¾å½ãýý—ãw.ÿŸÆÿrÝ3Çñ†ÿËõÿ戅¿¥cp,ÎÁ¹»Ý¾3î8{üO>süç×üøøÃw4þë{~aü×w»Üå’ÿŸ~Ã18çàÜïäŽ;î ^ 6=q€—&Y‰Ù\p‹bHd)`3éÿ˜Lœä£À…"}ßàÈpÒŠ`8'" ˜&¯Õ±N€À `P"ãÃäŤ .f[dFK(À¡#³\Ä0Ñ øÜÀÑ´o (‰UQ ×^¼y?1MâŽÇáþy½t>€÷=$Pb» =¦Ó"Ðé¾Ðžì-² q–Ú`F·"³ì—¹Ž×^òÞÉžÜA–@  ¸ð »¥Ú†…g‰kàÿ쵡ë¶X”z€ŸÀK‹ˆîq Ð.YX8úhÉ…¥wŸ«­x~q©¾î-JX€ÐF‚+1öõ÷þ8"`cÂìv™Ÿñîqõâ“Æñ¿öP ~Õo¹Ü霋:v«}³kß2./üoÆñÊ~(P_÷(å0àÆ98uìVûþÓÍ3þWŸûáñoùß·:ô¿ºóçXÖàŽÅ98ugý„ÆEj0kÈ ßúÖ·Æ~ô£t<ÂÑ]l¥+Â(ufL½'m‡I×iBƒÕa ¯™Ðø “€2€m=Át>&¾ï#¾ïlËž&/`Aö™¾[ibF|õ™ “xÕsâ‚…™W €ë•Y‹6“A¢m¸Yg'6À#¸÷l'Ydo`Á=1ì_O&Æs:ÕE6Þ‰‰ ¼ú5[ã¢A†°[šG/®- 8G ;i«(¦7èytf¹–¨…aÀóèu¯KË%U0M°Pb}·hpbûWd™ûÞí’Ô@†%e`1»…„’­ .\:¶™,ŸíèÎß'ãè¸ö<±c‚5$#õo=¬¸Ó¹íT׎ƒõ-g ¬“äq8P×>Såš{hñ÷ît.A;ÕµÓíÛ{Çû¸ÿâKÏ~(Pßñ8å0àÆ¹¨u=ÕÌú¿ð…/ŒW]u5=äpÞÈ|8!hZ’Ùi2ƒùuƒôÕ¬)²tb/Ë•eê’Kê‰ËAà$sXš/@2ÅRrDgPc]«¥Ìÿ^úèÚ§i-Ð  8òÿ;i¯>‡’†5N2³N€š`Yôà,nEsœ,s%°!PaR“Éj2‹= ,’â•Àš ÖצÙ= ¢4Y´•ú3ekϽ¡óBÑ“! ,,·¤sÉ`©¡KN t`2c½î•ø`vM–)ËwY³îù;Ù,å !ŸÀw%öJ¶ŽÅ-®,ßt|žø HÆë‚à©ÁcQb}ßGãh×{~óÍt&’Y?¬8ÿÁ£”Ã;Ÿ—ê@]¨sÇÀúk×Ñ™–ü°~8P¸Ú©Ô…:wª}×|óz:ɬÖ_ú…#—#€6ê@]¨ó©Æ®ÿáþaüà?˜’dJ†RmÐÌŽ«(}“ƒƒzè<ùd ø$ÐR1iÁÁFN«•%&e#+É ¶$+ÐdpôfLÔM$[óµÁÉ eR‹ÕF9¡–Ò€kºÊ KýÆ ÈëEæpî ƘÈ4¡ˆ °.: {™îm'‹ÒŸ%¬ÐÔŒWÖNiúÒ›Wb£1öv&ª¯Èš‡ €byЙ%+t]œC–ÈãkÏ=$¯± gý@&9h©~XJßE]¸ÖÊR5ù¥˜ùr-å¨í¸o.\´|Ý¥î#Zj FLV)3 Õ%Ûôý3Žؘ8»UfÿÏ¿ó¼x[9"X¿ìaåQ@;ÕºPçNµoßg^=úôlË ë«S¹êaåê#ƒ6ê@]¨s§Ú÷»Wþáøß]ý¿I9Xß~Òø¿Üöó)øîˆ ê@]¨s7ŸùQ ƒõý÷ß?^wÝuã…\Àx\„VÑììÄð ?ö½œv˜œY…ƒi•1'ð۳̒ÅÀÉ‹ÉÎÉ¿”ÙéP’“&<'ºôÑU륀†“¿3xÒü×ħC«“ä@“&ôJò‘˜è½4éÞZëjFÌIÍê80WE‘ bðƒ´W,`ÔÝJÑ €Ù­Y?A3F3s?§eÖÐW²n‘,T #ÇÙj™ˆr>R¬Àle')£$$¥à+0{æ F¯È3*J*¶fX×Gƒ›bÎÀ’®²¶ŒÕÑyQ²üBK£Ó=uÓ"°ƒue‹…NSY<”šÀêKX”bí.`ßxøïÙÏð>XÿþËZ ´ÓÿQ'ê>fÀøê5ãƒøoé<|L°þâÃÊc€6êB¨ûXÛwÕ7®ÿÉù?(ãÝÖ·>÷¡åÑ@ûn9"Q'ê>Ñ€¥oûÛt4~å+_ebÃ̦8¡—r2‘mx2),MáDvß;r€ú´Ìq€ Œ`I9:¢÷„_i‚ƒeö_›AN¨ÁÚi”>JÊ í: bž4•ma3ßèÊ&<fƒï¥'+ZAÀ5xá Cn¥h:ÈÀN£#: #\¯µrHÔ=3¦3èÑ2|Þ@é÷Âñˆ¾€­#læ¿’"&.‡g¿”Ì(–¡_/l±W p†H '®û¨ï†'4Ž´YlÙ0E‘;ƒ5s,¾ƒ#(1\r`ûsø"ž#€ Ï#p޾×iñYõòCíÅ8Ú]ÀNNB†î=„]?X?h›e£NÔ}Ì€}훺gvý˜`}å3U ´Í²Q'ê>ÖöÁIˆð¼5»>°~ ÐÎ,u¢î§ »¾ë®»ÆsÎ9g\¥D‚ƒ)9¦w¸%ƒAј K›­ U‹f”«åS°QÐË´V,®€ú°µR9%ôަ. öjs^²ÆJ/)ÂÌÄŸK€ìÅÐ"ÃÈ ƒˆu¯Vê7ÆRìQLÍ,}p¸ÞJNN8Ê6ÑapÔŸm0¥—fͶ* .;èf]ÖÚå0TL±˜hç6Ç^Î:XŒ´pÄÉÊL¥˜ë̶!‚…Œ Ÿç ë(-Z½Æˆ° }ëÔýò #Ü[ìò5í(¶´Ñ›¥G.lŠ8Éñã¬Ë‘,õè¨Å(ê~¸ÐtÝÚ9ÊEíêl­Æ£Gp˜<»R^{²â¬g×GÖGíÃXvªukû¼ô×Sýv}8Xg ~xy8h.¤:Q÷±¶ï—>÷rÆT?„] X?h›e£NÔ½kÏýhúÞ`È$È\yå»N™`KÇ)¯¬).=X³“n™6QQyŸHId)§¡Ìgnì;;€-š)“’9ÊÔ¦“ ̵“9ßE9Àú×mÇh#R£s8'2´Ù¥ÂúȨ£®ËH kÒÝJL—² ŽÄÈ©÷½Ž+ëÓÐüÔqWÒÚiÞ[~ v۱͌ê âK±ÞHýxÅ{£e`à‡vûn-qÄNRJßgK GL(oðw«åÒ¡sB CV:(,Ž ŒŠ5‚ãˆrJì×Ò ¼NNØn½PºІ¨Æq¯jˆHøºa{^æûXÚ1+i mŒyË¡‚3Žv°‘µÈD˜G°ë‡uNšÉåH }8ËNu¢îcm²‘³ì̖ĬØ´}Þ°S̈<Æö!k‰0쇃õßòœ‡”G€öÃu¢îÖBØ÷Ýwßøõ¯}|ÿûßO'$öl“0< “ˉdiŒÛuÂÃJ'œawƒcx h½[—kK…¨ÅA@ê¶r×à8ffêuŽ3¦£*GA8<­—¾Z äÄüž—U9{e§&"V޶ÈQiÔÆ»ÌöK'Ö8Rb³“L’ ~pòŽbÉɶ×[ÒTCK!Š}¯è¼ËIAÒ¼©™Gk¹Kgõ ù9ë^y]:ëV–8}²ÒóÇbD £SÔ ˜-tuôg‡'<Ž˜-9H¢ öÎgæd2Þ()…”½ßNBâ‚5HoîœÃÐréÄ)E€0r…rŽ$2È/G3Žv°’Cùv°Ó1¨ûXÛÇèÊw$À~4°~8Ë~8`§:-rŒíCD²âlÖöí6`ïÖsÌ1‘˜uv4~ãßH›;}|¼ûÎ{Ø÷ÚPtã–™à -‘,‘¦oO½–nÉz¢[)ܽӲer¯^«(YaeöÔ)ë1³Ôa%Ó¼ë÷L@”*­Tó%>æ°»•Íôn;E|µê Nƒ¡³ W¤Á+€htB Ù(Ó§WbáY2e‚n½Å’I3T99£bôßÞzôЙ©w²ü^ºZ9šb)€ó­È e*sR!x¼/ŒÃ¶T3XnY:U~iÐŒÎTb·}ÌGdåŒuW œ}Ìuöeï¬Pù–Ûy?rwfòy-xÑÏ#ËYåœÎá—}'™ìhÆÑîö¯¿t×$Ô}Ì€ýñŸÚ5IukûžyéÏîš$‚ºOXg)Ú5¶K=ûì³¹ùÐþ{­ÈMe­iÿˆÞ@DƆ‰À°1±hƒ'œaý:C®3°D§[ç02j˜Lvñ~ƒB阷̲‡Ž‰Ë>3ëÞ±ÀNõîí°Ì Þ7D\æ<>¬oƒ-f£A²Ì(™ç¸nÅJKZëP0þzé´mëÙÔÉs¨Ú`eˆ”OȾ©«GéÑ«ÎVY·î•²Z?ßκñ@ÀgrÌ §Û*oŽáv¼3A¯W˜\ï=S"³ ŸÜ8R6ãÊqëK&Û(i%®Ã—–Ž;4Ù¯ŽgØc¯4u,z‘ÒHN¦‘FWÒÍÒ×)2†qÜŽ‚y¼q´«€½ÛNÇc]v:kûvÛéx¢Ø5û›ßü&_FpÅßÿ=·JÝØXÚÔUtBˆÑ&±˜c¤ÑÀ7ö‰rúÄp›Ì9¤ dS bhª1ªíü<(’‚‘L[ŽcpX€38%@m¶+þ9hŸ‘ú&ôŠÁN“<˜…,¤þÈ€£kš¹¦öu!jc¡(˾äP³OQ¡(†žõ2„¯[®÷Ùà&ILQ·\‚kÑ„Ãö:´×ñ× g Š)G[ 衤 xìeèÖ2“[о¨ÌÄ.»ÌcÀ;ÙÅôöfñ†QQñØOvåXiÜKÔŸ¡WN`¢’S̃¢@´7µ¡gÊ{v¾ÊYÊD¡` E?ö SŒƒ5oÊ.h[°ÃÔØãŒ#¸Ì|vºì{÷»v-¬us¯þË] ëCÝÇÚ¾ÿxã[v-¬uïÖs´’ÁY_ùÊWƳÎ:kÜ—4mD‡h'¹ÁN­ [:Ü‹úihx/‰À Œ Ù?œŽÎZdæŸÃçо^ápÜ&º€)}$Ĭ£èè°òFH «¸vCfã;§Z/ÍFc©Opbr¡“)mw . ~¡ ㋃"bèœ`’¾ Ëõ^Ú(*8z'Õ, d‘ç0ãš³þ<ôŽ Òê—bß÷r¶äàÍ­R½Áà–ÃŽ È0ÀµÁvqpô‰3¥YGÞ,–@í'9ކÐ;PÿgßsÃ®è¶Ø)]¯és”Jöä=U¢âÅQ‡"M‚ÚÖ+ë±OíÁe¡ÏŽbí*`?xݵ»–8ƒº@îýâ®%ΰîclß¾úÅ]KœAÝǬ³£ÚõUW]5þçôrlJMòEÁÝè4ÉcŽíõäÞ"ØÉƉd^žhÀÆD—c ”†Ì”;mÄ ×›UàH ! ëÝè(“xÃ¥5“…öf׊éíÓ¹ 9ýÈž—Ñà+`×Þ%‘ÌV»ÎõŠ ŽÀ À%ÀöÑav ‘˜wÙ±6ôÎ~èFïÿ<8]Ì5þÜz§b¸Áü»°T¦ß >èó^ d¸ArN윅h¹Só‡÷qbÖ9Iq×·Þzëøž÷¼‡Ž¼þ‰l1d}qI““ûwrq;Ïèá¼Æ2oHŸ Û¦?جö‚TT€â€ \9sp)“›lÕ8î/:3BE€…` ž8oÈIWÍø¬•/©Ç*}èÍ&;måI¦»4‹^æLÁÞ'ƒYoïÐÃ^2 úºW Ë¥™iÇÅ€YŽçtÍ>ïÁP ‡¼`8t‘`ly #ó’‚:-Ña…ÔqCtTŠ÷ ÷óÞ&5tƒytÿÇ:Ž¢3%—”R$o,iÔå¥`pæ¾Ñû_3;h Ü )²Np¨#´rêñkù( ½·|UªþÑŒ£ÝìTüðwl{UÔµãm¼ñÌÛ^uítûÞ}Û{wl{UÔu<Áúp)ìo?ÇKu?ó™Ï$°N{^o,½‹™$‚ØG³É`ç—Ìûe~ãÌs›•Œí'>q†’F)î‡lÖkS–É/Ë  ß’’S¶Áêp¯aã‘Ô}åìZzÓ¦Á, /F§@ pcŽ–@¢ Ö¦:´íA{S€Ýæ½——–ÄÔªƒÁ¥÷[e䌄™OöçL@ZKéµÎ Gcoç]03ôÏ šµä¸ÌqÛ:Ÿ–Â2¿¦¬§Ã5Zѽ…µd!gdPt åžàÍ›´Ë!ó8#ïÝ9HÉžƒÃ"ó­´~Ê&ü.èeX‚ßþÓká’4ã­R?+&9ä/o»ö<Î8:.€'á±¾ÀuìÚ¢rõ_ó PÇnµNÂc}ê8Þ`ìÚõ=÷ÜCv=KQ#Øè‰ â^¡!v§°Ì‰#6/{yßÁøÄ̼û\|*H"rJ)~د¿Ê{w\9ñ½…hŸõË0¬cwrÕó¶©’ ¥0‘ö½œˆÑ潘»Úre ›N>qÒ £œ¼Ñ)ʃ¡y!®7g ƒ³N±€x±XR{bêÁR ŒØ@±Ò5ä ¥®œw!tŒ5Áy©ëòÁ»Æè¶yWÀì  Þ5J6’SUÀ¬ãˆ±ð¸— $A´ËÎFm`•Ÿúµsì{ïWže}ÞX0ê.:ëR÷¶\æ˜ù(Ù§SôÈ::èqÆ\6Yw»<ðÁsÆ^xÒ~EÎÁ¹»ÞÆë÷Œ÷}ä_<áW„᜻Ûí{ç-{Çÿñ¢}¯Ã98÷x=çà tëÌ®rÅWŒùð‡õfêô6èeT"&“ÃÆlrR_dZs‚uKgš™ÇvÞœp†å[:Ý:ÇW¯7çÇäŠ^hiGG zá´SIbct0.£S¥•XAfk͘¦{Ö!t’K¼ßÀ½S]ÚOûƒPB·– r´GHð«µàÀd¬3ÚM×[ˆæ=»*Hcp¼µµiEƒ8êÃ)æx~|ÌRÑ%ËÞÚ3£¥__6Ø)J CN7&¶DIù•_ü× ºnwd Â*ùJ®½Ÿwpˆa´5ƒE`°uâ—Rä0È¥âÉsL9µò×/Uà‚`§-5}DÛpçA÷ÑŒ£ã ØmDwüÉÿ9>ðœŸ~Ü—ðâ›Î9nmLÑ|úÆû?ðÏ÷%¼8†Ç¦sŽWû®øÊÇW\qòøO.ø¡Ç} /ŽÁ±8çD€uì¬]ß{ï½ã‡Xß‘f$9¤ÇÛ¡1í™§4òkšM²!ú +÷êÄöø³°¿vÞx(n'TôÚè§sŒn½õç –´ß9‚ +:=™qÎr†ÎC&ã2+VŸGdÆÙ ”æœAŸ‡¥÷3Yê݆ëøé°vÒQóµlAÇ'€18lÎ4-&Þü)XOnÃÒ̳÷k¾2 z/eÞ…{NcˆÑ‰:½ôâ(éŽÃÐ-ý&tm[rý–Ȧ£^¢°ãH:¶œ‡}¶XÜ/Ál[Ö_®ë O9‡%ƒpAó«ßÀŸtÚvÒæ%KÉ1LiÆ{ŠÍ8:üÛwŽû^ûf->ð¼g³0ƒߥßpÌ š»¯¸êM)æß2kñ¾ý >ã;ü†cNTû>ÿ•+Æ¿¸áÍã/§d-þ÷þ¯,øŒïðŽ9QíË`#C ]ßtÓMãž={˜¹¶…P¾ ‚foVôÖ“1'xa²,:ÛYÀé—O8lK‘N9ï‘Ü++.¶»]gÉ€ÛŒvJ  Þ‡@¬Óz‹6XŒY6ˆ`:Ý·œƒ~Éí­G%£ôÒ® 2K;cðm#í˜gÉ%r|v‚Å.GqÈñïLæ'ìôªØÉ¹G­=*õ ІÜAÀÔ®Þ}o=W ?Ö}ûÁ.AuS#vÂQ””™¡!;ûâŽ#J3”rò{$qAo•÷FX!*i¦g$JP(¥ÛH_@çLQ¿jŒ/5p¨"C&­›KCwz¾ýG3Ž8àòÄšÊTv²d)$³ë‹.ºhüTÊnÜDfcb׸!š-Í($ ÖF+¹€L3ä—¦–º§@”ˆvÁ[2ó0¬õW&_01B“ž÷—Mfg .šÖ9$8âƒ@ÔÉ)©Š$Ÿ„!³îaXí¸£öK'¡Ì~šî}Þ/:ëÊJÜY:#/Äœš>¸ï}NñÊ\T(9(#o°Ã®÷KiÁ\ƒ7ñ'sîò.w:OìUÑ| Woia™7±R Ï‹ê#ÆpGï<8(B¢7€9ÎÔ(éc§Æe‘Áoé´ )ãPº{´6¯Ð@9\ Ú½väS4÷Ô¦Ôã8,Ú綠¸[§¶çwKÍ8š{*»Ø`×wÞyç¸wïÞñÁö°ÁRÚ¾•>ç—©¶L±Œ%Žív…&TXë‹!x‹¨˜Ö ر0 m¿ŽýU¶\KÀdtF7¬#$Z‡Ò v2…¶[|ߊ]µ]NÝ*ÔàÒ¦>j;%àNâŽ2„b†âGö͘hõÃç¢.i‹>LmhIÑ‘ȃ⬕(í› 5§‡K: Q‰8ŸEð¾%4ã;Å0“éšÝ¶×–ÀÆëNìU)僞Æ6tÞ{@šŽÇ÷Aã€àNéG@O6=ˆá¶NÚ©qÔÙz‰ÎP Ž™îÓó‰îËØêþè(´³– BçÈÜgN7ïm„Þ/Eîi1u9Ä3há`ú<Ž;Šq4öTv ¬×®?ÿùϧ—ì~(É!)Q&9{ïêÚÎ^}±€ Àˆƒusi9 òÚZÔ\7Ùtn[¯v¶ÑáÁ/êí¹ø°ï±ÑY:Ú©qÔ±.'ø[¥±Géã|6Ñw±mÛ÷I¶ÌE"Õ=¨¯¸ðò¹9ϲµŒ‚þmõÜo.u¤q$Í_‹^—ã°'€™ÊNƒ5¤Ä]ƒ]ßpà ãßþíß’UìOÎÆèÉGàh !'zO°¬Ö»ÚEG(ô6ãyîS ¬OiÕŽ;n(ó0í‘luH0ƒÒH6ÉÛ; !H£ Úáàv֙ŭuÕ6ˆù¥Bæ Ø%œt­ Ö1èøÎÎ7ÊmÞ‡¤' Å m½u¼3Ø#“aȼÅð «ŒœÎ®˜ã–Ï¡÷ÂB)¡Uxž´ZÝ7êèòBa í ÐÔº{-Ú_å°ý>‚˜)¯+ÍÄ£¸ã㨠vv’‰‹ù‡(«ƒ¬¼ímEÞŽñw8¢ÒÌ‚eÉ ´¶dº°ýÊ•ÐD £ ã‘Æú’%ŠuO€=•]c×ЮÁ®/¸à‚”Ýx鸙Àzcð¦í½™$œ/mX›¡Ò½Í¨3é˜ÄàWG‘äM8áN¼Ó18™$dÝ3‡ÞØCÞð'ˆýKm+É=@B\;É! ˜m( | `6›e¶ÃøüùÃ,˜`Ó‹‘ƒ½µŽd2ðƒâ‘{=.]p8›ÂàZJ2Ú4 WéåÊB”c1/,²ä, d¾¸?\O Zm ø0æÜ1ÏyÔ.zÑËÕNLç´µg‡îô8RZ¹ JAtü¶ê£.8 È{xûضÕ3ÅsâBÊçÕñø!šÉ·zþÜ;V@k-<8Š¥“åt¤q$KDã"äÝú0Á¦2•*ë¬]ßvÛmã»ßýîñûä¾×“6VÃÚÔîíÑ—¨'bR¶Q{!Ó¦ã$šçôݯaG)“8NòÁNÁ.ƒ'~ŸN&vÞ4¥Ôj•´å˜ìZÅm·÷¦@oàÔ:Bš(å ‚²@«wF$ÌxîõþAdKp§.Ý*‚BK¯Í¦ t /Ì >­%’Þ¡hŠQZ6ï…&¾,‚]zVƒ“Y޶,ÐV†Bö^)Ô¸½Å)¯ßÔ‹û¼g7tÞÎCØfÚ;=Žèˆ²,‚÷i½•jÛiÿî6j—@¼6¾ê©~n Ôt¸9üÑV³J?ï2#ïäœ}¼q4öTv´@ 9œ]cÏ÷½ï}ãææ2e7fíZLÑAL­µiO3ß·ýz èxbòA«½3‚Zx vï¨ QK Ó;ßu9«P¿>ëÓQ‘]›_àjÆG"Že´„Wmo&'wÞ&•f}/ÖHׯÖ"ø9Ra­÷öÒE{êç‘ýÙR+•d˜b àÜW»$J6á)¹0Rc0ðö–|‚ß7ifh@eºøÐ ܼ ¬öäV´GÌQ­4_É@ºŸ¶í ž¶£õb´Óã¨Ëûµ´9ÁF×è°xXïnƒ@¹Ã³tÒKKÇb«î´Ñµð.³æ¨ó‚4|ö{ÐbÊïü|ŽfM€=•g×Y»¾ýöÛÇsÎ9g¼õæ[Rú'X·å k3¡LÔ÷zo¬OM³•dàØÙèøÙèpªèøÕØ-'>ÙF,ZÉ+ÎtŒ²’Mâ:ªÌ!kvL´{íMA'[”ó0PWŒf ÉOÓ?RÆ÷”Fú¼¿…MhÿŸæözç:o•7r€Œl›Z«Aψ‘Þ—¤—‘Î=0N0aJ9­X'5ð~íŒÀ ®³%pZʉ– Z—߸CöÚ:|1dÇœö"áýµŽ’aäÄΣ6(B½~ãMðó[KY1ïî$|çÈ›Î{‘´‡Gûtr$·½­ XMmÇ>‡uÐ:"äñÆXÑT¦r¬%K!ˆ AÜ5ÞˆþŽw¼ƒƒq3½¨ 6 uûH¼iK,gNKÇTšX âjN°6}nŠ»† » 6…›§€†¥­6ˆìHínZ™ú`]mj_c’m&Ãm fr`áo#°È@Õ]™Ðøõb­¤‚ÃÊïá,6Ý÷Í™ÿè+Æ 34­£lMþÔ¯`q¸6y¸Ž£S‡È­·m׎±¾‰k‡XC åsoœmHöÝÔÑ|f½7EÂsn¤ãbAB{x­Ö!wéÿßÎû¨¤ë5¸fº&ˆ9ïÖ8’dÑ:*¤U¤McöžCƒ¾o+bçѧMÛ¯_ÆûBúÏ-ÝÎiÓ=ÅìØ¥uÒ(Zõƒ½ã9§6Í8š{*;Ø`×xÁî¹çž;^zé¥)îzS{A0‘¡ãäÄì5°©Q¦ÛPÇÓCj‚€¤%05Û1üN( ú Ø­#P ÛÙs²‘95ºpJ¾hµEŸï[ÀEÓ¹—n‹ÉÚ°o ì ,¢;:; GˆÜ7J Š—Nß7úf½8üqÍ®é>t*¶¬£³ /6ÞØ™(`n˜ä"pkðL:ëÆ­ã‹;G< ½M#0ï‚TCý»Q”LìµX8)($Á¾o‹{hÝÔºu´LصqÔÒâi¸ wnIm÷bÓ¦{jè4ÞÞë…2U´ vZfc*Ù‡~ _1ôÐ6kÝš íQŒ£ °§²c` )ÚõÝwß=ÞrË-ã»Þ•¶ÃMI4`×4I1©Z¿Ù£S¸S°&HV‚  Œ- P™ÈA¡c}6}ýNÁ4ÁÇäžð°¾VòA“ ·cûp]×/ר4Ù.À£Ñߪ×Dgvž¨œðÝ:ªl˜€†ëôØg”#­ û±‰v wôMhêÇšÖuÉF*ØŠyvaíô ^¢˜ÁšìZ*Àµz9öÄ6%i4­0ïŽÔ¦çsà‚ÔÈaFI¨É1Òk |A,U ï¸¿I›ûÆú~ë>šÆÑØS9v°†‚È;î¸c¼ñÆ×ÎFD‡p‚˜Y„:Žu+ÇÍãV¦%@¥Žµ¼áÙip 5*Èd¬¥5ÖuGS”Ú'&H[k‡³T_‰\ãøZÀGR³¡ÙÎϵ­±C+ƒ6"r€§n·5Φµ©_kÒ¥ëibvr ÆZÀ‘~g¼qº—¿76…ÓÄ­£ÌùX§ûE_tÑ@mVØ„m5 Ó5£˜5ÚVK{æý˜y×Q:­4äਠEšÄ¶&h5„ì$”¾¬v¡k°þˆçÈøÂšáÕÛ{gÔ-û4Q ølƒî­í$qÔtv”FrßA†hêmYˆ÷¤ÏÇÔo’jji½!¬£MÔÏÓ8jóΔðLåX‘!HC¿øâ‹Ó;?2î_mh‡5LÄÖÚ)uǨ…Z5rÖpâzà ì–à$pèï¦ÄP3é©¢ºœ¤˜”˜(]-ÌEæfºV-pÁõÀnjOò19kÅè¶J§Ù™í8&¹i¥còRöÞŘȜàA‘4¡#À¸‘DQkâµ4ÿeÂט vbò8<[ï)!GcM¹¬['Õ2³ƒÂÜÈ´–ƒ[Ýê:`\¯îy­ïÆlj‚?À"Ö–KjÅdoK/Yk[˜xmçiçþqd ëÑõ›F¡sµõf©»Ö ãk¼­(ªq"®Q“Ù¶f±z6ÁÒÖÍÚyÊ A/*ñ%[]W{ÿ県ҨOÐw-³o¥BþÀÈ£uÔ~Î7#£ °§ò¤ ÀŽFh×7ß|óxÖYgQÙÜ\¥Aï\2+™é5ÙLM–Øv­Mp}'©Àº)3'}cS],­ kí“®ÎIJ\PÖ[ÍI ó=’¹5N>ˆµÎH Diî6ÒŒÛF’„R£ÊukÆ-ØÒÁ…×j9É.&9@L2oÜ/9Ì @Eæ6ÖIžT’E툀ƒQ¬ f¿­vˆ\çøà6Gn€FÕ½æÆ)ó½Ñ5(X%tt9œ°•´ÁP9´u€ë.šÁ7ºß&8B%pÐ#$:3Y2e? XÏP’ X8­žSk±PäF=£‡£ °§ò¤Ù5BÒãÃFOx›LÇćV€à(1° %y´€ôŽi~:Z¬+<ÚàIÄ&Ó¤‚¬ÐÔøÚŸBŽ&74Jm®ÉäÄN ŒPTEtAÈI'dH2G1Ù›(3VQ£&$+€aÒ æÐ7ÆG£îFæ´2ütdnÄÖ `këNZ1XSͦ5Q™ÜÁ@ßÚT¶6íd ´ƒŽG€Oh¬©Š¥ñŒ-®tf©]ÖZíl«­£6–jƒú µ9Žï´À(¸_êÅÍÚ±W‡¸Žë¦C•¡zµ@ÇI3Lâ01ÛR¬SÚ¶œ’]×:bÆ‹„Á{GÛ㈀É7•©mÉNF¼˜š5dì²™œŒd;˜GKݵ68µd`t …Îa`ÊNkÊI”†]·u¾–aÖ¡ÐJ ¦,@WánpÈ„Ðc0†FŽœh<‡‘aÒwΆksÜÐI×tÒpÛF!fœ@A‰Ò‡¥cÊ)äˆÖ-ç&sM¼—‡ÛÉMšjݳ™³P­Î –‚Bÿèl°Ùy(‡•²•Ó­ÓÆëhÇ\-“]±Í1:ëÚ{\ä ñ•Q¸x(0É#K” x/†ÓÕ2ékÇ3ò£‘&_;~›ºvk0kÚmFíŒÊ¦³ ÒGk ¢W·o‹ßmmê>x ûi“Ï×ÙØòµ×unºù9ú¼-õÍ~?›õsówHnQ›}ïü]ßáÙm²ÿ7x ÖþðàA¾Ÿq…hÐ:K«ád!ØD™pb-µ40@˜œ´Â¤3Æ úJ»›­'X¥°¦ª‘Ù¬b2 š¢ÂäOƒžuTÒ Œv ñPg´# ƒ¸æ5+Êm-&K fƒãjÕW3\Ç1tZ}W¥É[SÒ0ˆ5žàµ£쨫ƒ€Ull¹&¨µ>·Ê“=È©G³u°^ƒ{Æõ*k±•B¾Š±RDBÝ(~¸IýÍèˆZÌR@å°>Fd£¢**k»dˆ¬SQ ÚËdÛ¡ F У³eßë9ä°¿J÷Ukq`ä„ÛQÕ»P£ýYBP¬2,hAšÆÑc#í6ÖhÕ­¹R*#+4•B…8Hò hí)nùpj¯þ0]*¬¨¼Ò*AÏ/.ÜzÕò _5õz+G®Ìd ­Ìžè•©b¼j«†6™`…å`kíi­j;Aj^+°žŠ¦ Ršu¸“V¬Ö&UËNÇW+Ç:/he–SF!7|8:š+lTŨû††U{ÞŒ“̃¸v»¹ÂšIáwL :TšÌQº\m}¯ZÁC+N±ª•œ!®WbLÔÖ §rL.Í´ ¸] HL$îÆçí,ºZ&:ú#d“̤–瞃>õ{å¶½a½¡=ìiMãhG»:Ž´yM­Îà ;ª|1®ü Wsêi• VÎF&0¼òÒÊÃÊ‹;Ž”1”¸é¦¦éS¯Zó 3™eUk…¯üP¸ú€TÁ1«òÔæ‡YÛ ÑÔv|°­Ð-öÀ3Æõ´z(6¹pN…³’S µ©$s±–9Ùjõ§ jï{S‰Å´N+Æox¨u£þ¢#¨ŠvàDN­’ézQm©x±/ÞoÓ8ݸ•c¦jÍÌ¢Ö=+ëpAÑm-G%`ÖµÒÛZº#ñ/†NáÞpÍu£cx9ù¦¤U>h ÄÖ1¥5û‚lÏ)Ê`C¡ªÆiMãhG»;ŽØ@µ‚ç+jSÊËg‡ÖrZd3‰ÂÕ¿á`«­{ÑéÑh•æÃ«‚VRüJ+ µ6…"QûªÏ¢"•êÆêË3?\­À¶µ¹â`vÇ•bÕ®8IÌ”'À€IRi…n¨KUžt•÷ÿÕŠY;´‡®ÊY]v05vЄ°Þ ú_Ì.À”*…ve³“ ²yÖ¶ž³¶Àf8qâšµDk§­&a]E1½ìiƒeí°¦Ê™iA µ¦q4£iíÞ8"`7ì¡y‰-*u@YË”+Ë–M™RYf*}®Ë±JÿçJW¢Ó Gñ˜Ff‰3˜ µ éœJ&X]ÊŒãàHß7µW\jU M8(Ë«yË+©‹au´n”Ú„¶¡M4%ј®Í¶TY'’6…Õç—8—“)uN‰[ÚƒN/¹º—•X’öä•'¸rÊ/ë÷ G›Ñ'¸^ãûãàªÔgÔÁÀjÊRÚ!úÑzœê­ýP+™‡8·’–Y¥:«RN•º*Ù7MêÓm¨dVéû@'H¥¶72åÊVúi¨*³< ÃgN‡R+†Rº™ÇÔ:k³A0†RæfS6rà°/¦q4£iíæ8"`ãÂ쌲âÃ+±š–2#è¹¶ƒ£ògÒø4Hjw¦VÅ’D½Šf_ËS¶jH#'VƲÔkiÆhÕ)K™ÙLª1ÈK{JÁ2p­R7Zr@ˆÆ†²)©uÕ6Ѱ"⺸'NŽFN J 4tÍ—ÊÚW¨¸jâÔ•VTÔÑ6b1Ô§jM nxƒ>)¥—¡½ìh¶3›­Ì¼JýÕÚ;^5%Û·‰‰Tª­è::ÐæÚ«~UòA6ž µûˆŸ±R}¸ÜW©Áã[1Ÿ&èÞÉX·Ø'!úƒæg¥AÍ ÈI‚gS²´Ôñ*"Ndž#m´iËqGÓ8šÆÑîŽ#1lè9h\åTÑtó\aì †‰•¢uš'VWÜ8neOwë‹`@`5Á¹`|0ü®¤ùœJKç‰CmÈ80˜KÕA“…ß«SD}ƒ´¬¢Squ†ùÁÁmO»<çæž®_zÀIwÒ@¯í…VHIÝèÞÜ:W+%Ã}µKfkÍU»Í!@•˜'F-vfP†ÆÄýBçAé•^Œ‹0¤²”éÉÁTÉÌZ߯uÊZáGštÕÚ Ä>d_h⑉°ÍšüdO˜8t€iP`‘ÑQ dÔø0ðÀÄp­u¹Z÷ÁIÌk•fn¥®W+4jG'f¡¿ù¾ÔWo¨‰y3ýèWqõzë9wÄ‹eíXÇcðb^¾uoUøš²èú´_vÐK}ñ¢à^ûvóØù/Õùj2¼±|ÐÞÍé¾)/°õÛÝñÆòè‡Þ× z9sÜÖ/$øràŽ×çû{¿,/ìzcßûâÜ66®_Ÿ†w8öQ¯Sѹ} n§ßa‰ºXçàc¢Þ¨Þ«}½_WÆùø½vä‹{í«}x¿"u~èôòc¼ ^ÛØêóóõwΗ?¤{í£Þ®ÙÝ _ÿæ·¥w~¿%_¾÷~§x^)Œƒ£ Zý¸pÐȤ¡6„Uƒ?H×i³ÙXć—« V¨Ö&4šŠNƒ;ð  4‰À4`´á .P‘‡5MmF€saµ2}j®N+*ÚVRk*í˜(åT°Ù¢ßNŒ’^£U»ÕÿQWJœ_ÊTÈU+s¥ñÄáý|Úu<,Ì)îÓNê[ee gÜ«XAÍþ¡3ª‘FY™M´µâ2 0µJæ*„m­eFŒ1¡óJgQUÖ*!EÓM‘ Ç“ã¹Ôò1š€Aì¨T¼nYˉDÐ%s+=J¶±Lmâ=VÒò¦qtüÇQN´¸å¶[Ç /¼`|ozËÏž={Æ={Ï÷ž±g<3ÅÌŸyæžñŒôÿ={R }ú¼'ÅП±7ý=3}—~Çqø»'ý=cÏ^}—êØë˜û½þ?Îg½ø:wÊÞ3RlþÞ3U/¯“®ë¿{Îpáo{×í;“ç¡{Û¿GuŸyÆ^ÖXÿ=8¿ãÚün/ÏÕùùß ïs/Û²7µe¯=ãL·}îgÝ{ü9&¯±WmÚ£ë¹G÷†vïõ=ž¹×}ÇûÕ=‰~Ø«óÏàÿÕhûto¾¿=n»îC¿»oÙ_xVù~T×_cï§°¾ZƒDì #©Ä¸À~ä%6Ë)-¦WÒÞJŸC¡ £Õd© IÚ:¼5pÂ4 ‚Cm=¯ÖÄ®&Ç­–i#q:›Yd6E†b3ZMˆJZ‘XŒØ &[ÓVkFÄÐ'ßw=éA“¢rL)M0ŸJ&)À2ob#æcÆV[oklâկѰÏ*{äKêeëRìÎ&Ú]òÞ¥såý ˜LÐ6»‚Yl³U&c°—\fS›“*¨y•Ò=³ñJÏCfvM]Œ Ei§Vcvr^ôÉ Æ S¹=mÀuß·ïãw‹Åb*߇EQ"ÇéY.MafU8¤% º¢+¡ÙœŽ£iXÈÔ$3t¾£)] €(â—2ý©«a°ÖÖŒŠš&2K:¦(¤—UEº^-“ ¤öUSÛj¨MI+*™ãø½¨e. Ó)åàÓ¢¶%fEðkÄÐJ:D4ðÁN ;ê²%¬m(hî6Ö§J9K™Î¥³Ãø][Œé%æKí+Z¾+H-´—÷ ¦Lˆ~.09ÑÛ@ÀÃÄOýU¤ó¡SHjô®Wd¹@Ì«$2ùéÈ*2úªã V8ë*Ýs!0Ãý¡O :¢žFXÔÒä €H¡~å¦E¥À¡QÓ8:®ã—\rÉøÅ/\1>ðàl×Lkì”8•ïÏ"§#uS”Z“¯âÀ—w»¨* ø•#á9¸­½6ŽY¤~JHÉÉW$PÀ€,0™q=˜ªiPR-ì, ×Z¦&(4@ꙎJÞØ²6µs„lk=á¥Òl¬dú3ó‰«àÄ„éYbR´6mK1®Ò Ê6a‚Ki¡XO:DȾ¤å­ @  ¿™Õ™E¶r6”/4³Ë‡‚îŸYykËÆf3ž Ú€þ,åÈxãÚuvØ -µ=õe-Ç'|!ÇYtQ¬F• ´±Ð3"ðfo¹=ìÁ×W¤ƒ"jŒ•ÂÏ|GÇmAºº'í’øéO}jÜ÷à>f¥Nÿ¾ÿÿÉéhÇ '¡”7•Ž#F“ÿ‚ý€Qx™&[É\Êä4#Á 'ËIš”¶^×IÖSg–¦‰ÇœûÊ °–×ÀRø€&?X&'jQ‹=’¡i¦¿&o¡ÉXˆ‰”Ùc\´džu+Ó€ Väö7bhˆ¦´VªÉUù{j¿•À•­’Çœ&mQ±?0Q1)ËR,©mÄäÐΠÈÉ.v‹þX‘µšÕU»fÀeQLV­™&\…Ú'@좃 ®±·]^wô72À„ ª{‘)^I§®•<‘yE-$Ól*;sUͱRºï?ËiŸq„™>ÿ÷ŸïJ»%‚yMÿžF€]WÒÍšm…œ ˜DvÜÀŒÆ*É^Ø ƒ [8D§4{#;¨µOAe !£)µ¯,Ld1¸Æñ”7µN°´VÎ0°8S+@a»4brŒª¨ !ó½(¾S:l ׆I^‰e€Âdlœ2[Ú¼¦Y_•–äͳmy/8NÈVfµA¥v¿‘Áäå}7dŸ6x=:™*J¥A«nxµ3¦È¸ 뻩ÿi†C>iéQfÇ]¡0¦Òdªt½¢•©N™uÐŒo­õVîaçMÖZÔØµeµÁDÌ›÷SH*‘ÎZ‹ÍcL´…䌗i·q„÷+^|ñ¥I¯žÿøÿ8!ÙÓŠag½Ñ`%³±V˜ã0wXÊ,¤ÞWJ{Uü¦˜ÌëÂÿ2kE/Ôb}u#®Ì^÷BÚ]c'[‘½ú•XÌ1€‹ŸŠ¶«Ú,Í…Ò@-ÓUr€¤‚L턚³væ°­:†1“­´_fLù>‹Z’@ŽŽ–V+†g0" ”©ó›`ÙȬ.rŒ¦Óuo•ßæ€©¨—ò·Â“¼ÍZò€@C÷G“Ø`G]ˆÍ)¶µdÿ@"ÈθŠ@aÍ×,÷3ž!p"Nè€+•ŸŸ[«ÿ—M¡xÝ2»tô2(šÓ8:^ã!b—^r1Û8ý{švÑŒtÜTr~•frÔ$í„Ê;rÑaUÈdp|eæQæÿÖÌO““º°fÇAŠ Ó¾‘†³”&8o%ÆØ˜á@FhQÀh ld]Ž@›k:ÇZ›¹6Kiî—vÜˆÑ¶Ö áô*qM;Ù*;Ÿjk¶¸Á³‘£‘…Ì~°9ÅÚn x%(kÔf&äè‹VÌ”N´B`@ç¡7–a›k…•Uµ@޹Ê޾–u´‹ZÓ–+i­”N 8Ô;éP+ä\«¤Ãü—¬ÑˆµÛ¹ÈzqmÊ Z ZÇ2S ÃRÏÒÔvÔ5bÍT¦qtüÆR¨?™Žˆõþ=ÍšÙ"›Ã8`N.¤Ÿ•&”&)&ÉBƒ¼’Æ'ï½Ll îêX”Òâj™¡ üŤ.äð¢+ý¾(*3»’ŸKê¼5u]šÌ¨«ZH"0[,jÉ‹¬_.ÐîAªv‚Á¢ÈNœZQhߢÖ÷i²-hÖ* ƒõAF(²Cªb5²œ*·ÉŠ'.êÛ’Meè¡ FT,p Ô“BrêB²Ž/ÓïåBmez-˜ÕBÚ6žE½@Iý¹((+6³¡­²=R²óB׫ЎҚpU°?‹Âš4¯—¾GxP)Í[ú¨Rk¶Q÷V,d†£oñLÉâq‹ÆL·æqÏÔߌ¸(¥3OãèøŒ£’:.ºä¢ °ŸŽ€½ÀÀX`bi Di°,Ҁ¸P£k BˆY‘A¤ÚvÚ0”ª´£¤&ó¨9‘|^©ÔÑE)ïiý1†lê\‡{D•"Àªòìhd˜t6¥ižŠ‹RçPK”\€‰ˆ ‚ûÃ}Wdxš4œä…À³¶jQ«Þ…ÿϘè²\;±hÆ&0@_Œ¬=‚e‹Bߣ­hWÓxŸ÷ Ú{¨Ý‘™eJ.ÈÒñl þÙÑæBÓ`ç„z©­ÚÔž%1É&õ)Á:->Wûi¿q„7—\rñE)®›Pìi'‰€”š 0Y édi¥â|— S±È^ð‚Œ“¦0;cÂÂñ£iÀÒ´_È3¡‰XI¥ð/2’…Fc⤶ιÍDj2£Òá`M­öp²“9\­©Öap˜ÍõZNDiàÖ|«Ù¦¢1]-ô{Q)­]qÌÖyÙ®Š‹A¿(̬Ñl'r4Ö“stÀ›ÒG¨üÚ£üÖ‘uÖ¢6’ Þs#Táã¨òþ|þ9Tð Ž#Z…žo3(KgðÀëØáÂŽ+2¹yš¼s›À‹tí¹ãa^ê¯t|IXÐÔ–y*Xm¡“®²ã(×MSuÎãŠy:n.O|I]W}A–7§þ˜'7­‘…û%µ­˜Wdˆˆ.V[¤ûÖ„#SLÇ_õÅ«Ònjç]xáxãõ×I)ä¼[0æd×µ£ÊtM8ºæ•Ž ë´f–˜¸óÒý‘þĨ!—ÖÊçbe”<|¾uæýXJ“… ‰‚çàÿ…dœ?w´û/‡äyëÑ믿)í^vÆøþäOÆßÿƒ?_ù»¯O~õ«Çÿï o?ü‘_ÿÚ7aá½—™àS9äÐ1ãoþ«7˺ªë'4Žó…wx6 9+éúÜ$'=SŽÍGÞÆHUùÝ~…ŽJXýÄOüÄø¬g=‹)™”õŽ#-< />麉Y_|ÑEO°±çÈûß?#ñæhJìï|ç»hŸhÀÆ€’Þ&¦‰Ïs˜´…&Z½PèV&2 b!Öšõ?²´¹@ ,uÍkM¢2¿v( ö?ýÓ?Ÿ÷¼ç/{ÙËÆ—¿üåã ^øÂñ oø3¿U#q!§&j™A$]sPZÌ=е ÌɈdFµ#tŠ6 yºæºGMÌ‚íÂ$©ËÂÌ'Ý˼P¤É6pÌñ#ð=OÌm#k¢™:×ä¯J‡¢ ˆN×\}íøéË?=^wÝuéó5ã§.ýôxõ¿(R!¶«=6 - ƒ S£bÜeji¿ •«%éè¾Ôo Õ«tÿdµ¥Ú ™Wb’ c$ÂB!llë\à⸻Ð~•Ù&êÿÀÏù—_:þäOþäøìg?{|þóŸ?¾ä%¿8¾ô¥/_òâ¿ð ÏögvüÉŸú©ñU¯zõø…+®ðb½m%€~û[OüÇÜÒ@}Ôãh^xûÓÊÑ s…@*²¥”æOÙkqÌã¨\[aíøŽ·½}|wÚ*³vv¢2;Kþât߯|å+yÿM^€vxi¡Q;ѰF?yáÅ;Øà£)‡öÚ'2¬¯¶Nº¨Í⤖4OKé¥Nk;M¢¹NÅ|¾fÛ:¦°ciáp,oœ“øÿüã‹^ô¢4™_5žòúSÆSNyýøêÄÌ~ñqœÍæb1`žs³ÞÇ;—Þ‹Ͱ,è°f`…ønnVB–³ta€«Äª „9®•½9€æsy^8|m!ó” ™7^bÆBñ´8§šgö[8ÚaaU옿¥þºü³Ÿo¿ýÖñ®;ïïLå–[¾4^~ùgÇk¯¹Z`ÕH‹ ãÈ$+k²‹ÃBáììã™٢ub^¿è- Æs8´µCÞTO‘8ú‘‘ i´h;9„Í2 Xä5W_•€ú—iýʯüÊø»¿û»|†¯yÍkÆ×¾öµ,üÇÌÿÿAbÜ¿õ[¿E û™Ÿù™ñßý»ÓÆûîûö:‚ãío}ûxÒI'ÏÁóµiUYÕ8*ç"dž¥žÿœ@;—œÅè}–^üäÇQeHÆ;ßùÎñ¹Ï}îøÜÔæ~䣒ª¼AËÿÍßüÍñ´SOã_m Ûìø8ªí,fj}ú/’½è¢K¼O°ß÷¾÷°¿sTe°·¿›@û„D‰8c¾Ð*ΤRLe!­“àç°%š‹óÂ@.¶FÁ8â9Lõšì¥.r„ôØ¿üË¿_ôâ'Ÿ|òøú׿~<í´SS9-÷ëÇßøß÷ÍfÚüÞ€"ó¶´—Ý,ÙZžêWûȦ¸à,îUg€“v8‡SÍÕ s¶X2_ç¥'0ë6ÀcbaoaÊ? -›+Ãák2Yóþø;§Y¿0sª¬Ç^qÅçÆ;ï¸k¼+í®v÷]÷Ž÷Þuçxû-·Ÿù»ËÇ믹a‘7/| gòþÌ®1Ëy¿“Š ,$Ræ·ÌêÁŽß-( ¨Ïµ00RÅZ5åJì3‡Ú¡-üð‡Ô¿ôK¿4þþïÿþøº×½n<õÔSÇSÓ³;íÔS×Ïqý7}÷ú´ÀìÏ{þóÞ_ºýöñ­o}këç’‘þê¯þªcÅ›ÇGJ„ј¨œdRxCŽSë¿tvVÛI)Ofqÿ“J/nx×»Þ5¾à/`{_ñŠWТ¸ôÒKĤ+ÅN°O3`WÚqp7Æž_¶Àâ°/ºð˜ûì³ßÇχ}ç¨Jì‡?öñŽ™Ï=aÄŠ…””ø-sîI “:"@½–)ºð àSó.äજA–ö–¿~KbÖ/$›³ÎûÔ4ÉÁÊþâ/þãzøÊ¬€:/5PÁÐç 'Zp±˜;,K M'œxs›ÀY, Ä•£j±.È dA¸:’æJ€/àóBŒÌnaí³–&]X?-3\Í+EÀ Æ>·ÝróxÃÍ7%À¾g¼çÞ»Ç{¿|ïxgú|óm7Ÿúôåãu7ܨØ]JRª›÷ˆ¨ž+#Ï!ssšðsEšTŠØè0ì ýŽÍ당" Ih@¼^q>ÃÉævŒU +D?ÏçN^©äX|ßûÏN`ýlJW¯M|ꩯH§àƳ{x9å”SÈ8Q°0ã;XP»ç¥ðÃ÷¿ök¿¦1­})Á&‡ ªŸ!'Í Kvè7ŽƒŠ‹®Eý¤Æ,"n•ÆÁ»Þõ·´~ï÷~cmhÀÿîïÿní„P¿>ýŽ¿L¦ñn…;9Žß ¬[Çë´.N{‰ì `:ª² Øümíã)‰€Á,ä€S™gÓlá̺™˜—>ËT¦“ ƒq6'{˜Ó”œ“µÍg…u@í‡ñö·¿c|á ^HS›ìŒå´ñÿð ÞßúÖ?(ƒz£M3ªù¬$¸”3Åþ. m"+J»•èf86]wn°XÌx/³B@¦‚:¨Ìc™£œ8匓w6+ål[8Žõá鸙Íum¢4—ŒP,( e¹…×™‰Ñ¢½X(æ©-7ÞpÃxÓM7wÞsçx÷wwÞ›ä‘;îoJ`þ©O]6Þ˜~ã"WÊ<¦Šºrjï\Ú6ï)Ýãlæ‰>÷ÿñlð9•ú ûÄB;Ï÷›å1òÚ‡>AðXË"9«ðsŸýlr ?wüíßþí¯ãó«Æ3{M²’þú¯ÿ:±ÍËÒ›Nn§õpÝu×çw~òG¼VÔk ka>’ Ø9À›ÖUú€]ûŬ6ŽÔhkå1:×¢D6Ì7«Ìyï‘ @sJ+x†OtQã®=òŽ$ƒ³™XØ ŸÁ´L V3˜™3hÀ3{ìÉŒæÎ°Ó.kg¼ûo“Sñœ¬ÛÌK€‰¿_ÿÆ7øX0É™YäBzí,›Ž•5Í3ªjÆãg…öY›³©À¢AO“cf°ãä™QYÔJ[óBNT€°`4Ì‚š'äš¶s™¶¼O;•èì›KóWbJʼn¹È ÁlAÇôùëo¾q¼ù¦hß›¤‘{’¦}÷x÷w§ïn/»ìÓü¾jÆv”©¯ÑvL`^k.'of  šÙÒºÑ~y¥> £r63s›«OÁºÓý̬çãƒJ<¿™ôv¥¢×ŒÚ#Ža<·¼Èž|ò«Ç7½éMãW¾òåqÉ— ú½ƒp*§¿}r†-ÓKT¯ü•ë“@g¶ÿŸj« ò ›@:÷HãHÀ’í­Òó›±_*‚»Üü¬L.*EÃp‚㈖W¥¸thÖ°Ö§Hº;5߃Aý‚þ¹ý¶Ûø’Ôüãã¯ÿú¯¯·…ÝqD²1WäHL1ð¦LÇcì÷¾÷,öÁ£*øP~ìrc¼§»©a¨fb,Ü3¡:Üù–Pé·Ù\&d¡A5/â7«²™Yp"ÔøgýÞ# üm°ÆÀ¿7M|Ű6Ìs—Â!MåL ļœi‚¦‰» ™•@6Ó"ð”8¶çÚÔ&(äv“åÌ ô³TÌL÷B€äys9·J-hŠ*™³>,hÅLæì<ÕAG­±¦îÖˆ²Ñ7×_ýxËM·ŽwÞ}'e‘{ŽÈÚŸoMÎIÆãBš(lc¢ƒ¢^0bGè`/ä¹Ãç´4”BMV‰>œ)*b^Zþ© ‡Î)¼oFVW¬Œw­¬Ã¿yÛé¤×½öudÕ,°f¼˜µM;ÅqÓJÙw”f(Sx7²ä[Íï»ÿ~²S1j=÷,§œjÀ®½óÝÃÇÑl¦.Ä tññüÈTÑ÷ÈŠäY)&^9Y扌£E™ß´S&°~Çø‚ç¿`-ƒœv˜5¨¢Ï°и‡¯|õÞô¦ð~üÀ>°Žkß­q„E t`ØŸ|Ò//`¿ç=ïåçu¹ï¾ûµà¾Pçôö›]l:fÀœ i¨ÕL¦$LyLnL žy%ÙaAv-@ày4Ý4¸rHÔ9çœsXŸ²6)Ú”´PèŸwß}¯ïj–7Àá.tbéÜþ³ö^ÜÿÙïô+œã7tÌÐÖj¦´êB¡Q3J2Cs™¿sG·Ø+Å;ÏMPÔ`zó'€b^È« .)²#9Èä .s³Ü9û±»Åd›I–XÌ”6à½ñúÄ´o»‰@rϽww$à¾!iÙ—\ú©ñ¶Û¿ÄLLêÙ 9¤æ¥Àx®´è¹€ÁÌb†âQâ˜Q¦ìC“_æ7™(@a¡ç‹ö•è;g8 xߎ¿”Àf~fÅëÓO?=±Éà͘(¹ï ¥0lm!Æš38ßsÆ™”ä`>m اš±°ýò„ÃÇQÁ¶Ï$S-$i0" @[I ÞNP.¥»;ªi‘%$Æb‹•´Zèúq­ù\ ™ÇÑ;ßq³^Ë §¶Ðœ¶fÚXÄþø_Ë{xyŠˆùæ7¿ž@;jk€²ÜÕq„1Ô'§ã'/:6À>óÌ÷ðóÖÖ)ø‡:Ÿ¬®¾þw ¿õµo±,º#¿œ¡{ ýþ-S¬ŽÌè»Å·Ç¯ù˜fu`lò9ßZŒß}¬ë>Ö1ßí¶y ¿»+mýîã6&ɉ3šfr,rPcuÇ„qä'’ÃÊÈì¼ãK`Ó±ûèG8ð!p þ¶)|ªUw¥H ¼áZ¯xR†]å=ùNAïjW;µºÊï%¬œàS7~’‹ƎDžz³¹½ïóí”ð™˜%#_ærJBÚ©ø×úü¼´ö]’ÕÙ)[Wyqñëüæ†wÞû¡©º¥ý›ó–¡µß!fú`jÛu7ÞH ûδhÝ›¤‘{î#òKÉyÃxYzOß—îø’2༘ðoÞ¤‰N)o ZÉú!8r82†À” öÃÜ`A ÌQ 3È.EN×V çž#8²„ð:ùä׌÷' ׫Çõ usí, ¡SºR\óéo{kеCÿòsÏŽæÓaB§£cÕó8Z@²BÿÍù2)Xˆ)iÌg¶òåRÉgQÎÕ'Š/Wh*sžå0Ž…™›³J’E¹X#hÖ/8Üû}g+¦x31úÊÉ)Úµßö¶·¥¸å“ÖÑ 8ëÀ‡…ÿIÑî{yÑ šksm¼ënæš…ãaMemŸ÷†gDKQ‰Fó,¯”¶2fÖ‘g^ıc¡_Düκ—™5 Æá‹ËiÛà|šAû´Ã7îòÆ3þbî0M¿©8Ž˜3sò™ÛZÎ56ל;òg63ašéYʉ)2¦½D.LciccãIöÞ½gòóææþ)ø‡:°»kOßÁ}Ó¸xøÅçÆgpÏ8éÝã#Ò‡Ú+Ç“ÖǤLêŠï>iûœ7]ùðZ¿;^ù§Ï< °Ÿ1ž~Ë#¨×þ§“Ö¿ÿûËØ¥¶>Ž$¶±o¶@€žŽŽÙŒ’Â|¾ÏÙYiðìÛ7îÃ@‚äs|.É1ÃipÂqVõ;¿ó;ÛÑ §z˜ö§rÊëN!`B?Ù‚Ž\oÏžwk‡ºR,sß>ÜÏ"µ5À¾™Yž2³µ£§( _¦ïð=X&{ÎÏtHâól&pK`tãÍ·&¹âÒñê«®¯OÒÅõÉAxCbÉ7&íùƾ`ÌøoJÑ7]—¾Ozõ7à˜Tpì 7¥ð¾SÍm©Ü1ÞA†4ì{î&Û¾à}÷L°¹.-_|ñøå/…`=›K{…œ‘5ÞÙLZ,3R 2³ÓU,n¶È Rú?úNF1mÜÌJ±Ïr7ù_“û¹áyâ>¹Gw!6HGoê¿bŸ¢4j³Æ¿9ýoR‚Ésùl˜X“¤”“îwòv蟿#`{‹JWêÔ°ê™÷æ.Ò5挜اônþ>çsÍý¢Ü§Å‰LzÆcè(öÙÏ‚v–ã>èÅå>§»‹t¼=iÖk°>̹z¸¿e=~Í´×C^ˆ`¤ûûÿÛûº¹®+;ÿ! ðSûE²ß‚‰ ñäAšƲä±Q ` ž8žcyì‰$>–3™f“¢ŒXN,RÈ#‘›úh~´`Kª{Ïç½ÕMŠl²%Ž!G\Ùk­}«ª›_ŠØÍ`¢j PÕU÷ž{ιû¬³öÚûœ‹ÔŇzH„gx(œU»O“‘·®—×ÀIÔû º'ºâž­×ujíZ÷ ^ÂycØ?ùÉS·Ø?øÁáçË—ÿiG^øC™·,‰ünurÏÓ}z|eþ[€õŸ¸ó*6<>òðô÷»œù®>qÏŒé>|d;¿ž|ûŽOl)÷ΫØðü1wN~ñöîÕõÆ »*Ò^ñ@S©<ÿ:õajŠfdtM{í/ð +wN š%$)#™3ü½ƒ±Ï†-ãÁYgïÖÁ²wï¶ •/ÎxãšÜ°þœ€¬®É=Æ _£N«è<­s¶ VfYlºSF¯¥Þã^««7ÿ™£Ï|¡9Ÿ9yÒä‹3¸«Æ‚ñ¿éÐöÝÉS žÛ;ò™Uòê)ünÇÂûlß!Käص Ò§ùýn篼vjò‹^˜}öí¯â2 þÁUæÓ ØfÔ»z>3¾>´íÞaRFëý4 “oW庯ñ¹ãÉ¿þâlô¾Gÿ2¨Äìׄ+\ýªtC_ÉM‰,c™ —ÍUÇ^テ÷wìý²ÞíuÙ~÷òeþ®•­š0¡ò“i_Ù6ÊTô&|L'vŒö’q•ȉçâ# 2Öª¸ €“@¯€ž¢œ5ÍúZ`½wf{{çåçôëÞÚ7óÍ¿lé~ÿÒöSù÷kÑ–®ƒÑ}2¥dõÃÿµ®Ó+¤ ‚uîI RI7öùû Ì.Ã~ê©C·Ø?þƒl”yË€ml÷g÷r “Ý"™lcÂdÃÇÞÞrþ‘}³cö¯H6º’Ïóð¤½0ßõÈd¾ÔÆOÏŽÙ³ryëzc†Íà•>˜)¥ƒ*0ð\XºÍ°1g¥ö>†‘yÀŒé«_}`¨™®ïÝ{­hûl lçç4Ïm€>K¯Ò±Èþ¾à‹t´z¬Î R¦O‘AÛ`©½Ú°®üñuh…kÍWý S¸±•ÑùJ×õÙ#ÏL^=ùšW ÈØS0V<\=i }F²†}X#^=­àâé3öÝü©ÓÊÃh³,ûÿôªýŽòμ_{eeräçGÈ9Iz Œ‘r@'7»ºP×uïÖ{ ˆªß™©0d¥ë èu€yŽ}:š™~m“¢½‡}Î7£LA†¨ï*Ø-³6Bg=ãc|VÛ¤ž[ÓþÐkþÔ>5f¬½1έûdObÐ)ØÖ+ÿ˜)Š6Ÿd˜JZe‹øŸ9ÑÔ^Þ‡}öÊl§Nïëp¯Wì³Ô‡¿ï©{˜Œ°çÉÞ9°d|ôûûÜKxpLæ€}¯ø½÷~™R¶^xÄ< Ù㹩¡ÞÌ•‡8öýL˜ÞçyÛ VÏõª¼r|ÖýÕ¸cfT§û†ýÔ¡Ã9# úØcóó»ï^Þ‘þPæ­¶©ºÏÏiÅ÷ž αÜO~r  w>2ÇL¯„ɾ)@qåÚ,z©}oVêÜõîøä×dÃùðL㾩ÝåºÞ°á&Öé¦Cb+•䬓uÓ 0H«@œ@PçGªVÝ™qîÛ·Ï2@¾²eÙòöÌ€½WîÞ«XõÞ½[ö !Î3õ!ô€ ²NÎùSt‡×T¿ug˜|: ü^L§_“û-'oA‹nœ1b`‘IZ?ø~)/üà “•W^³Ì–Óa7Øô©“_íª±e0çS§Oú¾!JÙ¯’yŸ8cñ̰ìÓü ,ežò?|²_~õ B¾DÀÓbáH½ÐÖåÕêÇú>& ^«³íñt®kž‰¾ªž¥Ðõž­q– ¦ê÷aÛJ÷Ýšò¸qƒ™tïo͎ƾ*PùôU`6üÏ{"ž$d÷ʵtߨ VMÉdMr‘i;Vîçn {q\¾ü®y—¹ ëÁy&íÁƯ¬¿<ùo?þñä¿xaòc{p?ðÀ×¶ä“6ŽràIÀ‹¸¸qI{™0ÝPvÄI LºóÅ@ceaÑ>)Mj2‚üX} â$IkØOe{‰üäÖûÑGãçwàíÀ (s'{rùÄdÏÈñÞLï€ïá§OLž¸{`Ä36ü^»4'}<¿¥Ø•Ç>?ý힥7fLxЦM‡>qbÿLëž²áßMß7“>ŽÎK»T׬tSîÉr*]ÉŽÀFí¬*Á¿ï ˆ©TµÐÉ|Ì…;ë›è¼tüuKí51—r-=p^þ¸áëZÇû~6 0Hþûßý_ãsdf VÇPç¾’]Ô˜@†Vù?À ‚óäE¹É`c¶ÓXÙëÆœ_8þ“×N­Pg^X2$ Ëèà;˜±}ÒVý" kUã™A*9)V “§Ø'Ož–¬â)~g¬ü“+¶A”M/šÚH@.pŸ;å£]eÜÑ“`ý1!á;0èZù0àÞ£®:ÀŸ×t¯×Ô>‚$“u¥”Ýwßýs÷p/ó_yåÆ)Ø¿bå×Âáµ×™oÁޤ=¤¤33»ØS*¼_SûU¶Ø>î#ƒæÖöÒib¢GQðkeU\†÷ùØÓ¬i£1LP{¯as_²8ËaÛwƒ‹ƒÎÙS^ÎÛÊΟº¾µ”‡r¸Ì©­½4ÍÛQY“¤SÇEr£µ©TIô ¬?ø¾&£úÄE¹ËƒåèLJ¶@é¹ûÛß~dÀÆÒûl”¹#€m¹t÷Œ ?á™ólzñû÷lÕ”íï¥ûfòÉ­‚ñ<@~bÏ.kÌ1áûL®|°:੦lZõý× îN]¯¯aOé£Ñ ƒš®¦hí´z‹@H@óøÎ³Þ¶}@ž}îY¥Ì×a°p0—ûÜդˉ@Ôðîªá¾ã|ïÇ H=ñ£'ôÐZ²êŽªÁ…¬ÅW“Ù€/ž—²r0@µ¶•Y‹ÓËůEm/¥r`•­žz}rü¥c–/ý™ï?ZPñøñ_ZÆÇq›¬,¨h¯—ðù¥´ßìÇ yJûÿ>¿ÄÔ½_x™B­¬ âbêÚêÅc/Nš¦eÎyO@Vp¢NZPƒ ÀÀ© vhÜ,€Œz±Ù±/áîѼÂs%‹H&)Ó½–¿õ­o1(8Ü/÷ÿp¿r†™¦†Iq Šh”kØ‘Vïy° €z;"C60.3aºißi¶c(‘0`'0Ãýé=FðÃ9&ôY¯¶óÞÚ1¥_@eç垣NXR~-;EL†çxŠÞ9»f²òñýµŽG9k®Q_ÏŽpƘ„úÂI”}D›\cŸRö©ª#½—®z;ÆœŒÐf´Û«²ÉäVû¯ÿú?ûçwvä…?”¹3€½5·gÿʶ,}Ô ß[™cÃÏ3 8ybÏž÷LVß»QšÝ=“•÷¶fiì; úÝÉþ=[Ùð{«O̘ù«·©®×cØeÆ@m µ¦h¼kfp×êšVa¼É–4PhXt÷´ô©RG~þŒ6yšgÚ.ed•‡½j'ÌÌ› B Aªwà¦nâó&ƒT|ñ÷Mº››xßDàJÇ`O­^±t”:ŠƒÇ˜ƒƒ¥0ËBЂnO&ã@ÍT*0È!dqZÝÉgà·³š+ºqþ"‚ –ƒgë]°×ÆÅóp³÷ db6ìû|Þ~»h¯ó¶2í‚äð@à˜ýÉ•—UN1û ˜õ«¯MŽÙ¾Ùo¼õ¦§†iȬ—·gŒ_]’(k’>09á®ã†ç0û}¿ò|ea€-ý,17Ü70J€QNÕWéå‘€í‘ñV1ämvÄ}œ¹‡³äÊç´;ÝõìHeuœ€¨±û$…²)àž¬u¾Ò€¨É`Îvöb«\°R6+f­l"ðÆÕkëß­€=³W0fîïrÖcþT{IFn N€=ö§]ÏŽJ_Øw˜ Géþu>‘ô ”¯}kñž>î¼0yÃŽn•aß 1îâæŽ¼ð‡2w °'—ŽÍÒÝ,çù½ÉÅÉw¦LøiiÅ—W¦løŽo¿l‘Á;ž³íïÄ#wNó±×ß›¼{b–šw8댕ýwOÙðqsÞø›{®:ævÔõÚ€ F]dÐt1{gtIdz”7χ­te=›dM@QzÎõØGø‚-þxš ýo¿¶}y¯ò°ÁÚ~ù«—´Uëx``ÚÔò WUúƒM¹ `Ý·~õ§Ç`Ÿg~ÏåçgŨÀÔ<å­ØÕš¿&¹âÜùÞƒWe69öØž¾rõ1[Ý¢?oc]¯ ØÌ0Œñ 3º\໸ժANfààÇìŠqïA$wߊg_ð!¡¶×å‰òA_ûÚÃÆÎmda¯Š_ýòWÚ5­w7± ˜zOÉ+Œúk£Ä"Æf\†ÔC¸Ê\Ú\f˵ísá9.p5g%­U¥)‚QJ?c•áY…zgÇ×$Š˜ûØ3èÚ(ª‚f¨[!ëôó;×c=Û†“  ÒÑ[Íä§ÿã§“çŸ{~rÒŠD”Ir’›½hrʯó&3^¨gV¹õ¸>—ÞWß°Èûž¬"+.-Ô:Ü*ÛD†]ÄÌ\¥ú®opÁ™T|Є†}¨±Eèwm¥"$¨!Ø‹ûø¹Ï}nò·ûcݯµaE©4ã5¦£åûãä =ïÛ÷ÐäÓŸþ4óå?ó™ÏLþ¦•íÒßÐŽ$Qõlwç©l=c•ý[ îbùqô?އõ!íˆ+<ÇÛ$‘½[˜‹‹Î­ëúþ\Pí}u †Û«rQÓ¹]³#®+èÖ¸pæ©COÝ`cMümX€t'^øC™;Ø[33îúü]×d¹«Sö{ÇdÏ燻=“×Ë›Ï̸ã®ÉŸôÏûæXîïV¦ùÕwìùü4x¸ç±•Û[×k3l°ÌLV—­ä*ã¯bp¹Î‚rL`X”K0´AŸ1ð–YF†óÎÛ²_¬üû5íkƒöü«?°ÍNh¯ÅÔ3m–;[œÑçNyÈ>Ð;cjÅÙ êàb'Ðΰm²ÏÅpV^sŠ4WÓô1 u¬?À ÓuYÁ*꣙m"«­ÊÙ®¹ºÆhßçN ‚úöbÄd«Yi\ãÒs™ø[o[Xôôä¹gÿÞͬx‰iØöþªöKÇ_œ¼þúëܽ®T¥(‚QÑ@¯Y(.¤°6Xÿ@úÀ«¢m½9Ú}ëÛ1Ú>gZ­o3YvV²z–û[+$Ážßxó× è÷ 9ïHYÃs8ÿâ?ýŤ±¼ìaƒ%œs¶;ëìw\öŽÔDxRjäÊCÿ#{ÇÿÓÛÖojG´5ôgqIc¬ %³>poʘ÷mÆ‹62úú¡ìˆlØúèz6»×ªKÔC"ènx<ÓÏŽwÅŽà9å, €ý䓇¹!ÓG쿲ǞáC؉þPæNö4ÓbË¢–ÞΆ§¯{–&7ê™ççV,^;‡zž1Ï¥¾ù»ÛP×+“cûžÜoäfŸ­žýöÒʶ´>¬Güó ôʤPfBkÁ@°3kA,甪È52èªCOäCëÜ/{è~éÞ/iC9À@p·‘…ÀM¨,­ @TóàÊ÷bSU ®S¦Òsp ‹JÀË=&à [-’Lª•$‘!Ý-Ó=Eû͇+ބɫ¸Gë5)¨OìzY-e]`K'`í³¤‚ê:eÓŽ&?3°>úÜßO^]yEY"¯A YáŠÇ ¬½úkîZ‡Á µó$k`‚òlŠ^•(žBð¤4®ÎF‹@“ï&®±\s‚&(´o`f1íJ–^´”Ýä(,Ãÿ“/ýÉì~Yì+L?ûÙÏx¿o OŽ›WBâ–µ¡M“gìÑgxf'žëÈGÁÝ;ó°¾bÆç“sç&v„º)¸+«Ê®Àý¡VŽ~¯@Þë*û¹™ñÉ/ýú xì ®è‰øþâ7<Þ>°Óv„séÁÐÓ3sö­öw¿ûWØ;òÂÊÜQÀ6-xÿ]Ûnß6½wËjÃk/`¹JÀXylpÞq•6=¿2òÃ,ß¹º¾»µœ¹¬-œ)½§UU±2 9+E+;¨1ý¨!þËõÌc¥Ì ÆfgO“Ãv«Þ¶­'DM{»‘ÿéWÿ” nî½ïÞénsb½ Š%ÀÀõÍbœ•®¬ë=@3dQöÊbp°–;’é9øÀÞªƒAq6ç™%ð2´CU™\+ž]P,ÆXˆ ttÊ<ãÏ®?ëéÜ?æñ %/Ûòvæm{ ß) 0¾hCvÈúÛçÂè[¸õµè^@ žûצ‹,Ù€žC/9;h’Í<€]x¾KGuf'TÝˬ‰‚àÒiÏ ,2yôÑG'÷~yv߆gpœðœÃaÛýÔ§>Ž]ðP]<ÃOdÁb›û-=p˜¤öUžy戯Ú\ûÐv¤ W^eŸN}ÎE3Ôà%ÁãbßTµífv¤Í±n̘{_M‰:0Ëe|3FŽ}·Ïî¸Ñ› ÍWzÀn¾E†˜‰¡m—»/ü¡Ìì­©o׸'î¾ñòï«þ>xc–¦w0žÏ ¹jÁË®Öu»¿sXU9hØe˜áÇÀ>ãgßd¹²6¸ò c÷Y.éXZ`ïû;”)pjðp!J§Í°á:žÒŒt¼«Òü¾ò>/°M‘{A°Œx»1]ÞªA Á\5xs7͹åäÒ¡žcÕ°HC+ó²X%Õ›ìË]VÉ Ò{×ì°B[òŒáµJNéé¦KN©t» ¨cæÞŠ-ýìçÿsòê‰.ƒœdî5׳Mž°Ø =On3Á&2,01i·ÊT€Qç$¨IÞá=«žéÑ °H%àU6ú“}†~…žÊöH#pŽ;M}Q¹dìvïð‘Çíiá÷n“µøx0K¯üã?úãé–xž*3,î/Ž=úì³&“i[Q^÷ÿÂŽèQ9›®E÷^óíi»ª7Aš©rù¦vÄM–¬/o ÀÚb}z– |n"‰ £„;^î¬qܱ$‰a?5}°À­ö…yí`o]6~õ~ÊÝ?¸»Ÿ˜Ü|Á¾- ø®-{‹\¹áž&³üêݯë6ÀÞ³ °Sï Æc˜3ØH2cJÎä¤ÿVû®Ú“Hú$;•ÙÀàwY.vò †Üg—#²òmð_°•ˆ?üá¯bÚ`aø‡ÿfrTŠ™ ÒDÀMöÞILbø©K4ödׄž‡zó˜ 6ãNÙÎ¥–›:ûÝê‘ ìæ§Â²sÃLî’]³ÏvÍTø}G ³óí3ËÆùý”U¿NÚdoõãûÄhaú[É8/ÓÖö!yùåWM«>EÍúµS¯ÚÓMN™,§­8 &;}þ®Vf—Ä2놜Է,·ðºÛ„ïì³õMªj+k™ÀÐÑ[BÛÐ'ɹdÉ]Å®‰öyß Ÿ6S]gÆý8¿ñ6ÈÞkM¸×{´qüŸýÙ7èQ å“;ïÕü‘ì÷ ýÚã^všhR¯öt©÷¶öÒ°IwE ~ð3Èkl‘ÙBžÇ{lº¯žŠ>ÜÃaâÌ« “-õì°ŽŒ‡ؤúÜŠaòª¬¯ÎIV_”‡ûÏÉËÊ⤅þ»‰U_9yc–‡Éþðm_¯wüq|¯Å;;mGd㧨Z¹ðXÙ¶¾·Øù—ßqÀ>¿#/ü¡Ì`ï2` ’À«º¦ÉB&ûs“f}"ƒÊI«·Èz¡÷Õå‹BIe­ÓBœs6/Ù⌇ÚÇþCÛô¼__ó4¯1™$ØD&K,dRt%;gŽÉ ž W ´Ôû<šŸ­¶Š¥öI ƒ¸'‹3K³E>Y%ød׸+,+”Š3Ó^ƒ  ’|@e±ujŒV#ÊÆÄ-d›>ÆUÇì 3¯3}•|…e¦dÑ«¬¤€7U˜0Ú³&ĸ2½žâKíq¿R/°f~/&-ƒÚ^PvíT¿¢ƒ½3ôT̽m¸ÉŽçî:òÞDN6qüÔ‚¨ßûÞ÷&ßøÆ×%y@¼±—öߨc¢°Óà[Üø·~Åb•²#fƒà~ÁûÀÿ`êÙïM¯¾á=½‰aŸ™Þ5é/s­¿|•-óª …d“°‘–vLÄ÷÷M'€×©;mG½ÝJ]è?û `ÃþëÃÓÌo°wòoØ·°1€SâàI”@x;+ £Ï´¡ŒŠÙ—|3ÍŽ`SÄbš4Jhõgê]°ùÒæÅÉ%{+r¶ÇÜ¿yLø¸›Æ„‰Œ*eÉ®ó2r^Äœ¬sMuKòäÅåœìZ}G@T>nöàX¥Îé’² .dx½&1<=åŽîk³í|uX·wí•:‡zr²è;>Üá‚×…ózìYç¬2'1[)ê Fð8sÕ¦kʸ'\¾Ý ˆÐ·¼7>øáQ¯í< mÍÒú ‚8¶«#{í•þ‡I×%›§¾]§“™/îGV=‡}±"ò¼éî|a;ÕKï\â ½h+R7ìž^0Ý› ø”÷uI;lGrZ˜ÅD¥o“q;b–‘ë;XYËåÕ›“M[y‹÷w|[Xêêc1lä­¾X†ý®µõKïê\û¼ùŽVär ùÚxW숱¦c[={ž͸Àþó?ÿ“¯ý;úúæ7¿¹ì]gؽ3é, l´ôÊMîܸ¨÷ºnØMõbO“`Pì©“f× ;Œ Vf¾’oèŽU]ØõøFrŸ‰ •8«¢þH WrF! ìÈJéþ—â@Œ Åöù¾ t©]«í¸AAªÚI‚xd~@|u ºYNRîsÖÒ tI0ê–‰ýQÈ’¤OÓÍÍbǹ:V—w²k—äJQ®qæ^Zhv ˆ9¾˜œ’çg%sHë¤LRê4˜rñ‰©SàÑ™9‘S_jqð뫤…’$½€ýqßXð}c#ê¶ë¾“ Ë_»mGÕ%Þûœm+åCÛQöWãÚûæW¾eëš?8ןģ~-Àâ–¨ØÂ·ó‡ôJõö¯¦Þ]Ê®ÛöÃÆŒ>*`c—?xš!¾ïÄk(kñÞÝÖ°m°FV‚Ιé¦Çip+Jf(#3£‹I Á¾‹ø–Øg:­‚XeÊÔ3Y_§A‚¾HÊ”Á@Æ;À Og»¤Œô‘’†µ/‚YR¦MØ’ƒUÛÀűéîXÒ”õ¨žI@j/€0úœ \do]T½í˜.ÊKÊE¹çÀ’ø+jŸè«cGðJ>IT¶ŸÏ¤{L†]f}I nzTÆ«.¡Ue•g’ ;º=vtÞV♡°ÿŒ»Âȳ´3 x!ô*bC0"2 1÷’ŽJ±ó` ¡3ÀäÊAÄ„¤5v舘p‹X<ÆRIÒMR™L™1¹N™T™¦9®é,“.ZÕ¢|×9"xØ+úÀâ ÌîFƒUÑ N‚ÊËó PèÂ’ÁY‘V^0â<¸ýØ‘/0O”0ˆh3Ø.3’»½Q}O€•^ °f Ù”Õ#‰…1Y\Lýªrí+µ]õÇ}p¢ÜèY&ŠHJL{®¨Õ—QuÄf«g_x—zvÒ2÷(Œ÷eaG·ÍŽ÷üä¡`,ŒŒ³·3 ×1™5’5è™7êÛ‘& @.©X£ŸËãÅ#Ýí2eLwŠuªÑuÎæð’K+w·Nƒ…’”A÷>&±¦ÄVÇÅL¸’9¹›¬´82Î"&™º¡Ï–pù€à˜¤mF€U툔"AeXïNà« z%s¢L­]ì¶tÑó«Õ–B¶[=—<ó;ÉQL²ª¯”þ–y¼\réÚÌ)OJýKS)£zz \ýYùÒÁcr÷œ€œåÂ`Åæ¨™3.ÐMË)¸O`z”i4ÙÔifN%¨üHPZØÑí³#lß{hùÉ`,%0€èleîU9»WÐñ`…ft1Åf`p!ºŽ=ÓŽÉ(+v,Œƒ CñA˜ÉL¢íGA ÷¿¥9CÔ9ÑY!YØW’K/Öé⇘ˆ*Ï‹ÉV5U—Po±W|&l/g=Ò#ÉÈ’\fÊ ²•·,&¬ëÉðe ’PŸ¼ï’)Ú6ZQo«ÞÑ^öÕpý˜ØŸ©^íEYdY.~°ºSKå²rkOÖ¢› ·ôWàý$Ã&ã žù{IA÷: PèÞãzDªQ®"8kB˜Tô êZÔNÞ—…Ý6;ÂÞš¼ÿ¿€ýñKëÃÀ§®ÉÈ,`´eX˜å.&wGC–Qz ƒƒ®F °r»#A#…ìlƒSî%ÁƒT:#ÏÈÀ ƒk¹%ÕlÑIÄ °IÉÓ¹ð[H,7p0JF½2]æ ·“A-{2PR{‹MŒð=ØbMÕ™¬\î4uKÁT¬ P='¸x»Ž¯îÖÓ%ç¢1Dê´QA}ÔÁ”ÇGRr– pžG¬îuqÆ ÍÒBŒª’:¨ƒG\ÖA½¨Ÿ²&7ûT)v”PBå$c0°hw®Êë£_"I€› ¦‘ý°°£ÛgGx€ÁáƒO2•pñ÷qìX=Ø%ã ƒ+VÄH.ULFL'H8Ìhj$¨@“#J|Eì ƒ Æ5Xéö «(m4¦ r Ý5áXg¡ *E±3”“¸bQY!麕¿¹.i¯À “?Á¯33Ôk…_ÔÀ ƒª‹¨¬€ÝÕÐ fÈÅ-Ásb›ÀÄPﲃ•Ünf>8¨пì…´Yïöwæ`&èÄ i (ƒ`ö=ˆ»ÕÙ¯ ~eà݃<à¾à>EIˆÊQg¶DR?±Ÿy¯T>€mD»ÌÒÁ“lƒRJ¥«ŠéÂŽn³\÷£¶Uï[í[“ßÿþ÷ $ûXiØd2¤d9»;^”J…°_¦îgVzS Kœiø•ÌKÆŠã dhbErM3]ÄJ Qà&pEž^S# Î:ÃYw×6yjH û–¬Æ€Ž ”ýPl/®«¢gX§@´’щABr26X_€uã À%i¶`oÅS¼²g ÜîDPV@àÀC›É4©…úùS«ú1•/;cÐP™ b×ÒŸy ƒk3Þ§ ó"AI©¸gì7Û00·(y}§{çîpý–÷§H©Ç† P޾@ðŒ–…Ý;“p~ó›×'GŽü|òO—//ìãØ ‘,'û V6]jæ«ÊÈa€ÙWÁ°XØ 3ÈÍc”ÜuÐBÍM¬ŒpÿáÎ&¹ÙÔÉZ ž¬(;NjͰ[韹d1KnØ”Z~¶ò7h¿Á]×Læ×™+êžrA«ƒšX0 ׂî V4è¥+X§k¸¦ˆ> kŒö×v“zÒ v9€ƒ<¤ki]•ŽŠsB dÅh/ꜹJ[èÑ碗VÚ45ïâ™bÄ+ô-Xir~ùÃùdˆ:RÌTJ Òm«k¿)¶ÒN“d˜Ôn€Á(ÌTmE2µÖ…Ý.;ë¿`[<µÅ~iϽüÛË ¦ýñ‘DäªG²¢ìZhÖ`ÏmËÁÒl`˜m 1·ìítA¿k“²` P­ 0¶`ïp[¸¾ôi­¼­{òE¤áµ¬ l½Ê¬’Œìø.²0ÝeÖß;“‰îjƒ%âA¿a …$—;„è,Ю‘åž’Åé—mt=Á+ea°Í­\ÿ6HÇ lGdŸ´­‚eç¶¶¹æ¹8/0Ø&ý:(Ë*ÎíØý‚>#h¶d`ƒlþˆ(l«u6°­§’á:…m·:µÅÝï– †ìR @ l•nº˜á´mòþ)…e—ab@[Ù1pÓ¢þ ;º­v„£xàïÑ£ÏLžµ}ÆGö ŒwíAÖï_yòÁ,^ÿ¾Ø4ÒLÝ ,§mÝȳ³- hu0R²µ¨U{6hh°IŒE†„c6gHÊÿeP+ Tè΂YÁEnåÒæàúj ®!Rã €Ù9mTÀ º$À)µª{‚EÎLb+ýlÍÝæ6K’ $gcî“QE¹¾Ôlsò µ[n+Ãï«@F 7Pg¡äìì­pRiÉœÛ,}ÿkaHËÉ€eáz­kÉ ;úbGÈ(Y·‡&à©/xîÅKxac5{aÉ86躴ÁïðÂÿ››—&—ð~isz,7ðºˆc6ù?Ÿ†nem¢¼‹:î"¸{Içâ»KÚÀMÿû»]럤¾a×Úàû†åoLËÝà9ømÀ]¼8-›e ¼M;峌¡Þú׎cý6ýÚ^–ýom¹´¡ï6‡¶à· }F›TÎEÕÇzÿ\êqQ×Ùàg½Ï÷-ûÅÏ»´k^d™ÃSä7/ ¿á|ïÛ‹Þ_vìæ†÷×î“×iZ]ëÒPû×—†\Ûãàm8ÛÜÐèÅŽ¢t5² ¸±QÑxºgÒÙÄq|ãœÆI®dÄ÷péŠX¢õÜ] ¸£t5[5ʧ;hàydjÌ6Z×k‹À„ZkÛrÀµSWØ]î¤ßÁV€ãJ8C IìÎÓÔp|T^4Ù¹´Sf„–ÌOr†Ø™µ“@“•Š—È­OC# Ò~'Ëcû´Œ;ÚïÅ~Ûm¤[ßn3Ñ>ÉÒJ£k×”PÈêö-ÞÓÀÐBôkHÍZ9{þ6ÓæZžß4<Ã}²ßÜÓ ®;Á< x ïY ¦,xaG ;ZØÑnÚ‘K"­f÷6rÛ¢ÜQ°1…–FÑØï¡ÉdÒ+[þÖ¤èî{fÓWŠ7ÂY5NܬÇã÷FÙžK«òì`:­»éÎ"Û&PÏCÙè8¾7JûXbhžOý¯±2­=lSë, Ç€1N¥€VAº¶á i“˜MäMJ^7~;¦a™bNM‹—÷¹áµØ_Mò´6¿q±uæ'Ö[¹æ`¯±A9‰}Âö&ö”ÇÛp ¢íÀdsë‹="Û‚zµV~ãì¬ ÒjÙgÖccZ_ ίK°°ßg†¡‘NÚä†e£¨/ƒÙZ›!ÁðžÂè­~ü. ƒ~aG ;ZØÑnÚ‘…òÔâÐÑÁ EºÝë–¡Û† нõï¢f á7Ÿé[ºg2¨¦Ñ¬ÛÒø¤P;³v‰ Œì:#´¡ÑçÆg·hǫǨÅy­t¬6ѨЎA;b›[e#àú n:oÔÒUL£àå6vŸÅ©g ³e˜Ý”QbÇ·q¤Ü*°A_áºÅq¤üé ÃÁ9iÔÒ kíà n¸ÔëPg x´§‘fI7‹õ d=¬ÔE­¾#é‚Ì'æ"™ÆëÚˆÀ¬#Üôú3áºî¶SsŒlO…©k¼°£…-ìhw툀|©1Q†ÎØ€‘çÉJ´¹K4ˆÆg¡݉F•ˆº8u*‚3’Å †!Â:¢^Ö¤‘ëQ­xËY›;R§¥è‹X~`GafjÜxÈ’n:gÅ¦Ñ H#ŒÖQº1£(Mˆecæmdt§ì5 Ä  3$ºv­ÑÌ`üû†ýÀú7n¬öûÆÂâåx°³9®1jÅ¢ø¢¡ƒmŒäö¡¿0àŸåÓPFºÚH.˜KëƒÌa„ ëuO‚“†eÖÐÁFF#Tr%ƒƒ µ·‘‚T¸'#Mrƒ¤‘iéuLÒ+qÞˆmMv´°£…í®MƒŽœIFj* #b„³Õ ÍÔ ˆè»”TYFu[ŸqsÚÈŠc¶Gåyƒñ"åt-Î*Ò³¤=ÑX‚Œˆe¢ò­GãVí¡QŒÐRŸ’[É^´ðD†9CÝ|Ìè¥ÅÍÀqŒ¨cP͘9ƒÏšMfô†3ðÈYNˆ#vÙƒëcª_C£¥«tƒP¿ØÈelæ‚E0XjW×Û$™3›f:[Û÷0¤TŸfäÚ&8ë¦A…ß©Ÿ¢³ŠFîoòˆ<ú{$v6 Xj†¸n£ã4ØY¼mf|ÜSÖ{œ .¢ôG²…-ìhaG»jGŸXü-þ‹¿Åß?Ÿ¿ÿªÀ2/HÔ”IEND®B`‚images/media-button-music.gif000066600000000316152330733730012220 0ustar00GIF89a ôÌÌÌêêê———¯¯¯±±±ûûûôôô×××yyy´´´ƒƒƒÊÊʧ§§³³³ÒÒÒYYY¿¿¿ªªª‰‰‰ùùùáááìììËËËæææ†††ÏÏÏ€€€ÿÿÿ™™™•••!ù, @Kà'~v‰Ômá Š(h†–ß–m›Ò5ÜÆT,9!N´™\8—Ûç€ 4Bž–§,ÁÑæ€¡ˆ•ŸÖ‹1«yDNÎ"Cµb—Ÿ;images/wpspin_light.gif000066600000004004152330733730011217 0ustar00GIF89aõ¥œœÞÞÞïïï„{{­­­”””÷÷÷æææ¥¥¥½½½ÖÖÖÎÎεµµÿÿÿ„„„ÅÅÅœ”””ŒŒÎÅÎÿ÷÷µ­­æÞÞœœœÖÎνµµ{{{ÎÅÅ¥¥œ­¥¥{ssŒ„„sssŒŒŒµ­µÅ½½ÞÞÖïïæ÷ïœ½µ½¥­¥­¥­­­¥ÖÞÖ¥¥­ÅÅÎ!ÿ NETSCAPE2.0!ù ,@·Àp£€:@3Üd’GæÒ¼|Å3£P.‡ÃR1¦1‘`0‘È"pè   M  ˆtJCpMB™} ©C·}v]ˆfˆZTC •‹C Rlm ×stxnprƒªEH’LCA!ù,¯@‰P¢€:@3l2ˆG  ! MEôP¬¦‡ƒ¢Q……b  ,É#óX,4Ã"EQ v ~  M ‘M˜œ Ÿ¡£¥!¨ ”C š Ov · s¼½¦{,bF½×qZÔÖ×eNÙÖ XMBEHKMA!ù ,p@€P˜P(œ¡2±X…ôx4ŸÐÃ0Q}ÂÃ!0°$˜Œ2| ΠµP P0îò¹àpgä%tr „J‰ (J ˜ ™_¤¤Er ­kA!ù,š@ …±0‹"C*"ŽãC²X(4 ˆJ$àªB(2 o"2€ba0BN•3€v BB Œ…‰Œ…’‰„… ŸU¦ ¶¶o ÈOE ÐZB   MA!ù,pÀˆ0!$ ËpI`$Ž–héaXŸÇb+쾌HF¨U,ÆgIV(8ÂÁ*9¢S ‚}~‚J} ‚‰qtB ¤¦ˆ £¥l¤ lA!ù,v@€°A0¡R˜AŒcãY"œÐSBôxD„W§'“‰$º²Åè,3‰ÅB¸^.å"Km*  }~s} v % J §%¬K§ª« } ª £BA!ù ,c`&f‘EH1®‚œ C­™Õ¾Dœ$£Ý®Œ/©Ñ2ŒÇPHLj³h,Ž¢‡äah4 ÇÅâhLXqc0…áÈ´+– ô‹Ðƒ…*#‚„WGƒŒ#!!ù,“ÀÉ„ðAK¡C*"™‚eŠ$ À‘œZª†0PG&ã!„™D£ñøp Næm ÌBB !‰‚† ŠŒ‚ ‰‚™  x" ¦xÁ Å O Âà YB¬ªÃ{BA!ù,sÀ0SX,pi<…ã1³DÔ‚@¨„ÁõÀ좆ÁPq0;¡ X˜BOˆ‘øñK ‚~Tx ‚ € Nx NK¡"K¦ ¡L §© €¨³LA!ù,e :LÐ(bšB€Ñ¼ «Z­15Kaíé!„C´³ D*e<’´e±9X3R€X³ÚíÂ*[2B ,)gÈ@±Î2‘„ž!‚ „zK „|KX ‚ Q"!!ù ,r@ˆP¨0Çp †¢³$ %cÈ@ƒ €8"Â!Š¥°`²€oùÐÂøõB| €‡qzgk zB ’B •T £ ©C "¥¦¨Jr ¦–KA!ù,‘@‰„0 ,ÃA*"Å)0–ˆ9x§U«…Åá C†p^88‹Ç!1@#BB{ Q †  ŒŽ’œ y…†{œy syY± ­²‰ ÁmO ¿ ÀÃZB MA;images/wordpress-logo-white.svg000066600000003147152330733730012655 0ustar00images/about-header-credits.webp000066600000120000152330733730012666 0ustar00RIFFøŸWEBPVP8X ÏWALPH¨ÅmÛ8òþkçjê3"&@s3äÀÎp,pÁ®7ÿcZ´m›v¥vnX¹á³mÛ6ʶmÛ¶mëÙ¶m±‹Q®àœ}ò3[‹ˆ €ɶ¬ˆÑêÐ !(ÂwÉrè~°áþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçþçÿ ìsÖµÙ-×r ”\Ø­¹H¹Ö‹ù{Ç]—”³ž/AÊÅÏàß®Év´\§Ãh¹ósZî:oæ[ÔmZ®öÌi¹®‡i¹a™h¹[ÊrÞ·(ßnK˜Ž–«»-×;-7¾-×<-7dR.öK*¶×ZíDÊ…ÞT€”«3ŠoµvÛÐr‘rÖ#¹H¹È¨¤™ÖtZ®û1´Üå¹h¹¨Ì…–0-×t;ZnâI´Ü%€”;Þ§ò·Ùé1-×û0Zî¶b¤\è‹>¤\üTÕ*ku-7´)g=PŒ” }—*d »Ðr]3Ðrç åBž¤ê·XÜL´\›Ch¹!iH9놤\ìרe…5Z–kw -w^6RÎûN)Wç7쵿î@Ë•Œ–{ûm/ïûh¹úóÑrƒN¢å®ÏGÊY/‘rñS±íèê´ -w^ ZîÞ¤œõ!öÞ[ÍV¡åú$¢å®ÊGÊY‘rµ—á„¥Õb/ZnÐ)´Üý~¤œ÷—R®Îœ³±ÚŸ@Ë]çCÊ…¼@Êygà°yÕþZn`R.ôqR.òcœ¸¬jmEËõ>†–»& )ò<ŽU5A˵ޅ–›˜‰–»gï©Ø/Ñr–¡åzœ@Ë]–ƒ”ó¼‰ –TÜ$´\›=h¹óRÑr#åb>ÀªÉ"´\×$´Ü¥h¹'‹‘rñ30Ízj¾-×')g]‡”³>ÅHéÖb´\‹]h¹‘™h¹‡|H¹Ð1Ødª±-×mZîºB¤œçé2¤\È×o,µÜ‰–‘”³n-BÊY/`ÆTo Z®åQ´Üà´Ü£¤\Ôo˜t!ÕÙ‚–ëp-w•)öœ)ç†y·QÛƒh¹ÁYH¹ðýH¹¨Ï1ô,ª³-7ôZîö\¤\Ä«˜|Õš†–ëx-wU.ZîŒ?†â'¡åšïFÀD4íÐç¢gßùrÖ‡çÖs}g%"^b'<¶h¢/È¿¯z¢Ÿåâ¬;ó/u·Rž®‹rk‘_â~ÝNPΉw4peu¶ ^šÝžOùç}ÚÄ}õ?^ñÔðØ”£i¿|ì¢û?N—<ç²®ËE¬Dv»ùãƒyTêã7¸ª·(•è‹_œç£*nëåšêÍÇU®í"úßóë)Uwá`˵:Œ>‰ºàí…¿ðæ’Rª|Ò—#ÏØ<ĉÕåõ%Øiæ§c½nÆzâ5mR÷¶mAì7ñ›ë¸•¸/ø<—rñ, `Ûé¿ÜÒ+Ì}4Ú2iñj"vxR—Ñó¢dسŸ|òÉAœ08·‹›¸'ˆ"‰ûu*Îúûãw]9j`„ ˆz3ˆ±†=ôû’ù³fLŸ´§N{§«éÕ^ƒ[]¯5õúªŒpÛÍõM®ÇˆÕì’·çay“&xLíš|ÔGXÓwþ”ˆžx«§‰yŸÁÍ®ÐÚ_òÔüã>Œ5¸å¡¦UûwÄæ[ÓÕ²3Ïû¸ôò6Ý×À¶êOFrA`ù=Ím©ãnTP8çúxÛ¹0åõ÷õ¯ôÚÉã¸ù  §^k±ß£Á€ô9ãÃm Åztóù(Oz-ìy¡yUº«=­×Ô«"žqÿMøÝpFh¼]Mš^ɺïG›o ­D7 Ï€íÏ7®$!/”¡Ñ °âž6• a2Õ……”ι&º‚ZïG«YSÆ{*à‚ôþjo«|¬‡KÐl\ÿz—rˆû‘jÅXùû–[ÿ‘ÇoP:¯ý}0ýEoÖþ§F+¨vŒH<ÿ¼ b¬k³‘q÷ï¦:2]ª)ùÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøÿøVP8 *˜ð*ÐX>1ŠC¢!¡XtÐ ³·|ãh½ŒÙ4áÇ,1Ðìÿðð œ-Yðè‡ñˆ?¢üý3þ4ž›?ÿý*d>e??*¾€úO‰·„¾6rŠì¬×ònúQécüGoéOù?¶¯ªŸˆü¼Â7þÓû1ï}ékýŸ¨øM?W/C?;oþŸ¶ÿþ^?ÄÿÞýâö’ÿíìÿ÷Û'øA?ŸÿyþÇø[úéñãì=jþÉú¿þÿÝ{xÿ«‡?œð?üùo{œÿ«¾áÿßýèöÆnº@ÞýÿhÿUÿ§Ø ÷OÓ¾ù*~¤õ•úíóÝü?þoÞO€¿ìÿîp½¼¿ÿÿùøAûÙÿÿÿ·Ä?îy6{'\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<¦ ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4P`wž vÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÍU ç¼[¹Œ`âIÝZèúá@´/â˽J|=àâ§jC.NÿÄuýt\>¢Žø ÞÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ©CÿÝŒ*;|p·ùÙ˜µ¾Ø 9 HV}† íSi„MкžÛÖ¥§ ýÊ\^¯À1%/®Ç+úçO¯íPÊ ‡‡.r§_‡­¢5Øj[¬½’( ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: ò4iލ<cª#F˜êƒÈѦ: Ê¥âœD2rÀYÃR廹ô¬ÅyEŸvoqàeAähÓPy4ÇT¨VÐ+¼\ÙBP)vî‰Ê?ï3Û—P¯9”¼ƒ@;kÔ<øâhoº£%‰}éß‹ÓÈ›91,Á òlÔ«(y¬Í LƒÈSA2ÞM‘º•e5™¤ y h#F[ɲ7R¬¡æ³42!MhËy6FêU”<Öf&Aä) o&ÈÝJ²‡šÌÒÈ<…4£-äÙ©VPóY}¨Ä¿ü¯Ê’O2°4d ƒ‹×‰rw¨ÊÍ6fñ‡@OräF ÷îæ Ûî_Ü_S_2:Á|Îè¶ 0Ô·Y{$Pö‘˜6Q«HÛ{ÓmR(Ð?Œ5Gü6ѱzÒ’È¢zšHBŸq*S$\ùE†ÏZ5"TVGJHýÊ̬}pÉ-äÙ©VPóYš@™¦‚4e¼›#u*Êk3H òÐFŒ·“dn¥YCÍfidBšÑ–òlÔ«(y¬Í LƒÈSA2ÞM‘º•e5™¤ y h#F[ɲ7R¬¡æ³²58öæõ­Ë‡"< úºx’7œpÖK‚00p½|í°ÿ»ù_±ÌÅ[’¨íΧó„äáÑçUÌìÔúè1[ì!ª_H/ö¢QÇÎ{¯kä6› ¥Ñ¹OÄDËNJ÷׺VJRM`,"ÌTB” jš5'”ð××_Û,µî«½½?DµL¸ÆÏ}!á/g™ ´\uH¹žwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åoäl6yÖžš΢¢‘¥{fþ¼‰ni}åñŒÝhsÓíëÊËi8-èîËclÓYç"5¾Äi‰'ËE«\P¤Ä%Ç«2ë\*^…møÝaW«?Ü÷÷e+0ïšLŽwU韇KÇ×Ӫŀ*^õI§dWJοŽoHÅàö½o@f}âêB&Ê7 mpu9ñ²”° êεATÍŒ$y±:ˆÏ‚f,Çc…f‚4e¼›#u*Êk3H òÐFŒ·“dn¥YCÍfidBšÑ–òlÔ«(y¬Í LƒÈSA2ÞM‘º•e5™¤ y h#F[ɲ7R¬¡æ³42!MhËy6FêU}­ý:I^¯ÈeÞßÏ#æ}ÖªÕô|^ÊEÿÊÔ¿Lm© Ρ;63%¿ËPòÆž›o³³* ~ÅÏ—ðxŽSŽïˆdÍçß@K•@©ˆËÔèýõPK> Ö&L8-½ ‡{ÞOÄ©ç¬ÑEz:Èó¼j6Ï’È2jâ°1çOyýJÌXép£)•߸z§æß±¡émBÊŸQõ8М¾™åü‚¹ƒ¹‰ôþʘ÷øËy6FêU”<Öf&Aä) o&ÈÝJ²‡šÌÒÈ<…4£-äÙ©VPóYš@™¦‚4e¼›#u*Êk3H òÐFŒ·“dn¥YCÍfidBšÑ–òlÔ«(y˜¬˜Àd9¼ÿ3‘{· ç¨9aPQâõµ95à5c»c¨% €unÅ:c:ÒVÕ.ê›@-QßÛÜ 39ì#&ô|CJòŠqì@ŽÊßfs¸2‡}_ëíI°NÉXɤiqq•«(ã/S|Ï,^yâúíS÷#<ÑvzŠñtÔs–Æ fMYô4RË™åΎʳf¿WæÆÌ¥füä齯͸Õ)Ý?Âehf:˜m^úÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß[&ñ8C扞¡fökß$t‡Ÿ°yš¹svø39"œØç@*¢Dà‡S'ñ‘¼o·4ÈÔñéJžPîxãV8_¹—V:Ãô;þ"28†IŽ«+ÉkOáŽë6r‡²šºÉÇ*7±,Yv<85ԓײ¡Öö‰ª–ñò§˜€µRQ¢ª½·¢lDŒ[ªο}KY.Žy¯C¶nVR=­üÔ¦ˆ´ÞWI÷ñ³Éíô6 Óp¶Î—&õžEÿ}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yå(cS±ÌkÿˆO ß}LGùÓ1>õ‚ D#6zÜcö‘!=ó„„/èKó”¼:çþÉÓŒ7MdBÔœ™ÄÙ*ñD5\c'zÜ9ƒ ˜gñ4µEȵ½E“~ê¨ixÓ’ ‡xÕâøõyEÐ+*PÊlÖìivD2\ß»Œ‡«Å²…VÀÄ4F@mÿ=>÷Ú%cÑðÀj ÍÙ­¹ÎD}xYFœ²ÍMØñK3ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['Vn¾Á*+WÜ ™Ì S|ÈgÖýú´¸à5£Vx›Mjg–6íýú ÚUièNNQ{tg~¿É«±`FrÞpGäD6“6_ çϺü¢²O-\äµx¸µž>òPˆ½iÞ¼úf ºÅn*-i?šyúô"˜heüDMzð¥ëQ]‘¥Q;äÒ€W½ï–ô-%È(®Òþýݶ²Z?Ú u‰bj±â²‡ì½6C&¯Ã}ñ>·„a¯ ¥³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\®E‘&±ÌÍvq !V{å.xÃh&”v¥>üýð-M2 )³‚´(µ)vÙ‡¹ò\m€ÍOfQÿî~€y¹¸0žO,È­”U]rdfá1R¿G´ÿN…s‰Ö,h†ŒÀôÇ¡'V¢´>Ü*Ö ™½Ä*uƒÃ1.*œÞ½{séØƒ £ÜrJg,§ä2¥¡)‰¢Åˆ`A%›/õ@¥«µúm,cœ©hß /dôGß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë•Áìv{PŸùµ×p?†ºÅÔ*°ŒàlŸõ›¥qFã‹]ñPæ».=¥ë¼/§˜ÆhŠÚ,K-Ü©pJ¬ªáFCRÀˆz-_o11{î¼è{m¼Sƒk)ôÝóiØ— -Óaežß/Õ¼ôöšb¯LÖ,^7ôÏJ…O¢˜Á É…¼ Áù¿ø°RÛxžMkL.nˆ'–¬XÁ~Yoã5ök ¹‚Bˆç»JòÊVý•4»Ü`Ý |“®Ù鄚¿˜— S%žwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:â…8í¦—¿f¤%ÏÁÝ· f°Ú**k+fÕÉrVLXε'…ˆÿ_û4T8„FYÌô_ÀÚ»ÀÎ Å@›,ú­µõ’ kÆ„% ÀÚt®j*;‡`jÄtÈ9U3 u8¢ãç`™\Χû•:j•ä¦zhW”'½h.Ê[xŸè›‡ÈNXEDvú5)¶\Qá©Úg@‘ƒàôÄ “++EœPOM‹‚{¬ß#f;”šø²4cáµ{ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}l›Ãßl„¿ú[§¬óñ´¤ÚdQ¾_þ )#ç€åhÄ^Œ•·Ö4B©i¯ï(púÄoüõò‘c俆̯Dú'ÕœÌtÁÑA´û?iÉÉ7 s ŠssƒßÍ)a#™<ñ·©ÉÖI¼aüë–d²†LàQ¸–X~뿨ºü¼Ç]=÷Ί²mƒOÉÆ"ø5df’"µG7÷‘d6H«+b¶×ü@¹óOã‡èr~¨¢Û½Àý"B²è¤oÿÉVÑ~ëÀ@o¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,òˆµ=–œ~·l:àvã¼ÖîS¤|¶ÕS!-j<ÐÛ [&˜tåÏcŸ·+éï2ü$ˆƒø÷˜¨tŠ¡ª­>À½Ji¦yCân¥rwöùÏÿÖsq~ðuÔHm4²ƒxZßèE«u•WËŽu´» +zMÇSB$4pž)K¼æÅøJº´lŒhÖ>!ÊE‚“`4@틉tPd_õ<áõ0 ÿUÀR–íÛÐÌ7´0‹x÷ño+ä§û‘j<¨Ä0m^úÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç}lrÏ;ëdë–yß['VrT8­m¡Q=M`ÙžÜøaßÒU㥨à¿é9CȰçÀJà¿ ÿÞ{IÚÆ‚^‡ái¥×ñBF¦\Ûl0 ýà*fð®*Ù}ÅÈd´ZR‡ÜøÚ9‚ýµ`<¨šýÉ«ç7«í=* ‘~’K¡¾µé‘–Fãátôó‘ÙÄØ L³mãÆ×ÑFË[ b/$)„žwÕANÕ¤Oòÿ!Ñô8ÞŠ¥\{ ÿÚ¿vî±¢iè…fN 6¯}lrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“xd n2þ˜”zÁ¯6' ÂÁ(si†¤§µ¯õƒx=úÙæ¥åôæO"æ3´Iy †s0pá AËD7¬7R á»^ߪ kXHse%Ý>;%èÌR¢Úª,­ënÄÄ„:>Ú"Û]„Ù}ÿü6•èYkÄY鉙ö`77Ã[¹bô¡f|'.šÇ,fûM†ôù<–JÉ9æªcºïs¬ÆÁÔãfŒN‘®shsÙ–©ª¨/.à%ªõèP ìrÏ;ëdë–yß['\³ÎúÙ:åžwÖÉ×,ó¾¶N¹gõ²uË<ï­“®Yç{$s¯®ÀîÑá•,pWÁK@OœÑlû±¨’D$7’bÑ<&%ÖA¡ƒ!œ…HÚ±]Cý4çPÓ”›RßÏF¼tuA™£Ë™.W³?Nš:ÅqÕ4[ÄÎl«@KÑlTµ²‘kGüOUë±oa}*.ó±f“?69{;U\Ìhìì>3­O#µµ!àá@º¼î¤¢ñ‰ë¯Ø{ܹ)ÝÚ>}‰µ>ÅAÔþýË(÷Òaïß;_-4úŒe€?n¦ßtm“’®)v…[‹ŽXÆuÖ3Þq À~KŒKLŒ¦šŽ6­|X½lPaZ­^䪀hÊH½àðÚ÷Ùž¬·'DŒ‚0a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„°a,KÁ„OjÿC†E¨ü~È––Ä™•Ÿðé_Á¤¹B9 ¥jõ!d¾ÒŸ«VEÃYäÆn%«Ò\‚[{AzÅ"É8,M|yô|à?ú+9µR0Œz´v6ÖfS±=íÊYìÑJ%Ì”'É÷ÉSòè„óÖ }ð©ùtByë¾øTüº!<õ‚_|*~]žzÁ/¾?.ˆO=`—ß Ÿ—D'ž°Kï…OË¢ÏX%÷§åÑ ç¬ûáSÜlBƒQÊÿ½³9¹1ڢ竣ëKµhË‹+ÝR•ÃÇ·8º²C#S7ÙbwŒIŽ`ÁÍŸèRí²X_Ž” “úÝ&l†ëóDZÕ•¨ .´«¸JÕnWò¶" A7¾7ÈŽþÅ"Ÿj@ß›|–"<…» hûì÷– l‰¿ƒ¨‘Ö€ãv„“Kœwû$ˆþ»=ü ºHk~Ê y¿ë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖF¿O¬~ŸYý>²5ú}dkôúÈ×éõ‘¯Óë#_§ÖDÅ D@SXM2ìô×'™Óx =æ¦Z°Snëñ®»ðä—K…,¦1¦c‹“åìQÏ…ŽßáK—“²®t`ÜfÙµL×ö0ðÀAn~O5© G,bÐV \Øðß®ɀ⹘N41™ödÔ"aÀnDs´¿Zþæ§qXaX§$—Ãwˬs5^÷ä‚ëœÙÞ¶`<ëïÜêz Zàû4ïo¿+Jãv8ûy~-%Ðà fOÎËsà±"öò»?1þÉjgƒäý7”ÉŸtý…sÕÇ(Xe%xþ]û çª$%ŽP°ÊJñü»öÏTHK¡a”•ãùwì+ž¨–9BÃ)+ÇòïØW=Q!,r…†RWåß°®z¢BXå ¤¯Ë¿a\õD„±ÊI^?—~Â¹ê‰ c”,2’¼.ý…sÕÇ(Xe%xþ]û çª$%ŽP°ÊJñü»öÏTHK¡a”•ãùwì+ž¨–9BÃ)+ÇòïØW=Q!,r…†RWåß°®z¢BXå ¤¯3õ•çú1¿ñÑ“"©^V»óWÿfcˆ=[?áé‚ñSÄgoßÈêphaF°bÿÇýâ uýöò¨|O–öš·èFO ]ÚOõ½ï%³³`éRëU´óölÌbº<Û~jÀ‹üWoڿѬ«ùÒ˜ù”ø‘rÞËÈÛëôåט:Vk^/ásv:‹ä${‡¦&f ÚMoÇNUâ×,Û“ ï%'Íà–)R§çúðÊs‰‡Ø tI<µ ~F¶\ý·½2匵u‹\~N¯_a!Ÿb©ôç}K¾; tñ#”+KˆØ$(ËÂ/ÄÞ+š6¯§®à¡ØïÑ~ý„ÜdgÉ{¦DG"?¾g˜‚Ê %¨ûÆã¬µ… T¸}ö3r ÎÖ ø]!ŸÎ]»°Soj8y.»0iRŽô[zƪs-aBÕ.}ŒÜƒ3µˆ>Hgó—nÁ,#TÛÚŽK®ÌT£½Þ±ªœËXPµK‡ßc7 Ìíb…ÒüåÛ°KÕ6ö£‡’볕(ïE·¬j§2Ö-Rá÷ØÍÈ3;Xƒát†9vìÂ5M½¨áäºìÁ¥J;Ñmë©Ìµ… T¸}ö3r ÎÖ ø]!ŸÎ]»°Soj8y.»0iRŽô[zÅÑtþÜÓà¿ÖuêT¶d×ßË >jv‹ÐÄÙžÑ?§&u%"áãÙÏ=pÝñç“ÒyqØ_ŒZãVùÒ"`uý[y ¢°{¦;J6*¼víiCØÔ–‘:Ì eë6üK!¾ ~ saö¤Kè0ÝBu$ ¸r RGÿ.Å6á–*ŠïØ:,Ò‡ ÀŒ*‰¬6è6æ˜F]â'†ã§Çæ ̘­«Üã©Ü³ÎÆRf‰§? )¾žÏ¸@ÑÓ¤Zˆ¼~p6)@ÎÞù©ë9ÿ–]á·>e¨ie;.Êøm“=´ -.€¼X4/ºÇ;)’^8,ÂäÿhÒâºÕìTlô·ô?4ØÔ%ô8 ä_Qþͯ² ônbÑ‹1wœyj{Qå@Âÿ„ýùX:t'÷Sµo¶1磀œ jžì‰9Çô,ÉÁïj ìñ-Àsæ&\S¡¼¡E ,]™XF––xÁƒFc€ƒÉÊ0ªáƒüøÊpd)09M.ô¦(ÌÀÚ,܉¡žGæv $ÄÖ&f¢Y¼J93=}3ÞšÙÂTz7Wµ=§­”OMéš0´oòI@9_.-ÝM´FôT-ùÃΤå¡ÇÚ9-yG%EX2ú*žCø&ùSYàTV«W¹ÂxÇã} óÒ½.i@ϺÖÅJ¥1óÜ™@*1—ÓB8ã/j¬‹«¡‘¿öu»³ÎSXüŠ ß@:8"cÆ[9`™¶ª‘{”ên¹ˆÇ®˜‰V‰ö{à2#f@CtäI"@Ïá:¶­ÚðU“â_°øI¤ ¤ç¼hýª|—KÞ“4†]éªgp‡~^»'²êK«è…­a@Öžº†W—ó(<Â&½hÙö:¢ºßíuRbÆPG*¾¦ñ~udr»„×Q²ïC¬,? DZ¿àªG€ªKÁ‡IY·^*ËÅz擟Õubð®`Vâ9£¸é÷÷¥Q÷Ï)äüû`$%é`F³œ6cBXx¿¾œööóÊòÖʪYÅF¢‘É„Úü0p¼ÝK÷Œe5ë·?bÝ¥ªþ/ ‹ã/¬}èöô>ÉøîÖcÀ4×âßbÝÒÀ®î^2r)‹®›H*þF`?õ^¤”Ü?·±ˆ‚v??ç+ÿX;ª“GÑRóútµøk£¬ŽŒDPJ7 1SPÏÈ]ˆôMÀ8‚A’ˆ’bE¦é£Fé'cºÓ8‰p(” $.wÀ ëBM„ÍÛÕÆO˜úÍ´æ)9”ظW ÒA„o6£ã¿Ê›ëÔÒeÈæ'“ܪzØYÆGuVÇ%F|ª“ÓÚwûÿM&Ì”¼HU›¡*ü`’€ãâ8ûÓɳ“˜ÆkÚˆXæ¤ÛÂRFØ1¥YÚ]XƒØz|Á›ûu" ùc‰mÜjñÚ 5¹Í›õh ·…Þt:·íX"êó™#akÍ™zñRafOô€…æ“D+fÉ ^ºHÃ⟷à|–¨¸î½¢/ú[Ý´ >£’xTö_0„º¥x7¹mÄ·9$Bý­ñ¯ÀÌ`®”^ HçéÔä_T0k¡Yi$kxèžsø:Â8¥ˆ‹QÙA\Ƶž\€Gíh{ú&JÖµ3/F VŠñ/ÙvKY üÁS}Œ6lMDh†I´B‘õ:)u±2C~)½ÃÚu!ºתÐwsÒç¥ÏL°šu¶+/.ñ¼ìëlV^\+ãyÙÖØ¬¼¸WÆó³­±Yyp¯çg[b²òá_ÎζÅeå¾7mŠËË…|o;:Û—— øÞvu¿³œ¾w7‘äåÌÁÑNäÇâÒÊj7ÙãÏïö~OÛ…úâ$ÞP”ŠíZišêHYåæFd…‰´ž—­õBQE´]‹ÞŒX½–·+8x¿Eû8 CщZ©-.?èä¨  hÚyê­ÚõâJÐÍö%”~ô@à|8ÎK’A}ZAÊâ!¤¦˜ýø UàîX§¸'¶¨"pGB—ʰ±f ¯g<BÍs«~M9Ô¡øÙÎ~Þâ'íÁwWGhFöZšš®IÛŽ—ØU-÷À3cîïzŸñ}È=éáByðc³lÿ” ^Û©å[Z¯ç§Ï#Ÿð@ÁŽâø^,@v'ùå*_Ùº)‡µ^™•bíüšA²¤Q+@È ŽN½F³:BUƶ‰Ð¬V^\+ãyÙÖØ¡õ.ËG¯Þ„³WHÄ@|^QÖs`Ý9tS_™ÿ“ŸòOEÙž¾ïÔïps•x«¼3åÂást ³VsÖã…ßÇÌÆ½%‚óÌš%ÙÌ#BÅ»UNIÆßVD‹Ýf†Þï³oœÅpÏ 8CùÆ”¶Î©ñÞWËúOl6¡a tâegÏMž:ÖåS‡2 ˜:‘g¸Z¿^@ìW‘íºö¶â^E+Þkl@*U*°'¯›:{jà*Pyb¶bθZ¯ªöã´·Z&ü‡ ˜Òíkt¥¢kÂ8ÌJ1ÿäóÃó>n(f’L j3rý†ÅeÑ+‚Ÿ Jã%jÃteÔ½€+Ô¾;j²C ñ†ÃýÕæ`ÍàÚë=–È C:OVÿ¥œJ—º_ m´r5mÒ]ùËd€’Á`@h¼OÂÇÖ–åF|Cðd¨Oôe8ú³Ù?‚ ¢­’–%ns²TG]8ž"hÞá¥ÄÁU‰@|r š•Ϊ}Åí¶Áµ…”Ï­W»q*+Sä¾ò-Ð1&X@ †81t.û^sÃì|ïr)Ñ\}h#®§äû¢ÿ^}ë§osÉz–xõU¨*½ŠLÎù–ß<ÕîÓ=c0 -Á>oãÜÍp(1C¤\vÕþ|àѨJ»ãbfeGÇ«`¥j£.¯…1(1;o`.Ú\ž#M>7 {ÖüÓi6‡D@t˜ù®¥*.œz§u–NÇœà³æwÈ‹\ÕÒ¬«ÍB…ÓÂlj±ÁýŸ €ö¨°"ï¢÷c„aú Ö¼ q¥†©.7¡±„CVNNÞ‹ Dò÷bö÷]ño ¢Å§@!w-\t IæsÿååÎ0I·Sû5ú)’ZP¢ø[p[‚ ,&ÃÂÉ)‚ñœv hÑ‘‰Ýû5|Œt@[P­´ ­†yåU²O8M BZÛØ—n©=.…¤d"=I3¿?ø¥ØØ›µ4h‚ÃÈ%x=±-*‡_fákT|2±Td"húÚ3¼<l…ÝœÞu¬H2V˜L6ø0QÞªô™¾%&Ä}Âú#6H@Ðþf…æÏb6þàÜšî9€ËSûª‹eƒs$ÒŠ1°€sá,ƒ%xàg2Ägت³÷Ä<Ó‚ÜÈç&–$‚/)jfß¿ì' á!_-«ÚQ[‘~-»«Éw‹º¬K ³íï)pkºã"57цØ25tÑ5ð­9°'‰vÛH"Äyï––Tƒ ¿ž…:Ú›×v¾oáOß{Ðß±å2Û4hþ:ô:€^ºù\]Éœ&<í ³'j^<Ä5Ðî„û`c ÁÓ7²nƒkII=çÞ¿•žòØö&aú ò†4=ê =ÉíÛYÒÎþT>ýòMp,¹u¼Àâm–ÏÜéĦãk~GÉafoíÝØ ϳjAŸEÄH úÉ»{¯ho½¯hLà/ñW‰ûÌ [í®=w AÎñŒZ é~“/dŠÞê£CæÞßÚD(3¸bjþZ¢Z/_™žìEÒ0’5/Dd‘k+^ÎàÊbLN#àÂZó6Ÿž°Â=Þg6yÔÒ£¹&jTJÜ*@PÉîQC™f†ì3-Sr)Äý¿]nb¦ÔÎ<œÐ“%_hWíÊÁšI|Ÿú³ÅA›‹ã:‡‰»­xE¤m°Ì…Á¸[/d„ˆÒhÑ[»~K”Ö *g-PÓåŸõK ],W;ï$(”I²ÀX‡Ž;«¤ëAŠ…åƒèHûÑr‚$@n° nd†Å„M¯°”)qQ·Ö.ýÕXaC¹úb‹V³ÃÌñ°3‡?¡ùùÉ—Ô饟ì¾l Ä¬g#Pñ›šCN­9£ J>ß– ¬|~ûäè]ñ±€ó¼™½„ï)¢E þ»\¸c­Þ­îsº92“JúxÒ°´¶üPú8>¤½“CÍ䣒Wdȉêì1V·bê ]Í–2rúFc8¶Ôîê2¥šýÎ*þGÔK&PI ­˜P‡Ü «¤^¿ï,-%¿œi·=bO _6µ î^É-A ÍH1ÇÜ2.$YG°WMñ!ì0©Eå>Ô©nP™—B+’L›ž<ŽØŠ1ÿýäꡅ Eé÷"›Ý'F3ôeø¦qPWe%~&îþÀ;Jñ¹„þ98™§L3¡ È5mk\r~ÝÁ‡þ&J÷±Ròìcò³Ýn«ø%(<j¯K¤¾í@CMZù¬Ç* Æ=¤~X‰ ÖaG˜Ý"˜.VÔ‘œ«¦Ñnf…99=B§Ý;@Î(Dñ¥¸i}§OÕ Þ@uböî÷RW‡§ªè¤žÜkç´êÖo1™ø.B-~ÊJÓúw ¬eïÂê9ƒëîèŒr‡,+Ea‡y¿7ƒ¼m"ÇRÆîô{^’@ô,ßY TߢBMñ×9)†žQ1Ÿ›Îʇ¥ Tǻʹf¿˜§êÌc·Gb¼BvžŠb WUâRh@Y(†Q©£Ûß[UôZ2oNùºþ¦jŠ!8Í$æ‚ÉQ…€Aùðè²Sõ*t:4rΦÿ‚HÌd¤ÛN Èøô…aŒÖ+Bº@¸>9¼”ÍY…5ÂQúÐö:HÉi_môci[=o4$ÏÆ×lmƒ™{[<#êÏöF[¬YE¨®˜˜&^n2\—ØŸ‡T¨g %âc„3¢«4ÑPäoÊÿ¹Ž9L¿SÛ'ކ5ÐÆ¦]÷ô­>Ñugr, ‚!Ÿ+·ªÊÊ¿+y£—c­ C‘ÑÀp8QX«{„³žª@øO£¼¾ÂŸ¢ìW°š±‚¯&õ“ÛdÚÍèZ ºâ31:Ô¦«¤TPä}:Tî]!'`%öó¨ èOSîqÈJù VP—=ùPìTc ø9ç§ð?U\ XÏÉN2ñòEvþØJ¿e/”„wÉ-w2øÒ0z=+âØžHõÀ±†Ãº>ŒÊd‚R«Šc&ì-±áæÈúx˜›g£tç…˜FeÌû]3MoÕœÆ1…‡(KÙBÒ·ËíÇ©‡YO~lMN€û.ñœvé"¹êÒÛdO_÷” ˈH8ц°†Œö|rþãÿ}o¬RS'4~U t¥§¿Þ}àUñR5ÌCÓ5TT5ÊC?HTÂ×pG‰}σ²žrpö(”(œáºvpÙI¸-.É?0JæQ•¬œcP…‡ä©*¬Â„âe»Â‘4LÝ«iô:Ç'Ð^IصÁhïÁ©\Sp"~?€°˜°ò}‚ðTPOy5ð Î6NJ¹' à}X!ÞeÎnÝyå''‘Q{7}~ºã´Vè;ó`6Àb¤+¶Ôu©}d´`F#÷Î)Ȳÿ2ÉÊýå§“`õãßT½þ·P£6ô£ö‚å. ,­D“ÓÝ”¢èÙ¤Fye|ÉÉÐT±‚9>HkJ<ÂÙöL† 3+v7;Þ2{«Ë†¡ ÄÉ.,š|Àpsêf—xøá·ãóÇ/ƒ’õØN¡y¬°fî'qQhΰ7/ßÐÑ/g’¶ysâ€Ñ1g Öm‡õ;ŒÊˆp¥6b÷䥒dúÓ‘ûW?Z¸<),AÖÅHà•-¤,ùLŠ–Ã>{8c;üÌxW`–q¨øÆôv˜NöÎ`R©ø{ë…É$þ£}Þ ÊÏó~O¯JT¼R屨Ц¡,Ž©nk_Ÿ¥á”+7®i9H)_Ç×éÚþ(ôcסK˜Æ\ÃV]/6l?DÖå쌘#š_ËÔÊ””óÞÚ”ÑC ÄtæšrïÀ}ø% ®&œõ5¶XFÛ;¦.-A·|eÌ?"sÜðÛï¤mRÛýˆ¾^õT¹MŒßwgrÑtÜJ¾ó÷b.þ¸¾Tubínõ‰ä/¾KI®9¢6[#}ï'|F@披gq¦zŒ¿ëéýò5«Sè?ÿNø³)Lgà'ŒãXä¡•dªœõ$ÐŒíuNÊ¡9G‚ÀÄóâF†óQNßÿ«<Ž7>(/™Wc¯¡R½€ø©Iªœï#ÁôB}Úáëc/Ÿ¶–ÉLËbÐòOªË64 v¥æ„êG1Ëœùòä2§´ÀÞôeÊånÃ5PPq‘ikîüÃðHÎQÖ[îH$J–î‰&bõÒÕ]ÜÃ[$yć$GÑ(›4,ÆÖ‘ ÜX@Ü&Ùç6Ë‘ÛëO˜ÒúæµÚ÷ aíB‹<ù¦äl'2˜A©‰iBƨ£ò %ðÀ–ǹn’t¥”ÔïPqõòâÕ u]æ!@Š k%WhÑFò±LnÀÙ/ˆy°i½ïîÊë*Ç×ïmk̆ðŸb6v©î±ï‹ã‹wÿ¯¼öˆo®!¢Ü¬ˆU÷;¨'òÿ8ËàÒÂ\ZÊ…ñ”—îîæÓĈqh™ÆÊ—Í`û $üKaE!¯K:¹ ·Ê. ”/’¸PÓ~â³6NHãD¼·—‘ËÂä>d ÙÿW ×<ê»ì~ïJÍN²’3ÁïzD¿X¾ ÔwÔ{¶.™Öl}¢@–´õØßKÝ,¥ Êrzéc» ¨RqsÕ%N‚%î©Úûaˆ,ЛåXü7tBÔõCT:ü*+ ùÛá„ ‰åoŽ™|«sÓͱ|ÊŠË,̺Ì}b…T –ú:G€¹øõú‡“´@=’"O«óà´øMˆ¨E†ßþÚ*ZU 9`V£p™M8 9'À¥t^TZÄ,ÝÒ<¼‹Ë"èèõœzßbù£—¡ú§'+{ÑË6x¸©”CcΫ¿ß슀!p?¥$¤¢ 3Uçvþêî k€z…R kòV4£¨n}|Ö!#G#y™soÕœÄi´ ÍGŸ=Ó÷q( Þ›Yû£Bªøë¯BD©eßdì“$?¯žb{è>;ÐæF~vxDØ3îÊÅCA¾6õ’"!e»|î Á FµÈRóV#Âù/?†ÑŒx"ªÎÛa7©Ù@ûæ0Pwê³¼Q{î+#U¦6UYÞ‘«·ÏCmë,}›vØÓ‘T’Sé´æõ³¼Î€.ðh×z‚œ?˜•ÚöbcO}ó _>-¦Õ*/Lü‹Ë¢ú·/Ä.³¸e”²È/ÄŠf£Æ`v_™d¤Uf¹Îº/»ž?¦¥Ñ[l†¤³á¡Ì•^oãÜRrœ‡ˆ‚ýRèòµÏn¼MqbeSZ3G[úÿ?Xá÷@ ß{º’=h­ìÚ×Ï€añÌuQKiïÁ>ÙüR¬€íÙ˼O2Ïh#-éò\ÛÊP/ÐÂ:ÓœÐËÚBÒuŽ©^p+ÞàM•.àD–7û/´´¡Z>ÕÆ?-Šn­,yÁvÚ=ñ„϶SÏç©äÆ4¶YVañ$ìžëÍhæ:{²,1f FUøeöʼní¾V,{´šgØ¿2é€FøªN¡^}› ˜Wwå2 ©"s[øÔ3ׄ׸-n™ª‘¼ïBSxÐ1Àß5ÆôåÏTàd ¥“£å¼~“ð,Y=8Äk;(¡iõDôŽ´ø¤24›M¶‰0„UAºÜ¼´¶¬óÉ&Gqú¨°ÿÍ´HçA†‰PaMÝC8±û–¥°=Àð55>ÐQú<_ƒØq\Â×à&âÝæÎøôÑÛV¦ÑCñvhbɉ¡ŸîÐý µTOåë!yèûC<æ®^³xæv0 ‘›J}¥2E¶ÖT&e–ÕÅטmÃ{”Û Þ° `Äíàj±i0ÖŸ]OƒžöQö:T„)€Sħ!3ÚA"Ö Ôâ:Ô·ùOñ 2$ªêà낃VjTð;­êÔ¿:#M¦»ïümWªoZq7m´Ê’š;1­IàÃ)„ßÎ8õ¯ˆ¹õºã§¬"ϦÞ`ó5M߈úR•~Ç3¨rb¼À¹ŽŒÿá…{›.ìgš_OêãËØ§~†\ Ãë×ß¼ôzæ'q;çp€À ¶1ˆ‰´M+fÃ!ÀC¤¨ÒÊØ ¸ x]ßb‰ºä\‡xª2›jÙÊ58 ÆSb B•š_ßÝ9U§Ã+*”Á᥯„ÚúŒïìn¹j&ó‚cœ˜;놬ˆîú¢j7ÖçS*‚ÑÉÓÈBS›ø€V‹Wãêºy ÅƒŠ2å†ý‘@cf^ôGz_|MÍø8>Y†Hƒæ‹ÊyÊx¼ëçôF~;‰¦â>ù¬ˆXy$5IZ|Û ¸Yùr¦<ÀÖs¢Rì9á¼À±1̽øiŠ£ÍÞöNJ|³ùÃx±ÔЏêAêbiŸö¦ÀaÉÁ ö„óu{¡uïæç_#ú KcΖo啵†‰×­ê ‚š½avuŒì L…ÎèÎ!‘s§eøíWâd£{‘_‚¥J«äxr"Ît+N`öÃiÚ<ƒ™P‹eœ2÷}úè¾CY0uÏàuZŒÒ¸i¤æ4,qpqÌåƒp†…Ü–Ã†íµæ+GÇÙ+r«ûfp|ƒÅ´æet Q 2ÜOô º!Jâã+©„¼2“©:ó{w9\FƒýÞw5ÑS“gÆã%å ËÒC¤ÚüÄãÊÚè!Ô·\Ÿ.EGÙ·~ÿ «]½º!ÙC¨ºÏ*Yú„âÜûÅj%@-™l§¢s )™¡ ‚Ò³ùH.7©KLï‘+Ù‚-ÕZ‘ÙHÑQúˆ> û=ü,]HHŸå.\™è7 Nv,šþe™{~wÀâ.½ œÂhÞtcFføÛÞž:YÍ8!±VC¤+|æŽ`K? ¼¾\L¶A·¬/óMBæ“ Í £”éGób€½I:åç¾´MðËðZ!’à_úò¹žvWza©ðS0FQ !–ñ%S5–j¨]lÄl¯uËœ¿ÛåÔ¨ªL6„(ÒœŒ³Õ nuÚéf©ÿd ‚T²¼F«ejAÛ_ÑáQ)8±„_;Â|ütç^„…¢ŸéÒO+h17º‚½â~P)fHÝÒÙCމ ¥"’iÁ;˜ÊN—'Y¥“{‹R ¿v uk¸˜<„£·³I&onáªä5žVÔYæ½t7óñ_kš4¼IÎb!㬛ÿîŸ ˆÇŒtsJ „±Q“›MæÄݸ$rm<ðƒGÃBÊNÂöCäÓ ¡²Ä÷‚öý²ïGeÉœƒÚV_Âú÷o2V¥‘õѼ=¤•L_Iñç¸pÖ³Lß8&ÕJ^˼I „ýGœG’".ü<>}œ0æ$D§•SênüX<œsXÒ¥¥Uüæë0£­ë33O2ƒÏ¥J³/&öj‡%SIŒÍïæÊM }b5ŸŒ¦’‰«àÉL#ðôž)!Ö¡\ß½ƒÚ¬Ú#,òz:/Ÿ÷ty¿\<þBò¶ïå‚5ΙÛ ¬zX#ðgS–Oy¾œè>PÉ(þ%#Ðëa¼g³ ÚÖ~$r;í›°š€\{KtÉŸ^êú|ÐoÌ‚»$3F.\¡Ï\Ss’ —6bô¶uÊ â‰bLJo\zÓÍÙž`O#ÎßFF”‚$H2¼Ë¿~u ïìšÍ˽½(o ï‘ÔD½áÿ™eBÍ¥ót|oP,¦ÊWZÖO…k£PºÈ¬35A~lQ7¯þ‚Љ€RüwÚÅ»-ã#ŒékÙO¬o&N01|T‹áÄ8õµ^³´žÅÿfƒk¼ÆE>u5qA…ür„`)ZSðôA¾ö›6:iA)%pÞ»3ÉòN‚Àï6ñ[>¡@TÚvr5ò~d=%I‚SEûÛ µaª›E¸šíËà·çQÃË-c¶Q’t;¶ hóc› ‘°ÙˆeXç"vÒGÈ—E®7ó ƒŽÏJ°tç *.ýè]”!¸àQK"Íen='Q¯Ù5g-?+/XÖµFӑ׿Ï­ ‹õX$×õBßkE×Ë[P)ýl°‰Xò&µWÝJ”£ôR¾Ÿoöl†Â §a^-L¬­B´RGâ£xOH·)ž½@ËÖ "Tki–bl„­Pb¢‡¹&êµá€…›­· [·˜óÒ!q "îX‰ZâhgõCnð<"Ùùâ›ÉYº± #†i‚Ó=OÚ#’ÓËCàxæ†$=ç4lü݇St"<ÄOA96$Ópy‚/3;‘ˆ9*$ªéI˜„U7Æ^P[jÍïÛ)tyS0¿ŸÛ–ÆN¦@¬{2ßù¸§ò;Ÿf†ÝžnñMÉŒe}‚²=³Z‘’/Ây®ƒ;« Õ÷èzBñ…^$ù êe7ØsÈzË·«PqT0ýœµ=þõ,‰-ƒŸEU8~æ6paÇú‹·¢;e7 ÊŠQ7µßôh>£BDޝ.hS]¤Q×[|¤{a…É\F(\Z ó’]œÌnÇh³TæSæˆ@HW™õågCó­fUÄ™1üy°‘¯]Z³íÖ¯ƒÛƒ ž€’5÷Jbfóçú-wÿú[Œv4hÕúÛ>üyŸFÏ"5âŠÈÃ?ð:é,¯ô…¦[ñ{yqV,‚éçX+¤JTB–,ÍY ©ø‡½«hTÓ™l p6G…Î bp‹zÁ5 Ù™˜’h£J-&Ú=Í¿§•qr£ÒeHª3ðy< ïWj b:ø,朗O¢þ?{Œ!·± ¤@x¿1…Ð…"Î~8Øñê7wá/†tÂ2¹ðåÌ´"kƒê;T3§ÆÝ±† CÜœÁjÁnPrVî™iyañÇëO»¦”SRv©Cµ@Ó ™Ï•,òQ“¯}b+)p‚ªWv $r¸r#pyÙà*Á8µ9šsN÷g™táa):·Áéª@0x¿F¸oˆõ´lªo`lFw–”„p¿à• KØ´䨴|½q|êuŽÞ ÿÆ.»!Úd5ß…SС þð([,¬.nI+ÎÍ\–Þ< ëÛ÷* f÷Ó!£~€ Ù5Ž0Nb¡â¯j¥3b6%–tpiõÓÞíT'Ã-ßµ¥ Q(çX7£¼góG«‚k½¹—}Ý›€|}Þÿr›I/ÿŰƒ’B‰ž9·à4fÅReAÄÍÄõÙµ5.kŠQÍÓ(Û£Çq餪 -gµïo˜Ž0\ŸÍå'\xöÞ’šÝ¹ÖÌùæ±b{}’&ÊׅàFb:ÍOU.à ‡´†ãWè©»Á#/xl®!½2HY÷©µûÑzpŬ}{Óh°áµ8½Ên–®Dl×/‹R»å­âðŸ/ÑÇvn!¢%V%ÆûÉÈ_Æ]"ÙÌ7C&[;”ñRÓ²ˆÕGTïñÎ>—ÔÖš"éz‰ùÕ–4iãC-äÕa: à ¬r%˜­ 5>ŽŒÊUÈDµîù þØV.–”ˆºì§ÅK9»ž­£c8:ÚY¦·­£ÿ%þW#ˆÖ1Aq²>  ÕŒ“åǶ2»*wLL± RÄ8ê%Oízx®ëê/þÖA¥v8ÿqÓ³:@l0/ ŠÏW‡ù|•+~0öœ0ǦñëÚ¨æ+.w¢õ²Jbò[3¼p邉,׳ìqÞé=a7–5öBw&C¹-Ãƶ¥'µÜèOÆ™¢a?[Q"ò9¢ëÌf_Öfb˜JcÖÚ‹N˜lÿטœû&žÎÕ·sÈÃO¢Æ„üœÔu­køSÅŠ÷¥SúÁvpTœÂ·ò“ë@ª:ùaœkÎ[Kh[Çô%²¡¯9±ñ‰'‰íÂ[3¿0a¼ü†ügf_šØxQ‘­J/‘Š03ì šÕ‘c=i,*NÆTæ[‹Üq¸¦gÖš^zo¥Ó³½ ›; Åï¨n­,üŸö<£P«ŠÌõIxúE’f±bD€ÎwˆÙ%Cn׎SSÓZÑ‘ÂRâ 4L)›©†L<•a¸K:’ªÏkA8Ҝʋ :—P¦NÍŒÖÙlÀ¬tÅ÷œ¬c| Á.MËoñW“áRtÈÕ».ב¶ò|ž;[Ë6«aÆ*x‘Òï×L'Úþ.‰ÉJY;ãî$þ*Ù+9|Geþþs 0œžØJ„pr/Ë‹3„›á­MYxr¦m\“÷úúvž¸¾{Æl9èÊÍj”wó¦q¨§Á¼˜7#.°Á;%m²Y¢r‰qìØÛˆ6ñRóã\G˜ôÔ‚Lòõl‚²f;Z]®0vsú bã‘Yû@ž€Èæ³bbë°~°¯;Œ&Ú‡¥â‘(‚jÍ( @$”¯ ƒgQ¦°uš¾AìL¿ž)_i'.bqjZ¹÷ÃnàŠ#6ÉòLÖ¡ŠuÅå¡á&],«s*rçzîf=>y .:'ßÀYdiËðÙDk½H¦ñoõfëtF»ðŠm ¶‹3j_×+g:ûV ž†Û¸¡Ô=½â½crd²QþÓñ ±OJoÛ"]›ú–KáJ §ocìçÙó”×Ì^PÆ5ÔfÀ‘3\†úêK8©ÝÊ¿ ×ÃiLZÍ©³øœpÌÆn$=õUÁU(UHb¡Ôê–Z'ðŸßÿÍxÝÏ‘@¾ŠDS²ñÅe} b‰0Å 9ÃhމÅìy[ΦV¨›ÜP5ËãèEcÉØ@*È%‘`âK¦U*—í?’ ´L¦âÃÏMŽxe9½=ô¬éwJ®»+Ëhø\xHÝYT@UÍ [ÁÅ?“¢Go×˭ΗI϶P,bä_…qhòYQ´wv„Y\ÕƒÐc.óôÔ_ErÉUÙx/à6ÉSm+!x˜SÒ¨ˆCòéïí`ö-a«!ÌŽÑiHŽ7L²úmû]ƒ<‚'®“mÕ¢xÌ@y´‰&ö+×# x\¤‹µ k¢‘—X[·ºØ9‚x$é—9–ÎÇ™ÊÚL´é`[!I:|ɦIä‰dV"«+}œ8yà “xQh T¦¸Zjö§»òß<¿à×ÛA(σ¤:«ƒI<í„ Í][ÃÅ|Žª@îÕMØŒšÕÍ,ØÍRVLkWôýÚH8-ÝÀãBuÉNQo—Ú[fi÷çÂGDª–ÚÓñ*Áç`TV²BÉI|'F1Zë5½6W¢Ã4tȆZ¾åwê—õŒÿrðsh’mì´avw³Ã„Nö´xÉS^qè–öjA÷i…då1òHý,ËÇ^ƒ"õ˸PPßvªô,ì„!!6\Et$¡¥>Ô区o¡ßRìÃE$¤_ß²0@W‘=Fg°³s²õ×÷ê¼ñ> añ!®}ôçù&ð+¶QìMLYfeQÚù©³Þ¡—Ùæiz`÷l>´î‡M±O¥¢”µjÜ6k‡õö –­S¢¨PÎ~*òº›5 ÷9#aûʰÁV>ÖÒ¤…™Ž^Š€âñ·Up©Tq½ÂÔǸ%æ (°o‘¤aôìžtl~Ê’¾qbÑ4~Û«Lï&q­sýv[+b–üø'~I …šZßmkTWá|œóƒªˆBÜ/SÛ¤*,ö…$ÖJ„Ë'\Š~2"0Ç&K‹Æbzؤ2!0d†' Ù„ûtJî’Çôkì¿|l€-¸,¥«T®;ýl¨K¡Š >`º:ªÚ¯Tëp×»¼¼uꔹE xR/ †zÇêÑV&*A "Ü@ñ™a¼°Š4#s5¬Úk§35ð,C­8ð3kGš|&²„…¦> é«‚Ýjîqð^,æ¼™bšuqg9_-DE5ôÍ­[¡š9ÀCJw"È[ÿþ Äáˆá J’æô¯œ8x¨~?w2Û}7iDPre}Eø[½ìOP†Òÿ$ÓÈž>;da.É a ôa¬UÔ­Ù©X·¼4½üt¾ÐÑsÈ ÃLõå•Úü(Y‡qÀ»¸aË(˜~ìç¼SŽ}whÜÔIÄW³ù×ßJ:ãu†Ì)éDCW«È[É´$›¤ï ½s@)A(ˆ ó\’’«‘WÇRÌF¶–Þ 7ùöŽBoš6†´|{„RÞ™ÌÛc}¾wŸÛò†…S` >ÖfŘæ$Ú(ëὑöÌWˆ§Š5ãÌðþ €ZeÌA2ãuí;Œ¨ô`y:KGdçP²ÓÜ YRö÷3] b²R܇§/z ÝåíxÏÚ?ºÖNðKûÀTîuÄ…8æ:ÿäG§V,¨M,‡m›LG‘/²LM\•’¨ñʱ•7ˆ–ìIúkz­÷—&ªµsâžÖã®Ræº+ñë°2ŒMŃ5Úc"„iySê¯ã,òà@ôÀþUÓó5Nö¤p#Ñ) ƒÈǼéÌ@ñKÛ“9À29C’önÕ•whØ'š¼xg“˜\,”|:à@.&OõëÕóQ¬”¥‘§ÿH©ŠZ^&g†ÙdOž¢jú #M@¨ÏæÚ=OÇ€÷MºÄÚckiÚ¤ãSeEñ8SUµÏËÍ#ÙVÜ͆ú£÷$ºâF+Iis&UX„dIÍM”.Ü,U±ª¦I+Œ¸º¶0¨8‡>ŽåZ“ß©iÙZœOJ¡+´í ˜ß&¾EÜ4?Õ²*úljÑÁή²*v¢8,z¸» J ïIÏ‹-J±˜š¨X=t€lA‘3î°ÃHlkcÛòÌ´‹½3«›Nå=ÍáD°zü0¥•Ê|3t,œma6öW¢aÄ`.êBj¶#Šd/<Çòmø_4†:¶°§Ð¸é±E(´+µá«¡ ‚Ö O~>8Nao£Š&fïO\y½˜X}ç¡c0Óf`ù¦×z+-b¬—ëJ»°‹­Æ?í¿x$ȇBk²°Ìƒn¶‡ôù6´”«×‰Ú˜ëTP: =®•¨©Nïy „ÍùˆžsUå¸Ë(Ñ‚-Ã:W’ÌG ¿Èù utùZrƈloIm„ƒó-Ÿ}U[f(•¦AüÊXÆÄœ—àÑu/A4“QÔ|‹UfXŒc°µxž·3D؆ÄAiÄ¿‡‰KÓn9±e˜òÄ ìDjfð-¼¨[¾'"Ž@ýò§Ü²~ ÿÅ5Éÿïj #† °2Åñ³ÎÂìЖµ“°A ñ’ÜwžK±Æ‘@d¿š;ý†tÚõ}¢#–>á ¦š·0¹îEØêb½$¦9p«£C™*5WfRGà®±íTÅÀÕÞ¹Ù¢5—!j€ ®ìÑa—ØXª†3;ÈQTõqxð9üCé ž×Eͨð¯Ž"ä´~«àÀuAUàĺJòÕþ‰ Ó]àCÃ(¼:é.× ògRQ°÷Eþ¥Ã‚Çð)åÆLÔ¬z]p šHSF–#9y¤¹’WyóbRKV÷jPƒI¸sf‹²ß²*{Õþ°µïI½9: ¯Ü&67˜ÐmûŸÀ =ËáÖbÝeü†°ëdr¥:Axéð7®"mâû!jpÀ|vziilt`Wã~àñÇ[ó¢Ìm ½f¡¤ˆ£ÕàDßÎK÷s€»èÎ"é4. ³Àß¿ÿ“ð Îéü6 › _¤ëì÷¹CòD¾‹»ØÓŒs3^X´§ðæNzbHlC]¼#ã±F·¢b½5 2x;2ù[$$”91 ‡È‘hÞ%JÖ¬bWŠQòqèôÞÿ-J¤úY}¥=ëàs'ýUÅç“hŠ0VÛ>m"ežs1MP¤ÀÌOßb²¯E¬ïï}ÒªKÈÔ´Ög-œ&1m· 3øà¼ ";Žeôâlv˜¤Û1˜8ª­vuUš)¬ÿÔF±êðîÈ(ÝvdÐð‹%Õ-W,ízÌ v.ûP Ûººj€z{'}qìy›ƒíýj,ßÃ5;ûB¥ÃÏ÷B[Z·‡“Bª=­yµ×}ŠžZ¯·lœ,%Ey!’‚w†vÓâÓ¬hÄÓx¨Ð ë;„¯Í¼¸A ß*ËýüPw šZØAìÄ–êÖ1à‡r>º0ººÓ,ñs¥. hošT¦h\:e?˜ôPf‰ ÿÜÛXé7(g‡ÂþÅ_Ô¯-o44Ù£ý» ..“iá,æþÒª#ÍÊŸbÁY’÷TM‹4±bl™3/ôuo)å“äYÂAŸ9YrÒöÈ1?ç°b±o§$¶¤ãù-…¬AÐ]R|ý¨ ÷Çèm {ì²€?ž¿E@ÈÏ~t€“€\LïÑKŸ—û‘ÐÌÀ¨æRS1µZt€ç©EÌ 8ŠþÍ ¨ì»cËt¶ƒ³jŠÃˆõ ³ÛNøj')á܉@‡ÈZˆ4%qð4†CÖ¯ÔûyìÅD–ÏòiÛë€kÌѬ˖8êÝÎøè#:ü¸!Á|¯¨[ü*)ã÷ošK •¡9äá #œFAÞgì$–­Žñ¶€i «ºLB™û¬ÎèŠ@\ƒð"Ÿ¥Y/eFœùrL.¦¤åœv{sRc ½xt:ÌD¾Ú=‚ˆê‰~šÛ)ër4±ÝÚo¿Ë×qTb’Öb<Š;9}î5-„dõsÓ giä¥í§»Ö"Þ“„=æÓhØøe·#¡§Š’pŽÊâÕv1øWKò  Í×?ËŠã%lñ¬æë<×Ëb¿ë¿«»ihú$‰öž-_ÒT#•ÊòDþ›³äRìâÚåòèÂ…O—ÞÎ=ÕݰŜ‰KD>Ñ’÷Y« —©[2yíáëMajwUªz˜¨Ë”8øô¹ŸTÜmñ}¼Ô¦Þ•ÞÖ‚˜Ôé±ì<úŠd÷pÈQ=0HÌÅ€Õ?¨Ò›Ér]©ˆ?&BÜm‰®ƒý”ÜîdaÌÞºa”Úù9ŸHAð•øÒ¹¢@šÀ]:"ý­º!nÞýá]±[ßh™ŠSÿˆÎDÌ13Ôwm8Mµ~Tÿ}"„Áü©XÊKÈT*,Ú5!»õÃɱv°£fåÉž¸”3ŒÓ=;¸ñÙl Ðr[È «B,RÂùµNÖÞrÓÿ¸3çäfF­r—‰FÐÖ;ücíE­Ywâ^ªÜj­J¡•—Q'Wê^`Fh#žË鸻³¡6&剖U¿e:·ûñ4ñ9y}²6«W–?dœ$ø2J5³LœÛ‚t(ò¥<꯽Ʋþ~TÑÑ]î*e›éENàèxÑä§÷ÇÑU ÖЖ3¼¤÷† (Ž•W:î›2,%èL@£“;N2=ß«~þ'Û²G¨k¬F?îÞoQ#q%¨IfÂ(¦'sªÿáf ±¢w_6z®+fÄßPT)‡²k0dd×<Ÿyä„Ü´Úg×½Þöp’3!M àaPƒç«bõ·å¦½D-ê·dÌLY4R:D¶á5îƒa<˜ï™ãTBAEdE J‚Àó€2Õÿ›¶á4q7oi±ƒâž«®„Ë·¯Ü—×arIîwê†Üáq¦§âóOj8_sÚ¶uµŸ6~IlŠ®dÙ3øx3Ùa6³(·fqkˆyÞR~¼&¦_ ³žx&!Ô²PmäPfý뛕`=®Ùé]îÆÙøg¼ç˜\M]Ö«o…€JÊJœÃÖ.VMLBQ·=7Âõ첬Û,u5ôqgÇéÌéÿÇ›óÝ÷OQy¨ÕÒýý}øî.fÕ0Ü÷|‹Ô‹òÉ:ú—¤Ñ4¡·èõ8x7ÍyN6føúÆÎN¦ã"Éw0jͧì»êä¤ á¶ÉáÉßqIÃåCNr]Ç G8°Ö]s£-żß{×ózr>e:ðÌ'¦‚`•«Õ¤€ÒvÀñøÞõ*¤!zûy¯‰]µõÀPÕN]–­‡®}´ž–alÌh+ Ä÷ ²ÍBYCúwãÓ0ÁȦùÐ09¯1¸v8dÔåÄŸ{y„çW-DGðœg>œ!6{:æ~&&ku¡*VïåªN¨Å£ÓíF oݾÜ…t°þ$QnÉÝ977dc/tlk¦ ‰ŒÿfiKJüjH*ð™i ‡Á]ò×NèÑöbààt_³ùF±ò8Wº6­º‰¹8é++');Q6áÀõå¬Í(Öª¯ÍÝwsÚÝ‘4ÑL0Å "훪³ÞjˆúÙgŒ7±<Ë<†uè'Jå©E“ƧÌU_˜Ëxtq¤iÝ­!ƒ„Ùõ®'”ù%ôkO $y÷ix­§€¢½Öò.¯ ÍâGªOo‘“VI¨âý= Žôx¬'Xoïk¶Nxr˜Q&RT”r¾û=< ëÉ(y¿??¾¸Ý†«œi6¤jBýœc“Ã75tª-5+l‰YU–ð˜´ÎÉÔFÖþ3fj÷ñËq|”Š Mª_#=ÿxå0Ú„êÂLkg‰ñ… Æè-Ël%¹t犥Žð{hÔºñÚ5|ÁàL88U{íjJ‚³OÛ•èzpþ¬ÿ1tºéh\EtL ,%Ö¼Œòi‚E…¯L©Øs#öLDQV5å¤ Æ(ù.¡#'¹XªÔ ˆïsÔÎkô®|X%ß0G“;”È9“›„ŠPù=Ã~&«NåÙ·EOÚVͨâ¿Djù}–4àitÒ=[2]çuÙÆ7"²,Aû•בš|iäE¡(ä}.T‹in+éHJöéè ËÕ€‰ A`0ŠCù3VHŽ@P[‰ŠˆP£ˆÿ·M<ã}l¤fbå¬E^&¥Ÿ[šï¤%*Iá:`r9a²fëõ^""ˆñÑ^nL$/É[Eq—ö\j#z‹Âoêeèa.¡Q±‡ÖÂË`òþvNÐ6õª[C–n¢®-0Oª%Í|%²Í"ìNôü>½u²¬Õ¹#8Ç×Ìh\uÀ1Þ(â6ºd¥iùSÇ´ï,“0]ìÆ.rN ‘idËëA$bOnïöB»DÄÆ’4,xŠ µz!­0Âû0‰Ldýñ‘ªÍ†òŠU¸­«˜{üw•T÷T];¹X/9^é† »š&€ŽWÍŒ÷³Ä¥XÈBOòÙ‚éí·0¶„’"Ñ)·;ÎöLUÅJÃbN}Ÿèz€&‡i¤5…VJOþ~)=„.2 áÏ¡ü“ø1üiKʃˆnA"4ºìâÓª'ÊÚë¯9·j6¼Ã$ú3ωºˆÅk:|‘÷N¾6Y“Žj0]Cª_;Z²²Iu%Cnñ#™'ôt’>ÄZŸÃÍ29wVZe=f“? Ó‚¢ 3@„õÙËvÒ="aCCqMÙézeÙ‰ÌèÐêÅ×^ר_À*2o¸r¸Aô6nú¬ÍôG(æ·ÛöJ¬Ihwz¬<ìLsÜ•;áo_xKüyë8Ž—„4Ø«ïÐß6Ä‚ñ]ð¦(¤ßqÒ\>í.λ-u*âü\·æÎÁ¥yäE,6Ç—Gé)ɪîU>¿œ6 ¡Lï>+!Iffþü<¼µ”…æµ;‘@Ò‘Æä… êx˜å˜\˜tQgt ­7œ¡ÀRJ7ڽ΋€J©"NâÞ'¦IjÄK.2à[@S›eÆò;“’$(væMsP÷”KÞ€;8œV»9£)„ âD7pÛ)‹*ÿ¼xàé$¿ñ‘šQ%öß$·”TMz¬>‹«òï0dSƒõ4]"Š&x¬ãœ¢· RB83 8Õ:ýÉB‚†m•ïÜ‘†"Ói\Ë–'ÄÍA[dïu5»ÒñÍ“ìćœéÀìÚ¹ÁÑÐö} Õ2D¬Ð4ô$&‘l¥Q˜€Èˆˆˆ¹úAA¼JaÃÎéï¼Ë(ÑØ~5½7ìp„O2ÊŒž*ý:Ö0Q¯G¹ 7!"k¦€ï½ö°=»ÉþKäÌþ‚¢Y Ï»ËOu(—¨ÐéH¾=&¿ J M-ë5Êâ (ê ûrŽè37¬šÇÌæ¡-g½¢Êh ŸWE=m¼ßîFï(p áÃTšò¨(å›=Á ÁKrìR,*ˆ b˜i™¼Ç5d¬®OJ{D»~oÓ{bÅ0•dA„z ®•ßð¹s†W˜VKÂ4?`Ÿwáäåéçøì¼êÐ[½‡ï°†œ‡$<ä| Ù1>©þ´…¹ Ð}ÖG>¬m69Ã^Ù­í¹áE¢PÐz†ñΜ,Æ\≒9h-þ ÉÑÃ-AЯ¿Œâû9¯uIG=µ3¯Ì$[R´&ú†d¥²é“Åè–]ñ+꧈ÉN_Ðzß=ÿ}B™LuúºÀa¼ØsIØó13¹ÉQ"­ý°¸©×gš)’9r§Ote ©²ï5òBÒl/l„§)xÝÕ«ðw þ=åÒt̵°@§§ 'à{—2q4ÎPWØÜµvAkŸXrÊêÇýÆ `©iôj“tÕ«:¿×ÒésxÍô< wˆë GD±€[èÿ¾Ê[=êñáìÏÞ ¯áWªR÷5ÍA‹±Ng·ÿ:³¥"§4͈¾`ŠŽ7 õIÜ­#vmæa \ñ«”VC/Bj„¼€*Í<ŸˆQÚÖÕÞd9„wÄtW…¼u^‹Á<ÚEDDüyb2ÏMé¿ÚQ%Oc‚±¢ÔxE&0+âU•‹hÑ„ï{¤Ÿ,çEœCä^‰€ƒäœûüˆ…ÆÃLÜúØë¡$oáí’ï±¼-qû—SÓ‰ýíµ¥¾}mDâoË3½ýl½BM$ª+5BïÒÁ†{©!ÄÚ·¬…j´¿{YptÌ~ÙÍB´ÀçU¡´nâIt%–Plà•ÕýÛ¥ñ4f¹×æðJˆ‘¥R‡+";íèÿÌ£|¶k"G‡,ã¯ÊŒ"D9SÁS§L~ÝÉåša™òô_Ï™2(P­ Ù‘ÅüÐëàžUFdÌá˜a §£†‡Ôê!Ïq”)×'ôeÈ(‚‡éâZ4ƒ,¬ºÔ ‰r' åUV‹ªO€hO*D¥bs‰:¹œ×kèA8 t³Ìž„éùºøŸ ¹þu°nÓ÷ΔçÍþS½àë ïP°]\%ðú* ï°§Xçv;dD-©)tó¼ÚUZ‰+þ q=ç¬Ð^F—4fŽV_ÃÉf ýÎhe… †~Á!¿/³Põ<8ů, ×/›Ñtùð{ÄEºdß{µÊ©ÔèL$ºÐ•µúÜò Ë¬âãäÍת;ÇøÆv:`ÃQ—sà‚P}‘A[cµqª»³ïI4í67š–%‰!Ùkm˜ÌR\ÕþšÖ:õ‚з€ÀzÔ£+ìÎ9í†2•*+ M” •®YîùyâߊyTG¿‹L¥C_øQ“{ßÔrOºxé÷MßÊ|EÀS‰™Ý~’èR¨Uê±ÓyÊ:RDoeÚ»øÝ’þª nwš5uyKcù³‹¢ãÏ?•ÉV½H+½V VĖǪûýÕÝÚ.:5!ímÙ‚–Lè½2¥È(EïùfÕ®‹)aw(,Ïë³ ]6.ðûû.x Ž%a¼Ã?Ñßð Ò"ÚÜ~ç hɤ¡¿öØÎ;ÏÓâw«®!,x,ËØ 2…_á;ÑI`Ó>Aû‹a°@Òéy¹>ÍŽ™6·ý°x…oSÉ Ñ\G¨÷%“ª„àù„Ðå ÔM¦¥•ö:+ðòÚj¶ÇÒÿ-f|xù7¶Ž@ö`‘Ã7‡ ^7vBp¡Ð°çDâWž'Šño6kF¹ÃÑuà²ÀÈÑÕ^¾JžÓ£¶¤¿½õ®§šëjŸXŠËŒ F—!êŸì%,â8GÒD’%±$š_Ö¯|óæ·^…͕ХUV h{,uß^±Á"+ôŽ/uì•!s“»¯Ô‚ŠM#ۛšm3Btµ} w =¯•PYþ¾e£ øfï9çÆá5”5ÑœÎî×7»p:üh¬ ¹ù´š'¬‚ôXÁ„Jõ…÷™üåßÿŽªj\ÆA/›²v\XûML"´#J‘©%ôÿƒö’»îŠ­‘XýË…œòŒ´zs;^ß|®œ2Ècã.ƒ÷‘è \ ª¢®CÊB›vùed{%þ§²1B½R)L uÚ¯Ý% =êØrÖýuî[:™ôÜØˆÈfžW ñÈ®ÝH )ˆvðy‡¿ÔNa ”9àöžÇƒÇžI÷ùàßÄ¥¸„“úoƒ—‹ªyÙ\­³–67ífšÁ£‹b¶´ÅcРºOì=xš!Áqw\®Ã{c/òx#÷n I6¤Öé‹ÜuêqÁäÙt e¯¸ ‹“ý°Ld—/Vó)~áOZª@iã€öa‚Î~¹\ ûeVH±¬9C÷ÀVWha¯|]õÎi&éòÆ#d=¦„¤}U 6®O×¥(àÖŸ×Ý2£Hµ½ÉU<68ßÒ±\ò±‡³TèÀ:ãŠÔC&Nö~xÌp9®ÌL?ew®ïKl”]#¯Êƒ^©{ñ±â] è¢ö᜼áéáók+,^þp–c휖DG…ÉažæC0±ÅÛLJYv“5$± áå—L=ásðs+Þ¬§Ñ¨ÈLÐ4rr €ÅYÕ‘Y–=´¡ø¶÷ñ#Î(Œ¤·ðÇríI–€=TѽÝàÂ6Jó8xÀ~é1oR<'¹‰>>5cM·%o[yñþŸÑÅc⼟;t[Û|NÄ—/ `Æj}@¦–ôu½‘‘S8C`ãÞþCu(ž,Æ&{îh~d݆N;]ìf!5£æõ4.n¦#)Áø^4':Ò PÌÇŽqÇ€ä_@ò½bbòñÖñ §Ä^àwÕ±©KúP,V°’òÇ6è17= 4o©eÛHA‘bi›¢eCR»åÝ\2DGÌžÁÌhÕ?Ö»¦§û\h$/ Æ©[Ôšùà”©!Éè;H¤ û9ŸíëRUŽÅÏ1üù>„ªyÛ9›Gõúgïc!¥¾I…Ù9åÇŸ#jå»á#ª%Y)°]õÇfï-H9z°ÁsŒØ„Ë òL\Wþ®šcœ<Ÿ{*j-)ö[±íAÆ~>HŽñŸBþš¼¥'RÑk©¶>¤ÈÊßÓ¸›èe}Ê윩Ý;ÙvœˆCöÓ;äA8ö '‰5Í  rA…÷Tf´JÂ,¡å}n‚1}^¾'†•ýS"~Ç¢×C±¡mn ÆaÅJû~!㔣‹»ç>xù¡C=5€WzÒ>ëåewå35v•ÚÖÞm,³£ät:,ŽÈåzñF»æ&[# Ljp±:%^2íMÑv§”M/£zŸ)J×Ç]@–Bœ^¬?èæ;؃ âÆ² Úr{Ðèù7£šÙ+T‘䋵+Œ { [g\Y.MMO}îèÍ ú„­rjX@@c‹nÖš…Oˆ.¹Bk¨ˆKÙñp¬ã$L<艫¾AL‰`~Ý€œ<[Y¦x N–éüJٵݢS’ì>Æ £‹¹™OiЈ…†®c\Î1è<¢È%°ê£%߀\©/ެ E/WC%”À:±%^y³:·l˜…UD±\Ó(Û%“.ýœ¶p¹%íª±‰±M”E"§Íiq.—ØéŽâ Î:ú-®^2o l>_ùZJ!éò}ÛPG á~8úxxá¢G½öíª\æ)¸k¬ŠD¸ð3·¦÷4……s“ÜvºFÖ+Ä–×¹¥†¹l…é $ÃÂØo%óè¸ ’Ú‚ì®6@Px6ÝXÛ¹°—À·™öFEGÖ,û’ZÉÿ@Y¤±5¨©uAk½Ñ¨«ï="ç¦å„³ù|Ö˜¦õH`À;\f^÷ÓâÀ‡YÙ‡=8”þ±”:„yÃiO_zµ§¿™©Ã=üð.æãÚcoåÅ›R\¾Wb¹í.N`†´ÐkÓB»PîyÔB* ‹ uXDzQÞ¤Š)þ˜Hñýÿävò *VŸÕõ ±àœ½°'w^› ‚;3VßWì{`†¥ ¡Ø ͤL/%“˜#Þ¶ä;X8:%,±µÓ®%¸¡¯éÛ²¢ÌQ¹µ¯&¼œ‡¹…pñèæË¸ñY)7lj´#¹ânµU%º ¦–ˆ À@ÎÄx<ƒŠ¾ ¯sk¨¯“”ñB²éõ|Œ‡•L~s ß$9UÂèR0_z'º{À¨ÈTÕ G–ÊRbù¤f–{éHƒ+,÷Ń{ ˜ ¼ÐЪjðÜÎÇÌ“T¥Iƒ±ãß$QZ÷©ßŠLŒ˜÷'.¼ú£õ˜yHCÙBþ4³×1pó£FÁ=Ži•%I¹š 7ÿtUoí š#ÿvÏÜ­RÆC‹ |ØáܰB¸…-ÃŽQ¸ï"³²"(¯•Ùê#5eç åS<ÀSìƒ;>X¿ÒÔí«~ÞÑ‚Ç0£#fp&ö=Ícc z¥ªø áý=±xËl8Únx l»„¹†0.;öŽc.½½¿Ûö¸ s±Ûë£E½ÃcYé‰?5›ÓÕk²Åêã&.Ø3`vÂÚ;íô˜sg¸)ž=ÆëùÛjò«»8ÀÝ ¨NUËèúÈ­Ó)Z¥í»GšÉxa3Ä+æy×¹Kuä0í¹**b ¨f/ùÛ_‹-Æî´ˆRÑ’®'¢sÝ¢SÖ!t3vrïϪï˺@IaŠÇpqGµ¨aøb¬ÿ¡VX9öUîa¤ÛÅïÁ+„÷ì£Îð‘° ‡·ÝÞÒv#”vdé«V'²â¨³¢!ÑOˆ'€·Í`¹,œ«(ÜÀ¸SWÂ$Õ¬¼¦ Ü>1¬²s@Û˪Éaÿm `}­£-™M;·`VÊY¶*ü·oy°–l×'V†n[ +IÈqkýeÍ'˜†èIîŽUmif7\TŠ7¶Î¬NB²šÕ^ù×Ð.¤Å¼‰ò›Cõ öãŒ"1Šý È®h%8¼7=í»»`é•S?Ñ  óžžØªd,ö2|Ï`–ëŒ1öaÒ&7ç2ƽTÍ®å,6*שü’9i3‹ÜÍÑA2$¼=ýzÃ%êÞk4ƒzR1]qáIƒ‰ÖDRôç㫾òs­Õ«§ê·òKh±‘!aª’à›J1_„ᱩ¾³ùD‡&$Џ\j0zÇzX0Œ°L¥Xr -¨B/“÷ß\¿Æµ,ž.pD—®fa@Hn9]ñUÙºÿ-O„ÑËÔê Ñï4ŸiÔ¶³[pøeQ¤‘Ù|÷kQyÑÃ!Ê@þÕNî6“¯C,žÖgÚ§w‰ËV]üêk˜J\U‘‡KCAšC¦Ù{!zùx˜yÉÐ6#÷”‡ªðwÂQq›p)ìÜl2âV»ˆ2ˆõÕ#);\¾°Ž·p·qNBjVï·Ò¬aÉõ­S™4ÙÔjÔFˆIæüÔ¨vøM”¥:‰KyM⊸s ë'G?”¯Eš9Ä)_JªU¶=Ž=ä¾çÿŽQ V†ªjÚÙu‡Â÷®+pÑCAúcð´­‹ï;a­|Û@f³˜¾,*Í>ùOø?˜é¨YbqÀ4}Ï-vùCAÏþm18Mn¿Í»CãŽÔˆîÏUì#3 Ò§I:G—îUáç<·•1R:ˆÜ¦&Qµ‹°|Žk×ùI¸¶G9‘›¶æzwjr ©ýR©œ›D øJ? Û¢4gÞ/õM°ß×ШVÖþº”¯é$šX[V¤ÀmQ¢(6–˜ñžÎèct%¾$µÖ|Ð4áÖh6N*CÊ…ã5®÷>j§b5z£Ð8D—”È^sÞò’ÈÛgË'}¼_ǽMSú-\Æ Z“kä³*áägPCð1×ò`2†Í«Æ¼j?_Ö¨¸®¡Â‘BKs+…²Ÿ)Œ¶ä»“ ›O!i®ù&tgSM[‹Ï€bì“§öˆ ÈÚñûA§Ô\+Õ¸ñRûŒC†ƒ5ºiŽ/²¤î-ß›. ëÆ‹• müË=µ¦ÕA»àJ݄ؗšGl>`þ¶ˆVÿO@‡Ë4J(ö£¨d¹,&wÇ4£)J¸C[VdM|zYt³.ðÒO>Q°7ÅQ®j#‘`|˜gÍy‡Vd*ñ¥(†–Õë št@<´§ [!Xá¡£³ý5ñT95 D.x™:Lÿñ´¥5$Žžú²¥@QjÊ›L¬Í´Ú©RÅßûU‰Ë´ X+kL 1³KnL§ 9ø®Ø„%‚ϳ) ].%¥U7¢‰/ðS?€›ç‘"‰·”«Wöo"Ù;SÑ‚ƒÍ>zë9NûJ6Þ2×ñÉ?@x¬Ý(žbUž…bÑ“ÔÆÍ‡zTòŒ*§š†fDú[´k¥º;lï4—|‚y㔕o~ù%L»}uõðü^z¶ýÇ ‚½øø)5SZJÄ<ÀM¸(®hˆ;’ éR!BIíî´ÏB«g5ç"7|U’,O*ö1ÏRãZêNô% ?ƒ¡%(85EGeF[u„l7³zÂ<ζأ͈TqÁMá€ØÄÎkWú5óéÃZ=¼ÜP²>-1“—#4è¨Ouëû®¼†UGPÕ*aCií dä´Qc M†<ªu©¨L‘–Å·¢Ž}x‘Œq+ã©ÐBΆyJê–Mã©’#ßNÇ¡íqù…C] »È½Ð©’Yø@ÄÈwߎ¤Ô~ÿfÐ/ýÅßXg%S»‚Ÿ÷›½7)ýV íÈ^´ÏÙº¨s¸t+Uø­~³é>Šù3¹ýP¦W¹Î…t>Ó=a×ÞÛ„?Hh¨ >õ9ÞÑXo©O”«Î—vy.õ G®"Öâ§LIÚZøÏÍÎâšÌ[“°¢gÅÔ•ÎiTј‘Ç{Ú’~†_N)¬÷SL3ÛŠ‘P´uºã7ÔŒ³T{h‰Q”7pC™°™$½=KŠ<N¦Ñ•°¨Ä‹WØ2Ý–Ï62)$õF£ø÷”(ïq Ô¤G¾ÑEv?ú{`@=…†AœLAäoîëZ®UÊm]@b0vÁñ `¨V«CÊ¡/T±Ç?'”|¤éO­z Rv¤o RþM8ÆLO$üD›¥*éIwoÖ1§ïWmìé‚DÃä¾õKB*õøó˜V0ãΨ†4É^s×K+DnUùJKöÞó'†[lçªÞÄÙv¥ Ý(C7©Üõø›÷㌽ú+l) k7ØÁʲ©Ü¹Um!‚r±ÖÖj ×##€ë‘¯ ÑR8Ê€”,Ÿ; …~øo8:A`'ˆ mK0¿ƒkÈê—[ùᓾËaT0m™¦4‰¢Ï#øúEÜ,ó³×öÎe‹7åË`Ø÷<ºHY£Š­¹f6DÄ\ öƒ{„’ð¡vApÎé5¡škA½Óó‘ñK~ƒÀÏ&Z”eü?.9Ùµ±±»Xº/ÀkÅXŸB½^[5µ,]Ä :Š[ïœ`¿!¥j™Š åB(ö>Á?Y?2Bãn2‡{%CýB´ê´0ð„çÝ à”ž1@©sÁµa71$3ê+ _ÉGü‰çΰ$adjÕå²hó#Ej-ùÁ –Tw]ˆMWÄb` ’¢›Ð=S {n” ¦øAÝA¼ít ²ï`KÎÖÛXü•Îw‘yìÌŠèhü Bø–DhÝXV–[8\—[1°”tÊŸ.8o¤ƒ ÏQˆ²›‚4­™†#æ1ãô3tÅDSv+ÁÙ~­9sŒÇÛn4:Nî¼),Å“õ3Ûµük‚…ÆÅHí£ÐèZž’¡É@ͺñ²¦©V«Ù» +çq‘”ŸÙÏÒ#W'r1ËŨÙ}ð8xÜÅú\û|‰Ó”°ž4ëi°ãQ~$ÁOŸKõA–`lûâRÍâµ,fÜl’Á b¦d· ¸^GxðŽv>«4=¥»iûC çlI VàüâZù¢“wÈnî´ Ñy$gêŸb‹ÊåØÂŒ^ÞfÜ‚§Ç†”‚õ ƒÚ8²_ìßåößÓˆP€®´drDÇ.h†»Ée” ˆ¯Çþ€4ÆÂl"Ä6¦Qug³¤I/Ș¾äV¤\b‚W,ðqlÈ|H,±ŸQ:‡ûJP÷Ô‚ÎÈï:PbЙ+#rQ à.Äûp–ɱ3ŒÝl£í«h¤^‹ *³ä“ö‰×· ¦¢LøS¢ôuI{ðñ½ìwéÂXNz‰ÊnÝçz”n·¢9l°ݦ–}±•,¦å=Ü‹¶ãú'æ4$bgØÜÓäLÔLCÛl7§ßõþü³|»ò´ŠÎŸ»m®~Vs/þìI&áLiŽ3i©æ!gHr,[áx…¹—6\$·ð+òhW£Â\"ÑrØYœ€ÖŒáPgè°Df„0ªû]oê A“mݰ E§*üw„Ú'ŽU‰9$z‹‘°^hƒŽÍ]dAOûM¾Ð•ZÒÁ`¶vìió%‰¾ü M‘dõ1=I&¡P¹ÞA‹2\\´+ù„tü¢ZOJ´KQÝë®óij¤0…˜«þÆÉô˜x03‡‰} –öéršg들¦G™5\5ŒCݰS×öA+Ÿ¼Çœ™„mdEÐM¦2ùV€z†*pí~hŠ*{ÄJÿ݃Û׈>gó¨ žI³ƒ_SVš†ô§#Ž¥6† h46[$žrö®R¥ êÿŽÜ"ïz³^RÌ ¸ƒó±éë¢F±0‹ÀÔ ‘{­í@Iï †¬yªøÈV¡8u²”1æ P'”N®àÝ„<ƒQ@êŒå7ôÛn%ÞöŽè)XŒI·dúHNól …&5Èðç äð8¾pZ¿hGÚŠŽe2ᆃja×ìÜ5QŒ1¾<Þùg::S‘dç5°ÊÅŠ¤®K\Ϭ É}ÇÊ!ovФÏÅË<,FÜ»&‹“½ï²x˜*œÛh{óβ@YÏ?U µºP¢¨GhöÏM4uf n9ùiPãVâê°ýV«l…7Eé/rüˆé™ð–*¬¦Þ§Õ/ÐÂlÂÈAQšæÄö–§“«¹¡ónbåÚ½McYá”±ÀÕ eMhÿÑ__ë•*_2%pn×zÅ4á—wG*I–iËL ŒPà8ïÄuýĈ§$M¡ð5úйØ?¨\uUÄr]e xOÉùæ>Û 0­ë:C½Àqw+qYÉ:ËÑP¶ÉñÿRømr§A7Ÿ‡.ü9;(‚q6œöHgz°,| zàåO “fÔ³OZxHó|½0½>Í6yÛÖ“{ˆ$mÞl½ö„ÿ:¬Ïo›µVþâýõ´kÞ,ƒtg#/ÂNR‹b~ÿ1 A”ÆÍÿnqƒiSÌÉ)WºŽÒjÑ‘2•q´íßkå`{–ÞÓÚªN'^¬mÚ½éüž+ž$Ä;G5ö$oÅɰÍÜ9¼bßæü’öá´‰[7AöDm–áËW:S®R…4•yD«M†å;tÖKpß™ZÐêa‚<|ï·kPþAPㆉ-àÚõü ¶ó»ø»5)Òcš­¥­23ð*V猫m²å£ÆKÚKð¿úäo&`ñÒøã.Yb;]ߪžm¬ÿ2À¦Kº'q‰Çþ|¦X]ŸÆnºêÛ93JÖZà›—TáÊn¸*ÒsäÇIÖDšÙ|-XHA[w¯³Š<„É5‡É,öq9oÞëÿÛ‡¿a¶C~¨Š»F0»ÝL±®wMuºpüà5T ÄF{rÆ qéä;d² 4ÕÔv¦€<é)úǧ˜ó9öó—`Ó‚„ßÿï\Vÿ|Ë4qÚÅ:F¸¡æÝ,† ‚‹ç»X$ñ­\É €ô‹{í\`2EãP”ßð¾Ý}’tñ•öà ¥·6¥ƒgÌé®ä®fì‘çàZp9Á¨'uÝZÙ˜ RÊɦìv¤þü¿ÆkKÈ" ŸÙ»ß!äÈ¿>,Y§úœlIkqëQ௖ɾ‡ƒðzºçëb•éÝšI+D/æg[£K·pÓV|+XÏ~¡-Õ蘒%±«I?uµmüͦ‘õ3|kÇûó XÂ'7Ü×Ã×ÛìGwëw‹¾;ªÄý®a-EZ>›0¾Kl.éåH-߃ºnE° r[“m?غ #d/²å¥[ÿ÷[†ÚŸ ÏÜU©ŒžÈüÙÔ±_ׇD!Úu3¥'·©AJŠÝ/”üÉÖ™ oé5ùKÀ'¸PêDz2Gù:ÓFÜú€‘ÿȢ|8|ùžÄ^þ…‚¥@âïʃ”+§êõº¸)_Õ-Ÿq1XâÖ©¤§išÄ‚ =)ÿ‘*Ë¯Ãøi>ÄÑÿíF=rvHü¼u]ö:îðª5Bj©Á°35¨Ñr•ch¹?¤.?ïJ1G±XoÎKÙ¾`dn`°hß“™;Ÿ§çyÝ“ºóïæa0R̳ÈÐ(^ŒdEµï8AKa,'zÁÀ€>ª°N?7›üØ1:Ù t€`›˜QÁ@æïržg"­Ü DË…<˜Z±*Ö£!ß-ˆo€ãUF…tkbE˰*ÒG±(±Ä€Æð¤ô'¤2çd¸5iø pÖ9Šô÷±xÚíÒ8ëLæï´…h ­„Aw+p¯äu¹úÚõ9`e´,ªù«¼`0D«ajc¡¹Í5ß?E‹wövÌÔüÒð‘¦â¦¾¦“ ðm#KAc"ªÚàj»„~±wù S5*ï‡À¾œ¬ðã–üÕj€r7øÈôŸÁfG$oqq¹þ!¹Öçùâ;¦è„*Ü0ŒZû"•ñî Á ¸rCO‹ÐN%´õ$¼ õ_ްø4ZøÊ-Ó{]›Ó9`—Š^¡J»„ëð©±3¸ü^íe×ðÕP”Àbr„YÖŸµ˜có>®‘M£ Â*¦û¸©XœH YO÷¦kŽ ¥Bi³£t„¢üZ6q–=çEqªúîg핇³ ºŠ2f±Ù2j²<Ã2óEAZ> Ë–éi!£Ár6úJø»º‚ó¹`S¢\Úñ޶Ýe§È$Ë*á5üÀú¸!i$lqÚYl,íiS]SVõÖ‡òʰM Í:¥rPùzPËOÀbæ7êt•iåLÊo%!¾¶}„^@ø’D¯±Jþ?ᆢå¾{Øno\ÌC†ÙRtúG„Y¸z6‘ž'¨ :p 8ÄO+Š•Ñ[·fÛçFú”0AÕ ˜¦õÞÀ:ƒ~/¸ßiv‚‘K­ëØ¡ëRÓ ÃçR© ÚhëK-¾³´´µ¶¹ºº»»¼ ¿ÀÀÁÁÂÂÂÂÃà ÄÄÆÆÇÈÉÊÊÌÎ23ÏÏ99ÐÐÐ27ÒÒXoÔÔ14Ö/-ØÙÙ ÙA?ÛÜÜFIÞÞàæVZêê ê êëìRWîosðð%)óö÷<6øùùN^ù¬ÃúüüK]þ³ºÿ ÿ ÿÿ#ÿ #ÿ()ÿ@KÿNZÿniÿtƒÿzÿ€‘ÿŒœÿ¢¤ÿ¸¸ÿÉØÿÎÝÿÐàÿÑßÿàé…UÁïtRNS "*/58:=Agi¢­¸ÃÉÎÔÕ×Úááö²bÎÌIDAT•c`Àøx!47?„æ˜ÔËfôÔq‚(.•¾‰É FÚ„~U¶ªîÖÚ®x†¨ÎʶŽv™¸úìÜæÂ¬¦¼œ†LYR±ŒrGçâ|WïÒ)ˆ©"^¦jš–â0{…<”•””Ü…á±¶“WP”3·ñ\Ô½ý´ü|À\Fû` ßÄÐðO³H'f–ê «Ø"AÝ’Û°V·èÔ =IQýšô¤‡i-¡Ý1Ô°B—™ Æh*ÛÉòÝIEND®B`‚images/menu.png000066600000011657152330733730007507 0ustar00‰PNG  IHDR†@)˜ ÊPLTELiq" <58sssqpm ttt tsqxxv0?b………srnxxxˆ‡…);R.=Qlll<ooo<3$nnnttt~x`)*ìm…5Ÿ¸KXû«m*„RR’ÿûG€UìéÝÃÔÓ•ÏÃûö¢¼¼æÕdýaïç÷×ä—êïÕæžµƒVÙ–e¶òtÁ—ã•Ðõþ¬³ ìIDATxÚì›kPIÀ'HAˆADå½€€< yJÀáâÕYžûáj”‡ T¢ˆÀx@Ñ2 ‚V . ¨€(. "( ºø<Ÿ«žëº···wû¨ºžIPœî‰…µuå‡ù}R¶Óô̯ÿÿwÆÀÀÀÀÀÀÀÀÀÀ€aæÖ|¾µùoß/›…aË—hOk¢«kò>·¥¿!уmÄj_‚Õ¶4]ˆÅZ¿_Ö5,㿇‡mB ÛP­.R©Ír© åbXI õ_Þ"€æf -Óµ µÐE4p¢zLLz¢84w…„è뛺¹™êS\3ð7d¸B7:ø^É?DÅ×máèQ-ÌùÓÓ*Õ°Ìj‘H$Ú5g†%D4Ú\jÇ/¡-p¼ÝsssKVæb.%%.”Æ„¸·H ±p÷.ÚËÓ“…Yôvvö¢ÚMzº”ë×+»zhbMØÈH÷Ý3çܼݒþ—Ù¤C±à»çÐx>Áø¡=¾¶H _|qTü ]HXËd| k¦ H^HÔÐE‚¨.c§£ãNBƒ7°P&½dƒÈKB‚ZƒII‰ ¤áà,è4X^/þé!²©) ½QXx#Öo‚EuÕ¨T5]Q˜ *BF^µ´tœ©Øµ«âœ)ECýl WÆwÏ0~%iáøqà§ÑàúkHu]T ü+ǯHp M$EgH\¤í/ˤex7"/y°84I)!îòå[ÄårBÂåË´ò&'‘„çÏ 1ñ ü¼=Që5Åú¨TæðîZ]mëèh«°¢h8¡&“¤‘zçêüÝûfØ¿iÇZ %Ÿ/ƒ’’»×ÿ³äç~´Ñõvá¦:Ǻ3uu›` –ÒüyP…ÈK kñ&?£4öˆFƒý³ÛOûûQÈhwàçRt)jzzjÀ‡(D·a-ÍÍw­ÚŽÎCþøüS’P4øŽïyø/ÒBe%á­Á¥qøßÓUõp‰–àyƒy}·ònõáB ›ÚÛ…ÅçHŠa >Ï»Oá/qM^‚)ø§'­†‡†‡ÇââÆ¢4XXX>{zûvgëßÃ%Ösï^O£ÐÒk×JCáÂ0PS#ó71ñ—Õˆòà 44w4P“Òã/üñK†Çép4ì;0Ã>(H µOžÔ"=+U`AÙ¨ªçCƒ’à“ƒ“’¼¼< .ùåXCñõëÂâ: ;ë` ¶Ý „"/I]Üi5 Vß'/÷«,Z¯çõ?½Ýº.¶`YváBY¤eoQ¢D;øÈ'Àt3Ÿø; kÐÐbÕ ,X-€4|úWBƒõÉüÏgÈ?i°PþPŽðVªõ¤ä¶A‚¿|¡%*îÝÿƒÖ°¼£ôòR»”‹Ô°ŽÌO%%†‹†‹àš0u¡Á½µx²ÿé3wdÉ€÷н{Cmtç¬ÁûUsËÍnïy÷Ú:¨ ÖôÇäL§ÓVJù'IäC+%1° ?.ö ¬T•U `Á™­€†[/JûÄ}¥¸„ËEhÑPQ8ó²ÒàÓ~JíáeÃ%d÷ÿ- ¾TÕ×WA¦ªûúª§¦¦ªÇj§PI)¼u²ÿ6Òy¡¡½ýAXïµ¢¢k½îF”i§š–Ëeþææþ2¹|Z'¥›£Ía!æ˜iS›µ-ý,Qö¨5œM‡“»Ó•ü=ê}ƒôÄâÊòò#€òòJаR¥Y9ÐèŠÑhÀS4ÛP¢a WA4T\%5¬,;EzhhG—†×jj` µ}8ÞW[[[}-B'|¨•&0óçÃZ IZÝu©%Z¡”Ë&&dr¥U¢=[Fo®_­î¡4µ^fÛx(ÿk'''_kÄ®ÔðÓO¤êIÞòRÕ¯4$¯ @jx@FÃ9°K)éá¹Têî½à_j r9BÃqq?~ˆCi° ¿ƒ¨Îê íùçÞ"µ†¢^ʰQù+å¥Ê¥¡%ŒØNÌCFQöÑkÀœò¿Ž ÛèŠ+++|ûíð¥ãO#¶Ïj¸ÈÜkøîØ1a…!dá;iY{Y·¥ ¦]Ãð0¬!§úàÁꜜœ[ãr` öC–ÌÆLjˋ pä¥hhû¤OLÈAˆíÇûæèHñɸ ¥Ü¨WJh ô€†Ó§ §OC¬eÃJ¥öÃ$–O®úm“< ;Sr,Wú,·¥ï·à?j ]]°†¼Y@lÃmÞqÒ%.*ÕP­ TŠiÿi… Q …WêU4JƒëÙÝo8‹Ê N˜v ££( ¶|P©d|íÇ'Nª/T mmm÷šCüÓ(‹;ÂÂ;ÞÕŒ…¢jNgJœhÛw8zÜ),*íì,-*¼ãÍx› •ƒƒ*Èq”á22¦î•”\g°ºBuؼè`{[5"žøo¯ó ¨Û×t{‹Ëfép8ˆ3ÉÀï¿T_æpºª/µpæñ¸\úng’Ÿ<Кà +˞Ŷ¥í˜(ëZK K[×y@)Ë€Í f±‚ÁÈŒ :a75…Ìî9¬¸•Ås¶w&Þ—ÑÿùtÞ90ÐY}¡f«+›=×.9:lžÏOp°½s°«+T=Øl.ç ˜P9×Þuu ¸¼àèð¡¡ðh{®ŽîÆÅòd± €]ƒO¬¬t8ÎHÀôÑÔi¶Ñ4,†Ùè›êéA¿Hþ°ÈÃìR?´§]¤«»è=n3žÿ†yÆðXàç¶ÀÍoMóçk—aJæÆ$Ã÷ð«! Õº4>~¡]jýíó– iZ¼á-Óܼl™–éÚééÙ¡~âc¶Ö+{É’l¯µftSráR}}?77?êëÐKœõ÷ ‰zÐKV¤%“mÉi+– 7&F‹}ô´¬¬ä$S¨¼íbg†‹h\¸!qkÚ‚ÙÇ«‚]»¶°¥©©k©ß š!,Û¾}ͬSÕ.;33ÛÕš“±xqFN¶1M·+w âW$%''Qÿ¾!þ­¿oˆ‡baEŽhs2ÁfQΊH 8TÄ ¿³éνExìFCxVâZf$ ¢”í)ŽŽ)"„†6dâ)© Á£Q'¼ Ñ`,C’fA§áß¾Õ —¦ªÞÆÍ›7Â3ÖÌóJܳ5Ñ 3FÅÃRAJRRV~ø0žAyèøìÙ@ü’D¯‰’üRRð˜œFƒááÏV/ŠÝo½ŽäRo2òU‘+JLLÜŸ¸¡ai|â`!ù³…ËR©ÓöãÅÆf‚¬ùdR ¥¥ ¶%¦¥mÙ¶mKšˆNC2ž‰ôãñê© ½*lm¶×ª[;Vye¯EÜü;Gþ×¾¼¶Da\M"wWkoí55iZì’K ¡e!C!ДRh #YXH ÇÒ ÂÂ¶Žºß…Où[wFJº[Í8!§íÁaœC4Vô›yß›‡žes öÛÚ¼¨’É…„¹Uh:÷2¡*¥À_ƒÜŽ!Ë‹Sã¶€aT¬ŒU!Ç0Õ±eã&Û"†ö8a‘2((/XÔôëòwqv’„'I&L[Žá¯[š_ÆAõ}Uû„ø"†3ß'ÈË2ß?“L{I“„c`0äk&oTJD¬MIt/2Õ¤L“sc8ÎHÖ,X´Rœ/ÌËØ$`°=ϲ«](Á0LF6e\„GÛ0¸„0 „L œ×¹ó`QYStºæjÕl¨)¥©°$[EhÖ<Ú©Ãyr'ZËó Þ™6;SW+µ·/bðÌ ƒéI1 6>]ă£dõ2Î}®mºÚ†\ —Z·ŽÿN€Ö044’¬sFáX­ áˆÎcFÂØ{.b@ºnÙc/MD CǬ8ÜN$%†ãXÀó}ÀbÃK0(Ã[àÓ¡ÜèL‡ç`A $‹³Ú£lžiêÍÆË¦nš^ ¥Þ¢ˆ.z/•£¥˜‚Mî E…Á}çX£°Œf®§‹Ö£ˆG³(‚õÍÐö|õÔ‰2MÙ‚á{ƒ4(™”ZS»”˜)…:,9 ÂZƒø×1 nÎ,)aÃþÕxBéfP+ßv×zu[úYm?ÜD$1õ8ÖÍ„D7kðÒO(N] Ľ!¯0ˆ™ÃÀeëg¢µ%»‹bä8£¢€u3Ôàú°uº^lÁpôÃIVÄ2o`¹¥I11¼ª8$ãñ@>{V0¸.7g×eÿ”íJ,ú:»Î%î\-ʦ¦-àæµ%Ð nš‰™çfÒ¼ $ËãœÒK~œ8" {ª0@ eâ†'Ûº#ˆÇ€ƒUª·åW>ßãoÏþrð똿Î)b(ØnÓ)û™ ^… Ô }=lo¹¯VÒTÀ`Û<(±ÕLØ`ˆ©ÝuG9ßB÷74Éý9*ªýU§¯Ü|<ÎÉÒŽoÁ*Ÿ—÷Ûº•a(UeJr á@ÙŽ]Ê0ðºyвHôp1©ÕlÕPǰÔõm5¥Å-_݃Jh]apÃôÕ¿¸{uüH¥kŒXšÅ刱£?Šp»£‘Ä ·©^…ºÖJÄ û_U†a;†Á¶9Û0t5Bª=\n¬jŽX˲˜ë{³M^ˆý ,t?Ö߀ CDâ'Õ”ö¯»OB7÷£ÈÏ%A¢ÓZý¾5ìIJý,½¨†,(õÕÿTXUâÞÁ¯èo°Œ8æƱaÕûíË/?ÒßPJËá)ÕÕEöíÛ·O_¿~þð¡Ûít¶%•RõIÖVÕ`pðPCïí,µítö¶'„,fß<{öFÚßй¸*/tWÀðÿö7|º¼üT uüwÎñÛÞS§ì4º­gõãÇŸO.…ìŽ{RÕ13¹ê%̓ Æ ­”W›kåLù*õ“„%4™}t©\)ÕNϵØhG±V¥.ÍÚÝóÁ:DÁ¨ˆÝÚŠáÂ4šCwêöP½Ugâq¥Õí…w×ká¸q¯~Sîd"nvQLIDATxÚì \[×ï±í‹mÜÔ®7Ž­I“4{ê¦I³7lMÚi:ýtË´¶3ïi»HBûruµÜjß%$!$aíb f±±ð68žÆöà$ØÏN³uÒf’4™é;çJÁtEfúø¥5âÜ‹¤»œïýŸÿùŸÿ¿¢bE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠV´¢­hE+ZÑŠHTÍ ×lÙB¥nÙrÍ 5+gcE+ZÑŠþæ´j{åh‡ÙÌáèt£•ÛW­œ‘­hE+*§>÷¹eþÀê[*{4SÀ`0\6£½ò–ê•˰¢ý7U¡ÿ™ßzaúÿ‚óÁàò’~í“Y›K7J…(Ž£B¹X` >¹v¥;•Oëï¾ù›—­œ†-—55«®®©ùŸÄ ×lY³kZ³åš d‡Ë~p×Î={ÎÌÖž={vÞõƒå òxËJú Ϸјt£Õ³Ì—K£c¡FAûóþ–zÇžjy¾Ímgµ±Ë¿þ‹UTB¥»çÖ>|=u‰ºþáe0$Ê72^{ݦ-kÖlÙtÝ2ÅL @~ÕÝn>»ðìæ~{u ¨ß8ï/¤Ã?¬×±i‹[WÿÃ;È|Œ­ºrç¾V;^K™Cµ¸}`ßÎ+—×a 8O¡,'é¯XRpÅr!®W™u:MÂi0˜”¯yõ­K §ÔÖÖÕq.¡ººÚZÊò€~ãå>pw¹nüŒlú'd e²ä}ëêVe‰µ®ÞPþžT¦^´öÚ5A«®Žå ®¹¶¬¨ÏYïPyØWÕÜz×þ/&’Û:¼p[M‰4\õÛÇÝ ·>þÒW½i/Ζ1¹‹SÆÆ÷n"ͼþöËë…—¾%±ÆËo_¿Ìœ_NÒ_±ºIÁåñ¥Žáz–ËéP;\8¯aËߟ~àvãK·‘{×L†X¾óÅç‹Ä ¦"x I6ý×77Ð?Ýúàµn^¶QvžóËGzÀy¸|‰E%àôŠä¨Ù©ö¨]˜ xËßèëhl&W§›ç@Àe²éËúÛ'û|®æ)OMóíÍËsì·>oƒ7úíÍæ€o/õ}+™Ý Aüܸo‘UþßQÙ-÷ŽÊ;¦Û® Ó!0z]™Ž ª¦ú¡§. ;z––‘Á›¾ö½š ÇxbÂ(Óë“òÅ‚úÍ7,•ôÕßÜ9eÐâÓSVȪFºÀ7¶ó›$·W¬aryr Q©X ”J…`rW°†”a_ÍÍ{u hjÆo^žØò)Î/é7¬NqØ\:¼y0‰‘ÇàrbL HïP•¤ K§³Ÿ%èçÁaŠæ•˜Î¤/èo?Õž/‚À_ŸÉyJì›ä;îØ¶¥rú„oÝqÅú+¾Zyœ2ôO†]§*ñdÉ–ÒœSýb”ÿ›f u9zRI½¨zScs . NynX3Ë \S›˜ó½x¸ÑàPÛlv·¿·©íðË÷_¢%¸ŠeÖ™Y*\b¤ûo¼{I¤¿ìæÍYÃ(EqþÀ•…Æ´óqTj¤ë²—ßLšgñšOª×% ŽËÐ饃Z8‰Ÿ-è s$7¶º¢¸ éÃüº¤2 jŠêãmõ¨TÌT”ô·Ÿ:(ã*Dî%HÿÀç-›Éö…nÜt&›öªí„Oͤ-G‡GÒI蛚>ý«Q“ËÌ¢¯.ýÂvZ(îóûåþ¨£¼·)#ãk²lq^ìl9k+=³áà©,ƒŸ¾ªêªï0xã½Ö^mª£-{üÈé$OŽª”‹F£T¡ržãÆÛ–úÛÆè\‘g™•¾9oÇÖü„…)Í,D"⠆Ț–­záò—'à÷.Xþ€Ç…ð¹ªûJ÷ÝÔ<ظ˜Ù£Ök–‹ó‘Ç#Ó÷è`‘ÈþÀê-µ… Aˆ¡xö‰ïþÝç¿÷ãçGÄB¥Óa`‰¹•d<ݨMy}¦ çÐÐ —N¯Œd›:íMátÚßì 7uÅL:«FgP9ä\gO98Ïê µ µÒqþrr¡Wo›ô ø¸Æã…\çÓQê 6K¤¥¢j¬ÏéÀÈX(y®tз@åa¿ cžØ—ø«–²‚ž”‘ñ†5lþ”˜y/µ­s°áÚrpþ©1'`£ÕM¦SÝ­±ñÌÐþžgé4Y d/t,\ÎKo¾z)<Ü顈 ¼ŸJÚ·#ïË>"U÷TéQ‘y'iDz†É˜Õ~_T»`E}~µYÂàU– úª›Û'Ðvó2q>½(=uNÒAK–RË¡±"Às߳߫®¨¹ê ßzzD„™\6JÆ ”ÚŸ×g z6C‚§ÎRê”,½ÑëÌ:3¢Ñ)UK ¨P$`“zhÏKtŽ€Ûpâ–?WÄy’ãØn¨l¬ÈQV"àƒQ t‘W&l^m¼¾­ šë3ý|L*h|¦tÐwåXOXôs(6xºàH:}¸'GyøgÝå}çK ý5Ý É”„Iõšº9´æjÒA_ýQƒÍoíM&Ó‘¦î†ØÈ¡±1:giˆ[ŒG¤•ú,œOo|p)±7w–Y§I¸XÚ¼oS„åJhtÀ¦çIs,VíbóPS¸7jZ°RéÞ€ å±w• ú»ƒœÅž¼{Y8ŸåD¢f³SçÖD1ù œçÊY OÀíõºxçéiÎÿ¹ŸtÝš0“gÄTµ_Ë2Λ<þh¼¾¿3=ºÓ`ÝxŠÁÑNl$ôçå‰ùØÖ‹”žÁµw5O‘¾œ ÿêxqŒoïÒHÿœPŠNIŠÞÛîˆÍ£[»ƒlÎ×|wÌióû´ÉdR«M‡ZfÆöÅŒ(à¼Y…è ±ˆ/ÁUÀª‡«^F7.ˆÕ›QTiJjuâÐÃ[î»oËÃçjµÃ0)QáåëɽLŒ8½éxwË‚ÕOzˆXV2追Y¹ØÐ_åæUËÀy퉇Ož<|â„6OúAŠ?/ÒA¿}€@Ϧ ÍÿÉÇî,\—/üø˜ÐÉ…3L[K›XxœuY⪋VTCгÌúT̉¤ÛSv>hllõF\Ö®õè@À©±òIýí'»˜FDãTÛÒ7œ/çïªø|¾D¯s¬èjÛ϶FZZcÙ;Ð4XkVóé\ÁêšÒAÇC¡P7D}}ô3u …-cæ%c‡Aþ.^V×ÍW{Šî­:ãÈW—ò&k8ªi!L"Jh““vqh.ͱ‰lÎ?°Îæñûå{­KoSc¶ol«\_ÀyŒÏ¤ÇÆÒ¤×é%âÞ–bÒßÜz>¼7 RŸp¹õˆÓíØÖAž€^¤wøR-‹˜µonIùzQÉ ¯º¹yñ‹<šo.?磓“ûvŸ<¹{ßäd4Gú=k^dƒ~}¥|‚‚'Ô’¦8žô÷œfŠ aˆJš°ÛÖÍž±F‚u‰L6¹qÕ¹u®gÏž¾@=ÿÚº£Ðu× q³^…˜UˆŠÅR9Màÿzè:z¢Ç%ä»nçeb!Kc"z“7¶®¿\œßч1 b¨Ë AO bNxüÉPkloæÐôzõa­Œf}¸tŸŒ±!ë[Zš› äÛfë‚HP$ñ…–Hy88/+è¯ÞÞæ<-œ¸eIÇg.Rîû^/bË.[t=Ù ´ÓãœZý»Ý¯­ÏöMžåóq¥FÇÂŒ Yà 7¾Ð c1–N£Äù‚“–@Ä[‡Q—=lwª„`ˆ@t•4™°Á $‚žiTy¢¡æ…áÂ8ÜæPÔ£22Kýeg8‹=çÌeåæ|ïØØÉ'ÚÛO896Ö›#ý@a‚‚lÐïÈ@ÎÓ1—?tæ×wmøüy.Õi{M)ï_9 ìÊK.#7®.âÐd\:5{|Ýýôb'!ÆŠêµ2×#v•Ïn5÷êÁ¸Ã}*3ŸlÐß~ª“M‡³g®$}ÏkC‰ç(~Þ–ž÷æÖJµ^¥Â¬ú½Ý_3´@uN»7ÖÆ[³‡öí†6RXŸàPJwѦ ×5Lú`ÐÌ÷÷÷ôôô‹Jçµ´¶wfb<:ôó©Tª¬ ¿â°@6Íy&CßwËRŽÏT¤Ü÷]Ãá .—³†dÎ?4hXµ€ón#a°GO¾¼îlOª×@ª3Ø´ÁµUUkiÀxì×襼+—BÄM)§‡•Ÿ„å_²<†ä“¤‚žeÓ¶4ÎạƭU2è«®ŒSjˆ¢ÜÞñ+ËÌyßèè©“°ƒL85:êË‘~(’Ù ¿69&¬=nz≧îbý÷Î2ĸΌ–z*efp1—¹Œ&âòÄrŒåt§ë;÷pòn3ÛCíÖ¶æx¸Í™i×iG-†6Š„Uú6‡."'7êp^!Ip}Žô ¯õ5i‰LÞœ'#ïͦ\£‘Çï»æº‡WgˆðJ]Ê2dP©§'‡ßk9”îkH}$ˆÝ@ß\ß0Ð6qζœÉ´‰*‰ÿó_¡þ“ˉ è!åáÝ\NÐïècóÓœóuG~±„ã+ŽìÎ}_*…7‡H>–ªšo´yü½I­Ï­N¸4&Ûá}ï?Ñ- Ô%<­nX— ÖÑd< „?&r¼°"^7„J¥’‹$•⇮#ô|e Ý<Í€ª 9PòK}Íã¢Ú%HôxMY9ošË]Æ'‡†¬9Ò†‘ ú­:Š‚‡zûveµºDý‘›~œ?;ßÍòøˆY‰ JsÝP)3—Ÿ:¹3Ö¢B5 ú:E.O›ÎÖvôèéf¡7›XJ•GP4‘ÀQ ìy•>c.å H=à·Ä„dЯ¦Î;´£Ç“JPDe¥…Wν­zÌMdž)ÆdL®  ¯ÚCãÊÝÁ&õÐdË‘öXì4\ëò£šÆ‰C} —½×bG‘FWÊó¦cC}Ñ ×H"èçÁÀZ@Ò£ˆ*}¡Óa#HdÝ⽑Լ70­š®é¹ìsMÉ^«?¶ìþiÞ‘1+Å6 ‡ÞFè£Q€zç AßFÍ¥÷¦v‰Š¢±ìÞã@Áv¥v7ÎkµÑh´œ ¿u7¥»8šó&Gtß"IÿœÄî›’-^I¥ç¹ÇRUó‹>µ?šŽz=&³JÅÒxvç÷†%|==&–ѦRíÖÒdb €^Ï .0”¿úrkäò›o­¨¸.£ã}NI¥"}æ:`þ_¹y$Á-5Ò’Ê•ëüñÖöή«³½5î×ɹ%ºnî CÎÓ%Húð]åã¼;“=<”*ÒÐáÑLÆ#=tÜ“ úudtDIcËb9†(MG?ƒÃu²¸„®(mÁ•BŸ¡—øÁ`kÞ›9|áÂáŒXõ ÑL2è\×™¤Ö9sftøØzQ‡`.7Ë®t*U›Z£ ÄaN°\z=áºÄäþöS1b’€Áóé{‡ûu&‚ô™×:݆)Ò““÷掘>*J5z.ƒ5l¶ðä½ó¸ôýŠg  ÷ùz{áÂÍxwsckõ0¡™½^ÿAÞG/éõÔx*Œöör–ôÏ4R(`ìjðiÎÛÜñ÷.ê]¶ÇuÓK5͹I *™Cdƒþé¬Í«M÷ºzíîwÎÆ. ú \‡òͬŒ'ÆlºcF\È&‰ûƇ&'‡Æüx!¤X³æŽM»[11ÙõÍÒAïnjmu.X±öÖ&wé ÿ9VË¡))§ýyÙ8ž˜8røÈÌuÀ ab"œ#ý‰XŒdÐW¿è$8¯ tL‰§Œ<[qçcCfê ù\fi)fƒÞM€Øó2ý¾CV˜ÐzhŸ^lúr€ž!qÚÂÞÞt}pâÐ=*wa›Ê‰I„ðÆJ„.5îDq¡D¢”²è¤þö1bÉ1xŠñ$Þ;ÜfÖ$ éG^k·X¦HORÞ›M޽8Íß¹´ÏP;¶Ì7æqõ88”Ò¼rÐ÷æAßÒ ]7c„fZô3³@ß[VÐߺ† ÈæafµyšóVmÃþE‘~ÃúÔZÎ/w†©”¹’-’ úoô{,ô K¯ Ög3gTÅ®›ç‹\7ghuï4Ó¥àvF2:1L „§G²q»R(TÚãÙ‘4N4Êå<]&ãp¤tÖN2@ßÐ[0éc±ž2@¿YPÇQÌ{)±œ:Áærq>püø±}Ç|³šŽäHò É ÿ£õ€óf6—!|hyêÖÝùØ) J%R9ݶ½‚LÐ[¸9γ뇻 6I÷p=;Gz õß~ÿî»ïœ;wôe ’AÏfHÜY_¯6Õ]ßwp÷z±oRºÃ½öjÒ±¸ÊÔî×#¸Öª j•æ(«³q% ô_!z¡‚ ½(p¶[Š!,`ÓgÏ„ýS¤'+ïÍõ"J²8ÛÊ9­5ì1˜LŽØæñ`›8Ö@o±Z­¾¨6Ýê€}¡™½n†¨MimÔþÊb)è«7uÀ“ÊæI”j«cšó©îØžE‘~{–"Ò5t‡Xù¤fk8fÝE2“^9 ô*Ú×Ü5±;\4›ýôd,¶ÀÉØÛÆ¸" Ž«t& w„ìÙÇôt¹c kϽÑ1“YFöFn‰ùͨL¹.œ‚ _¸zRa¼Ô¨›iôÌE €žvc™8oÏìëóZfÉÛ·/3>nÏ‘~É ÿüÏFÇ çé"¹T"7ŠÄF9²î׃~"„Oz1“WbV¾Ù¡hQ.ø‡. J(|{ÇÁƒv>E<(ЉµÞ@‚%3iàhK½‚!t÷ºÇhûö> ,zωØ0)j±ÚqÔ¦š1¡¢À¼¢&Šá1IiŠWm²Qò¤×ê3)±‘ }lW½Ç>EzÒòÞÀ¼ÄWƒ¾×k3¸ÌæDèþ¹ÿà>%‡’s9—x}á k6}*ÔRß0@'4ô&ÓÁ½øÈM&j ØóVxg{ËúêmÙ\úNº„å°4¹§9_?<ýµE=1‚Jƒ¶±QkPÒ_/Ò%.’ŽÜS³\7*ÁÒ;~¸¡(¼² –Ò™ ¯ ?¸0"¾ÔK— á¢iG!bÈš Ï ! g­¹"£|\(§ûï*ôæpª±÷,Ád÷<êoL…Í%ƒþt-\L#X”¸2§öty8ï 3'ûÂs¨ïd&ôäWN‘ ú¡BÎóŒR!`žØÚ<úýIƒJ /æqiÙ[JÁL‹^Ë…½Ì—‘QÌ9t˜)²ŒúŽ€E?ÞÕÖ×ZÂ6) —è <ÕÜœÈ@Ð ôˆ“h\0NÑIäR [¤,‰TÂÒ •R* ôw5 ™ó#k…,ê<“c&Hú¶ ÝNGŽô~+[Þ›s¾°Îâiü7ͽÃó‡b|žлý~¿×ê&=œŽÍžZGÁnø€™óÑ3>0Ø.¤µ>«ü•ÛM2èo9ŸZݸ%›Ÿ‡ ÷6µ&§9ß>2¼ÐWÔ\»¦CO¡è;Ö\›7˜79Yê‹Ä"7¬ÉX•Ùnê-Z0#Cê8E ¦Ú° "®º‘+–ÀÙ85.Ãx‘HdiSæÅh'¤l³ˆr[qµI‰`1óÆo— úHcÛb@ßÖ!ô &€ ü·»1˜lÒAŸç¼:›=~2cŸS™“dzYu>¹®›¯MqŤF†LÆìÌBAgp=[«É}„ Î"—{&AQu–:w¨(‰ý\n9@&Õ¿%Ý7Ðvdü=ÃÞSoVZ» !=nŠôºP¿ÙŠ+L(+Š[Í餈Ðýxmg¨àCU¨Öùà¤, }ýpJc‚¤wCØßZ¾¼7ç¬vƒŒ¹Y†us{þWK9Áj@ÃýkΤo¤æòUR‹¾È1{8µZåÝá0¹ ÿ\PŸùjMõŸÛ:i)¬“âI”NúlÇ9¿öÚÊÉ‘±3Tê™±‘ÉÊ\qØ;b’‹û¨„ä¤f3Â+U,¥Ë–lfö`Ó)ˆ:ÛìéŒÓ KTüƒ¦Qˆ"f§!_oGÝ¥¼¸²KepšThä¶Ý^èùæ@¤¾íÀ,˜CK`Îh«Ì%/˜:]Ç‘qé<˜nAûAŸ§ît98ïèê9•q8r!}l?•ºÿX:÷›Ã‘95ÒÕå ¿IÕuΣ(&”‹lŽzW̯ŠL.—©hº~U¹ o 0£ Ý2ÔB§d¢Lù °&ìÞ†Ìáñƒ»Gè™<¥](•p †J%½ÄÎJ̆H܈Nêr©y¤€~ÕfW­q?qÁjÁÀ‘™&ÂoÄ¡ÓQ•yŠôeÌ{SqÎâ1±p‰Do¢~on_˜C!!ã•bÂa¿×Gxéë©96µ8Bð„µÀCëÄ…­Ïë‡â$k$õ$ý¡×ÎïϪë¦×à Yoªõàñþ¥p¾ú–ʃ®7Ú:»b±®Î¶7\+o©†iŠ™nÿ,¹™$§)ž±`ŠÅRjÔ½]ƒýEI͘À,+Jj–\XžâšÇ½JcPåê©ÛmÄOÈôPÈ@ ÈÖ.ÌmW4*zVÒRQj~eìY",yDÎÊØá:šŒ.2ò!9úƆËÀyC,¶÷Ô„È´÷ÂxÜã‰_Ø ƒ­§öÆb²I_ÌyT(1˜4U_ŸÅ%¤3Ù2`1DV_QA2è»™Ðs“±Rk‘Š5}7¤ƒ³xìÞHcG×Hfôl+fµÃår ø×ÉL/A¤r”¥—£ð Ô-ýÄþ¦ ÞqÆ™3é!éÏCÒGÎZP$Oú€»}ž¼7¤è¨_­ÑKø|Ts桹/ŒŒCF½/*Åf¨wû¡IoiÎW˜¡ÎÈZÒu`¸°Nwøp#ÌÒ冘/¬4%³'‰1¹ˆ!SÔM­‡šÕÀ¢ï:>\<ç×n ºZZûÛ¡¡½¿µ¡ÅܺQZgIIvᑪš§§R htf—Ãï9>zV7ošâ±…Õ˜ÚxÌË¥…zšŸ¹µ%÷“×pàç×^ûó ¼Üï-ÖÜO¾Ú¥éÜpæë%‚Þžîhbþð`ãÀ¡‰}` ' ²02Õäwvã˜Tj+ÃBa×€–ÕèI±= #Šj=³H¯=ã§ZÏ‚¤WÛæÉ{CèÃ3 z²Ä¼ï§sm_? A?¼¾ôë«öxl¶@Øë‹¦S¡j.(˜:;'=5WJ¥£>o8`³ylœ}ã‡¡ÞØõWT¬­tû¢3äs“]J°ªæ¡}SIÍ &WB펴9¯ðHì¥f)ÞøàV‰u9ÅDx„¼ÓˆÅ{Ÿ¼µèÖ'÷Љ-®N9±ƒØéB’úÁKÊÅD€>ÙÑ088ôpÈ77è:’$€þÿÐiLÆ2³pt!• 1iôÿC:çM'G`y0¨¾#¿›Ò‘L¾Q72yp`ÀT2éWm¯íf±<_ÇØù™œçqÙʽ£ZJ݄éK“Àù‹@_A¯8ͤ˜5E2S8èsá•Cd^êëôÚC¥î?3:tºŽFw ív ‹´p Mâ~DêÐÉEbiTÂWÊE6) €HŒ:“ôÃÖ36#Ì’œ#}ýú}^~÷BvqöüõÍé·C-6 À„œýý ¶„ÞN7_¿¶â†#m¤HZÃÒ‹ƒWU?Û6•¦Ø£vؼ‘Ölߨ™Î¹K 6î\¿`~ûÊÍ«™E'8î ~л.ÔŒ}ø`nË€#·…e¶d6_Yb²j>{åLÐÂß̶émäd¯ü9BãŠP³SMª~ŠX.ƒMí4£". ù9Ùœw54tNŽ€‹FÈGµMƒ>@µäZ•Ê‘ÉΆWi¤¯¾¥²_FäŸGÔ‘±ãº‹8?–tàt‘§“ÎÌ 7Þ+Õ)Q=VüÅ(²aªœª€tŽFèù,ŸÛéŠÇú2™á:®SÏ7 ÃcpÙR\sOµ×Í&}ß:L†'}hž¼7¤ÞžPIÅ\._µ÷é¹¶_}‚þÌÕ¥__œX²ÙÝŸ6ï¦æŨ³« R‡Qãi­Ïâ¶ÛàÌ“Á@è‹ëBÒóA~=l"àkÝ}ýôïþùµEùç·öDa Ÿ`îå¶¶†Æa–ž( P¸îˆÛ/ä)‰ÜG®#ý “~·³PxÄëö{})809q¦a®âà‹,[s÷“Ç„ " %i…¡&<ÇOVåß jÕOáA£5ID¡0„Çž¼»äÂÑ9Ðw_zX™f^Ðw“úmzÃv&r~éLŽ€Û¶;tô–m$s^×ÜÜ>¶W¯RåVØeöþ®Hã™\«J¥ß;ÖÞܬ+…ôkŸÌy[sœŸ0q³9qà<qšž'ƒó®:.uéþn!…^¶K§wó‹lÐs¥M$ÐÒÊöÌNÐsUZ´£ƒå•Š$‰”oä{TVÜ%½ÂtcHjúÎ."½²7—ö¤å½iCüä“þ¨Ý¤—ð¸\£¾íÑ96ï(øÌw”|}€z-ìµFÓM!j.~àbÐO¢6¥£VoØæ˜w:ÉýŒú°€ô9_$2æ×ÃNÜôµ{ˆÝþùg‹xÏ[²ž7"©·»[>l„åTZ[?lé~;yÃCŽo¨leªÜ¾–Ÿ[Ål­$Ýž'Hÿt{¡”`´7ªM6Õ÷d' MO7Jp‹Xµef©p‰‘Þ¸ù¶ªEâp«-—¤ÕDàüøÝS_u÷ñ0µ;pm[ɽ'ª?< ôp¸7èׇ¢žÒAÿ¹\;¬Q‡½pmŸ7aËdð¼p0jñ†Õ¸ö8FÚ@û«AXÕÒÜÝÝ6DqAˆÁÃþt1è#û‰F°GƒcmÝÝ0:›\RY´ ÏP¦9Ÿqìðgq^ä8/Èn%Çç8³pƒÉ4!5Á‚óVŠ¢x}‚‚b퓪4&’AOãb-Ž kOO'¶O^¸PÇ‘Œ¨P©ßšmï0õ:½^µÖ;ጶµ"˜ GÍ OÁ©»@Âa_qÚréLMôÑ¢¼7]~î&ôGm&•”ÎåŠÈ+¦V­naa|pÍ«W•|} g.ŒÈ§4Q„¨Í³DÍ¢F´>¯Ûîq8‰„ÉDès=iJF=ŽÁ3“©… ˜ijwÑ1\½f£bÂít¦ù>r@¯òôÆ›.¾R‡Ãøê™mÓÛšã½$T˜Úx’&£08‚ù÷ à)`ó¨±ap¨=°ò›µ7Ÿr&õù=T,£ÜXA&é•ñxëXV3ˆåta× ÚQL’kÇ•Kåü«ãD阗8=yÈÆ”ǰ¹8/ ÂÈȽs†ú$΄Me`˜é\qµ”L Õ%œ¤ƒ^’ö4ºmîàD&›Ýw¡–Ë¡ù"—k^$‹$R‰T„ AgÃ}1ÇTpjÉý3‡Ü“žÍdäHï=ÝHdC€yobV«;! _~Y9@ÏdŠð+¦¶e\9Ðsz¶•z}]&€zƒÚö“>•Ow@혥|`=ôþ°Mm€˜w¹HsÝÌ }Mªc`½J 8ß÷Ý%Eno}?š#=,“Šç8_om½vǶʡà©ÃTêáSÁÖ¡Êm;ȯ%½öÙ½*¥Æé±6Ã0t2ÒÔÝØ3´ë©Í1Œ'2Êù|¹QÄÈš¯\¿hÎW\/d³fãbç§‹ÎÒú=Ä#@Ðw4ùÔ*QÉ…G®—°yBÇMF dÔëÑ ylÉõ$ùjP‰Ôu‰€™÷©’ÈE]cõ‘ˆz©œOÁ)Ö:6w$O ¹!ãM€OqþüX‡…§Ð³ºG+·“B@¥fèˆÄàt©„û3/jb¿PårHžŒ¥qù{¯Íjmjè £Örd¨›xN7j$X,RË­z£E/¶É¥zI ‹ØœZ2àó«”m~Òç½iƄŦ´\‹øe[‚%A×óâó¸cÌQ=¥oG‰×W½Å€ô„—>’O`–§ŸVžüTÂC8Ë:y“±E¤‡ñ6x¾•Éé°í»wI&ËúJAg#AúTêíøÛ°’ùÛ©༶ñ`¶}W&Ìð¼ýaã‡@†<Œp¦òŽjr¯àúG3zð¬ÒøŽŽ[ü^˜1Âë÷Z£cïü´fÕ•­l&W HŒ»ØlÚá«—€Âë…2¢òOGTÿ9PlÑ ¶ð‚Ä’@/©¾¦–}‡g –æý¾–&ŸCUzqðgÚ ©RmI¦â¡OU<•´¨•R†¢í2¯æWG;:F;ášI‰ðÒ˜J¤F1£î¿DÎ71“l1nОó›ˆì–ËsþkÿôµGµ‹ºeË57xËR)3WŠJÔjƒdÅ×T‘‰àŒÂ 5¼’Æ”‡ÆõZºFÛöƒ™]ôBŒoiÄÅþf¯N$Š»R©¸ÁÇ<-澸K…„yœÚ]$xnö› s“ÞÄ {ŠòÞ4Ú ”tÍ $ƒÞžPb|C®2¼|±ãf`ôÎÒœ7TŠYP‘Jx驹ÙuêìþCM¢z‡Ó1_(¶M.ésq•f5 Ûµýèª%½ÝŽŒ*kxûÐjßf=Pú @ù?Ä:G‡»põoDÞînÏ®–î·#o¼¡Æ»®¿ŽÌÚs5ß8}¹*ÖÀÞ¾É¨ÚæñØÍƒ÷¯ª¦jã‘y·¿+sØn‡—2¼O)ƒI]¸=R.¬ý3Rì£?7p¥=pƒ@¦¼ÐëÖH÷¾Y‚~½}ûæý¾}Ý«C_2è«®^#ãòõ2ÞÝÑÑ|IuttÇ“^ƒžÏ•­¹ºŠ\ÒÆ˜˜SLø)’ÊEt36º4ÎoXÝDƒ‹ ¸bÔÙ;z †×0v6Ðó Î_÷…Ïþ*’ž“x ŒZð÷ísâƒÍ6 úŠÓ«ƒa‡Ö2q¬~ôØÈ‰×jëÄi±@®ñ5«»“WH¿·CÈôq¹€®»Y˜WWûZéž›A!>éÜé¼7IX0Ü.Jï:q%É {œJ\.G4ê¹@OÓ¥3|Þ_åƒ%ƒžˆ ¤7xé“§ a›§÷5JKQsAlT«†·iÌDÀ°žÜ¤f€ôEõaM¾x¨{Ï¿,ñ½VÓ“àñ …º»C…yð"Cõ¿õä­×ß|ß Mz¸ôÖ÷ß|ý-ä/où×OÿÀaOôÖ¶¶XÆ©WÙž¸³€¸0çú¸”`!€äÞ%€~Õ~rHËÂs™×YÉÜOnö…[Á'ÔÜúB–›kI²r?qVï±Í·¯*ôN¿¶i.7ù< ?Õ¤õ;I}EÕŽ#LÌ…‘Œw4 ä:ÔÞ^`>ä|G<éU›…<摤‘ SJ /¿¤øF1&¡^R׸%KãÂ…BrTè>}®1Ó“¸6‡‰…ò馑óU” ôî:,ÿ†ž„M‚Q C)T™ðˆÌ$ƒž#“&]Íž´¿ïäPçzÆàÒå˜È(â1èŠ2R°çEb° ¬} ¿2Æ¿éóyo¬pùº+a2côƒ'Iæ|ÅѰݡQ …*—úè ÿW–€þ_EÆlÉ ‡Ždx uj¸uÊ'jn+Že æR‰©X—N 1Ovù½Š[öŠŠêÃÚ" ë–š,n F¹$‰‰…H¤ðïHFýü#ôÞ?¼‘~P+þvä?x Ð$ÿ@ÙAÊ‘|£9Çy]ý@ëÞ‚èü²ª(°fýž\ÙÉì¢A¿ñ®{pžefÅ”)þ@ï8¼ó¥—vî/a šb;0Í,!ë¿ñ®%‚Oøµ©S³‡{§NÍúS§RZ'ôU׎pE`pëîMµ4¶Å:æ‚}³;cí=s¾¡±#éu;̘ˆ;rmUY@ïNyÞ¤ß5Kyƒ^ÎÃŒ[KýÚJSÌcL©Nžùõ9Ÿß =˜n`ÆOý~ù@?3Ëß 4—ì/lW›Ìz˜­Cú¤=œKHêd,=±Ì.u¸7Ô–XW[Ç4˹"ÐÑéz.¯Ào %áÒË\†R¥ëJ>蟛ğFzí7,®4›U’2p¾â¨>Kq•Ê>Z_ßT"HúÅY‰6ɱ°©©©s± ß8d÷¼Q¢×reó\á© zæHÊ<õKØ•û)Ðè%F“múz‰ 7¹£‘³Sà81èOœˆDÝ&2@_QUý›,W,Ñ»<~m¼±¿3Ì)ÛÙÞÖPç`;Zºã©¤Ï­vé%bnö7Õä»8èL8›wÒïúÝ íÊ»èá\,S±4ÐoocÓåR‰U%¼»}ç9­Õ õÜ6ƒNy2“‘úGËú™õ²vK …³ü›ÚàtÂéH¡¬©á•öXÝåse†’-­gèÙˆŽ5'FRzLŽ_ Jc~V½ÁÛ QƒÐo8É¥_šôÃÖ3v¸V †·Êeà|ÅQ¿;`ШTƒ­Ì ÇP€z=Ëlr‹ŠÁ‰/Ì}®À•ðЛYzˆy #ôÕ?ÚÝxr)ª›êþÅßlíõÝêBáŸÂh4y:ò0èÿøç·^å=·åÚ7 Sê í,î÷^yý­?ÿ˜ôE®'#4ùQ+ÁùDwGóA/xqjæû·m9‚¡RÏbA_ó¸„-à%ˆRÂ&İès/¦ ¦Ò[¹R%"1òlãæ’Ò³y¨)Ü›œœzx çýd²7lByìÒA_Qµþ7#Lºc™lÖ¦ÆöƒÁñ‘‘‘ñàÁö†–TR…¥êa8è1B#9ò›õepeç@o”K$¹èšÙ ÏµJ$rãRA¿¾’Éå Q G”ê}ÝYñX[.õÆ•S§÷MFÔÎËú™é\÷K§^ÖûÝpha™j"uÁ½B¹Û®vµÅ fö ®ƒc'!O tÍ|Ü(Ò(U<†åéù˜H"f™qa’úÛ[Ù—"=MÁí[çà‰àz5Tbäv•óGÁ€ ˜ôÊ„Ã^fЃÛÃp½Rc¢Òy-­ípLkäÑ©Åé©9CŸð8L¥Ç0xO“ úê v·vö™‹êÃÖß·ÔuìV·¨fF{´þYþ—¿|„‹Þéyßo!B/µóï{œÀ¢Ç?úË_änÝJB”å³vôÚP¨µŒ~:Ÿš¹ù.wŽ…Z­¶uÑ®› Þˆù˜Š•9µÙÉhEó¯X`Ô/ìi,­ð½+àÓNÎôëMNÎúÉI­/à"ôÀ¦xÔÆ¨W¼©†ÎàÈñ‰ã#ÁXC“/ì!²q$L.³ tG:×6úpu9¦,©0èLJá•DÀülÐç¢è…B)ŸÇU,i9ÏŽŒ‚.lÑÝì¯LFa1·€:¡³9Q#Æ–ô3KŸ‘û.!rAÃf 8¢R&ÜÚæþìÈËÀ¢q1¡L6A™2)Âe3%z*`ÈØ2¹@(««-ùsw"´O#½9ÊàÁùw>YÎÐ[-v‡ ô2ƒ DÁ aé\T‘HüŸ¹’\žHDí-5·š€z‚bB8J%ôÕOíKwôgï?b(ªÛ~ìè’ÇeÏ÷Ó•ÅUaǃþËGAƒþ“_}ó½÷½ÖÿøÐX½ï¿÷æ«Mú>úËŸƒ$”šzÑ9ïH5Å{œ¢Z7Ë”Ÿ‹¥€[¿hЯºQÁÐIo)rRÙÄŠYÛTùW"30èé6çì·K=¦±[¢cc3a§?æýØXÔb×`䀾¢ªjÇêq)—'×;½ñ¶ìÈÄÄñ½ )¿Á ­b_Ä0¥ã«wT•%4%ú©Ss‚~‘%ƒþÚ&™U陀œ¯¸ó½É¨•ˆsKŽžJ«sM¹@_É´ÎHÜ}V_ÖBÉ£—)$žžhTB³ÖÛÙqbìhm-×d´ð¦ðÉvÌßìã&:ƒn7HúíF©MÞ Êkk–ú¹/hê>ôl®^$fÈ:ËÂùŠ£–^Ÿßætzå=ô9 1Xþ‚:³LµøNÍu^ªÍá„U3`¿’Êåä¾ú©ÖT}loæì;cá%ׇ Äm—3äþñö’êOŸ¼þꛞ÷a5H0.µxAÿ櫯ò'‚ã`! ©éש`heo:ÝœÔ#HföÚ]Ñ|Å‹¥eñQ7/Y°2•PU`¹BïFgruë /U*!¬f¥—X‚Þæí ú±1¸BafÛô¶^¯4ÐÒ¯æ‡YÀˆ8­-±àñ‰‘l[“ß„ÈÅDb†€Ë•±•Ù>³¾<œÏ^,òöÎ}!“¯P.^"è·º¸R=K…b'ré~|6Hd¹¶µžL:ž‚¾º\ ßwZ´E:Í×Î+‹3¾LÐS9 ºÆÄj;bqfOõŸ«­e*Ef›áp˜ %)çÊd—É–1B1C 63kkÏ•ú¹wS>ôLQ”·Lœ¯8jj­aµ:—ô0Š@ë©h¨3W~P‹çf  ÷–œ—Ëù|Ò@_ýÔXÀè:~ößþ÷/&{Éà< ?×笕‰åL¯ÇFTÈŸ¡Þú°è_ñ¼÷¾Ûí÷zýn÷ûïy^ýŸÞ"6#ª’ϯ ôž¨6]o?Ÿ˜Ú¸!uã÷û›úÛF‰»SŽªÄÄúZM!´;åÓ˜—;íBEn G¬Âäb—M;´±DÐÓ…:ß7ôÐÀ›ô>¿G'¤“zˆúµÏüêô„Yïˆ6Éö„¼&T$±sGmJï=ý«kÖV•-Ò¼–È¥SYÍfƒ~*§™–t] èW‹˜Ò¬Jý2ßòÓwN¶öZB£ëÆ´D^bÝÖr~ÃêVeâµ®Þ@&èwÕ)FÛ„Ëæ5ôCÐ+¤F)“-‘ÈdlO*S°éà2ËŒ26“/e™|#Ð×<.¿$éaY@z`AÐbeâ|ÅQ_:õÚí~¯»Ì 7Âp. †¨tTˆe÷ ¶£(Õ[¤è¡çF…`€ó|¾ÑHè«3dp'[z‚§ÿñï**¾»¯‰ÎCÔojö°„Šr˜þ–JõÖ[2ÿéÍ믾ò¦ç½ÀûpªöýÀ{ž7_yõuÍ'`Ó[pze©Îî¤Î+-¾Þx¼8òË‹v¸+IœNðñé%ÄÑïÔÓ˜\†˜‘R 2õRÊ`³R¥' gÒ '¢|Ày&MøxEÉ 7«Ý–ÑÑYV;ÐÜ µ¸ÕfAO°~Ã/ŽÉ•ö¦¶ƒ{º- 4=øZA¿úÍ-·–òЋ`ÖÑœfƒ>ߌcRÑA¿†Í@uD.}mê¼ók;wî|¶×@äŸoÚ^¶Ã[»ízêuý¶Â˜—П¯Sˆípf1¯ï`ëä;µµ2g}DÊW÷ê­<êWKè&©.O ҠϪ–x½‚ÚÚwJ>æßöP.Mz˜´˜ÍVpb§ÊÄùŠ£½‘x¤×ï·Z½e½ÈhäåT”T½þƒ¼^ Òë©ÅaµÐƒ^©Ç…€óF£HDèŸ>¦sXR ]gÿ‘¨„þÝäp×7<³iËsTêê®?þ è“O>ùø“è_ñxÞ{ï} ÷Þóx^ Í`#Üç]¥zé¯8 z¼Íb‰¦UÒñìÅ™Iò&½Ýnï]è¿ÙÅQ°Å-‡Ÿüê|*‰¬L¢ó€Á·Å£“ȦÒÊâk>÷ä`‹ܪí¿-ô¥#ì úÑQè×›Ù6½Ív(%¤‚.ü}.4Y[º­NÜ÷ÃrëЪªªÊ ùèF Šä‹YÍ}¾A%FÆ’A¸\™[sç¯O×ûœ°ž…2tCÅg¤ß»³Y÷ïg·’zš° jz»FÆÆÆŽ¿Ë–h˜ ¦Ž!ár2'Of1et’ÎtñäLT¯‘ÕRJ}õãŽO#=@=­®|œ¯8w7i­ÖÞÞrƒ^,ÒK0œ•Ï\Y5\¤è.3 ‡…AŒ"±XLè·÷!.{owÏÙ_ç3Ïß»?Fç§´…õ‰Fó1øßǯ¿þú«ÎWÞ|Síy&õxÏ£~óÍWœ¯‚æ?& c~ÂÚRÚg=ôb'‚èÜ~¯6€?8WEáœIïñx,KýúË™ªƒ—ß †Ï×M94Î<‚öüuà¡róåA–ìòË S ‰ÒðÍ=ôëÍú!À ”0d‚¾€ž)RÙ¢M)‹±¨¦Ü|Ÿz`éU„fƒ>תfÐRA¿ZA¯âó_«)æü™no³aòÈÊêÏ ôïšÚÚLï–ô¯ÕÑ&©5Ô–dG[€ž#àpØl.ƒFcÓØ Üä4.]FWÐ"[@ãÔ‘úË6g(ŸBz˜’ªŒœ¯8ª 5w§¢½I­¥Ì §ÓyõÀR¡Î¬Iµ©zÀy`²@ÌÃ"Fä€þ–ŒPeðG÷OzB²’J4®}z_zèÃa¯[ ÁßÌé%Lz‡Ãá^J®››‡v~3î;F uó¾Î0šš¬ÿæÎÑ—*J½”å´»‡†Ša>4ýz3Û¦·¹íN–”dÐWT½Æf5v ˜Ç~¼|œ‡ —1øBDŸ/%X}|l,AŸ/%¨G„|†li“±&îJ˜…Æ"ÛàÎÇ$.Ày@6ÊÀöÏŠóï ¡úNÙ@Ï °är ,}ïRjù1)C(·x±°NŽÐí>—-ÓY¤..£5n—P&8ï–ÌùŸ´Ž¶| éêËÉùŠ£ÉŽ†æîHº)m-3è ‚ôr!J5™îÈôe‚&ÕQ¤³xгf8+'8Ï`0HýuÇU¨ÆÖÛ²ç±/L7~í4©œ¯Ø‘6ùÞ{êÕW_}…Лo¾éñ€r¿fbóëïù„¥$BxèÅ tÕjìö€E‰ æus§Ä¼ :çN§}) ¿lzbuG¥yÒ×)+§ã¶ËJ½\•ðfƒúõæ}À“PÉÉ=iDt&3ŠùÅ2rž=!*V®Bmô‡÷ï? AŸke©ŒO—-1¼’‹™ &½´ûWÕSœ?éUëpš°‚ʵŸèω£Zñ¹‹Aï!ô#)LŒ8{öäÉ`ð] …©dhÌLÃÕÑt{€žà±õrZm­Ì&£4øØ{·t΋tÜŸFú²r€¾¹­µ#¥|e½@P/¥Âa»áfÎGÏøÀ`..!YO¤;;‚œ—Åb€y@@èo8Ÿ³œÞØ™™‰*¿F*ç+®éÖ¥ÓI«Ý x+¥Aο’|Û^…ÛìÖdZ׽丛µOŸ$²èa^x‘ùîÜ;Þ Mzpb·´ì•EÏÉcôº9Eï#³â9U!ëMjû‘#Å0?rúõf¶Mo³«Mz¹€tÐsØÀ°Æ¤â¾ï/'ç  ×ç9?ú}û÷&Ž_"èwddràA$…€Ü;ïS'”¨QÀ†eü`±ãå×=ß}ôå—íÓy<ÅHŸ»uiZWÇ‘‰5B©3mh޶õ÷ü>gI_Jpß—Îy)®=ƒÏOúýq¥7s¢œœ¯8ihïohiiŽ÷–ô°8 ½ˆ/Ë/$ÍNšg X+*pž/œ'J[ú •~ª±gÞùnYïÖM±ðËV;s¨'`O(÷¤¼:l;<›–ø1<1‘‹½p9~÷;» A,/ÎÁ³.2Òh4ÎRA¿)…àŒ‹1ÏÀ‘è“䂞h ¶c‡Ša~èLi{èÐ\ ?t̘Å'ôp /ÐyŒ‰§—•óó‚¾åðár@¿¾’+fÔ ‚{êµ÷üòŌάÂä<¦LÁ©íßúYxèzS¿¦®NÃr:ÔEHŸ»u© ¯åp1±Ib·š’akdü÷ ‹òü= œ7;;»ÐyIÏö)+ç+ަZc±¶ÆúÆîh™AS–  ûÆèž°êX'†ýª™‚¥¬Q¡Dn„n‘ñ¼tЯz¾›!Q:Foz¨¼·ësà.ÊËÿ¾Ç1ùiØ;<ïûó{Ø%Ï-ñc~Ù—OCï48~§/F<ÏžÂ5S:ÎT"è/æKp=n”Û;2#h’I,¤B¥qE¨Ù©î;6SpçØÜêS'̨ˆK#ôµ W²Ùã¿©^VÎÏë£/LƖØÞ/@M ½¤éð…×Nñƒ[•Š\­.uýªåÇ|õ7úTrT¥*5 ÇÒ ­˜Rãtzžoci“õGw7Mì^Ð8o³ŒŸ ÏKúÚÆÍwW”ôm»Ú:´e=‘ ‹Ée0xbåèÙB¨ìÙQÓE5ÒˆÔ|ó —™KU2è«·Æ|½óÄý÷”ù†­”гmìõ›˜$Å`08ÞT{ìÅ›…Þ‹ÖÆýyƒÞé48õÒöè<‰sn#BϨ+ôW6ðDp&]¥—Š›tàýBb©^'ÌE¼æ›É=S,T¹ ÄN‘`Ù¹¾¹•1¸TB1“|Ð×Öq8]®_^ÎOÅÑé^ç‹£'L-5޾bm¥Ñ¨tØl€ôR£Èó&â¸P.¦sÙœôê+–Ÿó÷fŒJD(•KQ•Æ0…ô¢V—¡tп\[ǰ ÝrÚÒÐlíÝûo T)æç“¡àþÐ,Ò'û†ÏÄ8`Ä=ò`¹®G›z‚Ù®žžöúäò€>ç¿«§äs—Ð5`´ áµ! ô×|Äòe·UfWJ»´–|\5¹$70ÇŽ“^ìŸo9êƒ0~žÆIæÒ@_½ÙÈe öP<óð–ûîÛòp'Ük<—w9ycý5l6CŽ+] •p)q9ƒ-¨$÷R¾Ý·­¿ZUµÌÌ˧)æZšbþÒÓWÜ`.µ Øôz!è‡BA0 ‘à¾é3áü=/ tˆTÌ`Ðù¨9Q@úT+¯¸µ$Ð3õ¨’/rzT.µ;ÒÓÜØz0kïµ÷·ô÷ö´¶þ‰öBÏç{FÔO“Þ>~æWÏ\ñÀ£gšÊmÎCÐÇcã{³±X¬aY@I®&V·™_bS ³Š0eä€þº ÀùÖýß-ÿ{mW/XxöÚ¥~N®âˆ €:nÆŸ®¸”AOÑëõªÒ@÷8 †cðíϻ䟴c.“MË~“<ߦàŠ%ÀÜѸ\¦ÈåÒèX¸DÌU ÷‘ z ¥ãÙ«—zô6S@çN5ô¹V.`²9K=áòp—ã6À\ààîÐã(‘ 3ò™p¾âÞ‰R(æ²ÙLžTe* ½¨UÂ2•ú£µuÜÞL–Åj:è Ú©L¦¿i¢õPcË`¶#M;V?t¢±)E"è7Nq>;~ö‰Í ‚ôºØçžÉêýÍ2øÊކ:GFöflKÏ z\?@Ï—^J¦ °gÖC»þR¶<,õ!O¤)ô~hà#ãåvÏç{P˹@±z–>ëõcX+Ö “eêĵn>=h%@ÃsJý ¸z2xá2yócÇ1xdpå¶j'i'p{w.ÓË”‹úÓ¤Ò#¹¬/×úô‹–zT¢ÅtmžÙ Ÿ®Ù£€±Kë«®ïæaJ“ÖwiÌ,NäHûŒ8_q?®dIé2 ç¦A?£•¥¿¿ÔO9óϳübž<ª hÔu0â=Ø‘ŽÆµÙo<Þà&-Þ#︮lŸÁù¼gý•›³*¬ñäÏ¿ºÌwÖÑÐÁ‰‰‘`0Ø™ ô4¦²Ïû+)ôÄZyöD=:¢àôœÊm¦<Ì–E¨´Ï®¾¯¯zvynáU÷õàš ï¹oéOò{†»¡AoïûÅ¥ zÊ¿•úÛÆduu"!‡tsþéTó ¸D4§®N6zYçoÃM&àa¼I"•yM±†ä®³Žâþág=jaE|^³A?µœøÚ%wË+žoQ–VhÖ±ô0Ã>“ÖöügÃùŠ›h¦Ò‹,ú|«‚&£KUîM¥ƒ¾–&V° ¾P,GÎæ78†€Õfµ©Ý½>Õ£v8¿'ï¸n™ÉyH£»w>~åòÛG»³™ÌÄÈøÞXj.Ðãý«Ï“ýõ¯²’AŸ_._ ý§(ÏøüšœÒ>û™~ëþï¯_¦3 HÏW.@üR8_Qñ¬ÑΛôռؠ/ô—Ý|y'ZGà§~* ìö66u’öË_"/îf{¶Ž¦`ñY  Íb*huY’ úŠuŽ>ðY@š‹íž ` ú© ¹8ï¥vµ[ƒFX§aá’:—ÍËný¬J¤+11W&㊅J—ì¦Kµ–zJ->©2šUmΆ¨Óªë18]æÐˆ»Ñ©;u¤+Ð¥M°ô‰ ¿¶g6ç?#Um öËL‰5=ë´Æp¸XŸÇes(YIs]•ÌüÝ9ÍûK*¿è2¯’>ûŠóHß³ËØeWm 2Õ§a7•ä™û>Ls“p)/®X¤oÆ0r@O¤78†×ïÆ©7ùö Ð8öøoÉ|ˆVoÚ‹Á¡ƒLÆ\ÀÐ +°½›Èþ^wþ¡eí‹_þÒ—¾òÈ¿ó÷³s8Î.>{ûÿúûï<òÈ—¾ôåEŸè[*ûl8gž”2š ­ò–Ï,ÃÍý˜NƒHÅtºXŠhÌ'ÍÜ­K×;”ZÇè·Óq~C—ëz”Ý.ÔgC¥r´M/4 (ÌŠþ.yÇu÷ØÎÐwŒ:r õ]ƒþ¹ÎúîTÔP'\f+\Ò\×¶øtôuÝÂT¯]¨?°$mسlæ|Χ±½ÏaÄ/)££o{i•:Ì‹ëÎAz@´ñ®³ bÏƒÓ w…yõgïÚHöù»£²™U· s oÔ±š+ï ý2®ûqÅ߸Ön¯íÐ)9–¹c´rûg—÷ âÞ,aF0©CÌ áÀ½—j-ôùu°DVà\` ™!ƒDÐW¯îüoÁyú‘¡Ñ#}}™lü"ÐoŸhi‚UIœ¥ ÇÛJ_\oàSÖÏY`)ºáÀo¾·Ü§uÇê˜Â8¿[Ù¨ˆ­ÞQâG¬"ŠKA½”_5Gzr@>ôöÇ3_/"ÿ‘Í·›Ô÷…ÏëË_zä~öØ»¿_„Þ}ìgÿðÈ—¾ü­ÏŒïpñ%¾òÅŸ}'§/~…xë«þfø^S}ÕU_ òŸ~vÿýçÎ=vÿÏþé‹|å+_ù|ùËßúÖ·>ÿùÏ誫®ª®®®©)wˆé=/sabrK©I/ßs©Ö’@Ÿ1ߤ˜®s?£Þ=‰ ¯x`Ý!‚óß-ç ÐŽ ;6è7œ%}nuBÇOU¬Ä¹®EÔ˜¿þÀRôÏÿòyý=¡\çýâ#änì/Ͼ±I¹³×?|ÂJ£Ëçf=ñpéCŒ§ŽÎú’»¤Çþýß±¥¾€„/C·Ô?}±H¹_$çðóðôU¬hEK1é3rXxÝ”p:å™{/ݺd½;ÃÌœò#Ï™ ¯¸âÙÓŸ^÷£µ ïqÕ€ÈýMÙ¾CÇ2#±î›.‚ÛöѨ7`Ð(çù#¥ÍuåLµ/~çïÿ×¢ô÷ßù"y¦Ú²jã¦}É:6Ã8³>®‘Á®KîÛD†·£ú—OdT°~àŸJz†ÉȰèW´¢ò&;Àt‡Sõ}£úÒ­KЗù¯ÿú¿ Ðý×#_"8UWOfÐwþåg?úÙ?=’ÓWr£¦œ}IX˜„™³2ó†æÿkïŽ] ⎈ˆ øH)Ä”PÐ@hÒ )¤¨ %ppP°x¶ØØd›Y¡AK„`¸Ô „CC:Däèæàß÷‚{`’Ð÷³½»›î¿ãýxw¿? ôS¾çòmý¾y]¾kù¾Ï¾¹u“/ŠCÈÅW³Ž·qĽ<ЭVr¹¬¸´SÜÙí?TªÝÀ¸~a›êjõU³72“,îj”d¹ÔpŇ·bd;®·‡Ëó“Ó«ÇUµL¶7úrqvœoF½LÕèæ6M»V¥deùè°PkklŽqµœYÚ¾Fz=&Ñš •Âþ^Ï¿±$I»_,û‚¢uaÑãÑj•Ìר,z«Ó &Ľ=‰`Ìä´ê-½‘d:Õé¤ÒÉÈ@/~Æ(¹í¢”l&³5gwK¿ÿ3ꔬùGÎ<ÚK†TƨSÆé•ìú¶¨imèÛŸ]a ÿÀ;Ó¥$P>|LéIEND®B`‚images/align-right-2x.png000066600000000216152330733730011264 0ustar00‰PNG  IHDR,*X4 PLTEÿÿÿåååÕN!¯¯¯éñ=IDATWc`À VÁ6k(`a#«Afóÿÿÿ¯z ¢°aNBgƒÔ€:›Zêq±Ca•®ÓS+Ò&GôIEND®B`‚images/media-button-video.gif000066600000000205152330733730012203 0ustar00GIF87a ó€€€qqqõõõëëëwwwÕÕÕ|||àààÏÏÏ~~~kkk§§§ÿÿÿ¡¡¡, @:ÈIgiÍaqXˆ1 &‰!idë’À"Ïô ¢Úœ¸Î£¾ƒbH,*L@Él„!A¥„A;images/dashboard-background.svg000066600000006420152330733730012612 0ustar00 images/bubble_bg.gif000066600000000616152330733730010420 0ustar00GIF89adõ)åéìiªÇÕN!%ƒ­ê§×èð¿¿¿Úd=3‹²ÌÌÌ¡¯ºj“ÄÄÄâ†g“£°¼ÆÎ ÉÛ4Sk×ÝâòòòòȺ’ÁÖØY/@“·í²ž÷ÞÖæææ»Ùæ÷÷÷A^uäðõ&Gaå‘u®Ñàャw²ÌÕÕÕúéäNš¼®ºÄÝÝÝÿÿÿ!ù),d@«À”pH,H¤`)°”’Ð¨Ôø©~"€©vËE.Ýp×`HˆÏRÁÍN~:íxq@ <ò6yÊû§LK iKZ"‰ZVU RVZ'Š”ut#RuZ!•ŸF{d R¢Y¥ ª«bj„L°€ [¬¼½ŒWŒ ÂUS[¾ÍÎÏš—&ÑuÔSt[Ðàár¢$¥¢ç}S¤[IA;images/browser-rtl.png000066600000116352152330733730011023 0ustar00‰PNG  IHDRl,¸Qoœ±IDATxÚ콉³eÇ]&È_03Ó=1Ó1ÓÍÐCCb°-¼‚ lc0`ËàM"f¦¡c¼cU•-Ùòެ}³ec#[û¾/xd©î={žåÞ·TÉ}&¿%ï{U.I%Õ{õd뼈Œ÷Þ½çäÉ“'óËï÷ý~¿<ß·¹¹9Ne*S™ÊTö¶¬ÇŸÂWxàÓ.¼ðÂÓþèþèß}ß¶Ÿq¿ïû†a§2•©Le*{S‹Åª,—Ëqmm à=–eyÿE]ôãGvDôq*S™ÊT¦òô)mÛÌÜ7Þxãîß¿ÿŸO€=•©Le*Osà뎠ýÖ °§2•©Lå» ´'ÀžÊT¦2•ï’BÀnšfœÊT¦2•©<½ËØS™ÊT¦2öT¦2•©Leì©Le*S™{*S™ÊT¦ò´캮ǩLe*S™ÊÓ»L€=•©Le*`Oe*S™ÊT&ÀžÊT¦2•g*`WU5Ne*S™ÊTžÞeì©Le*S™{*S™ÊT¦2öT¦2•©5žþùã•W^9^wÝuãW¿úÕ1˲1ÏóU™±©<Ý ûÐáGÇGoއã÷áÃãææáñÿ?¿;4z4–øÝ¡G7ùù¡Gã÷ñóÇâïxìfü{ŸÇsYŽ?ôhüüp<ÿ0Wý‡yÌ!_ëÐæ&ë==„ºÅ¿c}8uoâ´Ç:7ãubðÿáØn¶Ë×ÝÄg±žÃ¦kæõpýMÖwˆí9œÊ£ÛÚ³yˆ÷“Îc}ê<í<´ªŸb}n»Ö¡UÙô÷ºïÔW‡Ø–Gù·î—íIß?ªkÞÜÜj×át®ûPjƒÅõyΣ«6JǸ_R‡W×zÔõ¹Ï|ߪÓ÷âþÂq>ê±qèÑÕõuæ±ê÷ï¦q´¹±9ËaÌæÙx÷Ýw\pÁxùå—>øàÀ=ÄTžv€½±¶>nlIJ¾6®oÆÿ^[ÛˆŸmÄßø3–µqDz¶¾®ß›øLÇm¬mŽk¨ƒo¨®xÎæ&þW}ëñ˜øÿ:êßo²þ ·¶Žó×x=ÖÁzâßüu®›ë«k®¯m]osÃíaÛÖY?¯³¹¶ºM¶cm«}ëþn]mØØ@ûÖ8™×7Ü'j'Ûˆs6ø¹Ú½Î{Þ\Ó=ñxô îÛ÷µÁûöykº|²ŽûÝ\Ý3úums«hûyC}·éþØØv_¾ÏõÔo~&ªc}¿Îÿ×W߯¯ùÖuM=‡uÝ¿Ÿ7ú™Ï>=?^kÃý»æ>ý”žÛ†ŽûnG‡âß(‡½Xã÷7¿ñÍñ¼óþjüò—¿<¿×"[ÁwýZ<¶ïù†ß>~6Äó‡xLë[ôñ»®çÿ‹>žßãœXÿZÏ ¶ì–ñïx^lê[[ëxì²Wý`Dýuuñ÷r¡ã–˵qâ$ÿ/ãçk±Þa ÇÆóñw¼&ŽâýôñX´u-ñ¼ÜóÒÇ,Ü®Ûcýø,þßÅÿq﨣‹eÛ=Ķá|žÿïcõ±Ý¨¯Ç5Yo>üégßúø°ào|†ïpÌžõá-·ŒÙþ³Æù›~w<ø²—Ž<ï¹,øŸá;³g€Ýcò´€Òb²Å‰Òvmš@};¶HLö8Qmœ˜H€ºxÌ€¢Ð Á«0á8?èt˜Ð&L^Ö Äd (ñZËE,¸ö“ÿ/MÐx\0¶-&nÀï…'1fÀ=öǶ_ć`ÕÇózÞwû)Þ€ 0íp¯-A ¿ìS©­¸W|×vÁ—àÑwÆ6^c‰6ÆÒáÞâ³Àï>Ö×\ VhÚ€>ézÖÙw¾Ø¼Aµ'ðw|?¨ßqoø¬%. ¸ì€hÛs±c›°èqÑé ¶è3Œ Ü ®kœ¿ÛÇ©ÍÜëËñ _øÂŠiÏf³ï оî›7ޝ¾æwÇÿúâÿyüç_úáñ_Ýò¬ñîü™ñßÜó\üÏðŽÁ±8ç¤õ×ogŸ?}|ø£ÿr\¿ü_Œã`¯ù¡q¼þ‡Uðwü ßá‹sNVû²Ûnçÿñ÷ÇGNùéqó%§ãËqýeãø›¿ª‚¿ãgøÇàXœsÒ»‹ ƒ–“ „‰×/  •8i0Y—œø=Án¹ P ‚Ò¢OzÁ‰Ç¿p`±'&VœlÙ&0À«7µ­AÐöª³#Âÿ}LÜÁ#Ö f{;1¦N`€ëÓ5Z€sÏv€ua²óžx¿°gÔ‚u¢0ñŽ8®cE;­ØjV× l¼ÆÀú2¾xÄÌ®_Š4pÿhã"‚  ˜%êBÝX|ÀF ÖñÚëh\‹nº7öw'Àï¸l¡ú»e¿´\T´ õ´<ªè÷V@¯Í…íäs|߃Ÿ“Ï mè[&ïÀýÝ?ŽÖâßлaµA×¾çž{¾+ä‘}÷œ3þ«Kdü—×ÿØøƒ÷:þÛ~nü·÷»Üç’þßá‹spõí¿õÉ3~ûªÿiü/7þÈ8Þü£ã¹éß³ð»x ŽÅ98w×ÁúSŸyáÏŽÿøË/Ç×¼rOÕ8¾ö1 ¾‹ÇàXœƒsO®$²ÄD`x4YÅjZ˜×˜|`L˜½€¯]JnhÉ{N\B/8±"x´­M}M€&\·LŸ<{K¸À²ë8 ˜½dN6€'2XÚÔtËÞ“´“‰Œ:ãç`UX±LH4±Áb ÐKBo³»å= ØZƒ¦äƒUÇvŽ^}G)dp;,ƒ˜1‚•úƒuä:¶ {A3]ŒPm^p±Á÷-î“íjÙ.ôKOYcI0"pšÍrZù\(ñhÁ!˜ú,4¨Œ˜÷ Ú \ÑOì…ÎY,$ãô´z>HâÄʹ0ázß#ãZ8›pò|ò“Ÿÿþïÿžò˜vî§Sùÿnû‹ñ¿úÂŽßûÿ¾Ô èÞŸ=fYw<çà\Ô±[í›Ýðöqqñ3Ž_þÁ#úÆÇ(Û€çà\Ô±[í›ï{ÿ¸|Ñ©ãøª_>¨_ókÇ.Û;žƒsQÇÉxÖì4QÁŒ8Ø¥™ÔÀĘQ[õ䵤Ρy¿L­å$¦6KV´$HPKí­óƉB9 ×D&ˆA*€ 4Î~Xi”˜”dЭ˜XLíÞ’Uo‰@Ó°[^—ºñBòŽC&C[¸–d~Kë¬ÒX©.¤ È&³5šÖ=ï`NÍ{lÅ쮃@#É)0Í©w”3ضAà Vº$ ÜÛ…˜åÐöfKèÞÝÒýÐIdzçâ³”$Ñ÷z.\hÀ ´ZHƒd"X!’9°Z¤:ËBr‹¥ëït=~†A×ë:1ÜÞ÷ú½2ŽàäD„˵×^7~éK_~øá#˜öÓ¥ì¿çCÜ}÷sŽê{ž lnœ‹:P׎ƒõíg ¬¯ÿá#€z¼áGT®ÿÑ#‹??¸ã¹íX׎ƒudÇkHÇêWUŽÜñ\‚v¬ë¤6Á¬—.JS}¡ÉŠ,°²i Ä §ÆÛ‘50yû¥$N :¿¤!Ã)ʼnÚKŸ¥)ÙÒ²—ÞH@`Á‘EæÛ“U’¥.Í& 1[JƒtgJ 0G^ÛkQÀ½œÀìöE'vÉ6I³%0Ó™¸ä9°dÒë™u£x¯x.¬‡v! C» ¹“óYtm‚ÙR÷-x©­3 FPo‡d ¬› ûÈÀ¼p[{iÅß+ãl„–e1~ô£ÿîïþîiDz¯ÿæMt&’Y ¬ïþ¹c—c€6ê@]¨sÇÀúk7Ò™–ü`}4P¸íXêB;Ö·ÝFg"™õw€uçß~Œ²¸Óy±Ô…:w°­t<²½Az$MOÑ@ÓQ¡']Zn Ãjå¬N=q¿%ÌU›½œp–)hzÒ,1i[DtÖ7{9ûÚ^DÕ Ü–v &ÝXmèlÊw’T.Œ&$i´œø­ˆK;ïZÕ ç€Ò†Ù*¤ÉÝÊ C”*™¢§£KŽ6²Ç^òGÆ·CËcDÄB× @Qws¤ 3È'ðuŠšp‚qS?öÂÌg„û¢–½´†Ûœ‡^m¥SròyPÚiÉ~ XtÚY ÀÂÆ¼ì ÈI»–s”ã`È1š ŠûçX»^ìÛ¾g}ßÿ<™q„P@Äß_|ÑEã7FðùÖ·Ží½.¿ñåßÿ»ëþ7É Çë»Nÿ—;öˆ‚ÏŽ Ú±Ô…:wª}?÷ÚñÑÏþ«-äh°¾.–k*×´QêB;Õ¾ÙÿóÆoÿ/Ú’AŽ Ö/?ª<hÇ:PêÜÍgî(‘Á±³¾K9ÚigF$àèí@ÈdÑ0X¯…κ°¹º´‰Kp^vÒ;™ùC—^1'뾌FXš¥ŠyS“, Å‚ Ö Å®:‚å›Û]/`‚ ÷4,¥ßPèðêmB›‰3£“¹¼ptÎeû;†‹‘Ãä&@ ”Äö¬‘.´áúhGç{Åõqò‘ÿ–ÎÃÇëkŽ*Ú¨ u¢îîÃ[n>çYÞÇëßzÅ‘åñ@;þ:Q÷®6Ù%õ¼“pX*ª¢í³TLN™±4ó É™×Z‹ÈÀ’I ™N0ë¶â™»Áæ»tUÆ/’4 æ€y¯‰¤½.¤“¹ör^ r*4LÎ?Nȅµ­®UÝ]·Šâèmrwâi./|?‹ÁòFë(†‘4õ¡yš…·6óÅÖ¬ýŠ¡\`Ó‹Pr€ ÔŽuÿAÈýS« p_ÊñF' œd iµÝR€Ú²}’x:kÑËe+6ÝÊÊ€³Œ˜Zs§(2pèøCÞÜÿ´Hr¶2¤p&¼tü{¿V<=Gb<Ñ8ÚkÀ~²ãèðæ¡q¹¾>ž{î¹ã}÷Ý÷´aÙp"iSÜ÷+©`…xÙ^ìxA‰C‰J‰…ÈC§Ð.傚/cy 0Ý*¡† âH†erô rÔQ1€1q¤—´A}ØJëØê…CÿºV±½”]†äð4“to)fœ H'™¦wT–Ëä$UÿЀƒ¬Ö 7ÔY)[,ÎÆçg‰j§¬>åólåmMVÀå…cÙ®b­åh´6l‡%h FÕ˜IÃbQœµ¬¡ãG{ØOrmeoŒ_þò5L¦AÄÈvÐÞ«ò _xcª`×ÇÖÚfÙ¨uŸhû¹âWSýìz;X' >º ÚÛ¥‘X'ê>á>|Ã銳Þή¬ ÚÛXv¬uïÖsÃ^Øñe&Ûõ[zï ”)ÈšÄz™°²Háse8]ïx[g”õÃ*ÙƒòŠŒQ œø­³Ö‚E3zPõ`F×-åHZ ɹ&Vˤ g(»0dk 8A/V¢ˆØ«4W9KK fÜ-"/ø]d1æ…c‘—)¤=;ÞžKeNRvè „å€ã–cÂe}0©¦_XW¶óÌRE;Øú°^Ìþ£%£E“Ñp®‚íöÃVÔÉÂÉ0ŽVYÈÕÉñ×;š…eöa«eËN”r,qQîtO0ôç ÌMÞ AZNÃÞÚý£½ì';Ž`‰`o8|>üá_ÿú×LJzˆ€’jö¢ k‰0GöÑ`ýƒ·?÷ˆò }`£NÔ}¢íCÖ"aV€Øò±˜õ±;¶Ï[v¬“‘'Ø>d-2æ;ØõQ`’fR9hogÙ±NÔ½«€ÍH…ÅVâ½ù‹aåÀê[^¤to™åËNN»E/†¹ì9Ð )ÚÁìšf·µä…ä‘Á€¥ÔñŽ`ª/i°”(Z%\ÈY'§Ù2fÖ9¾·_&K “¼è2Á‹‰êíá`gS«¤êÙ ™ÄÔd—I]*;±—üƒ²ì¬g’&).¸3 .”®žX75`&ö´têÉq¸`†Âòä`å¹^Pèü¤Þ*`]¶Š`aÒH§H‰!…ùYVá½v’sú…twÆFã.;'u² œĈ”A 0ÛÞ‹…™?ÇsS϶|¥¾KÑ ^ŒŽcí5`?•q´‰ýV67Çó/¸`¼þúë©eƒeï%`#¢Ù‹G8O°c]¨uŸhû’BùŽØÖG³ì£;ÖÉh‘µ’Bùv°ã1¨{w›áaÛœu6;æèX\Š=1Þ7…[¥Œ>Or2Òaᤠ/ÍK§8 ,W:ñR‘ ‡€-•½œ \ä:Å!/‡JVQ’ÉÒ@íÅni9©ïm±ÈHëÁ)ñJ+WÄ £G†ÁiëÚÃd¹Pyç$^Ë2ÈbµØ.9)9æxÆÑžöSGا€}ÿ½ŒçwÞøo|cå€LLûd—Ýìmßnö‰¶o·{·ž»SÓ;;®ÃkÇà*ClPÔD›"&«KÐŒ„1Â4ï(‹¾³¹¾´Ö«x_ŸÌÍÁqÐý* O‘=“ºU²ÉÒ°À”füRx`²lãà}@ÚÁ@#3]:¥J K‡ 7-Rä…0ÒFCbÌŒ´h“œ£¾Q2Œ£6z¥z3"lÍ vhùÒ[:X JU'@·ŽRм7 ×à÷Rûb, ã­½::ëðŠ‘æâaé½;Z-.lñr)Yɉ.r v–@FÉ}H¬WÖ¼%‰8ü±“þ½pû ÆÃa›.ß:Äð8ÆÑÞG‰<µq´qh“›osÎ9ÜŽZv’Fö´䊟Ù5IuŸ0`Ÿ÷“»&‰ îì_yÉ®I"¨{W:oÛJ탒90H‡'$p¼éO 1TŒš³ÂàBïè €Sp¬o«=F?´Ò¯»xþE ̱f v±±ß@@h·b¼Û`§d;†…µV\/´A9í]‚cc€`ËÙ“”CЮ }.¼ÇF ¾3‚ô~2þ؆€{#ÀÚ"iõ B§¸b€l@=ñ~(—´ò „¤¥[î@ÿˆ;EæP“Ü&'îÂÏoàýây`!Ë>?žq´×€ý”ÇQìD‹œÍƳÏ>{üÊW¾ÂìÇí }2˾åí»Ö‡ºO¸×ýé®…õ¡îmßÁ÷¿o×ÂúP÷n=wí%Ò¦Øj°5Ç G €0ÛAI Œc&¨J« ­ÌÞ@†º ³x„…2 h`¦v@ÉÔ÷­ê G#Ð1Á)Ñ[‚˜Zç—â÷½ØQàžÒ™;‡2û’,P÷í•Ìyá­X ¤A÷Åí5Å ïZ‡ÉK mÓFRfÁƒÂÓBªC¡}½?ç.{d¼ 2Y€]è¶Âëp Ô›˜ø`6ÜX%,R¢;ʽ·y%îµ' € pçn~­"=Èô™DÓ[¿o òÜ$*ˆ•SÀ1qhÝ!ÉÚÌ]/Ùea¹DAÖUº'g2"ä8ÆÑžkØ'0Žør‰õñ¯Îû«ñÚk¯]iÙp@žlÐþÒW¯ÙµÄÔ}¢í{øÁkv-q†uŸhÞxî%Πî]l&F˜åÞ‘M;¤õ–4˜¹{];¬vg ƒ&>&v`†\'F»h|”nÞ;fØv…Ò€Û6%³ dÁü@E&¯‰ßYÒ #2ˆýÀ:š´VeÒD7¶A²Ê‚× dš ÅW‡•ŽËvq¯æŽì™rBPˆ]’8y;m$ö5Ȫ0ˤtÓK‹îœH"P_Xï@ z. Xœx>–F» vIn°¾ŒëñùïAÍó–Ÿ“Y–_zmJÙŒ:Ö78êDV„β SÉc{;X.€W`t~÷ÞEÙž­,©ná¤ù žhí¹†}ã/ À¦P÷Ü{wñûÚ×¾¶§,û׿ôºOMG;ÖÆ«^³ã©é¨s§ÚwðþïOMG»ùÌW {áеŒÈl Özâ^,T[‚š},Zu vÒ{³–Þ)Í¡uX[pØšöé¼ordÆÓáźƒ7• T;x{Mޝ' mCšXaO©…iÒñÚ`4÷íˆ :… ±mªKáxdƒÁº«'.ÛÞI“¦\ap%`{Ï’6ê ”ï¾w:³]Ê’yȲ9)©ƒ3^¹HY,”ZïÑÑ9~»÷Fÿާ“6mUÚ©ßµ§ˆ˜â‚ý´åaµRèZG©ô|~-,jÿN}Ò™uÃjê²Hù ³DåØv¶³8?Ñ8Ú{ ûÄÆ^£Çå>ðñŽ;î`\vJ¦ILûd•/õºßü uîTû¾õàµ;¾ùêܱ>¼é¦ßü uîæ3÷^"2eƒw¹#ËhT9ÆjËRofÏ,¼A ÆØÑ¡&'Tk3zAÍPÙ€9té/Ê(\xŠ.8%šà3ØÄwFaÚð?É0É£Ÿœ‡CçíOƒÙ‘uÖÛ+ÐÖ>Èý Ç!ÃÎTÔʽ§5˜ñ `° ”Îð[$gë`¶è·4O'í0¤ ˆ\n²µ–ÀÚ:¬O{›(“ýÞõSÔÑ·‹Þ:씋Ì|¹·t¥ƒÏÁÖ“ôD餳3ÍÑ_|ÀÒ¶¶p'üHÞ ówÐ#êïNàž‹N·JÁ_$]›¿Ãx<ãhÏ%‘Gëk‹Ú‡ÆÏ}îs|i/Þ¶–½]9™åýw~pǶWE];ÞÆ[ìØöª¨k§Û÷ÈÇ?ºcÛ«¢®Ý~Þb؃ÌjšÑŒfN«ð³v[´€^X8dLñƈ¢Ìœƒ#":G3 )»õ6šSã†öÉÖ›-%Ð0»ƒtÑÓÌrеÇVN<:âì˜Ó‹¤Çï­LF,Stz”Bã¬S·Š>Á1­_m¥…Fç Éšr¬A2-ÇA/¼ï¥ Ê Ò>ƒ÷¤†¼Àxê ØkYxèÌŒÅÜ Ž6Y-«Í¥Bë °¬›Óœüº2õc»HÒ”¤FhPþY¸Ï½Å)÷~ö}¶Z(`1PÃnµ˜vùKÏF£VlAáú”RºÖÛËz¡=Žq´ç™Ž'<Žzn5;x,û –XöÉl8 Oô¨c·Ú÷ÈuvÂ/0@»Õ>8 Oô¨ãd8)EIDAIÁñÛi¨Îo™±Ö놠÷%RŸ÷ë·¨ñCNbXŸÂᘢZ裬uè“a‚CÒIÊY¸dÊ/̰µWµ¬¡Þ@•4u2ý…Ñ¡µc2ØÙzqIYšÖÖ©ñkëö]ðþA±ìO4Žö°wbáMîxû'>þññꫯ^EŒ€eCÏNòÈÉ,ï½}ÿø?^òïžô+ÂpÎÝõ6ÞtÖøÐ'þõ“~EÎÁ¹»Ý¾‡?zîøð N}Ò¯Ã98÷d=gÇa+tñÁýb+±Å’@ç=-Bš}2…;±¸ÎL/i‚Þè§µ“*9{¿ õËjëÛË Æøà^Œ®ó†C2Ï{é×½~÷f£­wšë¦§ÈˆàêF ƒãž }£Ü/¼w´ß1è„”â‹'°uX3ÏÖo‡ó­3cO»ÚÉA§…§OYšn¦9Cëw¤Ì`ÙGZ©cÄyO½­ ½(X )ÂĬRMKmzh ÒéÅ }»ã¡—ÁPà(Î!ƒ¸ä•`¶>„Á/7P˜¥$– ÉhaP†ó²×yì¯^‹QHéöiA;Žq´÷NÇGýbm<´qh¼çî»ÇGÐ~ðÁWZö^6ÊÕ_¹f|ÕÕ§ÿì¢x—ðâ‹sNZ¼f|ø³¿=~ë#ÿâ _‹cxìƒ'¯}#ºã÷ÿ¯ñáçþÔ¾„ÇðØxÎÉ|ÆÊt4ÛbÖ!A­ûM¡ZL–cEk¯“ó°_%øí ÷Rj2´OJ%Š=Æÿ 1“mŲ{j»ά”c‹ êôlWq@‰&½ ÝN#=C[%Å0 ‰:=c«Sˆ™3 ƒÞÓ¨ÝõZ9ÈI2¤8bE«p‡ÁÄTi¼d¬`iƒÂø _´–ƒ´É/s;o¼põ<¾ J×Ët/Þ:F=Iƒ#løöðÁ»Z¦Ñ>(J*R¦¨âÚ©e;̲³ÌC aç­÷üèÃÍØzô Ž ŠCÇÂAý¶—¦~ké$]¤·Èx‹VD\¤ÝŸhí¹Óq‡ÆÑææ:3cÏ:ë¬ñÖ[o]iÙì½m”/~åêño~ÛøÒ/¼‚Y‹ÿýÅÿ+ þÆgøÇìUûºÿêñákÿd|äŠÿ“Y‹}ìûYð7>Ãw8f¯Ú÷ðu×üå{ǃox³>í9,Ì`Ägñ;³mSâ €"8YÅú-ÙX™wåÛzÞ°J“Ö¦øÊl=èåðÄR’ÃrH ke v«c0:.dˆ­2%»´½é`ó¼#Èw~½Y#€*…i`“ÆëwüyC~N¼à=.Z-З;‡®éÚiá KfovI÷–•0xÑQì´Ãþ>xB%³´ÖŽí|u=ÁoDW6]zãŒ2H"¡sè$%‡;$;Ú…ßӨĕ2H;g4TƒcƒµøÎ’Ž‚Îò¤&™íÓšrh~pÂߌÒ>Ý÷Èöž*XõñŒ£=—Dvh­E–½¾±9~æÊ+ÇK.¹dŲ·K#S™ÊNI"A©å¡m” ’bPïyÝtfcŠb`Ö\ëxâ (&™,ÑéÌÁéÞí*m]&}è↉Ý6)ë0~ß4ÊÌÒ>Ðb¬+½Z Þ}‡™…^NÉ>lE0´MÏØcDg4i¢VZdÓ7dHMÛ;•[lIqkgËó©åÆã»Ð(Y$^¿ÁnëaÔ¤;ï““¿G¸Kî÷72šÃm—“PýÊ~!ós¤GÛ¯2Aû•31(ZÁ©ò ŸÉÛ£ä":(Í ƒ=Î ­#y‚£8‚RðÕ†ØñšMëÅ!¸{Õg×ÄçßÀªˆÏG1ÖŠdi(¹fgíy¦ãŽ#ö#÷ïß?Þ{ï½GDŒLà2•]lšÃLYÜxB§½%%etªŽßsß øFac̤‹ƒ¸o5<ŸîJ‡–FÝÄó»FNELJR¼s€ =;ôM£F¬5О׬ÚÁ¡dÔ-³ø­! ±à4v€¢^:‚f‚"WF94 ¦C;[.(}¼±R…ª PÛCoÀŽ´El ýÒäVK°gÿuƒ3µ „Fº¸ä%-f½Yž^σ€B‡gÚs%ØDo(‹Hì§&ôüŸàIÀiåmZãØv:UQo£PǦ•t-Î|>–pØÏX|Ó(D°ë3¨þnè¿CÃ>Ö8Ús {ÇÑÚÚÚ¸\nŒýèÇÆ/~ñ‹GhÙhOe×ì¯éµ9‘Xfop ~Ý”€YYkA@ÆÈ£=ÑðW¬¸!Û¢6Ì,?™ž}Êîk;¶ÀGÀ¥É­È ,ŽJÀuCç…¥!«mB£· S>h™.­p:±Ç~ë[âbÐKÃî­Å¦!Èqa°ÎJ0mœÂܪ­h_Rû;Mè.I2?ÉÞ»Õ}BXhë°È¦õ|ñ ýÆs:µ_!xj‹,€^ C/àÎ:¥µÈÚÀJ ŽÅ“QMëtv-½™oÓ €yh?Ÿ[ïM Z²aýv|u+€AýG0CßqÁPæÑö±ÆÑÞ‡õíÜ8ÂN”È|¼ãÎ;øfu¼B #Ø*öT¦²“…€ D,¬h°‚ßÏØ9B¡s4A0“êRôÇød}}pŒ«Ò|ƒ³"ê5 f3-¬³ ß5bqd“f²CÇ MЮu¡‘‰¯Í§Ä4ñ»ñÎuôö [íJ'ðUL7ÏmÅ@µgFJ¤p*í7«ý%´ÃŸ¥…^soý`«‹ûÑæO’}Ú´˜õfsXÐ~’ hb£]ñž©É{{(5œVH7ð^fǶYoÆ}<šà]ü¤ÿ“!ÉìÓÎV  ë`íŲé•ÒÞYIŠdQ¼Ç6x#,ËW­˜uÓ9ñ‡ý݈•á;4ìc£=gØ;<Ž66×Ù'ù—9Þ|óÍdوˆ42öTv°CJ]¶¾ÉçÚ•¶ÌÄZ0ßNß·–  ƒß ¦Ì°¾FZv# 0I‚%Ä:KwŸãñƒ `ª°3§¸'mÕ»ßñw+­œæ6&O3ô,N@Ë*Cc6ßKvahŸwÊ# ìä¼ë‡¶õƒQÞ+„Û®:4Íl2ôŠ–i:ZH’c|[1xHçO4ŽöœaïÂ8Â>Ùë‘ñýïÿxçw®´ìÚS™ÊNiØA@%0Ñup¦ @ê—«І Ð„V`ôY4Ô¯i^zc ³ç¾ÑgôÒCou^Ò»¦‘æÙ;­¹i½¥«¼õ s뜉׈  (‚¥€`a3ˆÑËÒ]u í͆X$šÆÛ 2ᤕ&Ȉ ŒÇ&¥v[Û–²M–5¸ˆ ©ní§Ñ¯¤EU8áälú•ÄÔ3¨A{wï§€–3Lá‘M/æ}·Z8¿"éòÝÊ)©ûÁýÓ©–ü$JSb¯i5'üÐ2 –<¤é÷i ÜF T›i&s?Žq´÷ûaïü8ÚX‹,{}1~èCâ#ÛYv’F¦2•lÆÛÉl€ 4Á+Ù\Ó9Ò£4stA㽦ɺ½g€/½Ø O›!Œ@—LëÖÌÑ{à{2ÂÐx7µÞ;¬9Â!XÖ“l]ã„‘:=CÊ’9Þ¤ï˜RÝÑÑÆ( ,&÷Èhì bbpÞ‘‘ú+t:6‰qù-5è‡F f3ËàHwä@™òI£ …Ï¥seÞQé Æƒå¡FM'ïöÐ3§s?òVòI×'0uºyß9O‹$tðfÌS ¬¼@HöiBrÀjßm&õ’F>EK(&¹_ÅšÏ8Ú{§ãÎ#8u7ÖwÜvûxî¹çŽwÝu×JËžXöTv°kLªÚ‘(jFÔñ·ãTÉ,뱯cq4ŒEnj§2+‚¢‰ÿ×]k};àºÖÔ[¯«1ðÉäNà¶Ö9bܱԽƒôà êŽß×A&½ö–®ÉŠj^à ٢"L~×;L«Åç0÷zØÖbPuÖ\×±uÚ·ZR î”ú6&ü?ŽûêÙÒØQ…~c¸¾kz·O%¸‰ºëV¹¾nW]D›,ĺ“ 6#¦lû«•öLmÏ S”Ÿ@Ï}ó>à¹öµ%;ŽqCú,}4Þ:·VÄNWoÆZ/š5맃8(Ï©bšÇ3ŽöQR¬Z µÓý, Å=Ô€œ¡ƒÔûkï!"ÇbM)ÅÚ)ëîxoŠ ˆ¢ŸêÆéõ}ã˜úà¾u¨«u‚ã¼¹XÔ®#ž_Ûç@0f_:b%Ô¼&cÒ ¾vR6öA oŽcí9`ïÒ8BæéÚÚúxÅWŒçŸ>_Ô»]ËžÀf*;ØŽp„8á é6…d·'±“.ÔÎkx<ãƒôO…ëi÷­¢FZÇ ÓÔL±Ï4/ã¤éÄþ˜-&Lo@‡6 ö]+>€Wû­^¬ƒáctÔVíX šÆ÷'&¨°Ã.ň7ÎZtQìu£¨,`›µ"&:,µ@[Z·P×oiÁñu~Ùo wÉzfôh‚„@}ˆ~èÈHŒ”¨Ô¥8aqà"Ä![à7|‚ßÖÓÚPk‘Ä‚Ó&_Ú‰ÿaEðöiOÖž¢N‚7ø+Û²v(¦b‘ã=”q߬.zÎn}¢q´çö.Ž#°ì‡zh|ßûÞ7Þ~ûíãý÷ßO-;I#àLeG›æ{I­ˆàð60±ZN0€.€¬«Sì*dg/ƒ‚œ…Áoôî9©¿éçÐ;ëV©Êõ͆¬³sö]G ç²9N–SD-ÍÔ²‚öé(Õ)ÛÐ×#àöbƒ5£@¬;3t­&¨pÒ¢­uï>èe£í"¸È¤ŸNršØÖ=ƒ-¥”N@ÍÅ*dÁœk¦~wN(j´+ûË监S¶0;¥S¶•œD o¶µ«“ ÕYÞà½6Úë„l—:yídE´0û±‘crFÝZ—bîÁýßù…«ÆŒ—ojÖó¾gí5`ïæ8Z®-ÇE,çœ}ÎxÕUWQËÆ~Ùx•Xí©LåDŠv£ ×8%º‘¹.)@;¬4\Iµ“8˜V+E›I#fÖ]-¶HPhhvÒ¼¬µÁßè‚Á_Ë % uÁNYï7Œ;í›2Az±o¯v€5vžŒCè`½"Q_ìÅ jÍœòCp,3¥é–d—t °Ñ4÷íW×a•(„Éì„dÂÛQ³_Øž¾'x+›±ñ"БY¶±á9¸oê¾èŸFàßcdá=K^؈¹’ÙÖ’œÚF’Eç½<ào@ÿðº8'¤T{Y7´ˆ¨Û* P¾ûZK½÷é¢×ø8°séõj'-;qŸhí¹$²‹ã±Ýëãm·Ýʈ¼B,EŒ$id*SÙÀ4ÿÚV숎¸Zì,QÒN•~Ü(þÚ‰d}½tØÖ1®b&)¢ÄN/G7ÔÁz8Š$n¼sµsBJ¯È šÖA{YÐYGà‘“òA+æÈö;óºp爖Và”²ûÀð1¹¸µbõ=¥é׌.íTyÊ%™“¤#³²¿ó–¤Y)÷é°C®³©Ü:®¹ç=Iæ¢Æãì hu ïÕŽ]8·f§¾æ±Žm§C·•yNí¿ö1µúªï ߸ƒ‚Ò]…d6fÌ­Ž”†Î67)„PQ;ÊÜ”ï‚ ˜f­…ƒ×ìµÐ=ÓÇ^nÐVåø®w½‹oV‡–ý·û·ËžÊÎ6_ФøZyþ9#»«kk¼µ&+&hÓ à8PÛ°Ú:•æ¶% „69jû¤CN¦;&’ö%q†ßèQ;‚lÑû\4 £ãdtD‚6^“cJxÓxÓ£† ׺í­#ú®¶vÜ™¶Ø‘Òêň•Ê-í™át½%šÂÒè['Œp8«¨×êwëÈ‚šòä ÞLZÑɱÈð00inšÕ­¤Ÿ`¶ÞX"!ÛF_ØéKí´óy"l±tf°ˆº‘Am‘þ-  A2 zµÏS|v#ý½NSI*‚Nßtê£ÎzzÛêy¨Ï”5£v–ØKem¼âŠ+Ç .¸`ŲSÄ@{*Syª…€I–TÕv®ÐñVIÓl+šÛLœ¦’Ó,~Ϩ‚zK UÉ |¨âD«Ì0B¥8ãZê©1“¹¿ñœª³dBVW)¬-HR©*G­TØMHÌßW2Ï[^¼— íˆÕ’t¨§ÇkUÚØ¦ì5Jí*ºCíkxŸÔ™ÑB‚Ür@]Õ g[õ…"Fªä2+³Xnµ pÏMÕ¬öVA‘Eƒ™Æ6WÕŠMI2Mk˜ècö#A¦rv©¶CíÜÿÐe«V‹£8ß×±?»Juâþß;Y¯ÁŸòO£hÜO…‚¾‹÷žî­uLã(0Z$9o¹å–ñž{îaÄH’F&à™Ê‰v­‰ÕUÊòªBGb'ÍÚÎah•XuWJ#sš!fAahµ£|,ìU礕x €W] (áà˜â.N$LTLL–ªqük“䃚L³u˜“ÀOº±ÂÈ*Sãì4‡ß1Ú×á4S#p^·ý0ªð=ΉŸUA÷Ï{a(cc‡cMVÅkó:8®Ã})T @R¡ÍUË>ã­'@€Z ÚîO@±’*ˆ•¢Ú*ì²ìßZòÍýVNa´¿ ~Á׸à9Vò)Ôc„5¡Ý+³ÃÕêøÚš|#@˜6ÞF öKS9ŽY Ô4Ž*ú?6–xçã'ÆË.»Œéê)bd쩜8`·f"µªZÚ'#@‹µ­ÌÊ‚£%Ç[ËkŽI^u2EÉøû$­Äd#Ó!㬭ÏjÒ3yÅ€Rµv:6Ž!#ììÌk 4äÆ&×þ¿2SìªÇc¡yvNì1Óê*µ;9ë¸]r¦‘ÅÕ±8áV…º 6÷ŠÁÈÔð®Z1Tè®îÁanGªf›³ C¥…!µµrèÁ%…Ï5ž.Å ã:•€ƒz1îçàÚ`µ¡d=T~^Ô¯;±qZrXj‘rÔ#@¤#7)<À I-t@w¶$_kGl7^–Ígã{ßûÞñ†n –ˆ€6ôl÷T¦òd‹ÛµÖ$¬Z³Ž®ã`'H±: bfì12@ f{Õ)«¦%ÌÖZsb3-'pI] <À`ùꯜú<™ÁÀjÇ-7ŽD©4a’v‰VK ‹Y568l”üº"H2ž¸«LŸ1sÇT•A¹“IÍxå†÷LÕßñ~ƒkÐjÑ°Ö “÷ÕuÞ_ºé ®JI(ê?ök¸TÉ#£¯ôj'Ê0t®sÂãÒƒW-&‹zÛÚò@EKéÄ`ÊÅ@Ü)r#ÔÇk$ÔŒàc% v̱Î×ï UŶk1p²ú¸R´Å4ŽŽGëëKJ"gŸ}öxÛm·Qˆ21í©Lå)v¨=èÅ Ò _‹Ñ¥é´Ü/»53ÁDqÌ4Ùc#ç ÌÙº•éN¨”²Î4‡ÍÑÙUË¤î‚ØRbw`oÁÙw—ΑŽ­d†×­œgÔ5«gºr¤FgL̲M-@28¼N š$€I!UKð¤s°è4mí°ÄVlª•¹pH/h»¦vÏêÆFi2WNi&@X*aÚQÉlÈ$Ãõ/úàQ¸ê ¾­¨§;+’YŠ•c² X j³Ù$÷0–Œ^Rê_%95’[ØAý¤¬ÔšÒ SI;Z\ðL® t`È NÌ™ÆÑ‘ãlo¥Á†PóxCrbÙSyê ;èÝ…˜ä0G1 MC±®ºK¯ÕÚ¦±$½ÐTmsÌÉTÓùE)¡Q6dǺ·Â㨃¢nꛀ©à•² J•" ¨6rªa’…ËmÝšfcVK9ÁN½*´Þ¤V(œdª Ý̦oÅij`8«j±h2¸VRmÛÚŠŽE_1îZ¬XqÔW+‡šÂþ WvÈ bUÀ3¶m«pÔb§]C¶Ì䤔ýÙ¤}@¤»Êùçð³ZRAk`®Úv•þÞx³.:ý? ‚WÃëCÊÀ³¯Bg‰¡q_cÇ¢÷)¡\YÞHñùÓ8Ú>ŽÀÆ××Ö¹¿ähÚéEI™ÊTŽ·ˆacp—¦&˜_éð°ì‰^ô’ƒ»lK2´24Ž0(åd+eÞƒEQ›*ƒ=ù Mβ)eÆb2–µVuI WÖÚ²&¶ôÞÀsèä ¥À“r@lgÅɧÉI_â³²äWÔDüŒ@øL×¶¸ ÂA€YŠ¡9cŸ7ÁlV÷‰¿Kž/­ƒq–ŠÄ’íF›ZöYü¿´v"§¦îýãKGw¤h…²lɳ½¦*Wr ¥ ˜îd¥•@ÙL¶Jí5°a!ó¬ÙÞ*íÏR‰éVÖàÛJ …çÅ –lÂ6WÓöñ,å„£Vïmq+k¾U•œ£Í8£ÇG‹Å2N¸¯çwÞø|`Ü·o_Þ{àÀ|6•©À¾Œ°I¨4Ié 4‚@i ”y\ñže%  Í— Š6t¼Aœæ¸ÛÚäªmŽA2tGS–Þ¯ÀÑÊì'û,+F®à¼Ò!odò\ ЧÇÊñÏméÅN=×Y¡Ÿâs-0B«ƒ#^g0Š}–ÔyýLð<¸yá¨Ô–i=þ8c_.×øÈÇ›ãæÆFdàL¸Á[Ø×Öãÿëëñ»5¾~lÝÿó³xÌŽ_ߌ¿×ù¦dVâ³øÙúfú;–ø÷&¿Ó¹º†ÊZ:osƒì}cç­Å²Éë¹>œ‡vl¨8f3¿Évm®êd±mk¨gÕ^ÿÆ9¬_ß­­ë7ë\K÷ºîv»-ë*ëéøØ/«vmð˜µx=Ô»îó66¶®µ¶êSµsƒýµ¡þ‰Ÿé¼5Õƒë­mø˜M~¦²¹ºïu·U}ïíÞ\ÿ޶¯¹ß6Ö6õì6ü Öü Ü8wmÏÞuñê‹5?÷Ô›ú~Ïk]€ FQÑQSÊqÓÈC†ß 7lwÞoç‹PÓ›·‡ÞõéMä=ßøÝñÖmït騆»Êá³Vovi[¿Î+½Å»Õ«ºØÎ¾[½‹Ûhöz {ï—Ömªß×ÚŸã-èxñl‡{õ †ñ²Un\ßûmé­ß<×óöÞbuð¹ŠuÚÁ/†ù4x“|…ÙñýCz[‹ÞÎÓu~%®¾ã1x¡®_¸Ûº/YowD¿v~©vä›Û}?xùCí‚ ‘0B¤ô„ 5Wô²’IAÖf† àh¤Ý‘YՊܨ9hk330 MhÆ"7šd€’›I‰m`àè˜)È®h¦×š´e¥É\8±¬×*h”#eJNºÒQ+h™(l¯I™”•£>ä4+ƒÀ„ú(³ ãbø`Y[ ÎZò¾ NȦ©¼û`C¶D]2ˆ­ÑyWˆÁlC!ÇÃ81Ùckh£6RÏ­äLc\<˜ô×BšhaÙ“Yì0H“E{ `ϵւ`D]ë»ÆÎÎäœ$ .Åê*fŒÖ 5³/倯þM÷c&<£½Gì³öï÷ŸµoÔq@÷ÍY\“õè~÷»´óÀ>]ç,ô‡ï ÷ƒ²?žûÆï³|ÿûÜÜÛ~ßÏþ®“õè^ñ?ËýÏgq–Îã3òoÜ‹úzߪöÅzÐGVÇ©}<ûœñâ‹/o¿óŽU õJLôÒ)ÞdD¥¼îv¸0’ƒ­hVqÛE%ÖIDÓ²–yZzc*šä˜@¹ •d “¹áÄ- ±e–Šލ(È(ø=l̦Q¸bá ©tú‡‡Æ»î¾{¼øÒ‹ÆKbÁgí‚¡cZñ19´¯v©A3¸N“Û¬ ¬‚‘ ¡*8qÛŒ‰•ºrbKƒ¥²É\—vˆ™!ÕCÄȶdj£.j­d™µKåd%10¶«”„ úÕf²U› µÍQ‚š7Í ”dÊÓÁU¨J\ª9YhV›­œÈ…âÈÁˆX§ïƒæ½îµÖ‰yLI§™®³:}VØ„öv¸@ê˜G/6i†4yk‡—•…~GPT4íåà«VzÛ‚B ìÙzm“g0ƒÇ³,Ø_Ò¸†W¯¶¨Ô~ŽƒJÚ;û'é­…êžÆÑIGlì,6•ïÍ2 ÓÃ<<^ó¥«ÇË/¿\E®ÁˆÉš7Ôó0x*:B¢)ÖärŒU‰Å8è,+ä5õæÐfKë”u.gt@Ô?Ïk³;:uj36›åµ™ ˜V!­®¶³,'Ûˆ¿Á(Ké¯95[ÔQhðÓ|¯ø=ÛPàøx/¹Lþ<¬åx¤Ëí䩬-f‡…YœShŽK“£« ©ŒÏj9'ØY^']2— 8ê\¡[ Ž+ \¥A¯–ÊûíÌ i¬y%¦™×ê'Ü+ûÌmmr<ƒœÏ¨`„‰œ‹E®sZ¹€ž‘"¹û§4CÃs.õ\s;!ãbÇçTç•\%Ÿa^á:ñï…X+ Ñ¢D6[§xÜ䀫mrÖ¾vÅ{)“¬Ä qmÈMe™¢Ò½Á„ÍKižøžŒ,,'Ãå}U’¢`XÆIÝ4–'ª¤·–bßd˜U€™Ú-sZ ˆûÏÙn9üصOk dÞ…"6òF2Ge+S˜€/Wl3Î+è¸Ôs؈Þm 'ùðù`,Ô•¥„šRÍ4ŽNÞ8šûöƒuÅå—1’z™2L2šiµ/´§Q!í ì€1±…˜!£VQ%™ÍÜB&('%—òEÖDýR›!j¥bk©M–Ò éÀ)5q+‡®Q¬õ=À¦.sÇµÊ Õ„Sæ`m5_í£Ñ(¼+—¤@SÚ±² Q«Älr'oð^jyîsÇ0+áà ¯ˆ1쪬VqÏ…µêŠçë³-é äÄæÄH×yéä:€‰¶—šè”*rÉ¥3#ÆèælgY¨M܃ºs±rŠÁtG?)ÔÍ:,QíRš»Ã×VÌÜ *E’ÚiêÁ¹ÂÑ(1ÔbàÓ8:yãhìgØâÁ/½ür¦Ø‚1P´Ê Xi`Ô…Ì6NžB¦Yi–Á ²Üo_aV[ÎÉ ¶WÞïÂ&~N†„™ÓÉÒ8‰†f²Ã·Äºj‚«Ò$(ŠÚÙŠ|H‚k5eN³œ›ì0™#3c*dþâz97 Jf¬8y#¸thô寢}"ŠR»ôÁ¯,¤1‘hÒVµY—´GJE}ˆ@礤јå¥~®´9MøZ¬‘ì²tòõež‰gŠ·v¦a^9¸¡ò†õê:1ï\ú/AÝásyUZw–&][æ`rr€•’XôL”^Ïņý!æKaG'oM€ý ìK.¿d ¡'[Êf† s6ÏÈ2À²Z -¯2Ot{Êsiuy) )·öIv‡ Él®8²R¦x¿«3™öˆFÈ=y²Ü»Á•ràElG&í/sTëËë-6IçN™‘LÌÜδ/Ë5Ñ1Að7tÕ<™Øø¿Vû¨×BßÄÌp¬&=ÚGFZPKOöØ.²a˜Í•¤pýY¹‚Ä83zýÅ.%#db‚èÃJ€œe5ÀÊI @@´>ÏU/™iåˆ8éb?dµøüŠ,çs£“/·“­”VJ}Ïߣ®ZÚ.›RL.ÓœàÛ„º2Ô[±íñ,7Jï.pÍXÆÌøi¼q4ö3ì§ëºñòË.á^J‡,a Ê!%7Qí¬Ì4¨í”³`(²L¾¬Òÿ`ë;ÁäÌ9éâ`Ì0¨ OX™„<ƒœ´à„Õ¸Ymo{. ¡YN€Ò9Ô ñw&3–Ì0—É^fŠ~°!Ñ¥Lì¬Ðîq §ãDÌxNá08N2¡rå¤âßµ\€H–[gr¼¨jÝ_™<ªœàW±/1 KOç"'ãuÑgMñš×'¸¸ð]f=³ãŒà¥þæ5¨ÝÊXå[¬påÜLh œ‡Xx¯¥$Œ\’ À϶–1´Ÿçv¥€žàTgÒ¥ BÓ8:Yãhìg"`_z_ÈÙ VEfá }zù3MRê–Ôs±¶B«>™BŒÌ`n`2Un Ö&<a&ÀCÊÌ18ÁÄ0é@Ê/›å«ð2í}!Ó2GÉ+3Ä”øP’‘¹˜©UfG_I[uebhœÄœÞ XmæŒ8°F°áÌ쓹RXú¦.|5ÛCY Pÿà³,³Nï÷ÈXç´'D.À"ˆŒÀJ³Jý³Ò—‹Â'OèB‘`Ë cHžþ†©œ;4€ƒºJéÐ%õçÂÚ¶b²S(7&bl±ÍûR‘¸&{èÓ\‹žSžØ} `Ïx?è“i¼q4ö3”aCᮬ抠Ni´*¥±QSÄ`\p&s69£lÎfä™&re¦ðàqÞ¡.+Ìà죦YŠUÈüÌhŠ2 Èhö“ÙåŠyÍÛ›ÛyUŠ¥æJñÅñy‘[^Pì²Oœ÷JÎfµ­VÌ0Ž©ÅŒŠjV(,Œfn•ù>ŬÈLSÔA)ƪøb9ÆÄ¤Äxs^'³™¬ †°aÙñ„s2Æ_+1¦N±¾•$ °nôgVŠ9ŠYÖdÈrp‰’Ý¢ÏK3løÁŽŸúÔ§žô¹ld.>•ì*xù¥—r7AL¤”l‘1 W”¼ÐßU­IÐÈ2³²všµœ<ÔK9´R˜'lJÇö;¹oFV;¨Ñ¬uª.07ë¯äLR ²õÜLqðrBaàÒ±Sf+fW–ІÈ29ê:][é͹#$èø³n+MWš&uCLì\frFg\¦‰U(ã®¶n©·ÇëµZÔAÉ@3íç‘¶ ­ôV“ʯÈâ;1Cå}šµS]å7ÎHZȶ¢ª¤K+Á¤²Ã©L±Ô¹À– fGdÒiKG9PÆà"2úÌô Ýe—²²­kæ6éKïzW’ÈÈ3¥yóÚvêeÐiîÆý¶óã(³¼Q®Úê(ЬZ#>ÿØ^m(•ïè8â‹§›à!èù§gY;–ûÉŒ£Ê[H:Ñ¢tô8B(À^ÉVrî®¶WàsoÀúÛßþÇ`#©åx ~>üás¹GÈSìË.¹dlºNŽ$˜b`V™ÑÜf`I3OiÍù<®¹3Ù"Ò ‡³¤˜‹åöœWŠ  ËÿøÏzÖ³ø›ƒ¾¬ÌÊ[V~®Ú@ö˜Y×s£ŽU‰‘`ÏÁNæ2©Ñ¶¹£ Àæ21”¬œÛYdSóØŒ;›c¢ÎÉlç‹‚à0ww|ÛÛßfi£vìøñ#²gJRï™Ö_²L(3É ™Ø7¥¥\‘*`ï!Xoìôÿ•ìK/¾ŒŒ`¦0-k‰4ã*éi¥ô5€‚œ?cQx²1¼Içq@–qBÍ瓌5Ÿç6!«ñÅ/zÑøêW¿z|Qü]{'4NœB1«ïßwÖøžw½[»¹UÞ9Κ!&ã¼cd4®Û4O×wª/ÛÆ‚‰‚ÁÖT:´¬©MÇÙ\΢TˆÙœ“+^£Ò/ N5/‚-Ý3+ÜïçÇ~ìÇÆw¿óÞTIñ´•·=ýÒÕW¯yÍkÇŸøÉŸæg~fü¹Ÿ;÷ÿ’—¼d|ñ‹~|Þóž7>ç9Ïâ'~b|éK_2~ä£ç²½•3ÑïsJs…‘9| Ϧ4#äýU !›—Zµ)Š"ó†D¸×¹'ÿ|.`ôIf­¸DTúÞ)`˜çs9?sGn0${Ý5׌Ÿ¹â³ãõ×]?Þxããg¯Âß7Àvzfç´”æŠØ(Sx!w¥”l‘UIƨ줫NxUÞKå-oùÃñù/xÁøŠW¼b|ùË_>žvÚóÆÿôŸþÐ1ÚzáÂñŽ#ô¡?eÀÆy—\r9_Z8V–ÒD^Y뙓‘ÐL/›K0ˆ““ƒ&sæ„"™…('6@‡o4iŠñWõWÇ3Ï8“¿K¿ß°tð'?ñÉñ”SOO9å”ñ½ï}¯R®­×b2‘çbeGæ0¬¹4Àyið©.bHàd\ñ^0IÅxæd~¨‡“íÄï¹Âë¥$“ÁÉ<ŸKû-äL{ÞóŸ7žÛüîw¾{AðÐCÿ0þÞï9þôOÿ4¦W¾ò•ãoGFýº×½n|ýë_?¾á o`Áÿ¯yÍkÆßøßñ‘Œí¥/}i»kWï¤n™i!ÁýÎ &sÅW’3pÿ q³ƒN‰«y%-š¦~žöàðÂep® „+ççŠÕIó—ã2×µ­ýguÆEë†ë¯¯ºêóãí·ß=Þ{ï½ã}±Üu×ãUŸÿœ—Gt¶FK`Âr²vœåÚJ˜\z•ÌñÞezÆO}Áú›ÍæãÏÿüϯ–Ò›ÞôæñMo~Ÿá _øÂñ­ôVíi//ŽkÍaÙñ³Lšv¦0ÀÌL»p~3ê$“³‹ØØ'¬}ôÛG”ØGþX?çœó¡ìË/¹8v·bP0•+³QL^®ì0_ãÄ`,i 桘‹¸GLrÈ0¥ã`\ÅÊšU5~ÅûLvåMÛÁT¯¸âr2ÎW½êUdàÏþóÇ÷½ï}ÚTž;¶aŠM¦ä°"è€s;g¸àPþ(‡5ò¦7½‰Ÿ]Ôs€÷oߦö³ŸýœñC>GÉR¡ló¹îau¥ôr€`QIÏe¤5bÀÿ9žQÆÿólFKk>÷6«³Òš¸ë-·Þ6~æ3WŽ·FP¾÷ž{Ç{ŒìúÞȬ¸w¼5~wËÍ7ÇëÎ$­ìð8"¸3Ixr à¹8…}‚¿cý3[¼'ÈjX¸â=ÎàÄu_<™qDÆëùû¿ÿ;>[>³3d!¡€ˆ@úzÁó_0¾ûÝï±ä§¤¡ÇGef<㙤ŸÜφgº¯yf‹ª”36›RÓw÷±ÒüàÙìÇ+ìÃÇUðƒ:O°/¾42ìÐPÏÏå”ÉÓ$óÄ)’Ž gÍ\ŽÉäPÌ v4]9‰¤B· 4Òö’¿ò+¿2žwÞy|Éó]wÞI7 ¬Ï Ë+KGWHÇ=¬Lcƒí™gÈB@yè[ßâÛ´ þ¹å¡B¬ž/•Šßmš–/\çýG ãÞHÀþ‹w½Ãû†ÈÇ€ 7Ë•‰ÇÐŹ²ç–øùL“^ÎB³o³×¹ÿ^E*0q¯3Ë ŒÈ˜k!ˆã㎻îˆ`ý™ñæÖp0>pßý”Cî½ÿÞñö[ïoºé&¶[šîÒ8SÇ3™éù˜Ï zŸ_æh.bü™e˜B À.ŸK'Ë’ãH/™¨ÆãB €N ­ûH¢qö9ôàv05Žæ¹ôw&HÁz@?yæb•œ­¥¨bæÏ}J€}Ãõ׿üÃ?ôCG”Ÿ;õÔÈTñ–õ£ÏMçã»ÇR|‡ãpüÛþìÏøÙÝwß=þêË^v̶lÿÁÿéÜTpÎ߀êàß››‡v¤àuž`_zÉ¥c:NÒl&‡Ц*,ÌL2B®6s|.ØÜ,ÛåD€Ï4 x˜ø%†¬P²IèÚñ›ßüúøŠW¾’`÷ú׿à´bÖ, øÎ°ïÀ*#0w¼4Y$êââ1—vû¦Œûïx‡A[õ@>ú…Ú=üˆ7'Ê·;ãs‚ô@=~6“ãñÕrF’-ó>gt&ÎíÈš1¬-c<é˱fK KñÑH@‰ ÅwÝ=^~Eë›oï‰@ýÀƒ÷´Qn»óÖñ–›nábúû.Ž#jÖ¸¯\ñát â™cfðó-Y…l•Q!sï ‚Ïf¯Ó8bD‡÷vÑ‹dq#§JéëÌøô;KGð aæþû¤âw_ÿúmŽd€ö›VcöÜsÏÝ )ÌçGŒ#.¨)t–@©Å$‚cy¦Åv&œéö3Ž£' Ø¶Û Àü±€þ‰ÎM`ûX,Ì8÷ÿàž°=ûØÇ¸€kÙ^v´ìÍ);Ø—@‰@‘§È$fÚ© ˆ’'øŒŒˆŽº™XÝ<9³ÊÂ!`2OɌȮ‘1Oé¾Õø­hEÀdDtÅ^¿¥õžiV™@úLGO¤ïky~œÐ´ùº)2íL²ÀLI0sµ 錓"ŸgR¼5£RU8TÊí¶Ù=s‚JFf“a–3…»eXr±¶ÚQ"bØg®vj7îá^§vÚøŽw½S‘en=W;×1„0^“&½÷AþVæÓOßrX‚Á¡¯Î¿ð"…‹U 뢥K.ç2‘v˜à˜ôL>ÉÊå\ e ,æ acòIŠ;.æ«M¥˜ú<·Ã2ÍÝ÷Ü=^ù™ÏŒ7Þ|sdÔw<ðàøà½‘]G°‚†}ã-·Œ@i feµµ…h]ùÍ.…öÞ¨dé0V=×ýi›ÑÚçÒZ8ö8‚Î;ËÕÎY.§bi选C³­y‚îg¦ç-´_Æ[¦roñê½Pr=×Â=é™éÌ2­ëUj:î oE¿ï¾{ Ú鹟áèD’ R ý©O~ÂûªTt0¦q”’tH ŠÂÚº¢z°1¹ ‹ÒÒCöàw4;Åg`®`»Û¿°>X㜋r4 ´Å´·ö±ŠcóÑŸèfäø7{ÿþ–G6v¤àu>UÀ^[[/Ž » ­ÌüLf%ÍÌ™˜&4O:ç‚…tN ª\É)„̦\>WÒl^¬âYõ’Š:1ÌGÄã÷VÅ–(–bO@h|Óv¦ý¾÷éÍf®˜œZ`Jì\N,²èRÉ Úo#±—lK«-åÄâ"UdrÎÍÞG3–Ñs‚ÈÌá`¥³¥ao…ë±íRôÈ)§œ:¾ë]ïÒËhÍìè€Ê%Yh‘˜ Œcç|è2ëÄÚ=óÖ·¾Õç×dç…µè"™Ôs3vfEÊü×~!v¬baÈ©Àg æ6óÎŒÆÐóf†_V®ÀÎÄË®¼|¼ù†ÖéP÷=ðÀø`dÚ÷ÇÏn¸ù¦ñóŸÿ­µ /¸0–óÇóñûÂóÇ ?ÿ>ÿ‚ñÓŸ¾`¼Ÿ_ˆÏãßá¸ Æ Ï¿p¼(þrÉ%—ÄëÜ ½MŽ1ŽCï÷MJVQÛ%qÈ÷’;~œÑ3%e19fæˆï=²ñö·¿m<õgOeæíS)?õS?ÅÄ'Œg‡j¸Á´hŸÿéOÓZÁ"™ÆQ–, ‡ùqᤵ(² À‚s =ÏÅ‚4{a}Ïíf{,¹#ãv°ÃÝ.Eà˜cñÑ ~¬k °¶Ûùc1yõv¹æhv~ô"³€½oß~åú޶;Öy"€}é¥HMd§ÒùœÙ† q0 ƒ³ñ M÷<þ¶÷¾(lÎçZùgǃRSx@c³)3Œ÷{¿÷{ y;ýuÑägkr2š™œ¹—¼Ýû~fb-vÆ%Ð~÷{ߣ!W*ò¬8ȶæhwvPfw~PföÁŒ´ŒÐH®4ÞÙAÉ 8FøƒtRå±1Y±íü`¦4qè¾N‰`ùˆH­p½ÓWŸeÃyxÊ©§ŒñŽ¿™m+&?ˆÈƒr€Í¤W¢Þ[n½uüõ_ÿõU? mU)éâ œh3êµÁ ÏlníZ’ÀÿßÞ·öVr]Wê/ùK°¿LlÌ#ƒÀÀóa&µ­DŠh `HgŒÉñ#òHŒ"ÀNìÉ„lRRɉú!#¶Ô/Iý »[‘lݪ󬺗ìÇ%Ùݘ#®9k­]—·©n²d']’÷ÖãÔ©½×Y{í}N™k²«Gê&«ô=dD uíµîŸÿùÝî‡?üaw¢€(&Ä\¸¸Ü]„nÊKï‹Ýò2&Ê,—ílwê­ÓÝéSov§ ã>ý&þ.Ûɓݛ'Þ,ÛI2ñ“åsü>]@÷yÊ>;Yö}ý§?íþþå—»ÓoQ-ö”q°„¤Bb0âßx¶«|FÍ$qÙ Ä3G2¶[öÍ¥os6yfUÑÍÁƒÏ2úÁ³ b`½ß“hbb£ûÛªÁóÄõ°½`¿ôÒR·^v¦³f‚ÓhU‰'€’W`^cÊ ÙJÎJêŒr¶‰ÀÌ-,Wû·¦(4þã?úãý,Á `ÝñD³ž›ªéÿŸb*ú=÷!ÐþÎÓOkz»iÓ›låjTà4øœÉœ™è‚ã÷2BqŽÜ³ÒÆ’=,k~“f ~sa¢*×oÜèn”~¼yýzwãÆõòù}ý¦ý¾Áïo– 9XñrϪFš¨ÔbpÈ6“¯ôVêCòúwïøH>þ‡Ïž«æQ›'©º /SlV¥gáÌM¶‰*ØÏJÝ0 築ûeÒÎJËz髱Ä#Š20=v¸ûÉë¯wçÏQ£"äBí‹ÞíK¬YÆg–»Kåûe$#W– æ/Y¹Kþ.ò÷rÙÿÒrþe|·RÿR·¦^>ƒ?|ô¥ˆÞŽTA"mš‘¤òLV©Qg›T"†ÝØ5V¢ð‘lh`ÒÂV—Ù¿[Hm[UÛ ÂÜ-2ÇÜ-€<%LŽirÑ3nØ5$\ÀÍj’å†6èr­<¿V:û°<ãÌßC7"Ø ÿÑ(¿ï°ÁN§uá{ù™–Knœ;1ùí¬w;`ß ü·0ws_ûØÏ>{дã›{²áç¼_ÀFåÊKK/Šaúì½JòPai»šzç‘þ†15réŒp,ÃnÜ(‹Û›£¿Y˜%¦î"´ôÑ&slú„e³–YLµ×qŸœÌ œ›€6ŽÇp€gš¶Ö Y#`J;WGÆ.û§‘ƒ X-mÄ~ n6PkŒMç¾"@÷"çWqÛ*a6Ì “~z ”MïJîàOFJ"^¶ÕÙ«¶ì(KðZMÎÉh§±ëaŸì¼¬e>Q‡ýû}¥ŒéØJt¢ŠEÑ Ãfò†V´bk«×hT©ÁòÅò\V¥Qg“¯”ü*"Á=CjõÆ”#¯éÎ9OF%ÈòJèK$‰pº±mÌr,¿—/È/XÉ ~™² {™rÊ¥å‹ú› Kþ%ž €¾|áRwvù\wìÈaMÃ7;¢,2IØ)ŠçF™cU¬›yÄg* Ö ÜÞÙªiTb·Ö}îsŸc½{ŸÜž›ªNºpç¶õV8·Q÷ÕMs·þß_ã÷ÊÀ‹ˆL«b^¦Œ à7 ˪§-6*µUB9Ó'Û¬¹ðÕ»ìIÐM³XÈ»ýLëË`ç;öÝ0u€ò¿`?ó̳Vÿ|cO6üàœØ÷b7.]¿ŽX'˜Vk3Ú¡œúZnTÑð†êa_׈¡Œ2?Sý/¦þ®7È>Á<1±à&cÀýøãš øƒü ûÉO^ïþWùj‰'Œ÷‰½^6Áyn–AëæÍ¨×láªUsðfhl ¡sÛ†3Oj$‡¨¢ Ó98èà{µû`¤ÿ¹€¬m•ì®måTmcÅùÀ‚ gê {ÔíZͪĘTyXë…%µôÓŸ·€D'C{ % ´ƒKVYZ5çn²2Ѽʨ‚ÉÆUEA9«Z5¿LÔ¶’PÐ>FTNœ:Ù½}öŒ˜±1Ø0€ìÀÏ/^\.@¾bÀ{Lß ”ÅÈW ¿TX9€…ß/ëÜ.éœå\çÏœë^ÿéëì{;âàˆg‚¶BBj”°¡­ª¸±ÈŽÕ)ÙúA?e'<»¬Ù”˜žŽªŽÇË@Ø'ºoaÆ–C™fØssOÞ†mÏÝösSRÈt‰g/ó=ö»uO=õ”¦àsZþƒÙÑ}ö½j½÷zìN úQlL³ÞkÀÆ9ï°!---uã«×Ä6ûúÛF2AŒ…a[Nü öš8Úg†my˜Ø ì­•#56‹«”iA›!çC¡å“ª¨xùå—»ñø*« P¹òby¿óè£ִˆó\Ù«œ†-:fc€€˜Êï$Æ K ÷Øä¬r°<"HY~Öè¾Sñ4²•ÜÜvî,™€›yl2F)"ibDV]/:*%™FŸC_MbòèÇ”J•ö±]!:sæ ëÓ{–†pú‹_ü’Ø=òQ\Ïi˜Ö”BÚÆXmL¬ð”³r—L ÎdmC2ÏdŒmÆ`cè®öÝ' h]> C <]\éå ùr^T’mcø®ˆYƒu¯@_¾P@|Ù¤:öó.À}~Yúø¹rþ×Oü´{§0q$Š§íˆƒQRÝ|n‘3±ög=Ç¡éºø_QF6 nø}²ºV9uÿûoÿ–ƒ¾ßOÞRûÿ䇨ô·;î?7-™èÂÆOž8®7 ¡lñíhØû ØßùÎÿ°¿¯ïɆœó»Ü'–Wm’BP€Z;” §gRªÍLrdœ%«~78ä¶XR’†” Ø!1’S«Ðz£M:ÀÔôÛ>´½PŽ¹Üªê #¥4•|»uÃy¨ù¡b 5l#ØŽi-‘HöÚ¥!YZÊJZa´“÷ÜŠUy¿‰Î=´Úkƒû´p’°úƒ•$BîFÄÐÊâ†6s}„ý[cG#´µÑõà˜hЧ¬9¶Åœžîy&Ãú{Eóë_ÿúdÍòQ¹^Ö3HC 8i$m—U=L`ˆõ{^‡2`‰ »ÜÚÊ…Cô…ú‡ÏÞê³Q›\Uu÷Æñ7¸ÀÓòÊŠìy8¢k,ôôæ[o³äïd÷“ÇOw§NŸ(ŸVB±°ôS'Ëÿ'Ë÷§Nt§Ëçøîxùûö9y’LþTÙNœ<^Øù;öÒÛÛ¨%‰sBD˜9“6ÒßAFIŽí%>Þk°õ‚€ïÿõ÷' 7A‚C’øÀD’+¿Øoüϧ÷;` fÛìùN éë {íXweí*å«ì8“ø˜5ßÎŽ:`ßœ20ü¨K"O?ýþ½¾¾¹'~pÎfØ…ÕÂI3ÃÎ!…/ñwéƒ4î8J%I[tÏeŸFýÃh‰õÝJr¡$ógïÿ¼;~âD÷öÙsÝÅó+¬Å–ÜQtñáãt1PÂŽ®­¯wW¯]íÖÇãîjÙ®¯•mßËßëëã=•ýÊwx—(¢;¼z|u½»iëÊŸÝìƒv6¶Éª ´¹ ~IeÜÀ- ðýÁPMc‹¹ÿÜ܇@› {¨u©É¦³€¯wNH9‰2¢²•FŽÎ°yh =Ôp&Óî…«¨¬H:>,Ì *`>´·†¤˜ºƒRÿÞw¿Ç,LEçúdù’,¨¯÷ÀÓhjõÚš–úüæ7¿Åµ±·„£ÿôŸ»êý÷Y%¢¨ÁXgcë?ø^'1´ÜhmRkÓ¡%Ãp&1²¹)™Ü—ÎØä… ûÐ~ÿg?ï^/,øüù·» +Ë”A \,Œûž_;z„‹"qŽ}´£¾ŒScÏ—rGÒvô ¿gaë ´" ù œ—@¸fÕ:k;âbSö&¢‘­åÍÙ•˜ˆd&#Ù †Xë$£!Ôa?¹MZA 6Àú•½Ò]Áëð =ƒ)ßÁŽš¡Øö¤t1©âEv9¢´3mGw ØÓ•;U]p·³âézçÝ&¨L-’•»Õaÿkl¬à…ŸñxcO6üàœØK/qâ̰¯GÎÙJä4tf«® T`IH­±n²„fHGÏ”'’ az«ê ½Eºý`÷#à5-ñ ÆÔ^VÂè–ýçn•D4KÎ*ö«ìùPlq(-º1æ Ù†ûe ‘[Ý%žr?¼OÞ××§ãu,„Ô#ͶòÖ}P ´ÊÿËSOuŸúÔ§XoûÉO~²{ê©/S _³©Þ-£˜Dö›93q8yEj±ÿæo~Ð}æ3Ÿ™°k- u ûfJâµaíe±²ÖªJŠ“§‘ª#pï ZüÐ"‰^&Âõ(ui J¦ã3ŠHÒ·û{ŽTßûÖs”ü€¼*+Þ}ïçݧNpÑ.‚6k² Ë>{¦û§×þ©{ùï_îïWVű?v¤zä$í½ŸÔÕZµ “Ãê[È?’‰ZiÂ&óèïFç Æ¯ éwiG¬ù.ÏëÍÓor­$ˆ±Bã­2ˆ^lðæ9”ˆcÕ&¿ìdG)'“}D,4¨Ø‡¬„Á>=À—öߨÿmþ|÷TaÃ_*Fxüù?¼¯I-=ŸfÆÛAöN¥}¨ßž®(¹›‰3ÿÚûÛßþs+W\ß“ ?8çý6zá… Ø0ú[11è~p°¨°L F’R¨E3p€]̆JÏâÿ¦ì—ddMùÆ…iá0Î;iØøœ ðŠ)k9Ôvçý¹Pi³96d*Ð6!‡´¥½M¹'0šÈ6ÐŽ‰àÁ@<$c!ëmŒå 3?C;à`¸'€FĹ’CÕpC÷¸70§r>õo}á Ôœ¹>vùÌ %q˜>® 7˜ê¾6YÔ[å}÷§ÿýOù~@® nµÁpz$Æ~öówµÀ‘IC>µðK[qÿ-2#ï‹û•>ŠC9x26š£dl,µUø­s$`B&QÄ’|à2ˆ¾óÎ;ÝÉotg‘h4YDo™9ß½vìÇÝ+¯¼Ò½ÿ¾ãtøý°#‡ç€ýÐ& (±Mìæ/poåüˆ"ǰƒdû$‘Ø™}R²7n%Òw³£Æ–BxûÍ·ºßø÷¿qg°.Ì3;¯^¾bÉúá®vÔ¦v’TÙd“,’‘¢$GF¸¿v °ÁÝùõgËp{þ×ÙQÙ>5}øn'elÿÿcÀ~е·Ï:pßnBÌG °¿õ­o`÷dÃÎù €M {ýšeª3Æ™ÍpÚ(í/MŒÝ&f€=Å¡BZV[´t vV( g#2|_ÕZÆ;pkkTC3^UعÓþZäH LÊdeÔsc†[’€LN‚ö¨r"‘Å Ô<‡ªvPƒ,0Ÿää©Ñÿé™$jU­€ë±Ì¯ÕâJçÇlå69­^…÷9â‡ÿñpçêÀ¥@ ݉ÂVŸ~úiû§?ýi蛬IQ¶ßþßætí‘-žEÖXÿD9:Ú“4v:°¡ÉÚ$pË=ãΚ9¨A*±B„B+Ö—øŒ%ÊKÉ×,c•Âw/½Û½^@3—WÎwË甈<{þLwôµw?* ]Õæ7öÚŽšV,—ÚtŽlw2ù'—ÿ!y(’JŠ@Lïæ•‡“ÉAÿFQeôí.v„Z|Hv¨âl…JžÇ·5tl‰,¥¹~pÎìÁ°Ç×4‚SèÙ™ +–ÿá¹_‚’®lu*LŽ!zjè} ǵ¦'ƒÐÑVµ"ÜŽ<Ô˨ µøÏNû3´IãƒCÇr=0M:8Ya"8„dQŒªù­­CêÞÊØ,ÚIŒ ÓPûƒóf:UbH9° "8|øÃàtá¼_úâ—8 oÔÁ;ñÒ^¬Cñ‰O|¢û7¿ök|eÿR‡'ŒYc{ôÀ£Ý3ÏÔU¿ýÖ¾AèÕÃÿÈ5@öÚŽbkešI೘)ú!sÿH f"²g²­"%2åÜZÙŸ8ÚDöÞìjGýj‡~ñQ­4ù{¿û!»Äsü«¿úëîòµ+š˜„há.íˆIE°-£­÷u¯`r¶|E» °sgÀîA{;[¾ÝêxwÒ·w[]o·åUqý»ìééð;ö´6¿¿€}mO¶l¼a 6f:Òñ“˜¦Õ¹2|ÍJîĬZk8~ʪĠ#ÂàRš0Ó[c4I†•¥Eb¥±fmg†½:ÒÄ‘6k½0×»Õd83Y Ùf£  3ï‘,LàÈ ™tËb§LŠ%éšCÓ«[^h=‹#»ÃiM6I š¡ØíÕËkÝÑcÇXêõØcÝ"÷o£A™b?Eù ¿õî;ͪŸ°DÕÁ¿8È71׈™òù°‘Îë’YfÞ¤ÕG‚Y#ûÁ’wm4àê˜FýçJ]9IÏçbÿVßLfLI2E¶I9Xø “`ŽcQ(LŠY¾@À†ḭ̈‡Y΃ʵ0›k§ý{=24AZehéÈá`ûà,h4ìȰ¼|ô;´>²Ô ûÅq­áøßã>[«¤ˆ‰÷ Çdbº&?+Ç`…?”nmþÁ|U35Ÿxb×ÉÓ `¢j|…À‰¨‰0¼uƒ ÀÎ~NAl”Ñ¤ëÚg±¯e.÷ á—¾Š8V9'žg&¦ë²øÀX•g‘Cã+×A6Ló^9·Òãxwnå,5í³e{ûí³Ý±£Ç()ìµáÞæôr/ý3 IuÍåxÞ+¢… é}‚ûàÜmùMI²‰#‹ÝìÏÃE_lï?jÙ„mÌú¹çžë®qUÊëßïÇŽr üýͲ>Üc ìûý˜%g…6Ý?`Ï~î°ÿìϾa€}uO6üàœİ_X"#†(Ý Æ Ã`£?\œÛ*ÔŽLì(d”¾(f"G’C)Ù•lQ›¶ûüŽvˉŸ©©7»H"j† ’V0l8ªª,ÔM+†šÑ$ã~\€r_©†šm0§Jpb0Ú(͉²4©VR ~p¾È™‚ZqU sœør`òÂÝÞÑù²áæx«z¿~ʳÏ>Û ªš‹ç‹µ·ŸØÌš$€(ci!4äðL¨0¹ÈWyˆ’Ú˜-ÑG p·¤Á¤‘ À[Ç ‘ H²ÿ’’q¡i-`“…®¬òMñÇ¡iŸ}»;wîLwmÊgXj¯í MpEûƒ:šŒÀ-IÚÁÀ€~Ã~Ð( EÓµ£úFò’€24qW;êK2Q™€îŸ!#¢ƒù¢iÖLbò v`KÑä‘6€#Z v¿lf€ý{/°ñæu¬OŒWX…VlªeèhÀ Y·ê¡mÈ¢9 Æ'‡csIB¡NÂ1[Y€V3Ë4«L3ÊX]5–tU;¸lf;ÚÚßfŸõ«J†Z¼I“P¢Bé,†ã)Á¨2jhÕV:Cû ÐÁvèÌ`8 ÿž:VÐ1¥”`ìû£Ï#”Vkψ:æµñU®x÷—Ïý%×´–<"&ýÕ¯~¥8ÿŸw/¿òJéçÀ$_Á$ZC ¥¿ @’€‡}N¦5÷TY `£ RM´:ôrÜ?X§j3¬b´Iç 4€>"Ž€%î9´|öÔ‘!åKïFË%V>MÖÿ¡Yïµ…FVk%x<74£…Ì{'³#z6”LrŸ´!ð  ÜßnvÄå Z­`ùÜÿ|Žð—¿üT7¿0ß]./gZRîØ;bÄE øÜ²ot¿3ÀÞgÀþÚ×¾Ö}å+_ÝÓíOþä¿>`c1ùu¼5½QF†1‘F$Q4ÆàÚ¾^µkQ8-mMºwbØÇÐ.X™Y^É÷öv‚d›œ%V6ÌÛ¸Ñݸ®©ö*/3‡2•3Í®ßà=n^ßäïë›:–‹1!A„pa0ÂÛ ’a”§¤6䤒*UNÈ¡ áÄúTâEæµoŒš VDV±¼¨‰/”²%ìþ}àáò¬„ð:©+Wºñæz·Î{Ýì6®op¹U$|¯®é•ýºÏ1D’^L œÈü’X/AÏ©I–¨óJ­@   %9±¤‘”ÁÒ7G¶•Zn¼P¤<’:¸§ÖØ<¢ Ý PŸ“kÖVËÀ×f]á"ý\¶`ìˆííËùõ‹¾—ÖËk!rŠbØÔʃUZÛO&ï0ñ-a‰vÞ…q‰ÞስÕÝFy¦×J´‹T¬Œ¸×v„Ï‘GLBfÊSCBÓÌ{?°2FEçœôÈ=ØúsáÜ÷ Ø‹Z›ú¤%7¨ƒ&iw’"Gz$¶$ •ÙŸÖ‰æLQÎL£”ã÷É-&÷lÅ8½Åe¤i§)×øµ©™¨UØlŠ1_"m?+B•ëiS2Ö% 0$%¬¨û»TØ-ý4d±i€P6I!3<7­U-¨Rû”vʲ/JføX¶2, T‘d-cÚÚÛe4{MÉ;.µŠÉ%ddb»É¬5敲i¿úžz;+²yÍ Áû%ÐNƒ@œÕ”E¬¶8جC\×êƒè|þ½¶lÏ"6ÉJ>“õw€CþhýµÏv½YƒTc% Ÿ«Îcey`²­d0yÖ[ÛÈû ¶_ 6èE^ãníˆÏf¨%jWmÊ<™þ>ÛQ¥ßshg€½¯?¿øÅ/¬dŠ{¸áœ8÷ýü|ðÁ|ÖpAΓ|1 ¯¤ ŒÉ{±2+° ¯0›ÉœFɨà•Ði¢W8Žsy õ¬$,û¦ó¹Ofz2Bˆø$ !{LÖ†\>‰!áœÑ´O&p|@Œ¼´=´ÝÄÁ/ù PóJ°ÁÙq|žÌ…¬%ê{8o°I5” ò'ýïƒ}ï¶Ï7C´×Î}rË&ÛäÆÈ<Ú‰ó í¸8]°$ï/+4/íIÉ—ïu¿œÜSöü\ ÿ‡²ú‚úºœÛ—6…©{aR},‰gmOì˨ûN×HîSÃ- Õß+Úåà>Qëç”~„âYÌ:Z_7¦…ã;hefGÍŽf€ý1û!`/*áÝ:ºZVb‡Z«Á$eO•ØXÆÞ‹±À¸©Azf´™L‚œáÃMc4ÁÂÑ^—…£Ã™èlI¬Œº¢9p0‰Æ çV›”œÉ6±NÐäJ;bŠv^U4‚]C@Æd³÷ªªyªBÁœ- b#逥~hàÄðçEbÌGËð§ÒÁJÂ,¥û þÑ9-JÊý9l‚šIRÀË„T2‰À~½D"Õ>{‚++;n*ûПÉtQç·zîL "xg{â>^À”¤íÙ¬Ç3òbÙ í àÀ6fvôðìhØCÀ~¡0lÔtû ‰ ˜öæÁø`´Q†Ö0¤4}6‹‰±â€ŒCeWc†Cƒ­À!yQ‰Ý(&eɪڈ ÁzÈ:ŽŠ’ 1Töš– ãeUA8x1*0Nb°dY¢c‹ÍF:s°kH¯ô“I!AL)H'$ƒ2æIôÒkÉbÑO”S¼i¤–4Ëž,‰%eÐ/“J£•˜ZÒ5-éÆÈzp8mÜJ‚5&3°/s²¾@zé´¤“ J¾€_¤C¸<Ù<$=‚/ž%$—() íÃ` ðS¢QÇé™l³ºúÓd .ŸEdÙYÃÒ»8³£‡hG3Àþ82ìC/pùKŽÚ å<ÙYè“sјWˆ—Œù$fÿÓ$¬§ñEÏpá¼ÍÈk s1`¸ }0h6!ÃÒF¬ÃÛ C:ÎQŽ÷ Ï­D‹á«2œ ×£³ò®ÆX õÇ,§ ð!‘ÔXÈš”üé5U~Æ„«Ø)€ÍÛ}Ä>LWh¬6E"YUK(a奥féÎÔ}Áˆ½BfN ‚XC0ˆ±}ÙX`–s“‘z“¢ªXâǘgØÄÒ’¥÷z:¾ôg‚LRÈߟ'˜<¬ª"±ÖZûóÛgÁ4åÆX7ûŒ2(ÁMÐù•›Íìè¡ÙÑ °?n€ý?è–¸.I4GpN€0;89Ù_‹! ÊÙôO«f€‘9iÑyKĂ؃ÎCs£îèȺø}t¶Ÿ4:œ×qÐ/½ôZ Ë Éâ‚9#™W06¦PÇÑÊy¼K ïáÞ)¤'#ŠúŽÚq4å½2úÜßÄ e:M;£ûÄ‹rÙnãÕwEÃ\ÀÖotv/íõÆœ®ƒvö!4uY/ û;GG LªéÞ3µl¸?e‘Ò¯x>`ØT}ÀONa·#;‚ ÀÉ•cú'^<{V~àzÙñ¾si¯ býh+ú ýšñp € úÝ%cŸ3;zXv4ìÙJë^\|‹Ë§ £ }¨‰0 Žë•A§8aJJ À1Ï)‘†ã-DÌÜ2Ù$@‹P\fø œœÊ’5<'@„ ál¸FTx+Gqš8t^ïĵ¯#Ij®N³ñέäST ÎHÆ ÖçÈâ#³/F;ž› ä=ÛÅ~"@ÀP2P˜'ìX‰$8±§Fë ˜Ž¥‘š£Âq“˜9& =A<[FcÓ™}õÀ¤¡u&5ÔR Þî³~ýyLÏÍb~žÉ9€¯ãµÑ\ß‘a–ßÙ@8f Ï4´‹ ð§ô™úafGËŽf€ý1úùÕ¯~Õ½_¿ß=öãîò•+2 crÙ’Ed l)ÒPÅ8ÒÁø"û Èø*:¯sE$cF!XHgŒŽŽ.禞 c.ç£IÙ#éxV 8……Ä@“l%o¬KI °¾dŽÁvƒÝ(Ëù£%¡>!Xxé8·$XÁ”¬Í뺌¤ýàÐŽÚ²7&%VÅã­²€àŒ½’©­-YÉDŸô9“L¼/ÏþNêßH–§ðZI@Þ/˜,ú,Ø Ô]t Ç“M¶aŸfö-‹ ÁÐËv~€4ú-+&p·™„>'08QöÒÊ•T²ÓyÙËÌŽžÍûãT~ófwäÈ«Ý{ï½Ã7»ø ÇíC.&aúDE¡¹ïµ>nNI#„Òn«¢¡vð}Hë#dWR)Ð(ñwÊr68¦s )SHf°Y ‚PßA‘lÑ Pàì IáèYú¨³PÔim —äXȺ»$Vè¬Âíõ^džýr\8„Ïv ìKÖé š.Ó93ÙSÌ ë¹?ú((’Â_Îæó’Ðnoa9Cuî£,˜ ‡NÙôä()ÁejK/sˆÁº˜mª·Âi2:¯pÝ[2’}Ÿ2‹ÑQŠIÆ>c2—õ\’À–%~ј£E¼V¤FèìøŒ€™ÂÌŽ¢Íûc¬oþŸ›Ýé'º£Gu×®\Óì¹T›'†CŽAÌMe]ކN½ÎéL3…õ!{P¸)ç±P>Hó€ˆÕÕÒ_ËoMvS;–«9 £BËÞ©6Žìì‰ç‹µÎ‘!F?€¹º|^ó3j¼ÑJ¥r-g˜ ™†H-Tpfˆ¬4K1öh‰‰éixâ5éìAVÒ©ÿ_•pʈóP#ö3‚«th€úÎí‚tN·¯ÉšÁä Ãâ½´iBb@AÖQp¥?(‘cyQûg×Ctª*Á=§Ò?J:cô‰ƒ"—Œ}—~[wY6z©€S×gvô°ìˆ€ýË_þ²›mÿÿmüâƒîÆÝ tÇ)`}˜/ÆÅÌ*WÀ àj„Ž5W—ÿëb\5B¸b´pœšZ ¯ö<.Щ^ª|«ìÓ‡ºÎ’2 çpJr!$t:¿ë™D]¾«À‰ð·U?à;µGL(–öa_\¿× ®;–¾{ªÅb½JÍ«ì_—sÔAŽæ’î msÅ)Á,kWÓ"L|•û¬q<ÁC‰{FŸb­kÕNåo±6°‹Ià'Ékôc ¡ß Ò`RN}“Øb¶ûG&@› â <šh.¸Ï:ñ¾p>´àYãž]R·E„j±Î^naBÒú }RÙ_íZ Gœ›:<“y~fGÙŽØx­ÍÂÂb·th©[\Xê•¿-vóü¼lå÷Ò¡ùnqq‘³äðùâÂBÙ»C‹ åû²ÿüRÙ·ü}èP9^>?4_ÎSŽY*ç](çŸ_еæç¹ÿâ¡rLùž¿[â9uþò]9~aq‰Çàœóø¬lXÀˆÇ¢ÍóólãÂ!}‡ó,ZÔÿül¾;„ÿËyáØùC<îÿ/ß•vâZóø|i×bÛË1Kåû…r-³ˆû²sÌ—ãÊ=ð^qÏØgÁο¤{dÿXŸ,öm+ý´„ßK¸wë¢Ï—–p¬úτǢŸ–ì¾q޾ïÙ¾N‚Y˜_Pæy/“¾)û½ðÒ ÝÑ#¯uï¾÷^wu|­€õ ‚ÆèLÿL Ùë$vfÓÃà©óÙ”x€ BF„ñ7lI Þ*Ëê³â‘Æ.fƒýjs¢Ñ+«O½–Õ’$  7ÓÉ#Á'™~IÇö8w-' Jð¸¤k1”ŒrB†°µœÀ{É 2Ò$f–§‘Îé ŒÄÀ|ûõÖo’ œ!$+µ«• C?ÖbSΙ£Q»­ 8†} Ç$8'2bD`{‚ÉÔ¹}œèÙÎfB:>›$`» :×e⋌ݴg2k±G…édŒ¶ÌAÏìA$°¯Uº'=œÕ(Vû©£™=|;"`×7ºõncÛF·¾¡ Ÿáů›\ð¤|6Ö>›c-€‚…P°˜Í:Ûì6Æ:fscë-ßãòÿ:öoò»õþ|ø›[Ù×_ßú½Ásnð|ØgrÜú˜ß§¯1^·6à¼hÇXÇmn–c7ížÆöý¦oÙ°ëmØqëºÎ&Î]öã^6Çv¼öºõÏææºÚÁïÆê£rÞ1Û1æwüœçoÝ˺úK×Ü´ûØ:7>Û´~__ïûg“÷Æ…ƒ¬¿6íž677ØÞuû|ccÌÿ7¦öeß–óãM5«k#ÕëúZÆç5SÍ›ðf$Ì«v2^² 9YÏŒ¡D2KŒy•nY€=P'tn«„)`|LÐ$1†ßµJÑfÂé*`ÀÁLtr8F0pª Dê~ѯ„Ú2õµÉÌ®ã³:¡Ò™Ñ/¨£td&ðÀ .Φ?cŸÚgA™úèëɤ2[Ó0Ù6çä¤)²T&j+Á‹|U˜§¦é ªl“ ¿ëµ±Ïäjþ&4Ps¾—5Œáyµ«Ž:·#‹S5†cÉžúžR†÷V!¡þRõƒ—®íÛ-}X }@d¨‘ì ±(@›ÙÑ¿Œ°Y§ha‹³Ò˜^ÈwÖY¤ñ¸éZáÂêDA#OmsòF— £óIåE©v6Ÿ¾æÆ£^¦‘Ñõ竨m¤K¦!±l?èv©æ÷±b¸,4‰¾ÒC-Ÿ{M{áÃI­L= ²úÍJÆG½«&3ayB$&“,T˜(,#[B$…¶uRŠë¨ÚÉ8”¨‘ °*@#n@;x½ŠÇ34uÞFZõÚ‡õàÙ^°)î= ýRÙè®kM$ôYÎ_î݉0ëO'­¤·ÒPŸ%˜X“04Z§>‡ÑG1¤™ÍìhfGûgGìÊ á½5ú:5Ô•éEzh5–Z#}m:\]•ãÊVWÞFýò}Um±þïÄ 3AsâqÎR±"õòyåUTÎÆG«%ÅÈSuŒí«½œ«nP[‚€×¨U_q2AM& †P¾¯bW9¾c¨XKGŒ}¦|{r¦g)lÕñÞWæPŽ¡%ÏIÍÏ®Ò_¦ª&3¨‚J‡ÐŸU݇Y}rh‹}õÿ—ï+êˆh/®¥gází-ȡؗAý¨¡UÒ)½%]`Týu+GöÆÐ¯–AÓø|4²f{ W¦Ûáwé{ê™hÏ%æãÑ—•W»‚Î9³£™ÍìhíH »²‘ éÑaµ%Glâê®tËTÊC­Ø‰ Yb1°ÊkDE‡±áµB£ÚôŸº®íAx>$_É"¦3 ð}i\…‡ãdÀ¥‘̰ð©Âãnçøàr:”5J.Ôü¿âgµSí))Ÿ‘Å ôqzØLÀA¢’è0Þƒ—Áà{0šŠF§Ž®|e‰…¨‘á%~%½«ö¦YÁ1p->dgNc–3Wh/³Ò&°•Ú ² b0µŒ»v:/®[™ˆçU³?TŒ¦8Wm ¬ÜVØR…~æ’FŽ@•e1zóü•F(¯ö`´®«(†àÕIÞ´.|†£®[9iDµp®Ê #&˜†—Ž[EeÚ1Ò£SpO•…T5EþjK“ÂVÕ4Š@Æ£sóst8ÛaŒ!Ê}]ñ!0dÆ+ËN«BÒ«`z%b¥L}D[-œ®”‘§ãšŽÇBý>QUëX±•Á(12ËA^G'öÁ¬y­PÚ1d”ÒQqÏpxcfu¥û'3Äs‰ µÙ_^×fHÍ8gv4³£™í›™†` ÎâêÙHÞƃvÕDGa¨Q[‰P5u¯e¨•sAÁÿ̬–†G¬F{$#p½ÉCµù°¡÷T¼qŽ˜4RÇÏ1R¸Gc¤Ñx…?4ŽJYkstՙVW©Ía p¤VÆÜ3lñÚL3b§G1%w"R³û‹¥­:´üVø¤‡‚ÎNf„µ³–ÖB›Í“S°ÎÖ)\„ƒV,é |è·Š™óJ šr,žCEmÑ´B´ÉIïó )¯Éç†>5'ã3ì˵Ȗ*²ga5ØGåÔ~oUy›ÈÐko¸ÇŸaÍÒ-õ!ÇÎìhfG3;Ú_;"`÷Zn¨âïÀsPN2ÀÍ ÊÉñ ñ]yp\¿Ë àoŒî~ÈÐaƒàmt…Ñ dx•£á„JšLÏÂ@áô²ªëh” *êi¾’aÕ¥í¨b âh>0ï˵‚…™ ‘,HwBGUš @ç§>‡vxéhu•ô? =ýÀé<µÂW×  f$5ûgP ú ¤™Õµ® g Þj@Ëý ÃÖÊŒŒìiàè¼,ÙB¿"D,÷ËЙÆeeAxik=¨¥ý dÜrÈŠu¡•°} ;24°ô ¢.ßó˜AØ2úZ¿yL-5à3Ñ3Ç6»î>^ÈóÖçÙÑÌŽfv´v¤¤#ÅÿbNú.Bˆõ•´!„jIè˜ÒÂ8f~+FlxPxcB§`$¬¼tPõÆV«3J@à:Äš£¨ãõÒßp-Ž’ö`$ƒ‘YömÔ2žÊÂÍõ¯ŠÃô¡&CÃ: k _:~€NÂñN£­wJa¤TJ0PGdâÀéœÁ*….†8%my} ãªô7\ËatµðT}ƒ6ZÒyœþ¯¤­Á©¼…vø»¶gCà bÐý¼ð~*2³Œ“eAzøè§Hr8Ïþ’>úÉã&úŸþ§ÿé šk…þ§ÿéúŸþ§p}ŽæèúŸþ§ÿéÿkúƒcçèúŸþ§ÿéÿkúœkš£ÿéúŸþçˆÕ¡¹çèúŸþ§ÿéÿkú½Cs*ô?ýOÿÓÿôÿµüJÏÑÿô?ýOÿÓÿ×ô{8GÿÓÿô?ýOÿ“¸ÎÑÿô?ýOÿÓÿ×ô+=GÿîWÞ}:›4-æËU&-|{îÍýþ ¥¡îyðc›˜ÆODÒt¾X¦UÀkÔz{Wñ0Øþn]V¹fóÑcKO“ÎÆ6Ûª]Öµ–ª[½á¡¤ý¤{ƒ$)­=x™>¼GfSS3Y¦Å:k¨]¶¨U÷ú½ãÓgL{»*¢›ù2™%3Ý–›Ëu³I)œv…®x0ØÝÛ‘á³ú|™‰„ÖÏž>kz2šNÌL7PíÒe*•­þþá@†½¾ˆèòñ£'ÓIJã‘=~p²VmqÚ÷z}³ÁPONwd³IzxïÎt¢ªº\¬æXí²E%u¯oÇg'º§¦ª»›ÕâUäv…®¿¯?C9úŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúŸþ§ÿéúÿoèË"!j5 …HC:|Gˆ‚f"ªQÐ(D"Õȃ¯_DòÈI¤.ÒÈi¤E‡Fê2'‘ºH#§‘“È¢ÐD)d"í&ò)J­#Ÿ"‹BŠRŠR+"^¢ä#S >ûæ3ô‡—QRqUT¤(¹¨Ž,EU”§(¥(¹LÄ,JU.Q“›_`¯?â²Asæé?¸]6hÎ<š«6h®lÐ\áé?¸]6ìœy4W6hÎÄ£9—À\®pÎ6hÎy4WlØ9çÑœ&0WèÌiæœz0Wè̉0çÔƒ9)àœ0çÔƒ914ç$€91OÎ9Es¢Ì9õ`NÊÍi@seƒæÌÓô.vNš+v®^£¹­;·½DsõÍm­Ø9Kh®Ú 9]Ñp»ô-˜Ë[ún» ÍÍå-šsÀ\Þ*ýGÿÁa'ÍeŠæ$€¹¼U4'̹¬%çr h®U0ç$ ¹LÁ\.ÌÉÖ ÍÕk4·³@sõÍm/Ù¹­;·³@sõÍm­Ðœ-Ñ\½FseƒæòÀΞþ£ÿð°4gžþƒÛМyúnk«`Î|Fÿ±gy@sæÙ¹Ò·hN=˜«|sI=˜«=š«| çRëÁ\嘫4WæÊÍ™ ¹\˜óh.5hÎ<šÓ€æÌ³sÐ\Ù 9 h®lМyúnk@seƒæÌÓp»lМ4gžþƒÛeƒæ¶Vh®^£¹í%š«×hî…“?›àÕ[ŸþÙ¼¯rý³iàýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿÓÿô?ýOÿ3‹VP8 ¬¥pÄ*ÐX>1‰C¢!¡"&šÐ@ enúNñûwþg”%Ÿü>kíSúœºñ|B¯þ>^›êß¼õ~aºvº}Øì€ý9þÀŸ` uú×`7Y÷‹ü«üÏÙ÷ãxÍ~.ùEÐ÷ÎsÓè[I>™¿Üz†yäô™ûiøWð3ù/ö¿ÖŸ{ßH_çý@?³ŽõºÿßìÏèSçùðûþ§þïíǵ¨ÿßlàÿøÑ<‚}§­_Üÿqÿ¯üpkmü×ÿá?¤hÛþþôÿ¬ÿ£Ð#öŸõ>–¿áØÛÒù…àÿÂú€y;ÿ£Âñÿ÷ý?ZúÑÿëûãè{ø¿ý¼Ÿ_Û¿á~æúÿû¼ô€Zyźí?ЬëÎ-×iüUg^qn»Oâ«:ó‹uÚYל[®ÓøªÎ¼âÝvŸÅVuçë´þ*³¯8·]§ñUyźí?ЬëÎ-×iüUg^qn»Oâ«:ó‹uÚYל[®ÓøªÎ¼âÝvŸÅVuçë´þ*³¯8·]§ñUyźí?ЬëÎ-×iüUg^qn»Oâ«:ó‹uÚYל[®ÓøªÎ¼âÝvŸÅVuçë´þ*³¯8·]§ñUyźí?ЬëÎ-×iüUg^qn»Oâ«:ó‹uÚYל[®ÓøªÎ¼âÝvŸÅVuçë´þ*³¯8·]§ñUyźí?ЬëÎ-×iüUg^qn»Oâ«:î¯â!ÎUÈã®øCÂ4-øÊÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ4“lÇõ“ü{nßš¨+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±¶¥›«(ÎÅm¨yÀÒ>•a²gd ØfOgf-êËÎq¨‘‹éçÅc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÜæ$IŸÎKÔsî ³[ûHü÷ú•1¦)qqöÏšìR(C¡Ë”7ø“ÏŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´È›ºw°T¬øÕP@T|Zßœ ¬ô1Òºp®žc&'!ÿ¦ËÆt·#­Ú»!øc¬%Ã`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXÚþn[nЋjçãŸìþtâ[¯ìÁÐ_˜­užwGÐ' ‰á;ôßû®S̼ïò Slqç6eT3ŽíKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Š]ó't¿B}g-½Ÿ(Ä¡™Ìz(;}x/W֔˂S]3 [*«a 5O¨gwäö”±Q}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y}Y|ý:ñªQ5«˜¨àY´ •­ª,[^~#çw¶ñ…bÈR&ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦ši¦š$¬è6 Ù“’‡ATçÁá‘Ä0ô-%DUÕÞêîmö½YP×N®À>Ÿ{žÛW°;ÅÖ3”øÉçÆ î¢Ê+îvÙoÓKd®z#“;/Ö¥ËO6L\Σ÷ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÅ â†ñCx¡¼PÞ(o7ŠÆx,+±7×ýTl){´À³i6XqÿjißÒØ\OqȺo]†kÝŽE6åù4ÕD®¾"Pôy§dº±Ô ¼9ª5??£rvçâ$õßãˆ&ç¨7ñ'µ5È9W¿|7ľÈd{Ÿ:l B ·^Ž1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1^Ö%ÈåÑU9söXôÖå¿/ããÁ.Ês hNYDÞôË?05Qh&ɣ܌µè ˆ`U—áù uÆPEÓ#°_ðÐá`˜éiì…Lu½–£ÈýÓo/¤­@„cD)ëî ·Ÿ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏŸ>|ùóçÏžÑp$ ÂØSwOËsJ%¦ˆ‡ºùaþ{»`T§¯©Ê¯Ùró€øe ¯±®ˆÜâC#ÌΖ$%ªMœ¾ 3u¢x«&»å à‹Â—ÌÙ² 6nt ŸJê<ÀÆLÔì¾96Ô8¹ò¹ÐäÌÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕyúW©ø¨=Èý˵Õ§ *?µæG·âË1ý>s2æ9Cº~}7B\o~¬ÄSç…ÆGñJªñur?·Xýq™åÄ"ñÿ£¡9±~"‰ŠüKæýÍWe#x~høzÎÇ‹8*Õ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­Zµju*Âéy}ÿ¹¯‡šÅÆÐ,¬¦¯+'?¡^Ø TËgkMȃjOEï b°¯æd(ýPFÚ«½ØÜߨÂþtíW¡²æAvŠà£é>N‘£¿¼3UƒL:o°nAªÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjÕ«V­ZµjwÎíLDbŠ¢í*¬Š:e<ø|©`d­ŒW¬@`”îÿÈM|à­ÔŽøäþ™@sBŒO1W*a@ ]üš'9*LŸÕ„­_Ÿ‹Ê¶ßÐ% àëÏ?# Ù³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÙ³fÍ›6lÖß$vu8üÍÄ̹"˜%Ñ©iÔ3›.äüðœJý&æô餗¥Í®lÄu–à˜9aÿ‹àÎ:¿F*$ybŹËÌÏ„üš»ÃUl‹ÿ¨Q£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑnÖ‰*§ô¹ïæKŽÂ:1MþÅþLArá…w^œÞë[+rÄÌœŸb€=3%öÑ5îJw,îZŽ AÄQ…¶ g!:ÛpRþ?JR!Y“$mò=WôŒ©¹\\bÏÍ~Yé—æarM€î~^’:ZÚ}¨7½þi>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¨‰Õ¶–•à<ˆ½Ãó)¥éMRP®ÈPôšøÄy‹¦çüËo¬Vw}¹³&™aRÐcË|àOk¬×Œ øÊd‡´»z(`o Ë qÒòpo$©—®ïÏFŽø/)M¬ðW%MPÑÂsH®´îÇ>´¨+üòÕÙ­aøÁ³Œêc‘Dã¡ÁyÇð×›¨çJ6+ÕØI)&ßíùSNðÙB£cá+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{ÖTÚŒí/=‰£«ƒ(£¢XñÀ¨z`4ެ¡ÏíN\7A4íÕQ+€Ë5ü**g²Ñ])¸šŒ ¿{_AlvRe‹)‡ŽyeZ›ÀK06èÈý´iô?Ì ?«C¸eÇÙ¨¢<Œ¨±ý³tD|¼„×ÑÉô +§]°Ë†UnÚäýnåýâO>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ36qwòÔ–VI­7eŽã–U ¶ÍfnÀì°Äæ9ïÌãh ¯õò(d‰ü@´¼]‹— Jª¸”Ðü’sùðsr躾ÎC#¶¯?$7¨£hèª-³¬Ñ$2/Cl¾ÀGÿ'*áAõ=/·Œ …¤†Î^›®&áÛwqÅ•}•Ò_|ÅjÀ}“äÌ´(–ŠL™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉ“&L™2dÉQý’ž64çÆõTbqª $/DÍýøí$ÿéïLq³µØRŸÀ‹Éië@­üvÚ‰´T…däÒ¦°ôù x¾µ ÇQÍg5³,¼½®È\µ¢ ýŸ8M®¼=“O’ñ·³9ÃQ›ð Zõ´ ú¢wÑœÙî—Â……‰§Ý!­³gŸôu]üIçÅc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+bˆãf°ȾÎmñ!æóauÍo S¸Ÿ›³`RN’Îu]L¬S/ ¨ñÛv’±17i^>€ˆn9CSÖ€”;ª}²Ѻ š·ÙîŠ5aNoNA!Eàh!éÅÄ@¢/í-tƒIéé­?,ϲNe­ª¬Øè°¡ì î¶ ‡2d•€Ñ¬’º‹w_S=M™±1u@ §IϦÑcÓX†¦ -E» \z(7U®i‘ÑõDâ«ÑÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbÈhlœïSoˆ¸ÑÇ ãgCÆ\]Ü­Ù¨KA cy=×Íx¸Ã¦ƒ¯Ê§zÚÈŠ¾ï[›è×…³ZþÊ ‡È[{Ü›Þ ºì–¨â6Í‚MHˆ¾â3Zd ýHíòê;š&éçÚUEëÍXƒˆ¥á>l’áļ ¸ÉÖw|%Òlߢû­YDZ79²º8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(ãqŠ8ÅbŽ1G£ŒQÆ(å– á`üÁòŒ•v@l·b~+Ødu8ó=GKçõ»Cò 7$D(§¶î¬oÔ«d&\Ðã¤À°þŸëщëÐ Ä–ô›ŠwˆÔ$v4Es3šÒ%!1K[mB´ªü©HÑ ƒ±PdM ÿô‰]‘!»Ã¼Ñxqêù{ÝQM%iS ñÇ–š‡ H;£ˆÃÿ9³*¡˜„wj[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m2 Ó'ó31g)‹îË~žÓ_‡GQ¸a¹·Å”¨ˆ?k@»ì.è:U³½”IfB<ÒødU"KÄVž/±ú2©ì‰»@›4pgתÏ]¸£Ds#¥±éGª6%W+ˆÂ§/5³r»ožŠ²-Õ;û†ñå$ô{Ã@8›XàÃÖ’,Hó±wŒl¾FÛaêÉÀ„-ËçÃ:7ó›žO w¾½À„uÇוã‘nÌ!îÔ¶˜|V6 Ý©m0ø¬l»RÚañXØ/v¥´Ãâ±°^íKi‡Åc`½Ú–ÓŠÆÁ{µ-¦‚÷j[L>+îÔ¶˜|V6 Ý©m0ø¬l»RÚaóËO<óÚÎ-Àm·îÅr’»žƒzÑÿoš‹ë'L|ç Ÿ±Î¹Êxu<Ø®rôyyT«æÎåIŽÈ—úKKÁ©à$zÃ7T`w#jCOiÚéе=’%ÄÝ’Æ“ž–Ä•¢þðEBÉÀ†C Xû@cõåÐëjy>‚lYŒka…>9Wßtò@lÆR3%šãEg!y¾:  ôŠØæ87˜ô"¥RþˆÐ%’/ÌúˆÛ€€€€€€€€€€€€€€€€€€€€€€€€€€€€ÿ:,ôжp-O6A€©@‚÷¨G½Þ9­d joÛ S¾õ7èÁ*sï.J™ÉÆdqaèùí}^Ò\†&ñcލ‡?AÐ*ÑO«3ª¥…¾™˜[j¢ ü&ÿÆmÔñK•§.MiäNº9ýëšò†{A WU 8¯_e[g'ÌÇ"¥lRÖºX¨¤y†„Áˆ F2V:B."zñg¢ç­sºJ»Û c*ø˜¡Íu/Á’4h(ÙŒ§ãÑ`Ók Š•;!ARARARARARARARARARARARARARARARARARARARARARARARARARARARARíšy;oBW¡€û| {ÀÓ°É[¤j²±Rßeà™aÔéÊH¬Œ‹ÂÂŽK3{ëÊá*!‰r2F¯y:˜œ“Lj—îN¨…ÿÕ^o'ýi¦&"dE2¤p1\:’ô¢ÛIê\ë{7«¼Ò…æ8¿Õœ«°91L?*èþ+b¼<›Õ¼g2ù|"ºæ´Ó‹·5Yî«ùD¤¸6TA3î‰é@¿ !÷‰Ùö_kÒüÑXr UÌpÖæw ¢(Ã®ÓøªÎ¼âÝvŸÅVuçë´þ*³¯8·]§ñUyźí?ЬëÎ-×iüUg^qmªÜ¤ ômZÅõ¤©½HöëôîeX·8²ç%É Œ|‹Gøž‘¿<ô[4u”±ðceÔ¬ï_µ&'‚šÏ@»¾±ÑÍxFœ-öT¦fï”#ð¢…hc4Êå[J¦bw¹ªFÚŒÄiS?‰ã:¨1æ¨_UKÒ³¢©ÎÙÆ]çŽçß>_nóÏTöºëNØÀëŽ>âlJY±xd¯³­ö/W;o2ŠPC ÛêX/‹§lûóBL@Ÿ«­ºáH¬ê³éJz¨t]êÉ ^ð¶‹J•4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑ£F4hÑVz:ï‚áràÑhŸ[ônH£<9ïM?­Ït±êrKŸüÒ3H*f Ø\¿è4ýеiQ”âYúõìu$„JaeÖýVžI?¦ÌR–ŽyN^F:øá«±‰ôõ07Ç2×b·ÖïáiçМ¦“†lã~”: /cÜ †öráCÓ§-Le€Í&ÎuÍ!ÒCƒºÑ?… èú ´£-G@Ë mãZîaå§âŒ]äKešÏ¦÷D`» {ׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zõëׯ^½zôêpÌû9–áÐa# Á•Ò$gNèK\LLÇnÎûF‰IVÜSP_Åt[ÝÞ\°9ÃÙÑž·ÀXGʹ¿ ˜4dÝSn?ûèÐ\Ž< ƒ1Ý©•ÿ,³0‹>"} („íŠô<ÑS°á÷õÞDJ}’_-²ÂOdt$-ÔÕhÃðS±à”Œ®AÂŒ„%áü‹Ó´lfbœ\êŒlO[\V}3§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:téÓ§N:tÚ€þÿø-þˆ%'ÆÚíãD¾‡šó iͬb“Âã–7K4‡SÇI¯¬ÁŸàg;Çæ,}TÅ£ûðo0{§óµ:Á’ìJwá%¿ýŽSLcmW]AÓw!Ë¥ÍåS Lˆp_Óì–0qµÒ=€#¤QT¬øXš>ïK P>ºÚªAîž+%3ÿÁpf3Db%ld6@冋êY›'ò~`R;H•8ÎŽÉ´;¥¡.&ë±Ýe\y ’ñg\]‹Ì–ïǵ£öÀjóÀuœ8EË-eÝ8x%ýÕįº¸•÷W¾êâWÝ\Jû«‰_uq+î®%}Õįº¸•÷W¾êâWÝ\Jû«‰_uq+î®%}Õįº¸•÷W¾êâWÝ\Jû«‰_uq+î®%}Õįº¸•÷W¾êâFø#I¨º¼SÆhDéyJô (5Óa«÷‚˜DêŠÕv£½ÂÔŠ”ë3„DnV§”Ôk͸·ÅhÈÑàM/ž b–  f6ªƒÏæž1“‡—<Ãfçn·NžÉF]aBâz3hæM‚iX¼ –é×d¯&›%ÓáŠ4XyÔäèÙOÂcGÃ8dãf¶ËË–ÏÝõ6ÙŒ9ÃÝ£ö¯þv—TýþÐ÷–3G`µnSôàbVšw…'ì;0P‰I~Ã\íqþõWR”U›w5f¦†?è';ɳ ‰!¯Š¥Þ±éºw{DQœ§¹âdUÁ£vÇô úäœö–G2Ÿ¿22±®Áòbh¿©ŒÊˆ'ÝûÌÖë¿DB?»}S°J{lbÿp@íÖ1®Îòp~o·›ü¾X·jØéLÓ8ëw§t=€u'ïã+G\ÊÁ ¶X/âÐe|âUÛŒçЄ@`—Ñ#ˆb¢FÌ©‰Füb´Ÿ£«#ý xž¤f"ÒŒ¹'á0ì;w>fk(®2zåëþLÖÑUõ¨ ×€XO[>'¡P2fŽÓhüz>HÙÈüþ±e .üEÄÔ{мR‘°þBóÂÝÝðqA׫t>ù´Pτ۞әì§3‡ÁÒ›•œÍÎ[©i4ƒ¡ù~«mÝ´öêíÞv‡ÚqÔ™JÅŰŽÇÉ>KÐ4œòÑ ô(9Ù^¦ýs39îRêšÄ R9ÆÎòþFÈ6(=ÒÍA¤ªëKq˜^QÆ0Ó˜ ¤WÞPƒèF]/ùÓ}Òª^‡Y˜'_•¤)†Ùoõ 3é©%€ÂQ,ÛÝ"Kn…‡Ô¸Z‘’w ê‹+|*pqÏOÿº ©TQt¸ÎÀ 4W×öéÖuMïLJ{  <8“ØmáÄžÃh$ö@xq'°ÚÉ=†ÐIì6€ðâOa´‡{  <8“ØmáÄžÃh$ö@xq'°ÚÉ=†ÐIì6€ðâOa´¦¿e•âCÒ<Ù†«7ü&7`ÁùC›Åy$ Ø›"©å­~‡4ለbÔÔ§‹ ø†a ÆtŠ¥«ÏÝš&}µÄ„d”1C><5d±ˆˆ‘Æ2¿TävqÜÚ$“ÚÉ€#$ÉÚíiíôs¨—ÔŒBŒZÇ„ Íuó OF6e†»yâ0¦NÎ…L¹%ë8s迬…ÈÀ]c¥anº_'ßY^ÛÈ¢Wõx{º~y>éí¦ðMÏîI~¼Í-3öw'T-nÏò¸éß+ÿ†·yͲÌoftolœG%ç“ÅÄM3µ èdì(½¬ˆgSúçÉ@ À¯}+Ññp§'cñ¿`B¬†Íî6¨Ÿhª«–CÜ„›@ÏI€ÐEæÄ_–´MÏ·;"щ›B‚9fWN=q¹¥@4­µ_˜F§uk‹ ²™^ϸ«ùçç®Ô¹4ÒÍE„)´·#Éo~ÚÇ’ìy¶¶Ê¢ë¶0S+m¾´öœìsáP9gýv†˜l ˜%/ºÛkcbá`À+„ ¼Ý®j.$ûÏæ›©HÀªBZ%â”’båÜã°Þ˜%}T;úÉ×rßãÞ§¹¿`&¢ÑE-¨jFŽë§–Y¯ yl„ ¤„ãïUeT&«¡3ôm!3«løÀÇHwÿ±¯ä½m8Ýà¥< ¼H ’å1yDêãbçŸO¦g“ØÃ]˜Íø%EµyÊÐy–Y4‰rUqOM@x–Þ¨‰G1‘qãŠw''ñy=kGܘu*Ïl%ÿ 'ûÉè3Š®n;OxŽm¤Ú ü^Hý€¾ YŠÒsGîÀ1!Á;CÑ=k$j€¶1ýËÍõ±7ÿEÞStqΕ5õ# ›š÷¾jþÓ€ì%|° Lx|â߇³Ïü.­ë¤\»+þÇL?LZºoÚ¤|J²€~i—ÊY ÍÔ´2M7.þìƒþ®iÕ}ŽÂoutrâ–Êgí¦$1@ÇL˹•ãýã³  ,ïßÒ+ù "õ-¥ñ>ƒYJé&…/bÝ\ã·kÛˆ³àñ‚0ذIm8CÅÈâ Àz‰Íý[~ñG gŸë¸ÅtŸiöÒýŠåhpzMh#g¬e¸ ¥˜õ œÄ=¢ËÍäÎD§°½Îï`‡‰iQEõ“æêåjD$bB^†3b’›A¨!6 ÷ ŒßŠtÖ'sPwtë\F½¥ªY‹þ;çý“ž¨ÔØôH¿ë?¤½ß%Òk¥ù¢\ÃU¤„û!,Ïçtr!}‚D[Ø»ø”¼S«dYnAF±”Ù•ÇÄ[¥ˆ¶Àˆ'‰b}4G‰Ž×¹|­hÛFUSï «ï ¿ð¤¢Kš„èá-6%Ì-&Tuã’ÙµøtЩsÞîó!gÃ?Ȭg¡íŸûÿû÷qföøÙ° -fײ¤( §\¤tÉËò¬o÷ýEHKIÆÙëVä ²™U EÿËÝ/wèü\ 1žŽ8‹FÀ„nêb~éD*wãk¥ðºÀÞŽ_¸K¿:KyÛ[døãzùh_¹Çc0[Õ0éFäð\ß7å0hWȨ3_ÆTÅï^“÷4x%sý2àcƒK÷«LnÿÌÐ&ߨ B-:˜Ã=iâÓó»¥¬ç¯ äUð^¬‹ë<þg˜µW2Ó·w"uÈìµúo¾Þ†7OÁ㥢 Xjó-\8©¼]¦˜Í…ï¼ÆÀö}·gŒ^Z}Ym›Ž;q¡–ôùÃãÙLôüŠ£h‡áÉiÜ9"ÿ¨¼ÎüªÎÜÆE)V°D$ƒøôLx½Ž"¢ì8|ˆeˆóúÃ7ü|}":Ær2Ék¬%ËnT·û}SùG a! »ssbؤÒE£¯§CÂ}ôzÿµXgb­ÖÊ…Ó@"°wÜæÉÈà•`Gª¡ëÍûI7 ZÑ-¾[gÝ|o¸€i#ªo£vp”êã×#R4ÄV-ªÀi'Õ¡­ç’ÑY]/Z¤–ùD éÌDÐ2üÍØËçû:/ØøûóÚïüü€ËþHLÌ™9U÷Ó¾*ช•(;ÆTÉGßòèû÷¯wd­ÜŠg328ru·L#r_É4‘ùÍãÓËŽBǽ¯Ò“BÌ ÃÙc€ó¿¼$ &kÆA‡—±ì[J¦0uÙêçW,+ñÓð,¨G*zÀ»Ô… ’ð\¹z)ëü}{Ù-“~Üm´ÓUJöö9#—¼}äŸc޹P ÷,‚¿=¦Ê„YÈÒW %±æ4¼èm$lFø×h_ºCÅOc:}&UxvÑ{%¼[¼Í‚ë÷ß@cÉÌe¡:aWÇ~\~z¢gl”éûû!½xöŒ¼`±™»Ë>l 'lš‰{¸!‡L²ØŒŒÉ–ª† ë«ð©Ù(4jzªvXÄÉy—{}Ü ™[lƒE.òò/Œ™¾h4“]¼ÁØUÊ<@äeðóÿÒ[ q/Ï>퉉|¿¤=6fJ„SÑÓ %º#c®ôM‚]‘1ÍDʳ“Ëib«,AuÒt¯Oµ›¿µ¦4¢¬ý¹“Ô‚ï#žt2‰$YÛÂí°Dï¼Üúñà hQ)ÅÎÔic\… ã(fUU>îl eÃ=Y3T¢,šÉd8ƒ&¡ˆ3—l^Ë&Šà›o‰¸íö£dbi£˜<…už~Ðrew»®&bG—Ðnâž oމ&µC› (BY£¥•ïPåß6é<[‡‘îöªìiRòÓk€ÄÖp=jÆá_8N–ûRîKP°äyÛ¨ìZ‰µfï¹Ä,Ñ{0î ±RX%µsÞÝ€Ã'3…þÜíá¤G!ÆÐ^MŸ±U…MÛãì]%¿~œ¿~7mç|R±D¨Ù®œÕÑmÆnÓ‘pä\'´§fqeX3cF¸€{Ê2 ʲ•>ú¥†¦´’GF-‚ÇrrËF§È }±3=`‹0RII飩ބ|%V]‚(l'ž·Óþ«ˆÄA%ð18Ọ"°Âdu}_…ê+.×á“+!>Œc€W˜Ú|šÊ|®ä<Ã#éîï¸Ö|t {ò&²¨ñ¢€>$Ñž³™‡ß‰Hj2‚Õö*3¶†býØØT‚h€[½j[…åÇþU·æ¿²ì.ÚßúxÏö¥¿½ô6\Î+ÊAó*—بVñUäDhü‹Øxwõ†.[m×:én}ê? %|LêÚéé@ödkÓðþKøu-þëÁyÿM61‡\ïg,ßž¹ÐFŠ$üMÝ—ò D@ÿ#ÃtåºrFâÖºü£ø›°0½Ô¹¸ž:{ T‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹÷"ïþä]ÿÜ‹¿û‘wÿr.ÿîEßýÈ»ÿ¹û¸ô|{ Ër>Ox&²ÛÖ^= ,»žšë"Í6FG  1™eOT乩¹@zÞb?‰:9ï?ã@-âbžÃ‘~Ûp-Â¥)x—ÿ¾¿þ'ïöfEn'e ¿¯ûØ›¥ë69¾Ðäu—µœ³VŠlù§­ê¹J$wˆ@^nŸ©±øyÓtU[qÝs‚à’mÀèxÚ$ÈŒ…Îh7ô„‚\¾3Ž ÙžDbþ—$ì/e‡b\\ç–u„4¨á¶ˆÐyûÅ*ý; æù±JÏØFœe~ݼBAmÞ±MƒŽ2<Ñ.7¡ªåIãò{ és$Ý…åàN†]Ý0ºƒôÞçÙäGâ#Ìs§'˜á ròŠ—ûÌù!¬Ö4ñ/d…z}ìŸ~Kk……’Ëó‚ÊmWägbg-þþiA÷$dd<"©yšo!ÏÅ]C·Ê‚MƒQ”qµOIÉ>Ú¢œ?ÿ³ Ü‚f;¦dD©Ëjí ¥s÷ ªu2‘ÈÂñž•nÐìŽû7êô§îßü8ÞÄæíã>/Û…‡„ZzVäŠvS0üE??#’¸µ#’@¢"Xê»à¿ÎL¢øÛPñ‹ƒ qlÆzT4ÖØ2¦'0¼zX•`a†”Ͻ õÛRO8¾øÑúŠ\`•*¢Æ«ÅˬY¸]ßêGK@H·½ª™‡³óÿÑÍñËyÚ`Í®ÖéZÒšê„?ÚYLBÿ‚7š1kq~>Om’ìÝ”SýL¦RñƼœ…Ú‰àߟퟖ“àâþ½ï+Áy‹™M½ž¦Ë 6ÊþÊãsåå>À TöL>ø,†Ü‹MH?Ô®–CÓÁOíòË÷zy6‚.¨ö0©ks(×}®ñS8ÜJæŽf'#ekÌ Æœÿ?;Ô ®+ê­ycY0”1½X^pˆ±‡ÂV;Ìvï,KŽbééÞ oⱞnÛÊÜaàþÐÍm‘‡ÜÛ¨x á VãÆŠórójÎY!à’®Ê–ˆþ!‘_œ=Úâ—= ¾”^©'®Ÿ÷ ?m_ç“úJp©ñvôì–D ïsQÿäúÄs¶šÿ'Ö#´Ôù>±í¦£ÿÉõˆçm5þO¬G;i¨ÿò}b9ÛMGÿ“ëÎÚj?üŸXŽvÓQÿäúÄs¶šÿ'Ö#´Ôù>±í¦£ÿÉõˆçm5þO¬G;i¨ÿò}b9ÛMGÿ“ëÎÚj?üŸXŽvÓQÿäúÄs¶šÿ józÑ<ÍC íÍý3J_GÊ”kV »ÜÇNŸ3£&ñ6å"3iÚ©‡Ð"žŒûyÊ;|Žá.ö( ßU©˜–@ jóHݘNß1ÿÄRû¶¼ÙË|Õqߢݠu å1,©i%dœ?Íx~  26ÕlÇÁ×CF¸Ë<N¶²"οg¢³šï×Â?Ë3)¿ H\çqòý.¦¬¶ ÒÙÚ²ÃÒ)¨a<ž¹¨:åè!—~Ñ*«l5mS‘Áú/@YÕв6Y«5݇„>|,è­l*ÊÞ"7‡W³ŒçG&ùð˜”åÇ5ßdY=L†R7Í çI<°$ÑFÔ4´ùûh+俇þó׉%l³*Ù(g &ý¾v`k£—Ú¡{÷Rkù¶vX. Á~«kùç}˜j°"ºçÓn$õhðbWqW ÖƒÄðN8èÖY>it…³Ý¤Œ¯ßX®ŸŒIE¯É0*º¹)¯?\ ž¦oüÎ+Ê-È“-×Ä©…x‹ïï˜ÀØöP@´{`w¼74æ¨sÜìêX˜6Ä ÚÛçR†˜lڮ̓Ðð@(\¤ÄîRÐönÆ¿wß;ÙçìbE˜¬äèÜÿä>ãgÏèõü+nÔ—÷.Gg}×k+/pXiKF\Æà28!PQ딎3õu‘(8úÎLÝm–leÈt 7²3&ÇÞüì0#¹dwg2ð]!z ž9Èù4 lUç‚PŠ è6½C0ꡯņcèÉÒœW7ŒÚ0ØØlÕÎfT–ÄŠ¢7C5üNŽÄD…(,¦,»WB¿sÐûÄÜpU!Ž^… h ÅxºÒáQqpqD}Rá6cùƒ;|Š„+¶wÙî™à`t`ñhõv~ˆWÇ‘õÔÒæÿðãþû $°ër㤠p$i¶ð…©“§¹2Bš±œsüDÓ?F]%ž`ÄÚmæÕQÛ’( û? ùËÀJ0ÀâáÎ 7>$‹þöy K[D͹KŠõã…»¬±w Ãlú »t¿@å2¯§sNŒ@S m úað¤FFìÍ£¬Í®ëÂÖUNaoDÐÈÔÐOèÓŠN˜åœd—5Õw\uÜ3ÊV›L®7Þ4/ ]Ê»=¤Á)•þ+Hé\‡`ì¥û"pø£ÒT/w½½í¤™•”²9Îò)¾  2C£H3i0~J/Í€=À§ áéöÆrä‹ÓÕ8ÞU÷æ ¶ÏÚÍYëФÜTµ¸€Ç“Om±&Õœ$$õVß|´¬í¬! )çV9tóë¯ôsr#cZE:½ú–^!j;¤QÉÞÀgK‘Ç0ûijۃБŽNe!¦Åƒ„i]wªæ')n£'\~x™pJ=êEÄjB.ÃïSØ“øÒWÏŽ·Ì,ÀpAnñÊcZ®Á¯ë×ÝX8K–‘è‚Mó ÚÆäòà?®Û —QÀ½K£çÇ'j÷BßÏHWÔ*k4¶žÓe©6¸‹^rñ_J ÛTçÉ·*ŽE“ O^øNÛséçG¯ùç&i " â½6æ3=Ä96"¤é%ÎØŠ Rú ïäÍÿ1nüÆó§±)ÏqE¸•²xo!¾Ã›7ºezvŒ ´²Çw¬PÓä}\ÍåM7,ßk¾™Z›O¸2èA²žÁn鯢´¯ÑP±V‡û&‹0έCŽf=nZ'|¼ËE 0\ë3ˆDæƒ bνry°4/õ·à”;àÝ+5FSŒW]H'Ýú´!¢ñ×Þ P°O¸pZuõPqcܳ–Ëö´¥,îkzÿ< ÇVÏcQ{I•eÅv·X?ÍÜÒl$y·8Elc©´³sb­~ݯ2ï®!þ•ïå´pe*^fÐ%ÄàŠÓ±~äb¶oýgLZÎŽ¬jЋKÊèbÂnŸyŽ_ë]p£tJK$eûËÿ7Gùz"޼N®” p€Lt5†Aò¼ ±<Ã3Áhþ£½:6m“'/:v›@í`}_à5üÎN7¬ˆ¦_¿©Ð-ÃÉb»kØ=yoC‹ë¶=y©§U€¦jèÝ÷™„>ʦhßר•7lë Â;“nÑŠ<Þ× ,²ò—‚e´ÿr“O¥S!s}'6-AoÄA™—<éª+Ó2˜îâ‰ë+2xIáÙ‘ÍÜ<â×Û®Ô¹cº¯çŠ_¬ èWu=Ép”CfíÓÝõœÐ!™vÀÃ:My1¢>3U×HHÌ9:é¦p„±Iü_®ÊTÊàñ1ÕÍÒ™Di€7f¡ä”yÛÿ¡C,ZC2ÚM)¬š‰¥ ø`4§{©á{¤ÕÀišD‘Èé!el\·q@1K߸ŒñÃa•%î—;M“µý‰f±úß[¸—ö0#LC¡qC´#Æ_͘Ä}às4%Ð k%’Ç êÀuìû üíW™¨ÃøßD²5ñ=U§:­ ¹•Ô=~$¹c—æ}Z¡ì̤-®F¼BÊ01 æ»@ž¦§š"»0 ÊX> ؉⦭„…ÜÝðŽn«ñstÈ•OL®ÙŒ©èm©ÜsCÃ\Vw©Þ 8”'¦Ï)Î %X­Ðã)eáôÅ{o6 ?¨”YdÎQÓóQp+Wï^"ÏpÒ¼¯£å<^î=K¸™ÙŽY!V*äf¼¦ýÖ'æÜÛúÿ1Õ$¨¤)ܬʫ…£Ûd­ÿ×ð᪠¬MäæÏ!;·¯ÛòüõŸ)î—n˜ŽÎ=qÀ±"y‚f‹ÿ…€ÎÛ4_®*S·¦Í!Óäîßr€‰«d<›9Æê ŸÝ[/†Ì?eÊ%^w"Áä ´_‰dWJa%qI}– ÕÎëçï0A3~B2ãÇ{‹'<äÄíÎê½¶©úìü¯à¥5ˆÊ(•1­ƒØ‰±¸#É ô§—cßaç>ãÆ:Ïåë7ì ï8zãjd­¨]n‡®G¤ͯ‰CdÈOÄ0nâ€ÂšÉÁ qTÚ3Hw¡Fz’ ÁÉ[ lYÎOÇÙþW´ÄÈ+ƒåó«ÁÛM¥Ÿ¥ã-“ûkŽíÎwIФBûg‹òÞ=3¾ h}–ÏN¶SÅ+i?l5«q£„mhL—‘øÊ·l)ùDµœñ6„`•¤8K°Ž¥üéÿÂÎë:‘.väßy€nJÏ'þÙTD¼Wäòp]ÚáµR4ƒœÒÛIëìÇvÿi»ÿ »¿õIfí_Ñ’5ð”æCcHJ¬¬N—Ä¿ðÂeüá²£ù`µ €dÈÓêTð‚Ÿ„ðaU=›|GÝÝÔfÙÐJÔjÕÿUø¾~'•͛Ҁì•I"æ;C‘Xö#¥pŸ´ìþ@þü׺ÿFW&?T’àZ"Rqá2ælÝe5ѰÅÐزí8+´­AÏÜ+¾Îˆ?=ž»tBØu';¾ÄäK¨[XÓï;Ÿkþx`ÍCЋÃå%-|f¦üX’>…*ŠäMƒ »ÉgÕof!üdxr‘ÎGºÎA¡fÜo}%¯Ln\+2·GÀÝó¶×Çi\]iÍx¤ ÔËùÐà´åG²=‰ßØ÷þVyè þ4¡¯û]ÀjIó\ZDÚÔ¾h§Å÷†i¸3É€%A£_2kÏ6ãHñ}L=Ë^Í÷`l#¬~`C˜ðçrK!)Ò‹öÌö˜sÏæº7CîN}«—„c?ÿÉh©#“›žd$Iïí|ÑY˜Z ÄP™†ä¡é]t3€ÚLÈÔ£¢ø¸üŒ½ÅÈ´éÖ­+Œʦ°^úaz¨Ê”ön—ž-é=[ªG Ñß=¶û‹™Sn¶{¯òjˆ+潑EªÞF³SûIú&‹_&ËÅzÐd’Èb+?¥ÅË Øêá¸ÍQí1zPEõVk‚Û0[pë¼»æÿ¤\èÉ,a3ÐKó˜ ør™à uü8""›,¢wˆô`/D9C±²L7(ÝtzüŠ“m ÝâÊüá$OðЙB¡Õ5]xîãsŸPެ2ãŠÌk9cþ:á=›ß/÷j ?lu=?X•q4eÇï«töªweÖIÿ”¼ÑâÉÐïöšH~ëö•@Ö‘RmcˆðWãš• +×5¦šq7ácÔ/ªFiX¿k±¯ç™xar˜Ï½}nRþ9Ra Z* •~kÌ)ÁfYkäSZt§9ÒêÐcTÖÌ㟰p9‹Ð^ÍúiôpßXµ‰w8k93-»ŒÄ›õ"õZ‰Á€À¸&,fe5aögfú hßgô(}@ܯ‘lç·ìH|}¹ÛïLV—TÅrì"Û§y,¡VU}{ÆÌîDÅd)JÒÖwcë{(àÏÙL©cçå}u]ª Ù±õ`ú Z÷†’¬w Æ-|x~ ¢>|R7>â±ìãêVË´Ýšyvèßé›ÿþ çƵDžq‘ ³QšðÎ6GW"—ø(pÓÿâXGΤšA# ß©>á_ò¸£Ï@/Dk_âmvY=wS£8ÛŠB³ßfòÊâš&)¥¦¿Ç>»N*)A&Ú욃?Œ­h]ÓU¾Åñ7]!´²ÕÍûW+oÉ%M.ê1iœhµyµFVK»­u’ËW|P‹¹è¿ªÇºZi¡k÷…Š­ÍD-Žð›(lƒ=f!‹ìÃO–‰ þ8Úì2ÝÔåÉ•ÌÅú“âÂ-1òÁÐ>Ìî“raô þHÐÍŸVÐízR½¼JÍ Ý1!}ËAv»O笪» ÝÔï‹Ã!2$ ëý†¥Nÿ’,B/~ °Ù­œ8BÐìØ,/HÿØåjâïŒ_n¾ƒŸ,&н®3•ÅÒ¬ˆ&ÐDxÜ`„ SÑÈq|Úfc [–•qu_º ‡öãoU¾Á‡¡,\TÓáWPk­ûÝd'³;aptÏ&xÌú”5„mýËiSÇÚ¯¸Y %#Üãk@•ò÷¾á‰6¾¯_óäÿóÿ¼o»8xnê@‰GªcØïº:—( Þ.ÜI óÉsšö/Iä5zœ«‹¤a¸ ­žÄtÎBŸ>I_d°Y÷j=G#ì#-UÉÂ0=± Wh>éüòúxj“³YŒ:¶ÈÖŠµ®¢Ã~ “ôEÅØ$7VÃc^[l®D†;Òzž[¡ºþ³Ú^SÝcù m¹.`PF8Õµd#_Ê|BFé@ù—©°bMï;B §‘ªõ«âZâ*Òì ¢(Ê8Vùûâ¬dßÖ¨*Ïá,yŒÓ­n¤”€Ábâ†À Ю迨>H˜^|ˆ¤¤s½8“F3³ó\\“Í Ñ$í³Ò»è¨„ÙC®ó21ÚN`Æ& ¹¥O—¼Zê|šL0·?òS؃ >×w´E às©š¶¡çÚº“LòW¨ø™2<3»•91ZµÖC•ɺò+ï:pgí{èšÀŸ•¼›F"÷ûLG— cáç9¹>±ÄüîYÛÉVàܘ#UЇe>-ÁÅó‹>ž)ë°žûF¨órÅéI@òÜÚ¢ E8 !„ÅÂÖá&ΓýÀja@¶/¶ˆY›ÛnƉßIѼé0Á±£F–é¼°Ž”);vÒÖ(í,ù°¯ÆtáÉK³ç7y¢?œµÆ)â8`ÓdM×5D~l»Óâã“­üJ|ÓÅaÛ}¤†h6ew0ö±Ó”»ý0Ð8öWì3¶hÏ<¬ikªOk¦Ÿåcc(öÚúÏ.¶Ü!ªÅ~ûþJûD[á“dþD{2öøÝ®,„þèwm“Ùÿê+äih]õ­Óƒøé¼‹püN„o0è §L’[XZ¿ì9å¥ÚM5Ã#E¶Y6ï%„t‚9z†V )Úwe=ÖÅ@Üõp°´>=:õpóx¡¬!ùª3YÈ=¦ûãMêk4%­ÃO~€5’z2R!Ú^@oêäÌ–Ÿ|ö WÊTãI¦]wßSш'Ù áÂm®•:@—Õ–åò³$ü¶µÛ…™¸ý»òí:ušã*Ñ1:uÔ ƒ¨âþþœádî\§†[Jûl“w!Õç;Ý’a<çZÚæc¼PfDd¹Y2ü‹ã)8²WÖÏFl¸›Ìæn*ëµ,ŸÓ‚€=¹Ÿ¦O¸ ңЃ88²ÐÙbC̨qLIL—þ\J;êæÞÝ·´#ÈãE¹å°ã v¹rn•XU—x$xU°s9ïÓ(Ú ûc¶Öøë§Vœ¬$ñ-¤ÿ]Ðqõ\Šójy/‰ïL«á5/XKî!‚¶&ˆúÙ@nÁйÄüæ¹%uxÕÖpà±ìäÙmÀÓ;2ñ{ÁÕ{-HˆÁÿ¾‚îþ©¸¯ä+¤Òšk~˜ ýy Y<~œ—gkV\®ÓKZc:Û¾†uvš©&X,'å©?ìóµ­œd/tÓšp¥&˜Í}ú\–¾Y¬ðo¬54¶ ñÒ„þ6[$C9þèoÄ?ÑL`·Öaþõz²˜ÊLß×3I*|Ž ·ÉiLJ9MPû,æ¿.IZ.Ø_V¸+ñɯmã!°ØHM$ RsÃXO#%ü/¼Eâw%¶gX,®ÊdƒÎ~Á8C2#8ÿ#;ÅÓ{¤XÐæº¢y[ó•_…RK=¤Xõt„ÎÜÐRýíÉÆiƒl™'#ä­}”¦ÀR€uÓk2K¥õ:¢…ò±êÔÙu¾÷Ë ô ÐÒ„é¥W–ø®Kæ7wîš"“Ff>Ñ>&8©6î|LiT)_r"¬MšÏòùb'ºÝÇwwÙ&IÅA b˜[ÇKݯµµ9ÏK!V½‘"#†¤G«–ìK/ëËʯ¼_+`?ï*Dò›¬p•-œÉˆ,öF64ψòöÚÜÞ3OËh~¿L2˜çï="+sùÇÈù«½qÔÃ8¾¯±òÍwkÕh>¶ó¶>êKe²+Õº?Ô´^ÔVѱ‰é+¤lÝûwX!Ϧ'D·íu»‹7Žý‘WóËDfH›¨5™©Y7uѲÚ%K/ú¢¹‚G§¾ÅÖz,‚&fàËeLš¹LÀ\È‘qVLÊû2mP†xwÆ ¬h7rÿEz$Û2qµ ! ÝæBe—ŠQ¾­4-…ë‹’¾äg77jW;¤¤r]ý ’©…Œ ´j‹ªÖÃpK'5a66xŒøN2mÍp‡´çú6ÖüÈÁLi¤PY¡ŠDè¼ÛŒ÷[Ö#豉Š!Ø+Âæð‡·M¬‘Ç’²q;ý=Øk`6>?ÓSC~ÏrŸ!›På¯IöÕÒaJö§Ä±d6ÙW¥EñQ·b›6}ƒ%ú{ÈswK§šÆe6úúãý5í:ójR;z”•%ž"(_„kr;µ ·]Æ)äI‹t‰¢îOBS0mJ ]ªÇ¨P<¥ÆÅýCòÏî eÊé l2]ˆ\ݨ`œï³ru*"lÉœKì §¯m›šÎbg¯Ø/LÕJr³ò \þ߯ºXNlíÓ"Fã ý€®dü“FËëÔÇ»LìŒ}_ï h^ö¿f[›–#³X2{euFˆÄÔ©Í•ì"Àª'K¯,´µ¥Ú€z”LѶÅY&¸@¶YýEc›0Ï%q—(‰¥Œæí”’x”÷ìóéo%ÿ8 ÇDØÅ1îé<|Qú=‡ ˜Ê£e_-#ßJ‰¼`ºÄϲ)ÏaöÔsÑJqóïÈþT]¡«©áàU‚[Çb(û¨ýÆÂÐH¶îl"÷¬¬õåI“½Bu×r·rÜ-G߈™Ð›ÐSdïÈ6Ï1ûcŒ{f(«I ´ƒÐp÷µÔÛÆôx©Æ*š öb`ü^)Š}|L¨9C0Чë¹Íßsa›ùáò²yò Ž÷Ü nÍ,xÆE̯Ä%›Ù†† ÛS¬¼éÿ¦ˆO× ˜Ð"'–$Ô¹‚Ë´[†¤Lé!z,õ\1@¡Y „¾ñ½ŠÑçÇ<•ƒGzüZ)˜m^iÙ§×ÿµÚû‘6ûèSòï±OÇr¼úÕ$hÀüò¾W½0&LJ7Кøëöü{vFV¶Þ­R1/÷»¾¹·+UÂÓ„„û™ž'¦ù#èS­IhÚ©—÷ü™¬.H¹4·d‚g<ölª 7ª#I+jc*Ĉ*ÊeºqýÛ”u4µ‘Â#æ— Û”pdqWz?­š}€ÊDèpÙâx‘¬“ÖGu}Vã̓.ÁÀŸ“føK[~½zh•*”øY¸€ø¢ ü`лsº*¡3+þu»ïn¨1/¾vx–oCn´5wÈÖ²?¥X2B`­àÙÑMŠ,GD*Xpü-‡D;<ëÐó›gæBøm.2)…fj€Bà„†&½}:Cáø])1$[æ€ÊU|ìt:´m*¹ôwvç¡1øéú‰óxtCÁ)Aw„ƒ‹ü`î'ªèïU×[§éÒiK^´sîÛ/ß MÈ@ „Ægº Aç:`Ô•“$Þ¼á<$^Æ€Pe\ ÃYr ¨Gw³n³*˳iÈc„9¡1¹6XʸÍ1p®Pbñ9PœØOÛï®BÓ^Ì®–¤Ž'½±6.e0†¥ãºKʾôjPô–:Ox«á,8µG_+p2ÚèuëPQ Óœl^F’ò6²ïÆwòàf³„ÍXZ•$!ëbôI÷&Ê=”BøùW†ã¶ð} aºO)g´„UdúÀ|€¶þaŸâ¶÷'Ió³#n‡¬áÑ ­‡úœ“šÇ•K L ˆ²'ä·äJ âò—zgy™$². aÙƒÇG©]öéô|Ñ´˜*È„EŠt‹O¼7ÜÄüra ‰Kp#r[X@b|5o>™ŸÆ|Àd½ØX{i¥ä¢oS_¥µú®ÇU‘˜é¯è”}`ö›òÙ˜ìs~S5òNYÕΙƢц· aÃ>—d‡p^×½ôrsÜ{oFóh›Nhô ÞLU°ÔåL?Œ"Ý®õÞÑ~У iBš¢!î»å’ ç ÂbzqlðÌ@c) ½Ü¸˜|L1„3`€ÁW+éC“V¨C×±aµ}Ÿß¤:ÔÿÍNBàÙzÝÀCs ãEäÚ¢+ª³ž^Qáb*r<#Ö¦p¶™@Ë8°¶1sp À2RDÜÉ6Aˆ¹G½àdéêšI’†Ö¿Žp£1Š˜‰öß6Y‡—n<¨{eÏFû·š»XæÞW–0Åê.ëÅD?ƒøã”¹Hÿj_ãc󯆡/“ûQ•ºK†M¤Ç ÀDN¹UEaA³±Ýº ½rUí¦#ßÜ{×òøSN)Ù©ñÞ¬z Ôí‚›ÀìÜ5$ɤHĉs\¿G"…”wöþù‘‘NÒ£/¶€xÊ/§¬VÞ8%ð°Åûý"ôëˆóOzÛÄ×¾ð g©g*=Uø¡ñ6Ò³ ºÝòêLÔÓ 2•Z1°¼¥ˆé9§áÐtGUŽõb` ÂIÉÍ<ª&‹‰b´Ôµm—2½²¨Âô#(Uº;š¿ŒÈ'ÂÈy+)ǯì!-Xû*A¢/Æ–‰Vnj¾õböÜ5úX¦,èí"¤øÞÒ¶¾ÅA Ú±(]ý£ä™ä¯ý¹HS,ò,1Û²\7ð–« _–Q Žm&ñ5ùo»¸j"Mj@[×-O¬¾evEZ‘wï5^ÚRØ-0"¯ò×Ðn#?½F‚GöNÖ¼¤Ö™U/ÿ™—ȈZwáÉ 07I—ŒF™ G̘Yñgð \h‘hšBäék¾“A¡ mmš!+ì=Ña¥[‚/³w¢Édñ5?š¾?&0™ =åð¦—cÿ95 òÝ;ýv[šú¬ Õ¹,Áº›WŸ eÄY|0ݱUhœ&!jXȱ8{JŠ©ðð%Õyfv©ö°…? ¬ÜoôïÇAv;)ŒðMý®#ô[uYGxˆ.ƒÑVY` ¹U°Æ&£Øá¸Ç'«ƒŽ4o„›£åÂÈ.^Ž÷þ›¤PaþùU›Htv/öàwü ›vãÐÂûÑÎV A^?ÛÜuæ˜=õ0ö5á3ŠÓ’/¦^õ»Ë>/ߦYc C¾:eÕ¿D'è²üµá’ÔUž/¤íy1ãA°ÔÝRß^-¦ ÔÛ‹že Ì”, ÂöoLÊ”cò&Jr°äp)8§ R'aüd*s°QÆ£¤WÏϰâ¬xº¬QË-Ì»ê “MŠ>§6KÇAdÆŸáæ86m«×ž*ÕÀÐj1M\’×…÷¤4»6W¥pé-šI‚ÕÆ…DDGಱº ù(Sk>Ä›x H½†¦.ÖbÄéé—áà)‰”²ó_E–kÊÖŸdµ×Æ‚wM'Ôˆ1á´é=ËÐ,õž_˜ìçÇÕÏË'%÷Y ¨žòN±=êM91Ä4›:GÝ¡1<ž»sÀÞ±–(D¦aíž‹Í=—zó99èFœ2³ö¨ L—t È–?+^ÖÔ»±Hĵ ²ž-Ü,tÄÁÜpj1‚ªùIën+w‘$8rTHÿÍàØÐ|™p‘G¸ÝNµ¹™"ŽZOº†²Ó´¼DzŠKÓwq¢H~"97଩2ºž„#CiïQ²žÙiVÍ‘ÙË®²ö"̻߄°‡P A×à;Ãtp0òÐ=„÷J.QË{&U: OH™bIÒÞ ·å©Zœ•f3t\Zî%”^JËŒiPºü@Iòµ…IJ|÷ã®{Ž ÖÌN_1äkïs¦À…poùð„ˆ´+òêÆ¨j¢b7ÎD·Ÿ’S~’¢ O0 {öO¬H3]mm('5@³æŒ’1.ø·eo‹TU°Ä˜hðŠÛ.D&`d%^Â’”N˜€±xÏPüvš2[¶ áìrHY”]l#ófÓ+­ÓBå!¦ÉœJ+–v'‹†ÊÊš,–·êÏÝy{Yð5•µåÞEþ¹³;PõpVa2c%ó¸ †hÿºÓ)õ];Ó~ß÷Wë1Üé¹¢[¤ž^¿)‚›ôk¬µÃ§“°­Ý€9X×ëc°ã~¯ÖÆ3aÆü9_­ŒfÃør¿[͇ðå~¶1›7áÊýlc6oÕúØÆl8߇+õ±ŒØq¿Wëc°ã~¯ÖÆ3aÆü9_­ŒfÃør¿[͇ðå~¶1›7áÊýlc6oÕúØÆl8߇+õ±ŒØq¿Wëc°ã~¯ÖÆ3aÆü9_­ŒfÖH̓«“a„™ÏB1õ­­ÕÛÕÒž1ÑÄ¥Dö0ðµ©Ñúj‚‡âAµ:^É¡!í§¢K;Âà$?&=8Ød X+s6ãqHe&©ÀÐòC¬¥œO[„Í*¥Nš:®°ËƒÙ© ½¾'oÈךîöy*Ç¥°£c°P½,;ôPQ7ÀR…Ø'XD4ƒS’lµr”°Îý+ÄÝê7ØÌKˆ6˜­ë“IŸî-ɧòÜ$Ç£½D‚µ£!‰Î¡»Æ_ì”p!—»ˆ¼ìºnˆŸÐÃvK³””Ðvè=ŽÈxšáÜÉO}G´ÐGáû1E[=lП:Dum©Õ¶¤…g7\"äŠJ"žçæCg[gËÛSMWèÑÑx4ýãÕ ƒµ…Œu– DçP:¶Ã@ Ƚª'‘ðizÇè»W&ÒÓÖ—¤„–×}³ÅTæ_ôרD¾†pF³Ü9J‚ÑÏ–Zk]§tKDÛŒÎ,ÍxÅU¥°°ûÞÌ‘F1ޏ]G GôP&@Ü EÇQ®I])ÓäeÚVù‹™³¥ µFû‘üNS«‚n:¡¯ 'ÕÁÑ×–γÁÎ&™‰3Ž÷9–CyN–šBɤ¬:V Ï%ƒ…aŽ9mZ†(Ä£¦:†Î±KZЍG9ýß„Gƒ¶ˆfÅm†f¨ˆŠ°on]ÍONÛâW_P Ê_»Ñg+HÉ²Ö K•(Xún ({Q×ÃbÝŸ d9}ÂðoµÔ†Z쾬fz04Ęé)JÕ‡ýžF:]…¦ˆN"f\Å]ÜM –A\õ×8ß™[-G$A4º\…|Û°Xœ^­Ø+똄]FÌ™ŸëÊÎþpb2âäP^SÃÓ:ëˆõ~gOé±øÓl”¦Ûg˜`¾Ààù>ÿQðïÝC„p@ÿÌàŒ ß`悌«òu¨þaXÔÕ¢!öfMî.€¦¯ØJEÚÏñ‚e'Ôõ0®?jQÖ!´jÉ)ÔÈò«8Æ…."´‚´T‘Ãg[•5º·½ÖòýÍôòöLœAˆL!J|F‹ó5íc5ê’ÜÑJ‘ ífâU†7+†<ÓÞçqâ?Á0ä¹ú!ÓçÇ“§YzÌAó¸w O°>t=4¾­4Î,Åy«Áß«$xÉ= W±ñÉ'4ÂüV…U;¨exh¬´D¤`*VwžÀ—{šƒ ´UäžåcäÌ¥q?›=¦•ý¦ ŒG¦Ü3»RšUU\W}Æ$ _!(òëz.ÌÇ Ù+F „º2èŽEVÆEU`ËÖÒ 8­hO³µ¤ä%whÞ™¹·áÉ7"ï¥Õ¡Î±ZãõÇÍY£±%±o4%m¸ˆÂ’¨~𽢄í’mHâÉvJgøÄ;¸ïJŒxtöÈÛ>f“[Ù7Å,6ü£æ¸m¨¯ˆÇAÙrOÝIi :ÜÅ8uY„žCÍ„§º>úM ðÒ#JWn™d½dâ\Ñ›ƒÇ`pÿ,Àf²¨É­–Á©"žÃ1ÁoT‰~È´ÿr!ø¦lm±Oývµe{ÜíÏÓLDXØ9ôŸ¢@Ž…`ÈÜÅÉ’šŸ·cýˆtÄ×JÿéUsX£uhûÎ$ƒØÎŽ{2ÞøBwÃ\F..Ñ‚º9!¦2:€Ï ÓAßÔêüêæ­}J] "ô[žò3ÖÕ5]/õÀ¦¢KÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:öÑbKÜçu:øbš§kËVšiÒ{hº£bpÃàªJ=„ÿ­@¦sU·è4¬ÞUÜá¶4 ˇß7_U3Ü64ºýÏ(ÄãO´3ÛÅøïÔ+¹„ /Íú軚mF‹¤K×zï3‘ïI—WaÚ:cï©Ó uÐè’‹¢–—?zÜŽ@—åúô%É‹înŒgñoEÇ’ÕÀí%ÞXÚ£Š-‡³ÂÓ$ÿ²ÕwŽ‘2Ù¼||¯/cÝ LƒàŽUØš]šÜëM÷ þÈLŒUwè‚›@å@O§z¬‘pÀs2!#ÁϺ'rXN)8†ñB(?5 ¸–eiŠu4WG¦ùÖ[ígï¹(H qDùj¦è‰n…ªßÖwöŠã%óTU‘HðD¨¬0r$8¿§ãöÊ©…IÇçÐ=UË”õ¸ÓS{c'3W„3Y tηˆ‘õ%ãvçƒôœ§‹:]w»Ï®ÖŸŠlÒã²OF2k˜¶ÎnÈn?JÖÙ ¤³ûAkˆŠe^_÷$®(8×^öãÇ»2þã…?¦wµŠ/—X{K‹Ê‘?Z õ¢Á5Í3‰¸{hÈ«Íù"¢‰·êyÝ÷<,M`•ãUmt*`á!‡”2 Ї‚Ÿß&<Yv´&ŒQÇü–’ÕÁ 7̼—õ(}¬»pœJû¨?úIÖCÔ%¯ÄuŽÕÍG‚ØäŠ#ë”´l·º±û ©Æ^Y&;t½² 7(½±ì?&Y˜„—°âyklÕ“áuKen×Ë!´_[¾gC{=~=j¾,ÿqH€±h½ÑBƒ6»_¥nݧDfG»bµßQi¢¡ûZ¾]w_7¥ÜgIòâ¼E Þ,œBÐKæ^’NÚ6ò†`H…{Ç6=fµOÚ‡4›¡¿‹ï½ÇÀWaÞaÛcÛT’%žT]4ê•*êµ V¹DK×òVXÉÑg¼SqÆîXqEã\o¾¬S—t¡»6[%OºšBFÏÌ>ÖðZÞzµˆSËÁ‹¦5$‰4Â(,Îã ËÈô#²±ÿØýËt®ßŽè÷sRžh²´VÕÔÛ6©[(K:T`¯5Îo£ÒÚSu"äCŸ¨e‹)£j)“l¹S[È¢<:¹öáRVöƒ“Íð3Ï5vÖ$FŸ>æW1׸ȉbä?û¸"s3é± ûÓùFµxÙ-3ý±,Ófn¢m#^–Þàë(}ÕRÁ‚næÿ¢¢BƒÕI™¥ðÓuÌ|N¿I #úÅ­rÍŠjµÓÝ4®®É^Ú`)Ç÷ «4åŸX[4åhhÑ^à\ Šˆ£¡ƒn…çм{ïå÷INXciášO¹p[+G€ß¶9ÇšÔ“ªCg~g*™{dN±ã™ø­Ó.-š‰µ'VQfl} ª= 2è’Fgש¬¥'ªÎâG—RÕÜî¾Gkât¨Æé^©­¤‰Ë3Yî•îLÚ’:pÐ34\Un@ o)’þ¦|ò7òfjÒß"´"ZÒ¸IV³äYŽi4t•¢Ð"ÇI!ó!wlwÍ §È©Õ&ú¨ʆÛå¢èÎN1¼ƒåqšñì-$sU©/¶*óSü"<+›çuõÙκÈ6]èÏÌÃÂE#ÖÐ܈Bz “eň?xÝüÿú½÷ÿ½¤ÑV™/ðÛŠ¼öÅ_¾–ží?¥«%zR†£1‚j)¡æ‹°ªý€½BÌ:;ÛÇ}59¹%Sßê÷z½(5JÛ¥¨ý‚Ú é%~v“p˜„ÅQ·aW)#G7¿V½67/Í!ZôSÙâùï‹W‘½=\Œ>=âiøpS@8“ZyÞñ™Zåý‚MŒrÑaD}憪)GBò…! ; 7É ³ê+ÁšŽàhè€ôIU§Å4ÉÔÈô€zêýpèWÚU-šBæAîÂ/´ÅÜe|´hO®z$ßs•ÐÈ¡™ýx°{¼£aǃ;ɱÖš©Þw†È™+|äK|÷tE÷B”C´–•bÔ’6p-KžåAþ Ã,ð—þ¸Bû/í´ wÎq¥0?%ع¢D½L]€‰’¦À2¦î2"z1Û¢C|†´…ùžšMrIºd1ÖÓŒ¿\f8PÈ_òm0¬-5 øæ»€ó¼îBFEdaYºwqâ¶´YÅc i†ƒ•Ïj4ÝÎ%&ð”\Q‚wŸPPÉÔU÷IÌK4Ïd¨JÌ’»ÂݘK åe ÷C(ð×Lü^U,gϺ_Ãôõ¿— ÷ªwÝ%œ¦âõ&¾úlòËg%È/wRþ=ׄGÖÈF,9›^T/’1¯­'þØ"×ér¤ ’Pôºúnå ðvuÝXü7 !†I¹ÿâ€V\8µtì«uXOg3Ûíñ§O`þK‹bHýÿ _ŠÙC·ÐâÇZæ`òªc¹áÂà¾{Ò1]ߊœ{–dMeãœÒ5Ÿ6~ÊtÄ+—iä“ Y-þ&"”ç´œ‰ÓØù`᪕§K9¯O;!ƒ:õ_„ÐK+SÒY #i€ùΠ™$EQ@qE¥ýHnåÅß­H!ýdÊ€÷uÊ>®Îô¸Ëå~fÐÿíºþe{RÛË÷ñ_%?£Þ•v¯’Q3ò?æÿ>j”ÌÇò¢&(^I·$DBèÉP2- mò ŘIf’-±p"’í21UVÀ@ÿ¸ï©zG<:œD‚!:,Æ›Ç|šj§É` ±w£:=ó•9õSߢgD‡÷ GÖ\ÞóÇñu\-hÁœ\Ó/TžV[Ôä€Í®­ú÷MÑ%ÌØž-"Ž{—6â±öÂŒbYû¡Ú`zâÃ{àèaÓħHòàÎ]2ô$YÏŸ¡“T&›¢Z7d…‡l!ã°ÏDʆDì+³Çy¬·Q+;¬È· CÎ@0^¯rkè‚Ââ1TÍ €´w¢ H|ßóÚT.[fvÔyæâdyHæ×ÖbÛ¸9&*uV[ö3]|·äÓÃj5°|Äèçƒ3 —ð— c¿ABÔ ëîÔZ§¡WÂO5T8_#÷Ÿ3ðU¿VïCž¢ £KþÁÊzŸø~(‘…U÷‡÷ ?›ê¦Õ–´G+ü-ü1šÞ˜Ö?I-C÷ôõ6¶ÂëK,îhÔVÿ­Û›™08g3Ïqô=’öƒñØ6Íì”´·ŽÄé¶od } Å¼v'M³{%í-ã±:m›Ù(h1o‰ÓlÞÉ@ûA‹xìN›föJÚ [ÇbtÛ7²P>ÐbÞ;m¿4Óý=7bßusZU'$¿˜¡ÇV¿¢–À æ9¹¤–ŒB5 Çé›~Ùþªõ㈼Ö–à îÌ«Wqcé¶™=5Õ³~ê¤ìĤ›ÖU¤üô.+ö}ìrâ®6ôÐàºÎbºZ‹"¯õßµi¢²ÿ3Ây€¡ðØ—Ìx+”Ý#ÎV©ª#¡wXõ’®eôØÆy–ÕŒ:`ÒÅоCe=Ä‚’-ø…»ïä!×UÍ÷V|•Á»kK"è¿Îzó“Ÿx‚,2„ƒ²úöt"FXA5ÎÄݾù½›µÿù½\yfM{‘¦Kmm^_ÌX©[ž4ÞöœÉÅŠ1ЮLEÍ “Ü”æ2“Š›Q@ç {MÜ–I™œ‚3àž™¬ð ¤V'hó®6BVBas8¾Ê9¿§+É£ònÕÍ ùè2ºdòÉQ›ª„ÖgBMTl¸Ÿ9!õü%ê •ï·“›ˆšÅläãÆ\\– 0Ì£ÄéÑ/»rŽ9aB3ô}YÛr5i‹ÿ°g±hŠ0…®¿Ëø“ËH£_gîðñªÍšy]Ïõ¡šHÕŠ“ZPÒ$?¿tS2 ÑøŠ•žM F^ ïlc»£Vã:Þ[+øÁC3w ^/¡±Èí,¦£AÔÇW$É’äóÖÜN¼êžö¸r«H'7ŒvÙ­°ðo“—B!§ß‘( wË¿9H›‡É…êÜòlÚ2w®„`…NŸAAgóf¬óVöƒd¢Ov;>È&í‰3“©tÍ2%ÕKÕ¾)“ N•"/@ÕŠ3 ô=#$¼Ø4SÕëâÿ÷¸mPX—ªõ”äì0Í(ž×àBÎ(Ãö½Õ¤½ž Is ÂÑ´ m6OàS³—X0m æÉü vrë ´Ù?NÎ]`Á¶ƒ›'ð)Ùˬ6Ðsdþ;9uƒÚlŸÀ§g.°`ÛAÍ“øìåÖ h9²§'õ%cÙYÈÑ'©•߸¦¥hÃfâôOÍÄãÉ—­”]¬Ò½v4ywósJ‡©ŽèåNµD¢¯ªûua¡°(:g;Ðáç(*8x£‚QÒåso£ÃH¹¤˜Õ›=+K¦¦3袺á7ÔWj°K3ˆ‹Ê¦ƒ ã¤}®”¿œÁqžæÕÁ㋂܃¼€b-ÖÙ'vÙ'¨üå'òƒݳ”‚ ‚ÎÁb4 þQ#UŽTùÍ$tÚ¶7äÖÚ•bScLÐj`!À©TO(l¹œwoëC*U€†é2£Lõ )t•ÅhðÓQäm tc°^KŽ)aNr _3 ½$XÉ>°š}ùý¾kVËÍ%ãmpBu®äÇAñ´e‘°.1Ëqd-Z3ÓáëMiÛîX'ç§âǯœ$wà¢OÙß…"3§útù½ pi>8édºÄ&ö6(̇OWôñ­¾­~ûöu=ûYÃQåU,{ÔˆÞ¬``~\¼BnÓMùœç/Í\9+4¾¤;Õà˜Z°‹•q `†¸¨Í;8\Z­ÏUbýÍ‹%·bªzž…‚Y ܃ùÙIUÕlÅ;˜‰M$DZ|Â4182`#Ø3ùOÌôdù¶Ä}•ÕÛÔõåP}´'k°£|s~‰¤Þ 2½¬«·VÕ3}—o‹zƒ9¹+ÏÄšÕõ´§¡g.YÐ<åŸÅÄ8(ñéäŽüV»8Õ+3‚Ø šÀR%\Ïᦛ‹k¸MB‘^>C‡léëz]  €÷n«®àf)^æ“Æèœ—ÃCMõ:åɤO„cù&xž'CI„iC#¶J–øå<‡‡Þ6!fšS=%>§;CË…ÏzÙÿvUÒü¸:©Ÿ6–Aý ñîǧ¥ ‰´Ú+F´2S—ùâîNÈKÆêÞEãZíAS­ë\†‘ÊÜ“9n€ý ¶êLÝN'$³Ñä.ܼhKÍ“.œ^)¹L>Ætà(¤˰öt?Õ-З¦¿«ü#ºäaÛõ»Ï”1çç`õhNr(O®àÒJX×DSÓl…¤X›N[v VE¨ˆ¤ÀßNj´¾/$Å •Z;)—é–º¢©,Ë/’Æ "»2|ƒVÖ‘E[UÞ¾=Äîvª4µÞe—YÐA 鸵ӨóõVÓçñuÒØ‹k… \Õ©FŸ2*}ìa<ªñ-ùq_qò© È}>àVºÄ¾½ÄØk±Ú=þ ÀÑ¿–),° ØBrúNßãíD&òd»ÝI­¯ž6 T‹Â"7ˆ=îÚ„F ¶T{_•úÌËÔ"ÓWþ=L¯âóÀ[œ«y‹ãzÖ’\®)ï ÿ7<£åi±hÓ/~­S^Ç’g&r ^ãæNÑv˜«/ðf±ê±H±þ˜œeRˆÕÁýSõKÞÑÞFköPÃ)3óðÊG&ç<Žÿ–Ö8 Aém2+Ð$"órt0nIûÃï¢båñÝ¡r':)Ñõþ)ßÛC¬¿\£³¨²!Z$Ɖ:·÷p v©•tE=_ÿRú}׆‚ª^ÍrÂèÊVŒÁÑ]¡Ëeýž¥mdm¹ ›¿1D6E!s‘Ì?û˜îc«*?öëE–X:ýþÌà DaCïd-IŸ’¦:à™R§ m5pæSÊ3×ßàBÙŠ²­V>ʵÊ<ÿôk÷ð6EùzN¾ÞJ&…¡ÔU 9Ð’hà}P0HfÈéÂÆõ@À Xâ¨þ¥$hØ0BÔ•ŠCÉÀ% â‡9¡{ |##ºš™–ÃËÖJÞ¼‹RQ2c79jâÙ|H¥¿dî|é<ì–ON‰»ÓìÖÀf5:<%å;Õä2ÅÒ;DQTL.U uïa%ݾùA§Ä«Àõ.²«híBê´²PòHΙ²ªIjÀj êkQ ™ˆ5;«åCÏDQº7«"©ýñ±ÆÆàF*É5ôI!ïø¸ƒ9$#3€gòÖ缪îz¼Œó+%ýÞ±\ Ýgâ!Øßcd ¤/Ú)p¡b/ЮÑR´ÇhÙ­¥ f aJ£è„¹½ùeeq2‡E{%¦¥,ûÂl€ÕŸOûÔ>Õ:…¯Þ‡´_}2ª(•··ˆ£¢*ñÅÂN»ùN›öÞþWHÿý•‰sÔ:1Z<óŠ£t€Nµ{ö¨i ?àÓà wóET>ÌÌW如Á^»'va&þIÝ!-°¦CqätœU„Ïœ¹úþ OGÖIï7LSúGXïAˆÂÊñó:FÕ zgUÝyð¦FÒÆkÜ|oL×â“Ò˜jà¡âÞÒº®·Ùæ»Õû§¸#í£)åo ; ¹ÌD`Á×D~û™ê¡/Üz12ùÝ%ñù©üËT‘x§èÑ£ADå!ÉÈ€æLáÚ‹ü=;‘±ýfÇ“8^#±{só¤šÅ@½XS-/WpÕ²¢Ëk¢Oz“âÖßÖÇyšQƨ5§‹éø_@‰oˆN™'0. =‚ñæF¹@i•ž2h¿È¸XØ9äëü”xr¦ô’ã‘öϘy/Ú±z~‹[?¥£ñòð›:âè[€×ŽbA†ùÖç*ÐSÁÔ³ ×<7âÛì@O!¼u¢Zó´?nòƒ¹qì«…y|ÆŒõt†õ2ê1Y~ýA~ؤï?äÔìY;aâDå¦ÑpÛ6{Zº€u褂 ´t¨=Í*^Îùþ/?ƒì?ÇÜŸ­üa-:Sé»Ó²œÑ0½Ï¤ÿ&¶S@ \l7zÎWZVí² UÛÐ`Ê[«¿%j*OÅX“ jƒª«Å¨›> M‹ä16Iþ39ÚôG.Ü 7MhL½¬Ù«®<]Ç÷}=H$M¾·„dIzý^ƒð­å³qwþÉÎ~Li»$ÌË¿e‰=Ú\Oj„Í!$¶€8–{îó%nMzé§©ýÏ·Rløw·q7ÚäD}÷7:Æ·cÜ.J‘¯€n ÎR-ŽVâU|CÇ]úÇ9„†¨±X §¢DÌb/¯\Ï*¢¢/ºªœýUàÀ F5c™¯?ôÑðÒ™¢tòFs³¿–ü„ò¯½µ…R‡rŸ¾€gû´ˆX>N¯<<+ƒ5jE.І€ØMÜ3M,ÏFß/HÆuB¥µÁk©Z‰.¥ÚXÎÆ¹B?v¹¢TáÍ=â óÌF»@õžoTh|Ó–AìU‹ýõ ÁÑ;[¥û«³,š¼šœØãž>ŒnØ¢I÷&ˆ…+˜½!qCÈrn ö”&Kó’¬8‚¢ø¥áx³_¼<&´UñU»æG näÂG¿&¯€ƒÒä6.—iQg½º‡wq°MK˜õ¤Ï>BKš~ýär‘tö<ë]JGj²ê±æçŤï)E¥ê®­%wËÊ.—#íŸoWÏŠGÑA[Ý¡Wßå9š»ÖêH0>EÀš‹ð è"‹àÖ7ÓÞ÷ì4´X©ªNTµ•TÍ×#Ÿ„™ ’¹$×/cõz[âê:KðÀ☧1;-BŽnTo,{y…¶<¥-—1@iÜ~ËÇ3UzìÓ5¼M&9êñ¦LvË¡›c资ÿ¦lãÆ£¦ûU1‚W¡`Å@QIø= ýË¡eÇ¿±2/Ê™g‹v£Å¸‹ÏÄä>ø½Ï–ILkåÒôëÈ‹j‰; )ÿ“eI3k^Iëûy¿Ñâ½GäÝÉûg‘›-çÄ"JË`~,ɘ† À.èÖEFm¨£w8»yBI7ÄlPoÏkÜ­XTft”€híºèg$Ûÿ!aF4º! Üži©}¡Å‡`’âó×>ÛÖÚŠW´¨Ç²]ìFáõþ;l*@üßg€mjJû¤ó©Î ʻޟÿàŒK~ƒ—€¬rk¨9¯g¨c.ú—âñ 4n&Ã_m6¼’}æ«÷ïÅ1 p °˜‡TH—5$ï¦ÊÀ.=þ’\N²mRÁk›„ fHîh°â¶ñí‚ðpÙ¹ïÞµ©f,ôó]«ê™÷`ŸéÑ·Í ÊlÈÁ`€.ðŒMÚ¸"¡¬Ž}cäjðà¨óÑ(Þ+ZÁÇ­2âõmS¶£7{’EzÃå¡Á»›CÔì«!Ñ+r“XCYörÿ­8ìÅb{ûˆÍ›œÉs©¿ ç[G`eŒ7­ÄÙtgA`~ØÐK*¢>iµ|¸¸”[,£RSûÐ×™bç5&Od»ïnÂò*¬.ã΋éōи3ZÀ^ˆ¶°NºeýßpÙBUî¬iŸg1Ê5ÙŠ·|“`&˜=`€rp:f)D¢Ô)3Ûthw‹hBU–8\ÓíG·Sµúÿ†DƒØ-Ä$5XÖ)¿™W”vʸ0ƒäM5ñU_"”ž+~¿Òâtúƒ@Üap±ÌzÛÉ„­g_ú_7þì|T?¯M*î‚níÞÃ&CÄuÎɱKƒ›ŠŒABžK[ýÝ´„sÔ ¯oÈÞÅ@ Й㊠¸î:)¢ sÔí:fÂvÍ ‹ÉµøC·ï̺™ãrÄgU¿_=gEà\oÖF-œùô µÍ _c[hI‹nË_À÷ɌØ+èÏ  «&З[ý0êý_im)iP<áú&o)¢w—Èÿdÿ1×ÑsY [ç<áÛz¦«@q±$®a,ªb]åH?c‚Ô‚¦å‹mU9] sUg $Gœ`é=—gu–>¹—å%¬©axÏŸŒlªP“_úõ„»§w+¥U@HH•’òö(c½jhž®›ÐÞò ÿt˜zÔ@@ظ‰PÕç¤JºMd…²RûoທøuD6«á 5ŸçÏ-ÁkÄÔs"ÿPHÀ&e±|Ú-a„5ÆÑ¯zò¨VÝÜcx³Å£¤Œ†–Õá¾Ð‘|gIs·5”rë°T•Ȭx. çØ3ežþ¨º5†ó,\aŠÕåûb;¥GïÕ iƒÍ±YI*û¢GAe¶·•ñÚ·E¨Su@Z7BMk!â< ˆ+]±ÖCˆN*sILßÉN»BÄ`A´Û)ÜHpN¬Ó4íík§LÙ2º‘àøš6{$ ñà|&è‹‘‹}. ê³îΤLL*aSÅÝ­"»X80”c´{-OªÈGCȉŽ}÷Χ‘ Rê]0ØùªØœ ÒZ=ym —¢x;ûò¦&ÞÕÜýE·ÅÛ=hbFa¾YØÆRãQð¨×ÈÄ¢V=i¸ì,ÕEE¦ºE¸!lt\©^ün§Ä¹’E<,_JÑU)¾5G ÞŽÎŽÆ݈¿ RP~Ãvð3¿ $\N4°V}˜!n"æz\ôþà€õ‘ð¹ýDÕü;- ðw¤,ÄÎaÉ–ý*ùË ±M :y$Pï»c(®ªýeÙrá1M‘‹üå—ʪir›|«PcÍnŽØôŸl@û®n{ËNP®ƒF4šO§$LnmÐdX,[µON°r¡nç9 &¸“/ãÔ. ‘eïVô‹Ý<•6ÛªJ³'£ª•íÂäðñt´×æ²&Õ‰B¬NIäO@P'®‹&-Æ— •.y mŒ%Œ}hÞ»a­èRÚ V»ûïÿoRDo™yÞ=BòÝ™é–{zôÊÔæþ©•ØœÕ+˜ÄôÃùGC…7•U{P¢åV¤î[洲ŒpS~n<’_›âˆ—²kâÚÚÙ×~/üŸmEïëäÔ;Àõ'§ 5çäö®À6HîmI!–WÝ!Å–-ð)>×°`g17˜OS-ø<û4^šïãÀlñ¥TË•ºM­½»xÈcÎò¨ßb@Q[G?Ÿ_©PÞ7°ëœç8%ï@‘QŽvæùŠšTŠp x7^­¨Šéâ2IqÂáÓ‰D˜Â˜Tê$„†„R‡ +׈f€Pà`¥ ¼9JÜ&.ªu|^â ýƒºe ^t¼ÍÁf—þŸeª÷ ój䢗ïg=¯¶£•äEg¯¢Æ“I¸á쓺ÊRùŠ„ã%Q%ƒ÷/m¨Q…Ù2-ð> „†¿w’€³ÙïåÖœ¶{X¿ñŽÙn’±%S†ë&N"±Z³3;”íµý²H³o¿ŠgУ÷`~c¬Ý¢*v™,§½ÏX̵9•AÎvÝ3ö*Ê·“R¯(åõЮ:®ÏysCdÙÁ¾ÈªÞQ ´ýÍÍfö©ØÛˆ’Á" 8„ãð5•îŠG‚§¬VæqBâ-ÿÏàæ/"cá\`£Ù»¼a0à ÙjáFóÊíê¢Eš âU3®Ùdì½Á .x³m:âM¨(‰i/{\Ë…³OhýGÃz<m®äæÙ*2Y¦ Žì’R°øÿ7“Jã÷[JÃN¢*A83k¶§̶>ºP9hœ£¥ìÂÍuiZ{-Š‘‚Z,A„6’íByN·P/º„ZÓ>›ÔnKÃÛ–Ç.ãh—Ì…"t,.®(•æÛ€–>Å™¡u$¹“0:^ ÙFDê×!;ZÇ+æ³HÓ¿¾*d]™sÏ.…Gá’ñx_RÙD¾ŠŸ wµP¥¸ü¶VÔeò½)FꚀjÝ#Ä ø,Ê€ï»}ªVìRnµ‚Ë]àE«‹OÝxŒÆ#Ê}.,µí¼6ŸªGí „ˆwÃå¶ Q‚Îc3,ŒK²|¢’n™}ÈÎrÁgÏî;ò`r¾Å'"ýÊý×ÇmWDkÕAIZ1fçØ)ÝA•¨¨}ÓŒ˜²Y×'uËBk3PšA$¹svõGì8`_Tœ©G±á!ÍKMK„*…²ëóAV§_CÖ¡ÇÓ¡LÇh ßÁ£uq[bAzîªwpøè*˸•óÖ6 ÆÞ…#Ubo©§Üb{É«"³¡n/óè411gnÁš™ˆ¬(îÚúÍÆÏRÄØÞЬÇ1øÿ/ã0*`„ëH²gvÂyO6$†w„ä,Íg¹Ì™OCÄáøPÒï'UQ¯(¹†‚î²·C)½ ·GÓΖÒy ÇŒ5Ò4ÃüÈÏaºBåµ3aq¸=í¤Q±%PõÛÜûkÊïß ü[ð…eÖå²ÿ8Ü ®k¶2ï·Ýe%¥aº÷ÒACaõîvžÌ‹ÛÌÚWECIž%¯Õ¸7i/ ÅZ÷‘icÆP÷î·))„m½Å‚^_¥Gñ¨9 ·cò/szàñÇÌRu€Siãúä<¡mÏëLÙÕêÕ¢çÀ¦$Ừ֙t î¾~®Â¼ããÐé$¸7$Šhkåù9@'÷O§cà`0ð"Ï›í—#ý£!1îg"+„§MŸ%Z‡ßÄLÉØE¨ÄÄÁ5°×Ä ¶añ÷Vž@‰Q'Óû7Å»µõÁ?{Wݶz]P½ ¡V¤¿³¯ª”;|Šî¤­LÒÖÔåÂp ó ó°" ùË›ŽáIË’l©€Xôzü-(b±9s(§ îÇ0d¨õfIx]×]tå5yZ;èbS;3A@/[ôì ]SŶƒLs¥O>7&‰Ä¡ôh¥å²ò/ï¹Ê÷DÎ 1ÙËböç’c`6B¥ƒWòÓJÔD.\É3n‘qß;Nð¥&ÓÝu'ý¡Ë~em+!³ô–„”¯ þ–W$ƒàà\Ý$fÉ»3ðTçøÜò«°¦ÇþÆK{R~ÀÁ$<9Z[Âçk÷ä¿‚:^_¿´Ð•ê¿«Ã1¾è±¥#ÎS‹IĶn†Aç‰^¨3ÉñºA馿z²^˜E'ƒ¨-bŠˆòDFÛçØ2Ž”dˆñb7l3õ$%{EæëçÚ.ܨå»J"~®çZ2 G[¾w-àŽ6|!ƒ_hqö¥¡œš£8ß'eGÉJzÐpTФN6óçdŸµŠWÄ?Š›çéýö¥ÌJ;´lå…Y`"`ÿÉî +ñùÝL¹¿¥ðé-•Ô8ƒÃRÉ ¨OEÙá 9/ðf¢$VÂë!cA¢IšÐ7ª’b OÃD ÚÖ¨yYÅpýg+Iýò–°,ÔèÙÍlßYq§Cþj'EÁÀ5‘6¢Ý½–|3Yƒþo4#YDÚ’Ô¬ŒîeTÇáR>Þ¹ýª•‡çùÅ>´w,(-ç„AÛ ‘š<ñ¬ú—_%,vu 0EJ„r-À¸h·˜3Am#éê:ö>þ$2+}²4‹‘Eè^ÙFÏ~’)qCÆ1-! ë:õ^É©ÁB8Š’ÛYZÏI ¾F ~¾xYµóÍ`O›0óQabóúÕ6¯ ?™~xâD=ù!&ï?ÃP6B÷-v ¹•lûþxÒk¹ß,‰o,÷QÑ7^5"ŽgÒMP^ljØ-#7–×v“?bš—§äÝ1äSœítCQ«V ÐpôQëPCaÍZ{}¤¨QÈR(ß Zßm6Út/6Ê®gÔbÒg‰:aÖ.\ÕRíV̵vfäœOÐ-òj´”áÙ~t/F¦-Æt#/Z§bol!kˆ8›íDÇT–ÉmÔÓÓ8 ]Z@Ç-›ÄØ™ƒkB–ÀðyK”ÞD‰ÙÒS„ML¨äv½$AŠ šqÃ)-AÞ5è "›Èrt‹m3 -{OÀjR¦U\.ÁͲ7?a:è“‚yœ¹íU÷X;V7}°;ò7ÔÄ „©‡­G™Êüäñâ8Ñâ{—@ïÔÿ¤0‹\¾„g7z{[@O•SÊ%P²ÅR” Øð4nœËÃÊ üZù ÑùI$vç_±±#y“¯'‚<,Ïû×’¯ÃAõ§Þsi›²i”ÔVN+gÖs7F@Zq€Ê dh¡nÌvè`ôÂ?E˜u«>[㤣‹ TlRxoÏ£Â×܇€(`u“jTŽ%µ\ínäœ5vS¼³{3Ï`MåvTxÒ×jã–ÁÿF\†wÅâ-ª—oáúT·£‰aËa®¡ñÂÚ© e” |ÓmURFwè ¼Ã’¬Ðk Þ» I&Sá™fˆ²ÇæU݉䌟B¦$Xè¼D G­1ÎARýA™Øð»öR·a´#Þ£÷˜ã«·u8Efu$Úäb&Æ|Ø *')Ô»ä?² 5fá©“ ¶D' M‘B-Zù¦M*ÎÄ&ßfæmq®ä)N‘a h€€© ƒñ§l ?o´Î–ØÝ^P³U¤,Ño2ÙëaÞî’É>rkƒoŽô³@Lmà]”Ögî9–ª£em²¹ ³}Goˆ6Õ|† +Ì—¤¹…èÛCý4›Q'kjzCÒôo q²8ÕÑãô ¨hH‰V¥œqòŠÝtÞ·²=œ•è-<â¸èd1Y<”˜K WƒÊl<¼žwYJ±e’6°Æ(ÔÃÜw¹0òv®ô-úŽšŒ§À4ȶ„v!3/, ‹³Z^VOŒµÎÚxî>}nùPÏAIr0˜k ‘L³ÈÅÐn>èП8ÝAh _‡mÆ|ܰ9|£xvc$Gn]È#W¹i˜åó„é¢g"wPîV]GâW#ÅDë¨e%èêY׋ú(ÌÙ©ùõI®ïµýÅ|ÝH®|Us[?5’ RÇÓ{ýpØ8C\$XÍN^±’Κ‘ÝpÅhÞe¬yÄûÂÁ¦ æ£ÔTW—›*Iðc€TA[âÔeÝɤ…Žõd,Ê<1ÁáKúp÷ž Æ¡6N¤KœîòyT•Ðês ÿú"í'„ï‚JÞÄarÚųOT€·xöÒ[’ïøŽÒ×øø5_ñ ^:‘|%…êõWøI{æ}ÄV’ŒäRô íí…‹‡_|–°eC2Iú%T*à©â^ÔèÅi•È â6ðœí Í€Í)GC G˜käÒøÔªQ˜Ÿù€U¼•šeß–x\ ×?ðádIàÅ\ée²c¶Ç>w.íF’ÅŸ 5l½¥/éòº9܀žH# ܨ—wÌš2€ ûU‡þG!†Ÿ$Df‡ÇôI8ûöf˜`«ªDLÅ‹¬Ô«Œù ‹ã#Ü-eÄ÷*#zÆÓ,}qQ„ÀªKô/ŸÒã8A'•˜Ý|d3V Ú›¶ê!õÜ& HwîS.K±ø²æÄæ;c¹ñExÕ å3fz”"D_üœ‘8—[¹ƒÝ|p…™ö2­Ç‹Ä2ßm‚u¬ù¢Î[øb©Ö6°é£H»tÜ;çÙ»f}3OÅ™$Òúmà+ݘ|¡§ŒœA¥†§—Bu]žÁÐi«~¸/À}4œª‹?Ág'= °¤¶P2;îh@EÍA.‡¯¦‹¢T‘ÞC`Ô’4®ìãƒbh¢0”ÒëÊÂì†mi9Ño”Г®öÛ8 Zøt&_~:âÀ‚úrt½p,b ƒŒ¤‚´On™s‚×c4?¤êÂbÛèÞÈŒR¢c.Ü=™L^ƒá™ŒÓ¥Ê*¼™©®%Ë®Z[LÛ’s§=áeqžY]‰?ú‹îÕÃp„ö"VíaøõL¼Í E3|j5ÕŸýqæV6´üóï_ÄIqþív­Z´i†í^0Kt`¤8Û\Ü/+_ æ{þ4*K$­þåé¬#c´Ì‡Q¿g >à>Ü„Xü_Ç®B–Ãd,Éö}ï ˆZšrÞÿ6KK»(ñ!„`â¦*ÄMxO£Ç´\…¦ÊƒšŸ«)þˆý¾¥eNEþñá(úÍŠÐÅÃÞ<.Ü‹mS˜?ôÇÊ&‘¨üäûŸF°ˆá·†;ç—qâ!#(Ú<›8=¥æÙ¶mK mí³zx÷‚y‚¨*Ë¥¶tQ C «úÉGц6ήžðÔ€*€Í ý÷ "¨ÑN‡S©àE­ŠfýH­&ííbdÞ[Ñ\=·u½ù싚p]D×’…$&›)|i š ”ÜRaÍV©8óݡ𭤽»HšfÝɧÇJÌ RðR×þ£j4ÑÁ g n)\ðq9ü\Š€4É jëaÖÒ\èúð`nmdN¿c]] L"á»áU©óò",_=™2Ë&”.¨Á`ˆ‚Sß ›£„ãw\x‹H i#’”æHm*œ¨Cý×_…LjWt{cõ™y¼!qb+!°²àÖß;Âÿä8¯PddeB‘÷°®éªÊð^N²åâí}:|<ÌÊÕ¬nj”t«»Œé[Dp)÷q¬Z×"à:=Tæ“¡L—|càÑ?YÇY +†fþÁîÚë¥qÙN aýɦ«£Îw‚âIÐÜ>pp³Ýüb<8òªè“K6.¿ø1‹5T—É?ƒ¬{BÌò» Ðà·ß’¿O&þÆ©,"GOžÞÿHû•¥ý®Å8XÌböM‘©11äöq‹Š ü^w„{cg/!<ð4IØ"Ÿ4),¸)‰n§Tš$4ÆËùu fZÉVáô±0%2†àä…Ó0­ …Þec¢Mõ€_¯ÔÈ‹"j)h…4ǧƒgátõ<$±¥;K¡Ík)Ì.UÍ+¢ÑÊYÑ?âS¯gQœ5Ɠĸ}ç&rå- hqvÎÀR{¨|°üÛ@TÜrß9]ùJF<²®Þ![¼;¬C~Ö>|õ{"D»K)ãB)üze›'ýŒšˆ¢W‚ÒvSË0#PE¼º³y×—Ó[§¹BŸ¸å×Ököe¯ƒ…1þZD4|n)ZàÎmPSÏÙŸö$´þž³11¥Ž®™c°f,²” 5$ýÞŒx\‡<ÆTÆ3öº»€5g7²z;ýY2®ØÔ*XUŒ®¡€\ì›àßX#½ˆßÚ+ ðY&ªƒYÃÃ3%ò%ŒïËŽó 'Ö{†yWÌhG·ü킼/ÂÉ›sqDÊfe¢Ì Ð…_¾CH²0Î ë¤#uU¥™íÁ vfÖ!ÂÐñ4I6wê£K… ä5­üÍçjêa¨‚ê³T ªð€È/™&ßý|¸)(xkjøXs§–Y_Kˆkøé’ƒ”~Ϙæ]Ì6±†94:ÂÖŠ½g:Ùѧ$*Þ“Ð ¿Ê ìêd=¥6ßÃçŠS>YÊwŽÜq\ªÈ*ñíQU¢É‡D„1¥#°M‹vGyu­hû•ÏpÎòU‚7zxøH/;»½>2û>ƒù_Óª_Î:È80€=ñ±É¡Jà´§OóRñ2.\™t³–Ì”ãZ޶N}. S%½ù›¥*§“ª,À!Š£-¢³T9ahdœQfAF¾_ç¦ Lòó7O#é’¼Q¿Q ©Æ?}?S"«,Ù÷Õ5†J"þL;6“ì'©ã9±*Glþ? çd»’P3žà|ÒfQ ïéÌ.#zÂ]lß­“Vœ5¦ {+¿ÎbÑ8â”ÏfZEDï–D5¶‰ö&—ÌŸ¾ÕŸ‰nP`æ*&ËUüº©MX !¸œT½~¿—‚µë€Öù^ZøŒ·[C@oTCÝe ÑÑ +üwõK'Á³ãŒ¹Tá«ãÕ‰¦Î—زj¡’•WÈUØz~ÇæŠJš¾À›zø®Uã äoB==U—’&x‡O,°¦&" Ì€ÊÅ‚€-ç^o]°‘“¦êŒŠòr„%²tý9„ìq•¬³@IƒZ$e £¨,z94 ëÜg-(º,Þ—-ʿÆ‹e¥ÐÂÉH“žÉŸï_àôÎpj“Æ‚7wêÏ» ž~&’¼“RAa$ýÇ ½ÈQ|4öx€à6²Ò5~ûîÞ B·7À\¯Eôáp’õkXîS0TlofR Œ>' DÇ9ž‰ec„hŽG¶“¤ÐAU{Ñߎý´¢Ñóò±È{ S} õh@ÉÐý&òØòQÃ6ÎiFi'BŒ<îÔY¡ˆ¡ÌáŒ!ýÄ0®(ñÄqêõwŸ³ùÛF¢½ÑIEND®B`‚images/align-center-2x.png000066600000000223152330733730011425 0ustar00‰PNG  IHDR*'Fds PLTEÿÿÿÕN!åå寯¯ “ZBIDATWc`À B ͵jˆµj¦† ÍÿÌþÎÆ­lát6ÌUèlþÿ€Î¦–z\ìU0€ÊÆpðG‘H›@IEND®B`‚images/yes.png000066600000001033152330733730007326 0ustar00‰PNG  IHDRóÿaâIDAT8Ëcøÿÿ?%˜d “XÈ6€s.·D™ÐYÁXþí$À9›[¼BàÂÞë»þÇÎ ûÏä˰…h8¦5— \Üy}Ûÿ¨ùAÿgZýœìùŸÑ•q\‘ÈRVa‘%l¦èšyç3p‹”ó]Ü~gËÿ¨MÿEæ±ýŸÊý_(Xà.·‹Xûd«~“·.“ìrÍgp„i–\ËÅ#Y/xqûãÍÿŽ„þWÝ.ú_a±ðV/¦Ûln œ`/ˆ¶rŠyö»¼Ùuwëÿu·Vþ7í×ÿ&¾šÝFi«0›\«øÅU–þϺðßü¤Æý JÿY}˜ï°y0pÀ‘=ˆuIÚ–Ø•óÿ/¾?÷ÿüû3þk4+Q­Ux´àéÌÿ%·3ÿ{Þ°üo{Èð?[8ó]Ž4ˆÍ(±ÀáϾÇ`¡ÊÏøëÁÿ'>éø?íißÿ¥¯æÿ¯y^ø?ò¹×Ÿköÿ¹“8î ÎdâÄ™˜üwlTù÷ÒÿËûŠÿ-Ÿ*ÿ§ø4@ ‡÷®ö^‚)‘%„q¯Ã~³ùÿþWüÏüŸú!â¿X‘Ð]Ï[VœD'eö–Ýá§ý~6¾+ÿ¯T¢p§è[ Éy7žkŸrƒüÙ9ÿ'p’™ÒD²Ò$7¢c\‹Ó}´¯IEND®B`‚images/xit.gif000066600000000265152330733730007321 0ustar00GIF89a ó ÂÂÂóžžö··øÈÈùÓÓúØØÿÿÿéééæææàààÖÖÖÈÈÈò““!ù , @b°µ£ÖRGÊ"B…–d™H£®C³ˆa 䨄L¨ÁÌ0àP`vŒ£ ÄO€B<æv‚ƨD:5R+U«ùŒN«„+CðrÊhNÇóÝÃâq¾”P,  ;images/generic.png000066600000001317152330733730010147 0ustar00‰PNG  IHDRóÿa–IDATxÚSmHSa¾i¦QE_„aRôÇ(ËB„²"µ©åÂAY¦(B¨`aV„Ò’$q†›Mù‰ŠmÂlâDÜjz¥;käÛîÓ{®(ÕMè…Ã}9÷œç<ç9çåüÓÂOä&¤©´®«*í CI±«ÅÉ©wšÃ÷ÅI®h\"æ¨Kë#’mˆËPo] ½ U©*ïYE>·´Ý;nŸ‡Õ6ÞöÏÃbøòZ£xQÙ¨ø€ Û¤(Ô}±z03ÌÎû0<êÙ¦á|NN±~RÆ ä¸¢ŠúLN }váµvOߘñV7!ùfÝÌ/£n”ÉÎeÕ)±£ŸGQu¿¢5| ˜Ç½Jª¬3Á6½Ä$>C=°°7®(!QQ/úgü}ÃN¨[¬°Lüë×ÎmÚqÛràrIÍ€@m+Ò¥{HðŸÏnÖF¦Ärë^ÉwÌø``•µvIDATWc`ÀXC{,ÀdƒU`cÿÿÿÿ66¦zb€ªÁd#«±ÿCÀt6µÔã`¯‚46vbJg+Zín>IEND®B`‚images/freedom-4.svg000066600000006225152330733730010333 0ustar00images/media-button-image.gif000066600000000310152330733730012154 0ustar00GIF87a ôìììwww|||âââÙÙÙqqqõõõñññøøøöööóóóÏÏϪªª¾¾¾ÆÆÆ¶¶¶°°°þþþîîîüüükkk€€€úúú, @M`%Ž$Lhª¢A¥(P,ǯ(Ýx~‹ÒüÀ_¯B)Ç `Él.E‡cJFE‰ÄcËÝf+‹ÅA.“Å‚BdÍn¯ À€°¨Û €!;images/post-formats-vs.png000066600000004622152330733730011621 0ustar00‰PNG  IHDR0‰öÑPLTELiqe ¼H‰ªF…¤C¡F„£K²f ½f ½;o‰džºN‘³f ½f ½L“²eŸ½N‘³R{M‘³L²N‘³N‘²J޲N‘´L²N‘³N³bœ½N‘³f ½N‘³Q’´F„£N‘°b»t©Ã²Ç=sE¢Kޱ`ž¸f ½HŠ­ªÊÚf ½fž»N³cž¹T•µäíóG‡§Eƒ£F„£F„£JŒ­xªÃY˜·±Å±É°Ç€²É‚¯ÇI‰«JŒ­E„¤bž»2`w9nˆL‘²q§ÂeŸ½aº7h€a»N³b»N³ÉÝçL‘³M±N‘³N³¯ÎÝJŠª´ÐÞ©ÉØD‚£E„£`žº×æíM‘²׿ìE„£F„£?”E„£F„£F„¢s§ÃS’µy±Ç 7jƒ9l†bœ»éñõëïó1]uèñõfŸ¼9l†ëòõb»f ½>v‘d ¾3ax7gâìð´ÐÞf ½·Ž¹àƒk@›kØø<`z5¹¦s~ÂÖÅ$hÞÀ-¦­ÓkÜñ6›¶$Öyü…¯oö*9á…õÞMÅ=;õÀî~1A½.º‡ðËW>"2€—Èæ ©Ð¢V[„Œ.A Óª µV«í²6:$ššº:µF#×\ÇÄÚØ;(¦WHH/ô×ÿõô®4sðà‡øFÄË£œ1üñ’þ÷"Ÿ5†U{ /p Ã>k images/sort-2x.gif000066600000000141152330733730010024 0ustar00GIF89aòñòò%/2$.1#-0ÿÿÿ!ù,@&HºÌ20ʨÀ¤„™«ìÛyâ— BÇXXb¤Ù„Ü–îȼµÊ$;images/freedom-1.svg000066600000002647152330733730010334 0ustar00images/about-header-default.webp000066600000047076152330733730012702 0ustar00RIFF6NWEBPVP8X ÏWALPHV µmÛ0ÖÿŸ;=SDMÚàÔn¥_C H VÀŽÈ¡‘!¶öø&ð@ýÿáÆÿÿç$i“f_ÙÚXÛ¶mÛÕKk³kwmÛûb»¶m×v»ÕÉÌýõöûÝ&39™ó8iÛÜ¿þ 8þçþçþçþçþçþçþçÿçªVGÌéÖ¾¯¡äªÜðº;§—Žz¶>#át»üË‚]U ¸Ú¯ñogÍÕo6“‹ðŸ¦úYQnÚ£ø/ Ïú(ɶ†ŸñßÕ_hF³)¦çã¿Îïó$ØÜCü/S7¹Rk­Ãñ¿TRjšÕ…(aÃ5dZó(™7ÚÓhªÞQbsö4`ô™28%9{UEê¬b’-¼Ÿ«¢ÌXL”ˆaVd™zKJ¥p©#G“ÕzŠR«?_ Sf£4 »]¨1»(íi3ìI±¦Oa#Æ©È0m€ÆñM[FƒùÖÃX^hKµx cš½ËúR/Ë‚‘Í]âNzùœ`t…S”d×?FY{˜Í¥]¤‡Ñ¾Ðž#¸¼Î˜§í©Dm©»eÀÈ Ë\I-õâÿ¨@:Ëûž“øa‘Å H‚ɼڄ ,íN&´èD òªÞ#˜Øœ¥¶¤•µo>LoÆkºÊúLóë*¢ªñkÁDÁp¹#¨ór`ÊÏ7SPSg 0íéû*߯¢ùAjªÇg¤jø+’§Æ^²€ØŽ‘;l^&¤íµ– ZÇñ`1¤næÁê”Nóç±˽¨å´LHäøŸ\H¯$sñýÁŒ¼á:‡AZßkÍÑ6ÚÙ…ÚÅ{êR6Þ¿A‚ç­w j¬ÇC¢çÎÓ4Öë¾Aº¿iMÏT¿)@Êó·:3ÜàDHþ³•(Çí<Ì€_÷T cª>ƒ™0n¦5 cýĊñtô‹Ó.˜‹ôa´‹²ÅCÁ¼äŸnÍ.ÜÄl˜! öV'[ì÷`žŒXáD²°_`¾Lò·¡WT¹0k¾è­$VœCaîä¯6¢Tã`ÝTŽLáð0f/q£Qì.éa6M¯¦OXÿ$˜UÃzsĉjU!̬ú+-eRá6̰ùÇ«&i0Ï®p$K`¶\¨%æÀ¿ôÕÒrõPsÈ>_›˜°¥5‡¤éîÄíLj9àqGŽ˜ƒþ†Œ–¾mq'怢 -1DÕsàŸwçh9·kPsÈ9^‡˜—jˆ9 iŠ1ý“QŒ– ~éÄÑr€áPCFËÑk\‰9 ÷Çïˆ9àóbÂÝÖÄ€šŒ˜Cî/bHž¯!æ€È‘1ÃÝ!Œ– N×$怢ݵ-Ä®ÓsÞüX†–ð|Š˜Cîï­‰9»+3b¹ <‰9 îbxÙUAÌÁp«)£å€ÂÃ^ÄP¬#怸å6Ä„7Ã9ZÀƒ¾VÄrO7"æ€ÌÕ-¤Îó"æ`x>žÑr^÷PŒ9ð§×ÀüÇüÇüÇüÇüÇüÇüÇü÷ÿñß2bŽ„œ¢Ú€™g3 kmI8u—N¾-Ä?ïI»1‡v~›Ÿã?¼Z‹jcÕ&n¹Ÿ‚ÿfÁRWrͪâØMWÒð?ŒñSÐiÌ~Ȳ³Q…øŸÿÞˆBSº÷Z{&†G ÍÙ©£Íì{¬‰.@ÉŽòåh2ΣmÐñpJåõj䘦UPHX6Jqî6-fßfzÈÁd LÙbâé÷YŒåµÊ”Ó6 8V#+¬w!¹”.;?ÅÃ8§T[6µ}w}̇Q¿]‰ÊâœêLئ‡ ,^ïE_©[ny‘ Ó;ÒŠ°r¬ÒíLîõF$•¢îÐ5·2x˜fÃ:'ZJ]äêÐ<˜öèŪ I ïÖ$ŸT5†Î¿©ßäB8ùŒ]ó[¸Ñ™4†bRù Zÿkê:¾‡?åÃò¼yì* ßøÚ õÜ᪌^z3–ì¥Ãy5s6 ï•£kóÓÁO°ˆœ²Í}7=`9ß6¬Òà¥7ÒyXÖg WnÀ¬sɰÄOësN¿/‚¥~Ì0mÓ‰G_Á¢?d¸òþ®'Áò¿aT®C‚CS!ìmÇ¥F@F˜.ºú3÷½*‚ܰZXù€½/Sxȃ…+ß+ø^ŽÙb¬hÛ,¾’ ™c§èùŸÿ,@Y(œC±»? KÖ çÝkåƒlÈ*ÃDíÑfNHä—QR¶çÄ£‘göˆc•QÁï q¦«1‹C¢!¡#%I` enòoq×Ï€ ÜóÓò5^KÏÄ’ À(ðèð%/Â/Ö?éÿ,þ¹7—Ï8kø˜¿aÏãG¥‡öÏ«þdÿ×þêóŽøw“ûý¯ôošS&ÿ·þíýçÿûÏ¢ìÿÇ~P}þËþGþç¸'è‡ø_è_åÎÿ‚ÿÿ÷¯ý'®ßê?í¿&~ÿ/þ{ýßûïßÿÿÇßGßî=@?¡ÿvÿÿûïñÿ[÷Óáóû¨óòŸÿýn¿äøFý²ÿÁþÃ÷ÓèKùwõ/÷ß›Ÿ¿ÿÿÿ==F?€~ÿû‹÷Ãú'áwëÇÖ_^?9ù 컢{¹_³ï¹ö=ÜoðÝнKa8¸Ÿ²y³MºPm>·êüoúoëϽûÿø¼ü}[ÿ«Üùõoùà?$| ~åû ~Âá­ =»•¡‡·r´0öîV†ÝÊÐÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡·r´0öîV†ÝÊÐÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡·r´0öîV†ÝÊÐÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡“Ô9Ã"/Cnåhaí"™|8©xÔ ÎÇOŸHáOÂõ"o¹Øéóé)âØ^¤MãP7;>}#…<[ Ô‰¼jçc§Ï¤p§‹az‘7@ÜìtùôŽñl/R&ñ¨ŽŸ>‘ž-…êDÞ5s±ÓçÒ8SŰ½H›Æ nv:|úFûÚ…µ´òˆJš¥ýs ÚUD|òÈ›áÀ½H›Æ nv:|ú?¢G x¶©xÔ ÎÇOŸHáOÂõ"o¹Øéóé)âØ^¤MãP7;>}#…<[ Ô‰¼jçc§Ï¤p§‹az‘7@ÜìtùôŽñl/R&ñ¨ŽŸ>‘ž-…êDÞ5s±ÓçÒ8SŰ½H›Æ nv:|œ™¬è-ЩmØ6‡UÂþ®öÎê© ô‡I§ªÍ¶þŠD ¬Ûoè¤Â‹U4é4â•Y¶ßÑI…ªh=!ÒiÅ*³m¿¢“ -TÐzC¤ÓŠUfÛE&Z© ô‡I§ªÍ¶þŠL(µSAé“N)U›mý˜Qj¦ƒÒ&œR«6Ûú)0¢ÕM¤:M8¥Vm·ôRaEªšHsö­‚¼–òr´õ9Ð$zŸrÝ4U¯l޾¼HáOÂõ"o½Ú±I â•Y¶ßÑI…ªh=!ÒiÅ*³m¿¢“ -TÐzC¤ÓŠUfÛE&Z© ô‡I§ªÍ¶þŠL(µSAé“N)U›mý˜Qj¦ƒÒ&œR«6Ûú)0¢ÕM¤:M8¥Vm·ôRaEªšHtšqJ¬Ûoæõ.¸$+²ùž]9‚¦¦XN±§£Yÿ}æ¹™ôŽñl/R(ÿÑI…ªh=!ÒiÅ*³m¿¢“ -TÐzC¤ÓŠUfÛE&Z© ô‡I§ªÍ¶þŠL(µSAé“N)U›mý˜Qj¦ƒÒ&œR«6Ûú)0¢ÕM¤:M8¥Vm·ôRaEªšHtšqJ¬Ûoè¤Â‹U4é4"yüsåa>æ ¤åîê!øÍƒ³‚K Çà ¶—L‚s’ !œR«5¾6>~ÇOŸHáOÂõ"o¹Øéóé)âØ^¤MãP7;>}#…<[ Ô‰¼jçc§Ï¤p§‹az‘7@ÜìtùôŽñl/R&ñ¨ŽŸ>‘ž-…êDÞ5s±ÓçÒ8SŰ½H›Æ nv:|úFø´²@ªÉ.ŠØµhQ%á ÿùTü/®W|êæ9CÑj¦ƒÑå˜^¤Mã[¯7à¦üß‚›ðS~ oÁMø)¿7à¦üß‚›ðS~ oÁMø)¿7à¦üß‚›ðS~ oÁMø)¿7à¦üß‚›ðS~ oÁMø)¿7à¦üß‚›ðS~ oÁMø)¿7à¦üß‚›ðS~ oºr>ßo0là ¨a¾9uww5fDãŒ`гո0ÃçïC˜À½@gÎ)U›mý˜Qj¦ƒÒ&œR«6Ûú)0¢ÕM¤:M8¥Vm·ôRaEªšHtšqJ¬Ûoè¤Â‹U4é4â•Y¶ßÑI…ªh=!ÒiÅ*³m¿¢“ -TÐzC¤ÓŠUfÛE&Z© ô‡I§ªÍ¶Ï[)[Áƒå7om³ðé-ß{ Ê!¯Á›”(mv²[jaDL2iÅ*³m¿¢“ -TÐzC¤ÓŠUfÛE&Z© ô‡I§ªÍ¶þŠL(µSAé“N)U›mý˜Qj¦ƒÒ&œR«6Ûú)0¢ÕM¤:M8¥Vm·ôRaEªšHtšqJ¬Ûoè¤Â‹U4é4â•Y¶ßΞã{~±›dðy®%z]³ÿ0;p¾‰í]JÉëh¶õ•_ž-…êDÞ5s±ÓçÒ8SŰ½H›Æ nv:|úG x¶©xÔ ÎÇOŸHáOÂõ"o¹Øéóé)âØ^¤MãP7;>}#…<[ Ô‰¼jçc§Ï¤p§‹az‘7@ÜìtùôŽñl/R&ð£Ú骉&&8Ãu—Î?ºb¦âö Ú¿+J=ž^g¾IúpÖŠ¼uä³)™mÍr{Ô_§ h«Ç^K2™–Ü×'½EúpÖŠ¼uä³)™mÍr{Ô_§ h«Ç^K2™–Ü×'½EúpÖŠ¼uä³)™mÍr{»Ík³w(µFö:hdÒ.SD²={ t W<Á?]d±¹æ úë%ˆÏ0O×Y,@®y‚~ºÉbsÌõÖK+ž`Ÿ®²X\óýu’Ä ç˜'묖 W4€Ì§ÐM›|¢ƒͦñþOê$Ó’Þä´Ýo€~ǃ4ÖS0Ë<³Íê¯÷W“OâK¢]¼ü\Â!„tt "žú% õZD$[­÷§/ÄÌ2bÆý¢ õ˜#§#‹<è›Zxˆ/b¾À'-†œ-vÉ e$ç?j㣢šÐÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡·r´0öîV†ÝÊÏδ0ͪl°?-‰R<›”4Y¡-‰0Íå€:WHXt<Þ¾¡8Åñ@¡a݉Ûì_KPñyIÒ¨*Á§y´þ!™f€;-Î,ÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡·r´0öîV†ÜàÐÆÃ,ˆ?©C‰Eu ˜-GŠÄÃ;uYÞæÀ²#s eç|Üb /yô~%Á—â­Ê×YpN,¼x< ¼?D›jÒjñ²G÷IëYæõWû«‰É§ñ%Q.Þþ<³Íê¯÷W“OâK¢]¼ü¦%SÞØ’—«Ê{õ(¥ã¬w6‘t¤í©÷ûw+RHe`³'묖 W<Á?]d±¹æ úë%ˆÏ0O×Y,@®y‚~ºÉbsÌõÖE€>¥P§qÂó·7ì Z>ýØØ[£±Ì.z0OÞ<=âðƒˆÌöÄ_SŠ÷ËéA ^fÚ{i=s®T|•ª-•ƒëqd¢yB¾<³Íê¯÷W“OâK¢]¼üXÚÞ¥½êÍ̬Ê9dä‹,'œ½¼Lx†B©ìŽž1dïë0‰ B9aŸv5Yýx±(wÅr@¶O¬ËüäÐ6F‹¾;¹6Hø‡©0:Å0öîV†ÝÊÐÃÛ¹Z{w+CnåhaíÜ­ =»•¡‡´KZA$‡Ïó†ó`'Vm…k"6%­½u·Œ=ìä²½‚1†šQ(>6¿ï…SV3%sƒZŒiF z³ò "ä1¿@ÊÑ· y–š¶$†¤à@[ч=ƽX‹E^:òY”̶æ¹=ê/Ó†´Uã¯%™LËnk“Þ¢ý8kE^:òY”̶æ¹=ê/Ó†´Uã¯%‰h¯QøHÇæ ß^­–'wºÙþ†‘²¹¦öRÁcîXâTÆ^/FïCÆbüÞWu³£aà—å°¯ ¾·ò'„©{BT8¥cXјþçÚÖPs+Åâ¸ã®y‚~ºÉbsÌõÖK+ž`Ÿ®²X\óýu’Ä ç˜'묖 W<Á?]d¡Í¢*°ò-ëÝÈK:ù±ë®ìý16õ®îOß'Ó1f&­‡aºÍÒÀóHUþ’ÔM™o^}d&Ózeª.W#¸ò(ø0N¬òüv4¡¥>  : ãY;83WrÈÑ<»eš'—l³Dòí–hž]²Í˶Y¢yvË4O&Ú„´¥­we€ƒs;mnÛ qÇ|‰+Ž×âP?8c@Üä9Ü¢X—–•sòZÄç{Ð'É)sqD~$hž]²Í˶Y¢yvË4O.Ùf‰åÛ,Ñ<»eš'—l³D꾸® æª_ƒŒ‰Äž¾0º»í¹ê팰A!~O¶)ÃÌø±ŽU[=ähÙçU|Fõ¥j@¬¸ÿ¸¸þÛ#Dñ°Ýzåø,K1‚~ºÉbsÌõÖK+ž`Ÿ®²X\óýu’Ä ç˜'묖 W<Á?]d° :ãÿiâÁ|̃.V°CÆÚ…H7çQl~¦Ò.ç·@$铎·´?2ÏÅ™¶EŸ­6[KHŸˆ’ÔµMuÌvƒÈÎ]†ðèTÇ·h9Á&f¬¬ïá/"’ 5N£‡ây€Êù IÏÖ–J2Þ9ì0J>G¨æã£Ü¢ÒZðîøéÄUóf»X‹J9Ñrˆýý‚ðtÛA:º¼Ú´³«¦lX³kÚ``êÖ¬ÛÅ! 3™j9 œ—Åò?ìy‚n…/‹äØóÝ 2_Èÿ±æ ºd¾/‘ÿcÌt(É|_#þǘ&èQ’ø¾Gý0MУ%ñ|û`›¡FKâùö<Á7BŒ—Åò?ìy‚n…/‹äØóÝ 2_Èÿ±æ ºd¾/‘ÿcÌt(É|_#þǘ&èQ’ø¾Gý0MУ%ñ|û`›¡FKâùö<Á7BŒ—Åò?ìy‚n…/‹äØóÝ 2_Èÿ±æ ºd¾/‘ÿcÌt(É|_Aþó#açé‹ÿâ¶þ>1+üŽ jûû†4E¸DÓ+ZWz»ã}w›vÙÅu@é_ûû÷æ 1™e ¦%´#*À£2•u¾6À~{Ðc‹ñ›€ zŸ‰½ÑkH+ }Òà*Z¬)wXR×›%*8¿ÛäHo=‰£,Sò¹ve•}kÞ°/åfÛþ¨ U-ÈÙbxvBÀ%Òh@H…;†åßBO“FðrN³ =ãI@V=g¥êˆá£=Vªö™ú~½žLX¶\ÖÇÅÙ^+"šž Ø:°é£ÚÉG‚ÞÂFþñc}˶ËuZ‰ÙÞ 'ÑǯPȵ½Mx)E{üsaú—؈>‘¬Ï ?8êö=ý%׋²]þ];S¤'ÊÆÁŠô³hFÔÅç>BDvÝzß·ïcÆ&ÝâÉDAç`|6B5G6(¾t#…+À¿Î‹:„”‹Ñ*’6u•¦¶*Ö÷ý[^~oÖzõÀ ó,£ØðÍ]"˜ Ÿ’Ç¿²#Çr~Æbxš‚½§úQ$¥~´ýEµÌ-«WúV¹Î×5Gt–|þt8Oü|snɱgœ[ÄRá;¥ÎqÁxw¦=õÍ€`Œ£š>VBvñaØálé&fÁ~œˆ_ ®$Š;,ûD|­þ\‘ëÕ ËOìeGVÏk¨ÎêVR“Å›¦ð/LÖ*TˆƒüÇÊ e&ÍÛÍKU’WõCY·˜3àÅ$×r,TÈ1ßßTM‹>(Mέù½×¸»íaÝÕ׳pæ«°þÅ.tº÷žg²üƽÚwË@Æ«%òrÞ׊‚b¯F]Á97/2dºÈ%ÜþMœ‡ËV,Ÿ+Œß¸B\Ê*`ííðBwKJ£hœ8sžíøÄg¾?#*"Gz·ø™]O¸XLf]Í¿J§…l{›~•O Ø÷6ý*ž±îmúU<+cÜÛôªxVǹ·éTð­soÒ©á[æß¥S¶=Í¿J§…l{›~•O Ø÷6ý*ž±îmúU<+cÝ8þ¹¦uÃzN#ÃÈVp’Ú¤ËåꈼZž[7¶»,½r6ýœ’-*ñ6æ¯Þ…x²ÏÒ\úº¾~›†Íâ߃¹{—±˜dÅÖ¿.^ÇQE÷ƒCg›˜pßCj¸4TîRä¥\鉑ˆ<üQ*¬ÀRˆ¦K$‹ÿm<õìØ›ûœ˜Æ÷¿Ÿ_‘ïË›Y"³ò®£ú ^AqÐÎÁG®ìl• ½ìMZZ‡|üR÷e×[Vaï,²>ŸŒÃ …W.n…æò<îð-×sDðÛ¸ºœa›­¢²k9Žª÷ꞃþ§ãΔ–`ÚÁ2¢!©ˆ|ˆûô0üÑøÔéïr@‘ ƒO"Ç—oßÔ×÷­€Uê4‚©Ûlx;ëÙôÃìúaö}0û>˜}ŸL>ϦgÓ³é‡ÙôÃìúaö}0û>˜}ŸL>ϦgÓ³é‡ÙôÃìúaö}0û>˜}ŸL>ϦgÓ³é‡ÙôÃìúaö}0û>˜}ŸL>ϦgÓ³é‡ÙôÃìúaö}0û>˜}ŸL>ϦgÓ³é‡ÙôÃìúaö}0û>˜}ŸL>Ϧ³è·-BˆÎG&†:Xj—2½lÜ$î¥"¬à켉&••#1¼9S Õ³vCV©ôTäýèRüzj]óºM^ ¶û› €â¢Ð>Ò¬à¾ÇŽ“x¾KaªÿY=æ $Y¦2 ~eÕ­|ÎSâ¼L@3¨=.Þߨg—NöJ¯â ÿ¡a(Ï/ä½®¤:¾{K×ÀŸ1æü°(M…]…¿2SÖ¿@ÙªÓB±EÑ×Í q†LËÃV¸3~,¬pf䨵ÝÿñûdR‘Dc2ºÿמ”,×. ¨sOuiÓ¡ScIYsUŽ^ìRô»ƒîG ž»¾O¯k}}T|gø”wr¿×ßHfÁÿŽVÚÓܨ¿¥òW)õµƒÝR¿ŒýcÎ$¢Œèo€ð>,w)§,Ú £Œª¨gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–~?âYøÿ‰gãþ%Ÿø–tÞüó"coïbIØ–”2`'hw1Fõ9N›Õ­Sp»YH5$\ùâ—Ý™ç;¸Øj¦Oãñ,‰Ö¬=­úi¸VRìM,¾°åË𾃠ŒxJk©)çù±ùåŸ*Êyv_„ŠÂÊØ"œh&j}ýò¸­¹¼nGÉ4ÔÕvùøo¸ò÷úÌÓ`G‚ØnÌU|•<î†àÁH#MN*¿áúvB_üŸuzêa›ž¿Â`Uó.NKwžj¹‡'^ÞJ³ŸïÓ¡›°W+æÅÿ®tVÉ-è<5}Å3é×V¹s³OØ;½ ©é+ Э‹ú¸¹íÙáªÆy•ÔÕÌ=¸5_$ëÖçvSõD͹t\Ú´„…× “xa€uCRE0™9o°õퟘ'Ä(¼¶^ã¦X|ºV\â’ï Ÿ×.†™e·K€¥¤›!Â)¥öŒhÒÓÞBÂè»ïçÄaó›õúIT7ñ+4ÍT³ôƒ:ïñ˜ Q4¯bJ°0ä°» On}ãÌŠ¼|Ë'–á¦p‡³©ùMܦ(fùáýÑ¿¢_yX/R¬t”ïÒóðˆj’CúY]늀”çÿh;AŒ»C²§ãCu0Š–ÓÞ0ž?°{¹‘ÐÉ-ûŸkØóÑ·—I•„ËüBôÿr.ïììöÎØ¾jœóÙwä÷J€7ñ-[øğ¡8 ôÝ8‡;Vš=ÿÑL&`b *vjáûÏûΜ«Ÿ€( ”Ö.ê®w¯þJgªvCµôs«ƒÅÝKcœSlßLÊA§no-§d%…ïT‹­’p ¶ˆ+« KLP¡3Ëógñ[‰“*.W'3þerŸeŸqüÛC¶À02­ÿ÷üN‡Æ¯³ÏŸø,iÓ9x«žóÏe™®ÉHözh‹}æ~ÍÿY|L2? ºÒήØMd¡nuÄtÈÚE»ŽË¶§E7¼isTk~ÖÀàð(N¼¡v¢Õ@—ͱÜÿ>¤gœ@6\=Î*ÂG*|…0Š¿ü’"3Ib«XB"ûyfç~Ã3Ìô`ZsÏøy®îx¤ÐèlJ’ŸÙ\¾ÖÙÀ£acƒ 2$ktË%N  “nð§~ŠIhÎÙ,“8øäò?Ž[^‹Íÿu¡%ž×,25vÏ„¢¶ZÒ3税µGúK%Éu#T­¡¾ZF@æ†É—§Ú¤q‡¥úZˆñ';H´³ªõ÷x ”|\#ÝH3*‹s½-!ÜÒSš Y ev0§KZ þî`Ž¼î‹šÒ¼Ó{îšÏ‹}foGVì$(:$Ѝó¿d4M½öÇ¿N"cÎÀ#úÚì0*= ˜ üukXÖ¿rjg¦‚ ÂJÑÇŒs73%µH¦¿šAø¶Ø;ÔKètáß3c·«+ÉS³ØjÈp„–)Q‘BÎø¡ë·‡1X1°´Þ7Ö«AA°X÷Açßxh ð Ûâfö~P¨=‡g<{ÛðûO)óÆ)¢»ä9ýŸùNN[7¶hý!rNrSE1¶þ0´èÈhéÀÜ×Ú‹~Öce.žä”ÚK¤É‹‘³Em{Õ ˆ²…%¶%>GŸIù¶â DðP–øt$”|K¡||» ^¨=8…ÝE’ù´Í~ÂÀ|©ÇxH zÍõ9‹lh+Å¢*ßvþªí6U¤m“Qsùáöýc9b4­O¼Ï3‡!£ÿo&àÙ? ,ÂDœ8ýVñ/þýv 6b”“¶ÁÇø)œÀ@Lš„<À@7Æq!²\ɶ—]·Ý…ª+"=Š:À¥uŸS?“ø†/À÷zÚ­`^|å¶³~× 9‹ëÛ›¥âðòã–OJb |:moF.j7àj^=·Ù[—¢n4/¯EK˜¨[‚¶ÞùÒÇ3¹’ EoîsmþÍB¶•Y¯»à$Ò¿–ïß MAÞˆÁ¬ƒobt#¹b¤z7XïŠY‹ŠäÔË|ÏzVÝ\¹›h mú¦³D©¾‰Ÿ/Ïç…4¦fŠ! j~íˆúZé‹NçËΗµ¶E^Jkãô2ʨü2B{6åeµÎFœè”ÜÌ¢®Ü²áݨÃKîåF0mšv\ö „J ßN”G?Wì!*Ëv‰Í”…ùÕòëü„©3† ‚Û ¹Ô§¡ Ý*Vél¾’´o‰pƒ±j.Wð¢ P$áÞŽÒñGk.Ï^9r&wÛ ‘ŽÌ'|ê]tfŒæÁ”&œ°y%ÁHˆ ;gÿ¡uæ /ÝìŒÇ¡-ÑßjÐI'Ý%‘‰¼sï|ð_žä’xÙA+B9Üj2ÎBÓ4áÎO¹¤ Ú®›4'~šö°¨© `Ð%Ÿ gxÕ§™Ÿp»Ò鹿€èî`ØÉ=ïªE ŃüÎ:È}ìˆ_X2›\š¦#«¼qÞô÷zLˆâ—,$kWã ¾Öú’\ÃýŸ¾èñd¦Ž-ŸÒ2ðŽÁ Åh9ÖJ7…k¼ž {¸³Ìè«æwö^ëm/õ'&ÒhÐ`ÂØ/ТžÊUñuÚIÑw̹ØqpzÞ„¸¿šXÐB”²ümL‹­´~Tí„E!x¯M®²BãFu9α™`­ý“GϤд»,Ç®‡—©½#tNÄÚKF /ªÚŒƒ.Ëœ·@7.˜—ùÀdèi„ô µÐßlWA¬òÛteGd{ÏÂÍv(»¿µq”L0M–ÔlÑætZb =Cu{Eü3†â~f[ ÇÅ%{qN8¥­- 'Þl˜ñ XYϰŸíÄ–ñ@L>ï­Â4AÁ&t”üO³õÇI˜ÔñŽâQàb嶆ö€jú³•p@6‡c$hsn«Së–èëE‹ JTxÛí`•Ñh5ðÐl=d› F Û'Û*æ¯`ò‘ò6ÿ×"™"é>ð¹ð{ÞYb”æE1.‘û1÷Sg'TçÜzÄWÀ š¾… Zù\t{÷K[9µd±è#]‡€ï’þšÔ[-ü^ÚÓ5€yJ@ªáv»ïuï»-u0²ÏUI!ö͹`€G8{¤JšºË™Ï&±ãëðcÓGQ}Þ†‘ÂMs¸Çù…yÖ”ÍVUÏ™¦U —å¥Cx¡2yìlF¼WrÔëy帔¬1Ђ†ÿF’Å[Ù[Á¡”Z¶ðñ›¥ÚLjèRSað/þx\탱)ÊgG¯:°–Ÿâ{y]MŒEA/7Ho™øn½-ÄHgÄq‹…"É–™–29_7+s¢èíˆùööƒŸÔ÷ogwÑËã—ëÁ>3Ý=³ƒ´â=Ÿé”Ƥ+þĉÞ-tWxP"ó[l—뺽¡ÁéýÖi›24…àl©’_LURôÎ3jÉP;Í*¤½¶ˆp|èÂÜrlKÎŽ*ß2õnø´Ò~®æ¸¥“3P4™1G+xØiOªT3ÌC'0øhˆVÆB‡W ™à„j‘!4b "t¾y‚Ф _M]);=¼ª%ˆu Zçk¯}[ºú–îØ“÷0S÷̽‹Å/þÄWÒÃྠ*ÕñêØ ªA3Ä7ý\ô–Ki°ý³Amß·ö–K‘sïà<œ²æMTqN” ™LÆ©þæßô+iÁ )VL¶²2Àd4sù¡/' ž«j ]8€¼nXÕçù”× y»C OdÐ;zÓ…Š­IùFlÜS#P†/lÝtï“•Òœ¡Ú(<¢Ib"íµܽéùÜõP8¸_QÛ„4BœImq­.º%6+˜§@2¡aݶq­ŽmÍkùë-E|Yø´¼Ð?ûfXWך3Ø6MߢÇzšÈŽžoÇæã ÿà­ñdh—Ú_Ï«O:6]ÒÞ` Å ÷ÞÞëÁÈ8’X@ž¢œå†ì|5ÏJa7'è²ëñw =bƒ?rÅcÏ/˶~¸°Ÿ±ûQí×"-UÐ¡Ž¼¾YQQ¨I‹.ÿå•cëø…x¢¥Cðy¿¸ŠÁzûÒþæòÇÞöEJ´nªðݰ‚¦r”¬L¹ŸRw‚F™ÄiŠ  ³%nÌž-d‰ñŽn¿9•Ó®˜ëûºÇ SôÚÒ½²çkÇOï,×u$èô§$|µдÒ=`…_QlˆOw(Sʃ#/Iû¼§m9éÍPÚ@x} Ö¸‰Š¬ðÜê·uñ°]•o+Q“w~Aƒù;ÿx3l±ãÜ@p6T0ݸ·žèû¤õþ€å`,•$>Uµ“ÔQèÞ,,Ý"·„ÝIJ–‘÷’Èw‡û0ˆ‰ûÕ-èßlW1ˆ ï]]Îãëí¤sš}÷¦Ÿ€è„Õ`2EÙy©@+ð¸*€ƒ™Í<Ø‘\|‡A`=½ÆXpUúŸÈÌBÁ‡²@K©"¹nB@ß“+õÄ—@md´i-Os¦"×6VÒÆš€R¬ÅÑ™’¿ÌJq8GìïÎú)K²_3òëÝþ6Å`®ÁVAÃ$ ¥ØBÂ…Z%jX’Œ0Ï?qpâ^wfp1™ TŒüœXSd”î˜ù÷’™¨ò({ds€gЊn«èÁPÓãÄF@EÞ¶ LÁg_[Ôçó„Ot’¬J§!öûî$#mÕ ®RB–T¤ÆÒ:æ;©ÑÔ^éfGqÖ;˜Ì´ àB[o?4佊ÊþÑhî!ÍMðhC ^;ç`g”^˜˜Y÷`ù »EÈ,INÿÒ»×a–×_p³“_L¤<¸&yIgpn6²L$˜)ÙaÓk W*-Bî¿3ENŠ…¨˜Þr€ÐI½)·¡ÜøwMdz(OÄc!"w"ßLÉ }÷’ì,£&Xþçãh¤ÒÐÇW(æki¸g½˜½~æÅm ù·Y~RšÕ$² Û‘‚ˆÙ@dg±A1Ôß(MEG—(Ьê"%sæ¦Ëí:ÒåzË\xÓÑÀ­’(ÖˆÿSâ«3{'A„ €(ѪûX¿&Ï¢Ð?@'y†›>˜x†Ä\ÒLh0 9ö1wKOœy½–¾Áî+ølÞYiàVxE†ªû•û­B«c Ž£…¡»ƒ'¯õ7ùfêqµ—ïŸ|#¨»yÈëñRÜË @y¬³Å—?°œm'Ä[js±û›Á:ì8 À,?{^zY£_æ(0*áó`Ì·û=탞i5’×ÞÒ6J¾Ë¸5ðûB»G»†¶TÛøtÖHªÒé@û¿]%³X?¡Ì¦i“È)æŽòþtL&҄ѸcáûP5Kœ†VS.…O§Âë¾ÇÐzPtR½VÅ8 þ©º„@°ÿÏ)üáÕɺ<4cŸéC2J†~L`<¶O‚“!©5òÕÅ(vz¤`çCMòj¼ø-ÌZ9:‡ƒçd×(û›´áÙí²ØÂ[µ‰€iÍÌ¿>MºšÉ*„5µSû½¢Æ7D\ŠöRÜ:*ž$+¸PpðRûž{@üíŸÑ„¾ÑíÑð.N…õçêË’ÈGf á K˜àL%:¢Þ¡ð¯üû`ИUi¡`óÿWšˆå€ŸKT þáI,9Óâª3Xt÷}pæÏ¹ƒk`TTGÍB´Û^…™à}çé Ĭ@¹×“»LéJhŒ˜CÂWĶ같¯& §ö>½âkä*¾ Ž_œÓxÂØû™('A¢±ÚæÌËü RS›O‹…’k-“£Î1 ¨s«'Ôì~i¢4ãÛî<žW–P­€w_2§¡…cEÝÇ•di:ú„ BwMö}\/)”ÊxáN’妎.ŽŠq«*1O‘bíòñE¢Ò|m-mm7`ôþ4 />.õ w13U‹)NJÌ·£5”bVv8àÐ\QÕ¹ºl,Ö¾¤o¬~Neÿüeˆ¸6Q!7^ J \™Rx@ÖI4Œ÷Ìé'âèÒÉ¡žFÖ…‡ÐÆ:ì.7R¡­-Á/ÆÊ1zôâ%½Ì'@mø“¬MŒŠÅ°BíWÛO"Y~\SQŒa þ…^7}úþ´-¿BúZmþˆ˜”ôDÌ{àí×Á‹˜)ícO*²2l.(è¶ {EîYjƒzÆSôø« Ë«ÜEÒ„î×:k “"þP2ŽEj‰;tïa¬Ím£Äò ú…šAûïƒð…a.Øv[û~›~€€0U…FuÐô€Žºž‘Ñõ!¾T(º’^Sm£-ØNhr|ìPlèI>?Z‹BÞd¢\¢IÙ„íÇín‚Là‘ôøšæ]©»ÝÖBv*‹âUÚûSdG‘õb8‘릋DÓ%–;1ÊyžæºÖ¤àG(}÷8gê¾¾D$o}õ8ž“±Ò…“ü¹0mh8ù­È©“§šç€s3Ï&9N‡€¡lÍr 1vk(ñy¯U Èsã’\TMʉ Ø_[ßÞ.G9’õýõrý’ÇÃiU`íÑ_Sœ+j¢u¶&IÖbüR‹j¬ƒj/¯P#7Sœ„dæ×‹ tN@™—ï!bîýF¼«ÿ™ ¬EÞ¨ÝWTMúj´ºê£èàvlš ªõ£xˆ§tösšf˜ÁXKöëÊS©÷O$ Üø`žêïu±å-üºÓû½8g¡Sø~óã-…xƒ>0ì,ÔW™5…Üw­!à BÓ-DÏsà.¯ô û¡eé OÙ°Lfà{×¶3Rwâ:ª})Òöb|:OT¿ŠN hòI8Còt‹÷X*$‰|§P%;Tuqx¿zUalDZ§cŸéûÊÀ«–WõrAù0Q—ß¶y¥7‘&í —0õý~ã%Z¯@sCÙzü±Š§>e"”@A3¦8q/û½Š¬gÙýKLà‹?ý!‘zdžC³ËoËjK8oA’Û¡@ª’¦ðü1ŽseT‰GiÄRÁwŸXJÀzh<ïÁ…K±°0& ÍœÁÓ³1í¬x¾{E"¾.f 1`µig <$'åB“E]I;t–ˆûðY‹Ö¥cb¬sð@ÉÁ Õ“>-¡ ¬tòóL6ÞB: ËWwŸ›p8뤉ù½âowÅïÝTê<Æ ‰WIô¾ƒ°…3ŒÄwHZ(P§w‹äa?™7væ_à4Ø^¥Y@à@Þ6R`׳j±5ÜL­ÂVåRÆ6N,õ cÿƒÇ÷´%o‡GW¥â’§xÂñdu¿ªba7”i(¨€ªË" We€ÒI!Ý…~/sÄßžPç& æÞÐûûÈ2ú"CU ÷ð¢x@ºƒ5-ÜŸ)צwÁÕ $ÞgÕ7R¯Üš Ns´kp½)F!Áïf~͵Çõ¿?KMKÓ½K2Lˆ…ØUžjšS2ÆÉ`ÝÓß,xˆåK*-’¢$"ˆ­º6(—t?ÆÅ,šj­z8g.a¦±òQ)¯zß ¡íCÍá„R ŽþDæ.çÒü5äJäDÆùâe2é?€¸ˆÀ†ås«A™ŒC6Êòº&ÝI0›ÂMFç‘,÷ýBAx—±iaI]:²~†\ ” ÑbæÞ髤Á²5ãLÝA`¡b226 ÃZè¡L_G"‘.#‰&cå ®Ük–"(èÝVs|wþäÑàZÁå3H"Œqà¦ýæØ¿ü5y‚»ŠßL¡5cô`‚ãì´˜Ó¹®Q ñ©]å9¼Â A¼å'ûÔ’÷#úgëŸù+ŠC£­u ÏñI%œbÇúmñÝ"ÓÑ#üÔ;ØÝƒky˜HŠ8+|¦|2uJQKØVh9ÛÝxÑf¹‘}# âC4!ÎHúQŽ<vå öL¨FMhN6œb3^ ~ɧ¾ë‡ì~NÌ PFKRТ›§XË;8:EÐ%‰Äp@R¼¬øk¤¸ðúdS €eÅÂÎÿ(²Ã>tèí 8Ð. À£4ôÜéÌ!.ò3è®-üª*XÝ$0UcòÕU½LG?~p}Ut‰û ³µ‹=cÈ‚âDˆ«ß÷þ’ êîã"‘bÏ@ôâT@L—÷7š«ìQUΪ¾÷©?U/üÊ\ !~|Š“[ý™ÊmÜnÛH=·lNA”a)ÃFçûk›lÀ’;')NÎØ)ó‚ A$ÜpS ¶]ÎøbÕÈÝuÓøXÙøáN:“Pã]²‘±!]…‘Ñdg+ˆöå<{MÂÈ\Pb5«u¿ºúþœé8β»„òA”/ ËŸ|z³;Öqصw”¬yÚ¼¾éÈ‘ôtïà¼j){¨Àòs‡ìOŠ? úB!¶¥¬Q§ 9c"v ¨½zEw+”[™BàËUUï¹)C¢T“Z?µ÷‡”'¸A}ç?œAzñÖÕ,äØzi|8ºÛ˲»U…‰¨’ùèóúË〢ôõ:ßó`Ea¨r3r²¶;ëd3¨¿ š†&÷•¹Ý9žžgœœH«€o‰G³ÑšgÅë.Y¯X¿¥ÄŽÛRk¾Å‚_ÉÈ÷®»ßbÈÿ¶=qBÁ.‰¸ûöÐ~fwå0ªÇ¾ÎϯsH¤!Žó¦p´µ±Ì%T×õ Ín}‘ÅÍ•õZÃ1ðË IÊTÜ£b6Z/4qB·<íU F) >Ê/¸Úç ‚I¾rÉêqÉY6º¡=g©˜AVÄÊÓR‰ÜñàœN«SþBXÈ[×éËϼp&¢çn°7ãH¯\1Ú嬃Ó{” R—áu>É :Œƒaïd ·X-É3Œh:¿]ì‹ÙÚR[‚-—ïkYPÖYÆxàtêãSèÌ¡Ò4a õËGdýCbïm¹"¼o,ã>@ÀÒJ‡É•,€ZcÃj¥ƒO„.¨·ž-%‘ xu‰¡ƒŽd4”‡'äô%!½#:ØÄ 0ü’«b«]-âúîCl;Þ›‰Œ"Jlíª5ÊJ&°r&H¤-Æs»U­@ço”ç`ÂöeP§xïW¡­7ÆL÷†UÿæV’weež€!®‰I²›ó`²™ìÃg»Ì[’‘L>iRn€ÕuFª!Ùi„'®ËaPf%üI¿/±ätÉ(ïßù2@–D†ÂéR¶Ä˜R ù>Îo Ð…#·¨·`È„eÚRF厹çÊ_缆Rdi Pqô eŠBÙ¤i „ÿ¡;Øë]7hÍR÷Î÷¿1¬XD`2D¿WøNì¬S^sÊëBñÕW¨õ‘ØÄIÐTbèâyšõþHœ¢dkóÎ:±¦aÞ; »½Ò§Í ¯÷[*Ø]G£¢äíÙl¢?CEkÙ÷AÞKvLÓ%(ƒ8Õ±¹9™")~œüš+±ˆt/Ð÷hù‘èdõqT_·­g0ª Ñí ~írŠkšó,/{„îÝPÛ9d'Þz.øne›&Æ1R7úÛZ'ÊÝáƒ&0eƒçâÝú½FqÐ)9±Sð•Æ¢™ë0›ÿa©’+‹pADºÍ²–éRó˜þŒÅÔeõ0¿–¡,û¦2þ”=04sd5§ªÈ¼§µÒ’ÝÅå6? £ô~¥ÿ‚©<’j ’½Í¶˜âÐÄ0¿Áù}VŸÿ½^¨qmý×דÔ)¦ÊqÒ\Âòî~Ð.D¤ª8$Œ-ÒV“ïªh¼@É'炵8*¾¹èËRW"«tžÿi*¯s‹x5”‰wÒWöPer£þ°éÙ/ÜaÁÇaÒ3²•ºŒ•‰¹Ò°YÍ$&>¾Á tIRY×zzÞ ¢ÿh 1®Á¬ÎÇOùŸA±Z•TØ®j±–uB„ãcbÝe¥î³zXÄEä(m]Bê@n€J°EgÔÞÌlt¹ª±DK:ßÍU)¤ÇZOÞ×p©ä“çú1@‰ú…ΉɂsSšn<%ï#hEר½ÃHdkøï´‡ºj§çüÓsP9‚‚ò¹eÜæ‘ª»³5Ì´™yq¼‰Æ¡”ùíT©•&ý1À++ªÐl€!š„gµI%á•)H$îÛÁ°õåÞrW¸C?ù‰o/~¨D;–܇PEŸÙ¼K¥ÇÎêx£¥•–$1¾‹Šžû‘PQØ}ÍHÞà2Ê´â¤i„€ZPÀDbÒ#C<¨Õ¿·Õ2ÂÀCV_à B;ü±KŒ ·!Ð î5¹Ägv"Mç(MCµí71…B£r"b`M™Î??·† " ¤pÇ™$ekðá?u<¦Gþ •4¦¸°TNÈ”Ÿ|6Nþ@9‹øæß˜‚*Ï‹ìÑØ8ìBª?½¸õÖmÖDwö·mrüacSå;ôÄÚk¿ëµTj-ˆ>×Ó(V=wd±ñ£ehоÊ}w¡ÚÊçõ‹GÛ„ð2­7Ú•*Vb›/oÁM¢) 5á¥ÐÓštxÀFóõÉz/Ÿ3ÏçqOÏòM¹ù;y°Ö2•9ö‚ÚåñåXýDûòA7!1çdÓo³ñ,­Ü‡•åý‹ª×T¯áKGjù’4e"xLñÇ S›H³úœsä€|F¸Øqr‡Ås9V+“; áÙ7Úßa+ú×ÑbÓfMµ4J£Üž¸£¬lóQî2`°´[ñU|Á g£G(y@üZ[6t( pœñ! €}†óE l7B·»<ŸQÈ6 ‹µ¹¦•å-P…†•G­ÆÆêΚÔðÒ`Ûxqf(†O}ÍK:{Ô¡5ÊÒ!ŽUÈÁ˜©óØê6Ë›+‡å¾4ÇÒÔ°³VÁ£DÑ–…ØjìÛD…ã^ng¥V½ y!ªÐeJñ4̘´Œý6W n@Â?ÐΊJ\'8ÔòÌTýð ý.ð42²þ/?U=Å««^Ûîè8wçg)ŽCxD¶±™^%Õ͵üôk}é ·¡œ„ä¤ÓJnby:\oœ©\#÷L[a×ä+v®a»%qnbÞ@¹pd»Ú‘Œ ©à÷_þ⼪xļ†@óÃi—˜Õ?ݹê»ùPºÎ TÐ0 Ÿç™º!a0s z"¹-X7!Äfv«@ü$Â{|¶ÂšÝ®µ}]¾3fÆÕ”U©™ÞcÇŒ’ âÀ6?cs(Ð.x´¼:Ú)0|>¸šgÉü²ŠQ§à*טÈX!òÚOŽ{³¿qLí@¹Ên¸ÐìéJÂŽÅ÷Ä{Hý—swé ÄâtHKéí&)µx†«KÒLì±by¡` À-AÄîµHŒ­^WfÕÏé)²P-9îw ±¶\›… ò÷ÖîêÊEËl¹PaO]ì˜DK´.ŸNôÑÓoìCutbu®÷IïÔ¹]ÀðÖ ¨,|‡+º‘["8u´äf¿–h‹^„¡fwÿHâ~ÔU}vdñ=ãel ææ–ŽÎ#üa­V†êAN.°¯ã{Ð)"·N–7«ŸÊ5å¹b©P>¢j3ŽRÑÔÅ+|á>AìÈ’‡û¦É€”Å5ᆱ(÷¹â÷,&éóÅÔe ¹fØ´ n¯) Y™žbãH„¥—¾ÚGûþVO¿„š‘žStGïä7êPÞo›  }òt°X›êÁGÖޛεҋU*Õð¶û!nF–çÝ’Ö(\‘ÔKy A&þ¬l&¤3Ð<åDŽIëÒ|ygW«Íß@^6öGdUÛ%Éšvìimages/menu-vs.png000066600000011736152330733730010133 0ustar00‰PNG  IHDR†@)˜ ÊPLTELiqS€˜4BXIœ,<6%$l…Z­YV3;PGQŠª*=SQŠªIœE3&D52H|˜=1$1=9%MMLG,RŒ­Iœ4:Pv’ŽjAq‹8/bªSŠ©N##@n‡~w`T+I"IIfš¶WH==ŽÀÁ˜z‚':QµÏݲ³z§À¿ž¼ŽµÊèÝçëÏÕ8"!–ÎÎYz?»ÌðÞÏÜ­Ââw©©úñð¥]m“²xˆ‘¢Å™­Íîçí¾¢M7LaõìÇ©Ýà„˜´Ì­QæææþÝrÐÄ{ÞÁ›4H2¬§ÏÁÐáãÊV²\k•º×ÙÏΕàÚÁ¦´ÚŸ‘·¥´õÈÈO^ˆ>>?èë¦uRj{OOFFGí¾¾Ÿ“ŠaC^”œÕëùòÚå|Ž®å¸Q~?p™°Ä³Â¼¶”ËʰIJ+ˆk…²ØÛ‘ÊËŸ¯Ôfˆ“íØ‚ª’GàÙ“Ìvñpw¢ºñ±‡Ú›6Ÿ‚]qhIüû´´Êåf]Ç“pß¹sÏÿ©N`u»…/Òξ`‘ÀÿÞ|JN]ZdbxðC‹btRNS>æ* 3 O€A*þl섨¬K?û=J8_ŸÃØûñ’ÃqÍÒÕþ(½î÷‚Ñéï,Wû”éøæýü÷Jü¯çµº—™æêŹh\_ÙæÜµýŸúIûc×É®³ŒxtÌÙèmZ¸+IDATxÚì›{PSW€/(:¼„@x ¸Ð òp€edÄ £Œ ¬«nu¶såÁ ã"T^» ƒ–)´! &€âJE^¢¼¤<EEÝjµ­ÝîΞ{î97ŽÎN§s¿?n2œÜ“sÏw~çüÎÉ€a fe±m›…Õ¯_¯'ÃÌÍ'ÄÙ–ò–mønë6ylZçFSEr²¶/°á*^6ó~‡"¡†"T©—Dâb.Ñ¢ag† Pÿ½€ š›ÍÌ´4L×,0ÐL—æquum´ ÉÐÐ¥:k#ü×êP LÛð·´™B7r½Ïåääœóæ¢-œ?¯ÅƒO©|ýZÑl•ˆD"í„sÍ" ]îuà÷ÐØ>E˜×À€¥0zï¢i,¡=pœ9˜Y¿XÜ*goiçrÛC6°ÑÕº¸º¾è,-½îOÓ)ÿœO  ÞòrÔä=ðvCZøúëóÉEt!a1ÚÌð¦—TÁA"Q™HM]$¤åþ;†Ðàso/–ÜsAÌKl~E…Fçöm¤!{tìsëÑ‚[Z‚±ÀÌÁÁÌ@T(´+fÂÃgíè€-|ÜØø¼³th¨ôúZІ ó4¬«Ë;9G^Ý:¤…‹œFƒéÃÊm6X“‚ªA„×÷Ô“à"šHt’3RÇT±¤wEÌK>ÎvÖVsrRº}ƒ4LO·F7LOOGGOOÓj©®Fzæç ±Í™€Íp,Ø`Ž io¯TáˆÙ âÁXxa})ßß?¿Ôš¢aß|þK½sÓÉ“§æ8yrÒŽ´šÒgx¼æQ HÃÞž½µÙ¢ìZ´†‚Éa ö’r|¨¨BÌKæ`ÖÎzeO¾Giɪ¢d²h–Ñh°ÊÌD{ £a³kØÐîøI—Ðõ‰cûDµë¯\yaOÕÿàÜQ’x(¼ó¾|Kž7ÒBFá­Á«Iñ²r^¢EøHÏHßðÈp.ºví¬avVX¤ÖÀŸt½ƒOášy &ë¹3­†î ÝÝwîv£4˜™Ù•eŠÅ²ˆõðJçÜÝíl(Ó’c—¢KªloWJÁGT4 Wž?þÓB”|õãs¤ÀÑpȩ̂ h -´9Ò†ô2U^“⪦×yÐd)«[«E###"\ôä ¬¡~rRXŸ›Û ÖàéZîOx æ%IRŸ|­¨€5´¶ ÄånU+Bƒ™,w¤º,Sæá[p .ž-¶ï„—h›v•TÚbcÒ,•ªPËCè8ÐÐh <´DP—è›D4œ9úwÀÑ›‹ºœssäÔY ,”ü|ãÆÏ% S}HZ0å!¶ ¤†¾‹#i¢¡ôÑ#aý%Xƒ¹9éÌKJÃ÷ÄË®]†ž ¡\£'zêç7*WuÍ8¢VèÆõD»¶©pŠ^æ”ópÝF79##£ðÛo Á JÆSŽZÐÜj¨Abˆ¡4|wõª°Tƒ²ð¤¸£Ø•oïESyÖ¿Ô^¾Dh¨ÊήZ‘ìjìÙ˜¶!‹?œ©a˜OIX{CTr€*ıw¼·%ÞÙ#4\&÷êLé2R½m,šMM*•öÃ$Îöí×Ôh›49Iw¦,ØñÍ=éëÓ PÀ¾˜¤Á3Ìî']›3Ũ;86ä¬r??9ÈV¹Ðö Xx¬Î¢QLï_~Ë}Ô âDoA­al ¥Á×,—7ól´>“ïõë¾ê ¼[ÍÔÒòô©ä¯þÓ’…e„…wôÕœ†ôôÊ÷:Sbïð|×£Ù«2RDfÙ+(gåöÎ(ÃÕ3½ˆ: pÌU]9jRâšÎ;a5…n7Ðgí°³dé ZdÄJÔˆW–uÛ`š²ÝŽeh¨¯odd°”ÍFœIú>y⫾¼Ç骕ÄÌ’EÔK[íœ^3q õ'¬œ€‡ãéI[1‘ðl•‰oÝ˶ÂÙ{—c/—Ûë¸ q”±Ôõ±f!Ûùô¤ÁÀHßÐeiiI>—Áÿù˜=À×7@}¡Ö×'W}ý÷­’½ÔHŸÅ¯ ³³³³475…VP1‹x^KBåûÖ®»ÔÈe·#¬¦&l‡¥¡ÑRÝ…+èK;ËŽèHª]6Ç™Eü|j§µµû·ó[h‘fÖÿ-5‹a>:Ëôô–éüúõÚc˜{Ò邏Œ?ˆ}ËÆð–lY½›`õ–%4U,^¬µ·–§ï9·üxHŒÒˆ*]kâžtšþöÅ K‚4}¸{ÒÜìà ¥aºîzzî4¿ÍÙêêÚj’7êè¬Y½z µ;ôâçýC¼ü´+ScȲ˜Ô•‹Ð©ÅƒÎò³©‰‰ qË Ð Ú5DÍ5+ Qh²;þài´öG+‚DÁ1¶()É„ú­øhšàpø°ͨCÕýȾ}GÜQßl²â™±ñ³&4?b9üQ ˆ]—·š2¦c÷Ì'Š…•ÒbÒ¬\‚´€ã‘@E$ú›—H׳ţ®‚G%®eD’‘vüpú‰éi ؽOO: :Ù:àÙ@‚Fƒ±@` iˆ›†qíA/ U½= {ôP’>?tvÍš³‡ž#kÝ(H‹K<‹;†Ÿ]CÑpd>†-qoÄmAZHOÇ##q «>¿±ÂØ6êÓUPwÄ'õÆ »‚ˆ„¨´OI6ÆÆÿ Xˆ‰4qH¢v×G1f ““’@Å`Zjª`|jêgû÷–Z@§!ßwøcDA,ŽÇª‡n, ÆØŠCÿkßlZÛFÂ8ngÕºuâȇxY–ÀºØ`B ¾ÄãâC`»Å—¥äÐC # Y/ˆ‘²œA’|±nƾꌿ‰¿C.þý ;#%}ÑŒRrêüGŒsˆÆÒüæyüÜ]\Üùg¹#–=ôxÇ1E`Ð/Rózß‹š›“<íAžÄ1)|eb¨™Š}É…³ …Á ={-¬m6†>—á*ôÃpIc¨ =`EØSF…Ü!öÚòê*þ›¶QAŸL¦c-ŠÆŒ#áý܉€ËâÀ¹.—º¹4†ò—³s´¸»[ ó³/eÆ´'º%°( ö'u‹FÜ^¢ÉƒÐ²Í¤ („CQ6@´Ý̨-%T‚ ˜˜Ø7‰ÔjˆKUï ‘¡ $€ØÄ~‰–<ý˜…ú>ÆàûcIûP`Eçúf⨡mVéHW]¯«ynä8#zK6|-TÓTÈ÷,kÑ$ n Ê))&¦“…“ܯŽÔ¥¬!¦AD822Õ¦à›ÛMÊ`‡6q=±ä7¢®ªš:Su Ci m‡µñ†¬ÄAæÏâÏí–Æ iÆSá¯)€r‚f“¦PÂYŸ2«ý»†pM…裳X¬ª§§ÕÕbáìáá½é£I(ª0B´‰5D •®øD+V4y05œ©nLLA®±Ê¸¡kª@5ãHMcÀÖ 'ÁƒÆ 󣘃e{ÈÊå°K>^[Vzµi4ÂFdÔG¡7ІÖ=f¾1#i«·^se*c-¾u]ü¦ùîÂyËÚõëVýLrzA†ŠK”…¡Ôv¥ékãHn»”Æp Ü{Û†|Í ¦ÀNs0 'ŽiaÂqZhÑàyqé„¡:Šh§ÔÔ¼„RæôrÇfk6³( ±ìë0…!ל×i²ó !9ð%Éé¥,V¾a¨0«بS.åÞjt žÄ; C®Ø¾5boÕv‘ Bä~41ÒÆPQ]îÒž˜µ\~ËÝikðHlÐcÑæ+C!<[`††œì& ¤0@ƒgÃ00ƒá”Ά˜²1Ô×®«ä±V–SÊ糜RO­IBq <”)? Þ?ãV…Q5 ÛhÚÀ¶t0lÁíéÑå6h±1œÿPÉÒpné9¡C'¬'sžpˆ†Ã:{vy”`0 $ÁBüR:d`¸’Ïš&#:'Þ½ÚjFâ+ 3µúÈ|·Ë/"õÚqš$=÷ ¼ƒÁÀÃi=«Ð†G0xƒN9gUaßY8Ž=ûìåð¸ÀÂ`ck77øº¡0œÌÁœ·WÛf¥˜ñ\²”`P ƒ®§„w³<ÆõÅ×òU!×Ë @úªè¡ŽB©ÿ*ïúÕˆ$¬Qµ¿£¬´P_+æûØlæ IœdJ‰!›Æ!Á¡”ÆPQ¡(úèñä£FCH†4ç³Î”LádÞ”KÙóÊz‚AÓ( 7?(ýÅ¥ÝõONºÚ_ )/•¿й¾gYw~?W¤Ê·ú|Ä÷îkmçëßä³*ôq6…Ü@Òu‚a¹¤0”jª$9µÓGß)9Ðè³,Ñ÷}uµ™Î;Ÿ?¥ûLá'k%ƒB֓Δ>–~vàøz R¾)pJå¬ÅR+튬 Jé$‹ÁrJEî»VŽºýù³ßNéoË"7Z– ¦ûò•Ö›¿¼¿!.Jãá)§«Ì¿ÃúüéúÇRþ Û)qŽÃ=é„õ(iœx†Ÿ÷8«¿¡|1éúhvQfíõ»Åb·Ï:Ú+t¼Êá R~mûNç]2¤ô9ž?uÊB¾ôáº1æ>^]}:lµŠŒ˜ô2îH6ÇÓ&OúN^½yóê„ÝßðÏ |1úr…?{Ü÷7ÔEñÕHpPÈÇÊÚx{íµ×^{íµ×^{íµ×¯ÕV•»½:øµ IEND®B`‚images/menu-2x.png000066600000030600152330733730010023 0ustar00‰PNG  IHDR €‘;wPLTELiqÆÆÅ}~ !;=9~~~omp$@J††„}yuda^___omj‹‡‰}{{T[p€~sss€€lfg‘YN'ENE*>B€€€@TŠAa”EX‘xnO[[|||œœ[Z[WSC.@NjQ8(@L¤gZYU1ris1BXEW’Vn„qqqœ? wtPmIY¨š©3F0j1$heVÿÿÿáááÿÐÛïïïòòò€€€ÿþþìëìêêêæææÐÐÐÖÕÖöõõäãã{Y···™™™ÙØØÂÁÁÓÓÓüüü†††ÆÆÆËËËÛÛÛŒŒŒÎÍÍùùù¾¾¾«««ÄÃÄ‹ŠŠµ½õ–––uoKÉÉÉrrrúÙþïèÊßßß±±±ÿøÔä·¹»»»ÝÜÝèèè%.J®®®¨¨¨µêê›ÈÊÆüÿ±ðñ£££žžžµ´´ùðð[0GúÑмúû“ÄÅ?*,uutêÆÉ‡³´yyxe^=¿ççôöÀܬ§ö££þªªÈꮬŸ€XöïΦÄê»Èì+o½,·äýößc¡xßÏûüžß[ *T¨P¡B… *T¨P¡B… *T¨P¡B… *T¨P¡B… *T¨P¡B=®¡¾L¦o¨ë¯ë§f¼õÎrjÛQùŸ†êßÙ[]mêñ¥ÿš,¼ýùRjóýe‰Gø‘î±q_äxð™sá{pÈï’÷î9ÿ¸ðÇ*«ñtò i ùÅ^ÁÁËq 1‰ûØoðSˆX,Ñ÷°×‰dÙ· rþµ"L [An­ ``Ç€Uo´½Ø^ÁiiÁ^D¿­kD¤p‘DF •®üçUEsé¨zÎ'[¯Ü{øÐi þXu¥Z; ÕA ¡¿ †/_ 2¯Š;w*VÐ|s´Î¼‹½ó󽉾÷Ão÷;È·’´ÐÚJNÿ ü°ƒêª°IYm­l2ŒÄnÍYÛÙík9ä’k6nàn\ãJ÷W›šŒ‹Ãá <â#·-’Èx„wtg^-*Ê›Ÿ¢¢«Lw’>ýÔY t0/TªLcc/‡…0oŠ!ó|f&vËü1 ÍÍ@Ãù»¶$Ÿ` “_éÍÂòÉoÖ.!Ä rKLt#šÄû¯;È~1I õõ¤4°K,eØ&ô°þ››ýa¨þ<«^¥ãÑAx:U¯•Ç ·‘ܹ}m?5s;2¨T˜Í å 9Øáÿ.ܼh„áÄïúsÇ«0?‡’´à´†õÀBe¯?ß•îžñ¢ººá Á´÷¦2ËŸ••c·òL8@Å-´´4ßÉØw|òæå|’ü…è@büVaÌ®q"Äà~\(<îNˆá’ƒÃ-ÔK†Hhð€?íÝÉZ€á¦äfíä ÔWó´*•ÊÊqqáXÁ@Ç#·>nkk|ô¨¯¯dܨP(F¥Ba4{9zÉá?ð±¾çyy9ð:w‡?>w'eaõjLC1RÕ /´à7œ]µÉ×ñ÷ûl,\ }Ðޭħg`á\KKKYÔ¾„”üTjOÉýðgéI_'¥ï‰DéÉÇ1ˆR?;*"á:¾\¸î†!`Aò”„®FÃ¥ÑÂJkk¥µR©´V†úꀕZ×î Ò®S«zÈÍ Ã?5ö ß-6jÌJÅ¢Qš5ƒ¶C ‹†Ý·!/ä¿îÀCƒ/Œ…éiLC1\«Â°>ÐTiÂ-ÐècÕÕ³YáÞ‚²q¢(nOŒÜ¶bÈ´s8´Ð f†3'vº1P{Jœ¸èü3QG¿’?ß³Ç Ì8º#CHˆá LÜ­WìgmÉÃ19 ŒMO…§OF‘5pÁÑXa†ß²§V€Z»xjuZý ½V§ót!³¾¢sÛ …Gw¹Å¥Y1hña[…—C ; 1÷çE9ö½ž˜"Ô©· bŠ€Âàßn2…3ùËàRÞCÁָײµCYYYMM9,“ÊkžÁÛŽgÍ5¨en¡¹åTjJ¾3+0 Gã zJŒäØSÞÎzlÍà½r=k†Æ:˜Ä¢¡aØ;!OØ1ì>|ð`Òn'0øÊž OdȸJ³Ù<1¼_+³ 8NÐé®<½^¯SËåjð\étì ˆCÛ#áËŠ5˜||,ƒ`` v„ᘃbð¨Ê³å,›-¯ÊÝ‚L(Wlnؾ};) Gºz;™Zmà2°”Ô–I…‰11ö ž‚˜DºË§ëꜛ° Z¸·çLólOé AOi¥hõø˜qûö—Îu“X‡Ó‘1ˆ'&Äv Ùѱ±ÑÙN`’dÀ‚Á0ú1j™,Œ˜1 2x¼—%žV=€G­·z.q à¡.üÁzáQ#Ä€­`™W MitG®.b ¾96p9›®Ø¼æ`Ïuø’²0«!;›$`áÚµûj_º‡¿IGØ[-œW¥L„„L¤`CÒ3¶f°/À¥µê,œ¢ÜvN] WѰ§½%¹Žàpç}ï B ã¿™{ž€áŒH|ù²=ïNÂf8&…±I&3ô€…Ö!š†`‹bddd, ßÿÆ^Ûo0P0p¬ºOžU¼èéyQè­<ϱú,žA@™dTh”ÆÁ¦¦A£R£hªpˆáô¢!ÆÀ̳Ùlgñ䜋ÍÖQÄD´0qHˆ“ÂCPÃ6reR sàÆk×ÔL¾¯ª²’¨µ 0ÔÛs)$iÛ¶¤Kõõñ `¨±—IÏÊÊ@n°\Ê$ÆÀHÃ0œ›Žúêë¨S` {Jù)qÇ û«,{Ã÷ãóz1¬ôí¨v‰÷ì™Á›•Mã÷0)ôOµ C£h–—Xæñ6ÄÐo †µ½r(är-æˆÐ zJ®]KCß0W£Ñ(±(5DeÒéÓí9}ú¼ a(ê°] ¶Ž ¯X˜Õ@ ƒ/´4 „öRõQgµpÖ­ÍR™Lº=äÐPøg ÝÝÝåÝÎÌ ^iÂ5tGEe´4Û{J ùèýUˆAðî< »¶ `ø&Z|ýº}'Ž…'‘b±!b bûmÂ*¤Ö¡Ñ!`{] —[â0„ý« ÇPJÜMZúžbPÝ7@pPéu÷Uƒü=´°À2©öV‡¹ãʹ™A©p¸€>Vµ†* ¹ ¯srs0`¤Bél„R¨ †PÜÂ昩²²rŒðãƒDŠ]Bâ¤P 4eµ„ ûÌ× ³0WüuFC]s3ÖSªKOØ…~*)ãö÷?¾|{†èDt —.Ù1\Á[«WÐ1 µ F[ÁÒ«FaÐ,x‰A©TXJVÒ~7Y:…¥tò-âžj»Z®ÖjÁwuòx]@ƒê¾V žnGë°Â4ÀÐÖØw·X b”ÊÁq¶c Uñ_\¬ªºð‡Ù\¨BÁ—{2·x˜)–À £¡¡<›ÇD·ð8"00âñ¬”³oøçTù³:q .„'Ü ¤öy¨0SxHŠ—Ihf»I0Ïjì'Þˆ1°Çÿ6£¡Ãp&5a¦§„ˆá‡_¾|g†,!†[0Ñâ>ßÂs@ìæf#aj­ {ªøÄ0$Øôo’zp…î‡"Í!˜*ퟚê/B8ÍàY»´j°÷Ë{=Ùt:ÛS+6ÔÚ.+/íàáÂ…gÜP'U@XŒ#ŽOº;¹†“( 膓'!‡W’ žk \@c$B‰Dò8Ëc0J4ÀÏ©¶wuÎYè5™ºÆøÄ¨ù²¤ÒhiŽ| Cwùt÷´33ÃÒŠ¿ÿsžØSJ9ñvΨ©ûà1@R@Äm2Б)t¬:x…aCQÑŸ~·ç<‹Îæ$Ãïí3é9­ö¹¤H6naˆ ·(¶mß³‡Ãeøüs*0lJ‡žíâêC´ ˆêô¥2ÌúXP£ž8"é„ÝŽ²¤äŒ0åIè5|áM\ÐÚÙ?€t@Ñ¡ý@µ¾ ÍÚFcYJ“Xî2$Þ¯lÀ¨˜wXÝ ÿ.Ü‚¯ÿÂiòb z›E†HÜ›§µù\ËßÌL˃|H>†›ÿºýV sK“N2ÝHЬ&eŸ={Åg×E%¿¬=øq2ä%ãÌ09M†£"úy ýÙ‚'ÓÔ˜&áéÝwq`€» XvÁ#BÇèè¨L69ìB OÊVÅÃe0$‹° ¢dG2Fœ­­N§»µ½@§$2(#Ùdha\Ç~2´ìƒ´ctWUU5øƒÞéfoÇøè£Â— çáåB–‡Ä” c^¸4úd(¾¨Ø¹yóNÅÅb,Ã] °štét‘!L9èg]SBiÒªàdHîÕâÅd  eÀü™–á(Pd•#ýóüÍø'­ôŠ0zaB6©V«ñjRqzJÆn•&™Œ†®<,C^—Áhâ’&¥Ž8;ûGÜ#’éx‰ç È€CCË<+-nŒå§ çåÔòÀÿ_þ˜Õ¨íËÜpÝB¹&N†âaÙÛoˆ‹¹Éà­&yõÞÍb'.ϱ×”þÎÁ¡ÌŽ ‹Ë^)QGWOï4D†cŸPªŸÔûÀ.°ÊòÖ–’Ú÷eS(!°Ë Xç°ã…6Ä ÝÝ BâtºÝNoY•N“ 2lØWÉ J+÷ë4ѪèpAH2 €2àÚªÕjzðàºIkô©.ˆtæáW¾"³fÆN^òðºä§Ã90ùAŽ E’'³¬JÛÀ.C9â¼p¼ºÿ÷@³f$@ŽÈøûY±t+€ßÐ7ÁÞ©Û·§¼÷„% ÙlCIaì·ªðx‚_ð³2ÙäyüpkJ&‹ù–&̨nŸ›ª¤Nt"Ãÿ-‘ñqÒœœ´Å„˜´œi-ßÁ3/ŠŒ KYñýw~DCcò’’òâ¾›§ìwABŠ¢VýD¡˜U(VÇ¢ƒÂ¢ø[< 0<ƒy‹Š@7ü(©!â/{žÿ²w~»i#ko›­0dSVG\ÑîÞ䢗ÕîU¯lÙcc-ÿŘFÈHƒd[øÆF\Eâ)ò <À¾DžèŒM’æ4†B¡P( …B¡P( …B¡P( …B¡P( …B¡P( …B¡P(”Ÿ‘³V€vëìçºêzÒmо£üO©µnt4eeܪýT.ÌáðŒvßÿï>/žá3éþ¿^›÷0íÞ ÂÝpùƒªkðlsÛýglH'¤Ä/VúíÆÑuº¼ø«Pö{¥ì9mãíª§??yÈjv¦Û¬ÖAïZÅV,õÖíE}ÖêÐ镽Û3ƒcŸ3ˆÂÖY;±eñáU¢l'íªñnhY/¶¡ÞÎÉ ,_Xö¶õÈžÞ-ƒxešØ…DP7‡—ÈÛÀ1'ÿÝÏ»eÏíDâ ¢NE6›j6¼ëu:½b ¿kg¦ ˜Y»Â°nôÆëbÏ«æfü‚Œ²~þéëûO¿]Ôz˪õNïrôYøg„Ïgl2.;ý¶ù¥ ªSÖeš]`Ù—ÚPk¼ÌiÉn—m ë씃¬_q¿®æ¯Ù,˜è»÷—[M,k‚Ô°}ò\²Ü³°‹ò3¶n%ç{Gª¡s^lCï0ˆ%4ìž½jŒ×뜘ayùA¼¹«§i~$¶ž&R° ´c=1,+wo£“Ì\oêˆ,ïnt¶¡¹fÙu³T†õ ªÉ»P͆®¥J’:ë½zõ!Ë÷ Æ8q lÛ²Æù¦è§Év»Z7ýv°¬u’¤Æð–WüH"_áÃÞ©—\³ö³ÈÐH¦ªôdN‘ÔiÒ¨äÂpXØ.1•‚öGÆŒæM/7 Caã~I=þ[sgã~eÄÊži+ ćbÚ¶ÇÊ€]à‘'ÉÒõ³E´¦Ô\kZä TÇaEÁ´Ž2(†ŒŒò™áö;’EþIÞ®(C’ËàT°Qcƒ“±6º ™ê‡ö”C¦~‰ÑMÄ%Õ²ó¥r›¦i¶{U±e6²5»8)ƒû,å2Ô:HÒbõkU\X. ùQi†ø3‰4ts·n^ø¬Sò;¼3-¦káj4&;Û*ïZœå2Ø6T|@S!–» h²“ë NZSjè‚•-S8Š"Ü܆GØáF³¥2è9£ÑL¿ã¦XED7y»š õ•–o ¯Î‰mس!/Æ}²WqÁ`J:)×Þ^ÚöÄ ÃYèNlxYiƒÐÚ¯xÖÎÒäú¯•ÅY–à"S‹³{'eП¥\†fÂÊ#~ß,©È… †ï… øÞ¡J2t,‹ñ—<¸žáÿUv«ÕQU^ŠYç1*± ~êÛ-Í$»ù¡ûøWˆ$2`p¨ÔÌdá»Ë=h.l¦NIM©>çn㢇—:t[=0+dxµ_ÏJ¯›Ã¸`W´Bà…ëõÌy»š 7І]øäœXσ6ÊexHÇ×^æε7W–@$I¾uõ&ß4±ü÷!˜Ï“Íâ÷_ÞËJ§Y£‘Na “2œ T†tOmà”¹ ©¿Ýúia^V’aï*ÛñÄVÒÆ«Zw°ZIšÄ¸32'ª˜ Ä2lÆÆgbAAFv”·d° S(ÅQrcYc=Ô”Ö%5¥+¡Õv+dgߪIû0 a–c‚á­ˆ¡iB±xT5M‚.¿}1© {'“…9jq„H†~»ùöÍ•á£û1…|ãêÍÛf»Ox­ŸôÙ|³¾ÝýþËJðU›YjªÜ$`Aí” óg)—¡?ˆ9YŽ¿G–¹Xê»øy”ò“†8®$õµÛ|ÌÁ/µîP3Y½U&ƒ Å2‰8}µ³á0³qC%–A['ùg @ dšX|˜ÈD  8ªå„ÑÃÅJ±5%ÈÏ%á®ÓìUv 5 È`å˜`·EËÞ¬˜òv%ê—8# <삆R2¾Ì4e¤lº¹ +Q‚4©‘ÁäòÊb ¹·Irë")Œ«ËÄN ×¢_}¾ÕõÛÕ_+udÇ‚ƒ Ù3¡· *“€Îûi¿*†&:$2é ëãϗó——ùåg®A½Æû (®†çï©ý>ÇškÈ¿ñÖ¸Q9&8d#W9"GX˜3U¿;[ÛO0„M·IÛÅ® á¶5„d±\æŠ@ÚdKûuÆÞ¯n ðè¿ÍÂÇ 6Í|õƒ…‡Ë—æÃÓWž‡´…a5$Œ%a6ÝÈ$‰†Ø*Š"Q³(§zb¢•È{a²;ÐuliH”ÒZÌõHÇ€Þ†{E$2^¹gÁàPÓ( NmªBt^íòɤŒ–%MSj™ù‚›…ƒ§Q+'’¹Öc¿È¼ãÜ[ù×òÂMMùƒÂp¶ÐL¸ òlbOóLç·ïÏëX`åg/€[[naXBÀ1Žq—›–eFñÖF#ò3¿c}lÃÂOFhx›…Æ•-‰Z>éx½š…Ïü¶…!ûž xþ8 0Ð ÑbÃYƒN§ÓWˆpÐZ–HP ïØ`F†wŠä…;4¬kJ*PÀ>0ôúÛv#VetX0п,¯`Èk“”$Yûœ tF4’J‚¨¹ºåÒ ÍÛ…¸T,IôBCO”F—laHdR  7³{ ÃýÊÌ¡òˤoK1HfÏ>ýþ7á÷¼/´¼–Ðd ïL#íÂèƒzÇvÛ™Nã˜N¶ÍÎ }ˆ~bÄ…ƒk»—k΢$£MY¸:ø0Ø (³UPÁ@3æ€ަÓUF` »2Æôj‘• lj¬¿¦Ö”¤=X¨`0¶0ÄA7JU& Unƒ) ëy‰V–j—³´z_²dêzºG`8˜·©FˆÉÖ8µ"Öi&Iµç`³sÌ‘@ƒÔˆ5×)ÉñÛûû•nÈbŒžª{N9ž®ö в¡s‰âo`0=ݬÃÛX™í¿`Ðø`8hß—eÁ~"v÷È{èÛ×Ö¼zÓ04{BQM =tú“\‡{ɤ•ßü…ù+0 !¬­"K­.H@®$k1aht–mã í=Y Kž›»0XQÀ†¬Cs3©ºN  Õ­rÀp¨è ^œŒyûΛzÐïüõøýôŸN«øI§™‰©j}úË34ÅâânìmÃtpLâx㻋$å;4öm®âÜþö£á9ç„ÿ ˜bŸöFw{RõÕz¨wC}ÇÔ›·…¬N±×~næÉ^ÿà+¯ì“û‰¼"Z–UTÜɪ´mEhKRD‰^-M3X04:ã,^Ѱ/ D¤9N¾…a =fà ©†õ¤êº´Z–J”›X•Ø04zŠôñüÛÎùí$®„œ¥ Bt×"fW²f/öÂË&»ñª¤Uè¿´µ CH„ÈM1½2Ù§à|_bŸèÌ´ ¨+3…³'{r¾ß íÕLÊü曯ùÞû£…Jcßa0˜œ¬G Â+ÿýíLò‹/UžNœT$?ÜÂMSÁ }3›M³–›ŽÇOM¥£PÈPé<å /d¨Ä‘ÁQÎOâ–ó°ùÇœáQ†èŽ'-“*œsµº06DÕ/Uzè”?^’e0J8Ú¿ªŽ1W†t½¥´{=ËÂyJñÎŒ¸. e٘ʠM,ƒÀÊO;Uà ©Š²iݸ@—@–aKªÔŸð‚eb¾šƒ²X­LêE ÙCTÆüåN>:ÜS“d‘·,^”¥õážÍ“À”šr}¦¿~`îˆ2ð)ÏdàãÈ tNbJ[ˆ^ðatݰ£; ñà z}7Á쌻by /^×1y”!_¯×©d§ætbË€\àÕŸ=Éà,7´àÊ ±kŸ ÖMy*Ãms$µÈ2(B%ÐáNÕËH±Ü7ä µ*(Dv›Š3^®fÑZ¦áLEp Å@žâÓ«lYíËx\Ê}µLûÁmó¡%vFW;IÏÊàÖ\ „ÆŒ 34zrœYÜŒý˜l%ÐeCí?¤žÎ’È20ºðV9A§žÃr åVöcCO2꺎QDîMÆÓu=U–§ß¯L¹¢è„è½^X›Ãü$þÞ®LÈFÝGýNÇ–ú›}o ÃB$®u¡ïSìÔ[M¢q•]9¶iBÑÕØÎ=‹È‰#ɰ¶øKbŽîÿLA“e- qpçÍ ‰Uæa äË <¼èÀq£ÆŒ1`ðQø Á2o|@ò䉓 §à$ôd!•'L”(!á™E¹té& Ÿ6 ³HÁg¡› Aûñ¦‹Ä't¦áÐàÔ (X¸paM …t¤ (C C;L™"%J vöh1¸Eò6MŠ!"Ì <ÖÚ !#FŒ-ZÈÿô¦sB:"pÒ„É%Mò,TS( ËËP‘"ŠL,TƒzT 'Å Y±!N,DÂ#@BPoÈGYd±Åƒ¼À‚¼ñøAF…@Èo €Ô·…ÄP @Fh;„øA•'ÁR 0ÐP0XµA©½¡Ù‚Jôaã•oÌÅ‚‘ÁÄXÚè\ „Dro ÆØé6Ô@à T€Y™8øFV 1„uAáÅ›qÎÐÝ . AÞ.fYhÄÑeµ 'wß™´Â _(dÆ@DÉáF)Ñ!–}Ѐ’JýôéöñÅ^{‚$8Qƒú÷_b ‰!ÅE±—o°± oô X JQÞB T!­´ ± NoˆaO.´W`E ]±` …Âêþ°QllÁ…¼]\Ù`ä¾Ñd@ â€oL†/ €@Woô…YùZð¸ Ñ@ˆ u0€Œ(•Àµ2Çp A;ˆdo1Ð òÕ¡€ÇE:…¤’`PÕUk˜‘2LTÓw˜±ÀN=Rͦ³}à± ²€CwÄÑCxðÁzH½@”IÐ  ¥Xq0D »!ù c, ÿÇH0H‚5vÞ(|c§LgJœ(Éž…3®iB†âÄlæñ`K–,XlH¨P ŸäQØÇ$Fˆó%/ZB2TÓŠÂ<˜(¹i¤È!=êÀa€åŠKêâ¤É’$8ò ÂÃK7”¤QH”à‹™n¬@éÚDI’#b{òÐqÖF /kë¸ ’Ž)Qžter×é—Àrå6•+3ߨ‰2„Ç í舃ø‹( oÿxCG ÊæV)”2ü9Þ]´hQ瀋l¶hт˅Uxä„BYÌÇ +TðF3]À[è7È{À4†Òµ€à *Uß„F*d……¾¡ÂŠ+QbĆ aa ¥ £ŽF`$ÉGl‘ã ($Y„4I iaa ` XqÔPÀ—¨'‡…,HB hš0Åu\€€(Ä…€ A1 g’ Áf,ðÆÈ™€ ¢Ð$HDåhˆ0¤|Ö'† iÀ¡ 0Á Í‘@U„1á  ‚¬Ž„B4ŒèA[ ÔÚ@LàFo íQBdœÂ"`h†@H(Ô¸>A¬±ÖBp°ÃµÀ{…BE tÑ8àlP@Áh°Aqíµ~qo|@ t0$H0 «®Q¼‹í ‚°É‚D)Ú‘þ,ðàî»5$üF·e¡Ðeü[`Áø  &ìp½o4ѵÑC\pÐ4 ªÃdƒPoà¡G>ø †h¤ÇB,lá@RÐÆ+Fs,q5E6( Gt ÑÆ`X!ù~, ÿ€~‚ƒ„6lvoŠove6„‘’ƒJ{‹—˜eH““.l‹y>|b y‹k-œ”ªoq RQPNMKIHGEhŠv›œTŠtVTSµ·¹HFECB ‰oQ“KŠ XVUSR¶¸IGFDC`_QpŠG‘-ª bZXWÈàÌãÐB`?ACëvX²DG—-Y¸y‹ò¤‰gæÐÂÃI"5ƒ°½á¦ -YêE°´HÍ!_~Pô¢ã;AÞè1Õñc—4˜Å)²RGŸ0ÞPdA>ùÐQĆ  RÖâ%ÇÏXÕXðæRFŬ{3EREs®Þ°Q#‘€˜ÿ  ð5ƒ"*œ ( cƒm ÞøPÅá€rõ¼AãÊš7eþÒ˜1ƒ #¢2pùÆJc½ofÈ-£É% R§Vô£1E1bÇ€Áäô‚Û·Y»Vô¢woŠ20`Р¸¢+Ÿ(jÑÂ…s%ÅÞ|p@ÝÁƒur÷Ì¢;‹Yíȉõà|çäDQ*Vȯ𦃮ç#H0ÄúH¦½@ )ŒŸ u¼ÁÇPÒí7`€ZZ|ÁC(R‡ ' @àí½Aƒãµ1ÁƒXpÁ æ´Ø %˜Ð¡‡êõ H€lPâd mœ…#ã 'Xö†ŸƒôÑU*b€p°#ì!YdŒ<$h!.,•‡<úXe;´©egI ,(V‡@„˜ÇjV)‚›m†'‘:(öF“dõPÉAÊeœX´è„+M,õ†l<ʦ›[†p„"ÚØ ã)‚G„AàŸ"àÙ˜ NÄá"&˜zk$88‡¦~ƈ®!ù , ÿ€‚ƒƒ"„‡‚?ˆ‹ƒRŒ7ˆ š][ZYVUSRQO„N‹Z„|a]\ZXW¢RPOMMQƒ|ba°X¡£ONMLIYš ­]±¡µÈMJIHMbÓ UÖMKÚGFV‹=¿ˆ êHìEC‹ .};õ¨ ;"D„D‡ ,!X@h €#‡–$Tø% ¡ 0ˆ8ˆ $!`À|ù¡¨— >hTàÇ— @€ êáÁf „A"(…I¨ ^¢ê˜"èÏ W%Z"4‡¯9ð0a³Ná¸#±È(T˜[!-xoØà%È‚… €íÒ Q£0!À0d$f¦ 3fÐ ”8C† C‚#Æã‡2hÍÍ 3ÜÑpñ¢s *‡4`î L”4d°`á‚õ‹E8|rFÄŽ'÷¥£bwïG=ÙA}‡ŸD0qE +V´XÈÈG”êÔ1¢÷å*TÈØý öî»/wêÀ¾ í$”p )Øå\—#h‚]„€Á-AHˆX(T2Ù!ù d, ÿÉH°È4tÞ(|“Gƒ %Jœ(0Êœ…3¢¡"‚âD}Þ°A‚.°I¨pO«°¤øˆ ÃeK–qÚys‹Â;=$°Y §˜.\´`¹båK-µÀ` ¦‹O,VªPàF¡‰1î¼±#ÁAƒ „[VKªT¦D±ˆ¡ ‚ÞÜÉðàAƒ» Ü$m)R¢@ “ç ›M–9 Áƒ®‚.ì3ÁÊ)Pž8q"AarÞ´™0!B„Æ gTèJÙMš0 ¹‡Ì …=(ðî-Aî›=RŽðȲFa*N”/ÿQb@!oðX¨ÀžwÛ7T&ZQ¨‡Éø$ItN[Ï… ¬×ÝYx…B äwÄ‚¼QFBl\€Á6Ld¨ñFGѡ̥`€A‰ S AD.µÔX£BE`†BB Ñ£Y`¤ÆDþ±m¡Ð`€!A.¤”aÁ€|`xà?üð…—X(”üáÄWÀñ† j¸@Äs…”Æ7ìBZ I‹oðá…<zä¤ÇG;4ºÃ 9€D[ÎqC: ê…o„B 8Úh (dA|EBñ`Ã¥˜öâù† dä–†¨;øÃ)$‡4Ôðê 8°ñ†)¡PŽÂ"D¡FdñB 3ûjyo 1Pƒ Ô€!„ Â#”p c¬ÀB /À C¶5(Á©±Pª '”kî$”` )¨ðî ×ÎëEs¹ Q r´ç¼î*¬Ð‚ ñÊpÃoAQho€€EÅ$˜°nÁîrü‚œ¾LDÔaj«L° ·…†oÔá-†,4¨PLñ¢‡WT`3t,`XнfÔƒRO´ a˜QêBu˜Á­0!ù~, ÿ€~‚ƒ„7 rtoŠoy 7„‘’ƒMr‹—˜K““.}‹wqw‹{-œ”‰om zŠy›œXŠwl´¶¸|°T“MÀÈ Ì|ba ŠJ‘/‰yÚÉÞ¸»Ña]\bèy.„–ð|¸p |K°k\>.[´HÄfEHa(¨ÍǯEs2ˆÑ§% ,Ò ŠóÆ /`@‡I>%±\±b…å?8±Ù°áe† xɹòã‡4ŠètÙi¥ •Šl8xƒ‡¢Eë(º"‰Š¢4U©L™"%Ï›,ÿÓtèà•Ô7d'MQ­”(Q|¼a“@"ŠlpófŽ+?lGBÊV;ŠÂìØ¼Ãˆ"-;y⤴“—ÀpÞ1BÑ—Ç@5™=õ"«w(â;Ý’ßKø\ÂÍ9€ìÇR!IÂ<‰Eb؀̇7¯yÀÈ‘#H(xcç:2dB¨‡r|REˆ1âÝÛ2aÞ€Pâ â»NHÂÞq1Äòá–4(rÄþ0 b½ÑÃ@…ŠØQÄ`8„YùqˆIHB .P“"sÄ †U‚¡#°¢ '¤P—xF^ðD²4. Ü ×Õ¡Ã' ‚ ,´ðB 3Ô`H*D˜­A béÁVŽ¥–1È@ƒ 7ä C’CÀA^+„èø†8¡Â - ƒ 3ÐP‘‘wÄc~°`Æ"uT€…K0Ñ|ú†,Ð:ˆ=¼ˆ‰³ |ô ,y>PÃc!ù , ÿ€‚ƒƒ$„‡‚Eˆ‹„"WŒˆQ‡<ˆe=“ƒ „Ub„ ¦ „[‹Tƒ> ´¥ ž‚lñ¶Ê  GR™Ô֨ɹ ˆŠgg;7‹ÍøsÈ~v(ܱÅ̤ àÃg‘…  É!(† 3aP b$`Ÿ0]bžô2z0Ò.\¶=ô$„ ~jÖô´E‹S-ý d´#´,X²bÙ…H„h„¬ˆ½bEÁ!¯#F|õ4DP*UÑâ‚#4‚DZC`H™Âw ‚C$H”(a"/(P¢D‘áa&NämàÄɓĈ"£8"Ø%LšX†²ˆsŠcdxj’t“&!tzŒŠ,hLRbI% !ÙÆÝÂÅ‹^‡ !Räˆï$ }Y±¢ø 2hظ¡ƒ/`†1âK§ÖaĘ¡ýFï?¾R¤ÈÎNB^\—1£† 9xD?„7„ƒhÔ‰z3ô÷Ÿ^À'ŸaƒPÁžîuÄaP¸ˆbRü‚È ˆ!ù „, ÿ HPI…9wÞ(|CG!)Jœ(Šž…3ÆÙR‚âDâI@>ØèÁ³P΋€P'L•e8lÐáÂ… =Ú(¤Sf… ¬ì±c†?;1`øIaB™„oøP,¢PP`Á>ùõ‚… $HÈ`Ga‰,f B ,Ø#fvö<›Â méÔ øá ˆ!üØõÆCY $DðëàBB91b9"qØp0¦Y#‚ ôP8E ™7fDˆq†ŒŸ{2.t3áAƒ (Hóf! “Œ!û Š™oTaÂ# …w 0ž…C¼ÿ©C‚Äræ×ß4™¨Ea  º8ðÁë $J”E¡R(Ôó`oôQÇS˜`B ®fL„°ñ  !0¤' pˆþQ8…B  ¢`d (¤£BAPH„B|ä˜c.¦0Æc(ô…?(ÔEaˆ!¡Â“*¬ &*Ä]ù€B ^å ,´ Æ>Phá Yh¡Å•0ôZ,„é‚ Y($…GV(4ÁX¤¹……hð1^ -¸ð 0È¡dHD…B€TaŸXhAÇ Ô P/ƒ :´õ†W|ae(”ÇSPaŤ[¾ëq!¯©q¨ 2Ì@sè¦T@…T¸ÇhÄÕફ 6äÀÇk ­¡M<…ĶùƽfǺÖpà 9xÄ` AÄI,Á„OD…—²A ¦áE 6àC<¬Ûî»H(±DN@Q…o؃DG(”F7ìEÁ_€!F ‘„óvHrA¡à ÃÆë ánÈ /!A Y“ ¾Á†êÑñÇE„}¬¼…/¬¶òô©Å x€³Bk°@!AI”¹uHlMQ ¨Q‡Dj …!ù~, ÿ€~‚ƒ„4auoŠotq8„‘’ƒE‹—˜qN““,–Š N<<`aix‹r/œ”‰ofG!d;·;ElnŠtM®NŠuX"g´¸·"»ªoX“EŠz:#Ç!!Ê;"ÎyŠÁ„,‰z,$$Ùȶ¸Eàåt.„fouÿThš€ÉHW@M•ˆ PVXÁVk œÿ¦, áÁƒ8<íHkÁ¢/ oz¸ò#ç œ;°DG‘[´Pôd°Ü˜0ÈpiɋϟüCтӧ;.b#†ë¢I+J@›¶js2r˘¡Ê`+Š@@Ü‚"½\fÌ A£F™7jÇÔS €8¼ÉCó6l„éÍ‰Š¢ ¨î€€7vÀ߸#GÓ7Q$MQG ¤Ñ5(‚}9äà…z½±†@AEIŒðÑE|ügÜ7ø¡ÆlÔ§ƒ<Q^2½‘FZpq¡z¼€ G7b‰?|!Ä.²GV\‘E‹j÷ƃ|hǤ(@ñCaJ4ñDSTaYlÁ…íŽ^p Ä`1DG$±DN@!Ab¡… l×B$5Å“QÑæ›qJ‘å–äyä$Q·€šELé&œP`I'½A…+H4ˆ†l"1iœQHÑŠy(1˜-¬±H(à_€øPŽ"l𳪠H<—â%{¨ºk$6PFƒÇ±q€ ƒ!ù , ÿ€‚ƒ„…‚]†Š‹ŒF‘‚?O ’‹&%$$"";!dDƒY’)''&œ#ƒ;°;ƒŒ_c)((š#®‚±;ƒSŠ3**¸»›ž;~À;Fjƒ5…B-++*¹«#!ÏÀW=>‹..-,Ú)†M;ß7ă0//è,2QzhØ ¡•1ð¹ ¡¨É‡Ak:pР!C¡2d „ Å B¢Aã–Ž@b¸pP—$QXyÁ‚…2‚¢Ø¸a£§Ì @+P(@ Ž£GeN˜@a)Ñ)9r芩ˆ &`ý#hŠ/`yÈ„¡l„ƒx¨ D¦Çâö¤î—/:z`Р\Blï‚ÒHË  ðu (€0_„BdI¡$@¸Z€ ‚ 8#H2"FŽ4i„ À(R$5%Kº F`/ªb;É&N H©b%‹–.aø ø}@#&Hn3i’|¹,Z¸tá#`z‚HYp#Å;xñbÈ?D…Q„íO D™RåÊ•,âEGÈI‘ Àžü}§Å]L S!tö†àð`#Å\ȈŒ!ù p, ÿáH‡€uÞ(|S§‡˜Jœ(‰…3š1‘¢ÄÖ©`åÈ‘"D¦HH¨ðC “°TÅ *Æ 8a¢‰$fDE¡/^Ø\¡"E ž>GˆÀBaŠG¦9" -˜ê<UÄ™37)J°…7i¼Ì!#Æ‹,V¤@Ñ“„Ô€O¨Á‚àE;JjÔ˜F‹°cKŒøÂO€U= ÌúÆÀ6×ÍÒ£†("B °£u…YªyÇmÐ4tÈɸ ?­ƒz£N …ZtèÈñ™ÇÛ7fœüàñäƒB%‚·& ðÈ€7vxxÿñ²<Ç…O&6Q¸çŒö-xÞT˜Íñ<ø(Œâqý›&˜°C¤ñÆ oD@0¸ÇjÀGo¸‘À]¨ñoÜ¡_„øÃ I!¡ ­Ñl0ÛBY€!„2*ô…„œiÀA‹.b¤…C AÄ !á i AJ†¤ÐDQÄ” U!áko` %ô`ÔFa²!ánXpÁ\ÀF‡³ypH$¡Ä YáQ ©A€Z ÇqðFu*¡L úÆ"HÄg…LPÁ¥Äç  ÄL4áy(„C8‘…JA¥Pòàå8ÀQÆ}„*êP\o D´ñÆq&¼F!ÅVLÀáBqt 8ÜúFz²ÒNA…WhÁE|`À ,Ð@<‡ÄÂ[X1íºVdá.¼@o½ 8Á[tÈ Ñ ¹ÁÁWd±Ea0 €€ XðQ¡Xîv! ²=xø†0ñ\hüîÌÈ{€¿¾AΰÆBt°aÁH Áèü…I8Pâ»Jx=Q5€Æs åQÆAH!ù~, ÿ€~‚ƒ„5>voŠov=|4„‘’ƒGj‹—˜=F““,–Šv\MLKJXu‹f,œ”‰olX54320/.-+*N>ŠuE®Q 8765¶1¹,¼c)\ªoN“HŠpN:9Ç´2Ì.Î*)(' p'©€Ú‡àÒPš›#z Š%nÓóx,‹ä1±$!ù ,Oxª0"F °ê)Áè­C±Ä¥âH~G¦¾Á¼´ÑÔ¯ƒ«é¾õ> p' n&9Áµ¡0…'vé ¢²KÖLÓCóX ÈcbI!ù ,Pxª0"F °ê)Áè­C±Ä¥âH~G¦¾Á¼´ÑÔ¯ƒ«éÎõ¾Hp#j&ªàâPš‚‚0Š]zÒ•È’¥”Ët4™r(Meìâ» X²®JxÊn<–Eã)!!ù ,Lxª0"F °ê)Áè­C±Ä¥âH~G& *@D(p¬5ÆÌè‡ Œl^Å$0¥Œäš† tׂúPJ‹ÆT•,Dzhˆ$¦E!ù ,Oxª0"F °ê)Áè­C±Ä¥Ð3rÂwdqëÌšyˆu“+Þʱ250Él²–N‰s4™r(Èéí]µ!§î”y,`GjbI!ù ,Nxª0"F °ê)Áè­C±Ä¥P„£&|G&LÛ€»ä¶ÑlB¦çàu•H…«fœ¼1[sD~ y©Å3`yt“4e‚3_xj ¿6d~®ÊÙŸÁÕm¡Às¦Ãw¨Åaš»)LašÀÔp¤ÁÀÔD~ œ¿Ô9jˆÀÔÀÕ(Ka½Õâ_™ºÀÔœ¿Óœ¿Ô =MÿÿÿþþþM޳âìòÛèïêñöÕäíÃØåV“·ÉÝèq¥Âæïô^˜ºLŒ±ÔãìÆÚæ\—¹°ÌÝûüýßëñôøúðõøÑâëíó÷÷ùûÍßéÞêñ›ÁÕÎàêE¡ØæîÀÖ䙽ӪÉÚ’¹ÐµÐß«ÊÛ•¼Òãíó‡´Ì×åîl¡À£ÄؼÔ⎷ÏO´éðõ¸Ñà§ÇÙ´Ïßd½¿Õã±ÍÝÇÛç¹Òá²ÎÞìó÷¾ÖãÜéðF£ÊÝ脱Ê®Éñöùn£Á‹´Ír¦Ã»ÔâW”·­ËÜyªÆT‘¶ÕêöI†ªÀÕÈáîøúüÙîùÏçó®ËܤŨ¦ÆÙ”»ÑŠ´Íu§Äj ¿˜¾ÓÜðúØíø ÂÖÅß푹Ðßòüaš»ýþþÒéô¶Îgž¾©ÈÚÁÜꆲ˻Øè¾ÚéµÔå}¬ÇËãð|«Çx¨ÅH„¨ÍåñGƒ¥¯Éo£ÁJŠ®ãõþáôýŸÂÖC{œ«Íà?t’;l‰ŽºÓ>r]˜º¤ÉÝš7jö‚tRNSJ )èB=P Îg±Ü¾YïÇ#ðrö3UG"Ýš{*ú:+Öˆ»¨Æð42¶mü_«lüÃ:Ž…ãôa}DwJÞ£ô#ôéíÊùMKLäMÞÒ¨µGÈ–Oöê¼Ô$ÍÞ}tºô¡Ž¥ìñ•Ûá½ÐÄçúf¥­:|G´tIDATxÚíÜXG¢pÝá\ˆ9âŽKˆ{ìØ±ãÛ‰séõåÒ^ÚK¹$—ËõÞûÝ{ï[i$´¨­**HBBeBBBA`D7˜nz7¶1—ÄN¹äÍJ`°ƒ´#ò½kŸþß§0KVÞEûÓìÌìì2‰$’H"‰$’H"‰$’H"‰$’È?6‹ï\Éb­¼sqâ“Hä_,Üü…½/éÎZ5¡@¦;“þ¥þàå–ôµ‰ÃþÈÒ½ÙQ²w)Ô?¼ìÐÊ]¬™ìZyhYòÍ R¿|M( Gl^ó÷Q_–ù¹”Åÿ¯¬°´ãÜ/pv*ª¯/¢[gIzfŒ¤/‰w›7ÝGe´jÍ®]kV-ô¹=•ÅJ=D»‹KïZt#È¢»–ÂþË‹cE¢Äú˜²8=¨ 0¯¾‰ÐÓ/Ì<‚,DýŠô1_i,¨.’!ˆùο zçç?­LøwÛW¯¤*øK…´ñè’ø·¾ T.ÔσËAºuS fŒ©ñšw8hÔ/MKM=æ·te O.çÕ¬\Ïž¹éå_xù÷$Ý~Ô%GrÝdÚòXëoM|²‘B¿Ñ!HÛ ·½r9%rù^ú÷oÜäA¥2ùLdÒFijiãÂÌ/D}ÒáP†Êªµ¸Ý/"€øÂMdeeM,üW¾tÃWˆ\•§ÒjQðÂH•6@"™_½áK_3ϲ·²VóAy¹ãd=¸bGú¦ð©tõíkv‰ }‘[Ñ覫곘ŽafÆkžÉŒ­~ÿîQ¿ß°…¤=L1Óv Žºþk/t´ø*õî¿ÝÝ) ¥—W®ˆºzÊêÉëN®NY}²îÃÉÕ)0¹±F ’Mûö»Ì|±Ÿ$3fC’~1ß|×BÌs¹aõeù Э…·FP”/ä®9’¼ö¯}2Ät;ý[²R™õÑ+-ýx™H_VäèË‚ÅðèyTÒÊÚh©áíî•ûR!f"d³C„ѯjC¶U´èsc$Nô”yõ‡GËùüòÖ4cGGcy8âÉUÐ[øÃ‰QC›%8‘Ye&íÕ„\NTÛIÛ¡¨ëߘ~ªnh(´lùòe¡¡¡ºÓ+o„ÙÊ{'jèѯSÈøŸ;Eðeбµ 0ŸŸV‚ªòaküG²x(Ê«M£*“e¡"]MÓÆÌÈFF¦T·NS–rJJpð**åè”lhôÀ<ßË‘³„ eæ7¶i1B‰–‹¦¿ÔA_ˆ}Mo¾.ÁO©ƧAª/ú1 ½8–úM2I €61„²™0ºžÏ·›'Æ/Ô¸õåEBÎd GXP$­‰rx@£fí…¡¦©ÏÖ|6Õ4dY~ƒ^5´è“–KPþõÉ“” ·'Åm>d2…Âê… °èßj´DÄ<#9Û„ˆwÅ^)n‹™ò9)'p[Ë €# âDJÎ[T^^^‘Ni…EÌgJo±%_T=ùi ÜÎZµ|´#ÿ.mdâÃæËôwX/@hÑ멸\­úéÔ†[ùD-UŽý3W0`^!m®¾O)'Òz)* Uì‚mª¾Ð¬.›¼<ÿЕQ¶Á(íØºµFj4°u‡¢¡O^”z²¡÷䓽 ½R’áЫ£†ýZ ¢’ y×›,bY¯ùqSg§i<¬°‚E¿»×„ž¼¹”×W"ŠM4ÊÅRY_‚ˆçd°}µÍ¦îìt2K-ã¢àD…H_í±ŒL8ôÀ¼ c‹[ä e¥Láxcᤌe„֬ݚv)+‹ÅZ³#ÕFϨo³ÑîwóÜÍb¹Ã¥c,ååÜ\›’E•ãDÿTm ÌËHKTõç¥Ò«^¢ø³§Ù[˜Š~¤°ÂtdÿùW°¢B¼qrëÖñF¼°H6o;˜OZ¿ýÌé“g›º»›Îž<}fûú$ >…}ŒÐ¡À.Ç(šwmP4€ÉíÄiÞbê1YÂêQý9O‰YPɱ_ØÂHZc1"Ør©ŸDV¦tNrXô˜c 4Àr:™(㜃k8 (apèy)ªÂx–ìjQþ¥¬Uaóà qì1œø@xP*§³Ó_³Ô5Ó£7õ=Fô6*7§ƒËíà€‚ }Ÿe%µ¬t(üV°ÓyW†Çp:L£`Ç-sL&blÇô:½‡ Á Yá’§JCµA5UTýMÝóÚc/Ùó0¯l¶¹€ù’ùÑßøÈÏî;î¾·ŽÜÈø®P©Æ8ÄØæÍ±–ŠËÕ&ÛØ‰K“‰Å2 —Îsú^_w÷ÐÙ“C] §†Žïí=~|èTC×ÐɳCÝÝ÷­§CY=3ï@­ž; A}½«¤Tˆ©T’ÙòN± }ؼÁ¤ÓéŒ55FP0àÕï Ì#Hc¡ D€»ƒvB–œíåÅJw9><22Œ—»•Z¹€: C gë‡ÇkÊ&LR+$@0!NkB- þ‹¨±œï)Ù‘1¨Fi"Çgǰ9Ãõ^z#‚Õ×Ç —ŒÙÔeU'U†D“eØénãËø¡·RÔ¢¯Žfžñ‹].œSضkãùy‘S ?ó—ÐY—£³ÙèQ×d_!Ù„DÖØ(“lEþ‘y®}ÒP×ÔÐÛUwªîøg'¶o?ñÙqPìêmhªkøä.:ô­=‚H·UÐ3SŠ,µB4oŠ}®\I°µ ÂW0-u(u%._±ânxó>Çs¹Û †v·M>zõ‘y•‡#æ™…³F‹¢¡•ËiÈ‹ ¶cz…( ©t”•9Š‘,G.  Ðʪ–²² N&»"Ò®Ë ÷ƒlôkªõG…ªðΈÏbÁšgäàB•ÿí9è5úJ*B–^ϪŒDÂÊΞ.á¿É!Í#™L…ŒT y%ž`í•£ó›¿áÙLLXRè«,õŽ<¼â;h±ÁPŒªSa‡¯=a´-6OA ÷JP† µhŠb2ó|ý´”«;>ìêjèí>“º$9yIê™îÞ†®©Þ;VoL¡Cojˆ0h™)E–L´è'ÁM¢Âb{‰N7ÝgÑéJìÅ…".ù´y—I2®¦Îê ªlrѨOº³¶¢ ÐTvÕ|E ®±¦o'ÌEïõ™L>¹D¡ÿ‹%¥GOô¹;ÜîL'S°²Ùl+ªe£ÛC ßšo˜Q¯ã‡Çp>mžÃC/´bâ7g»õÕÕõËhÑQaSè‹"AY##Óe(ôÔuX ^AïrÞ{ÿ=Í_Ï¿3.ż®æjŸNÃ>ñî#ßÉçÈåøÅÝû¡» ?Î×O„>=—©$UZ-›D“æ£_¶Tí =_³6 díh×wÕÞ´Œv¬þ=ÄWàŽ0wÌ”"K>Zô{ ¶“ÈgtÍÆè™ l½PèM×n¢.F ?冓^0Ù¹ˆ‰õmË×\Tj𒊈yq¡`Üäi¹PÿD2‹þSŽ„j H8 ½V«eÉ!Ð÷˜ûÚÛ‡L™J‹ñ1jî õS%ƒ@¿Ø°Ì¨ŒáŒV»©1ØK9V-6øüÕªn] ß_¶.…=NEK¡Ç#Éc…BÓe8ô¹L E¥Tó¦èù×¢®øM–cóìÆBWîÅß[öËÝõï½WŸºzÂYò÷lÆ`Y°ìB›­ÀùÄ+…ˆD)AÌ£]˜Z¾îTWשºî¬”å Kk»ë¨åuË!л îé sÑ\´èï¯4ôØ FMÕÍ3Wq«M£¶Ã`ÍýpÍ›óרn~Ez‡ÓjÌWÍ?»ûü¦7ßzfƒ³èÍn„”HHÄmžiÞÐw s4­zÇðp…ÁÁNÜQÒ:fëôcWdw˜K ³êU–¬Ë-ÙõÔl?/œîÅWÉN6ߟç|€})ŒB_ ŸUV6]†lÞõb9†‘ #[ûTôõÞ±¡к­,.®¬,U9û8„D¢á˜«nß÷>w”h› ™5Âó¥ï=sO‚zQ$kQ,ôý§‡ê²,Y2P7tº}QõlFfÑTÑOCx]ƒéÕÇzzl¶–Hl¶žžcj=¦y²Ç5çCoŒQÏ'‘VÑ!Ð5FÌïˆcÜm½h¼Šƒ œªq…žªôQzôJuþ€@ð©Ô|*4CBæ©TÔOT QÓð–xfÕ[XA}í9\éEí«ã@¯¸zLê›Q¾_fС§Ú‹…^ ÉjoŸ.ÃvdsÅ )Ÿ TÚ¶{c¬öŒ9×{L­A§š´ê\ÕÕ.Ž5£g7ÔœßGG¬¢vw çâÇßx|·^ËFPŠ\ŠŠ~ë†ÓÝý½SCæR@PMõöwŸÞ´=Þ<›³èO4ãôÎî‰yf½^uê(›;yâÐý° ¹¥ó¡/Ñ ¿=SA`¼Úçí¤TL™?ÌXzP׳X ž£§6*@oêé4›Ûú-úðç)¡ÐO¶¬ÜÜé2ì彩ŒÄpœ¨}-ÆZçÄà4ßjµ^çÅZ6ŠW6WW‹ŒºR‰v`#ýF^½¤Ñ›ì¨¾üäéë¿¿’ ý¢«3?khêŸj \µê`ph¨aª¿©á³ÌÕÑ¡/˜ŽH4½¨bjñ»A¿¼ · $<ƒ*äøýÁwá¯Ç‘ÏŸ;ÈýgF|úiÙJ4Cª(”­^(ú«™nÞèÑóšmjµMïdú8K;n°Xú”j‹CE~Ǥß{­zj 'Þ|¸MާTÒ£½­+Ÿúûò]TY+§¾á’ýÓÎÚapRÓTº>z&Æj?ꓨõfsn_ˆËǼÄUèó+q0@þuíV¾&ÀŒm5f¡óÕéošá£¢¿ë“†®º³ ý]½SMMÖÔ|ØÔ4ÕÛÕßp¶® bÈ’ðäOÇãÉŸEŸï! Ð'?öÊ(S[hv8ú¨8->-ÓðÊcðw r­‘>—7²dŽþ-5RÌæ¦%=‹[Q²PPaØúr¥ÝU(2ˆçΡք'œA¡·…N„ùNf#¿<#/O^ür’Ïo¤GÀ.Ö\«^ÇGeq˜gä°­Vþ\ô%‡½*À²#3+³ÃÒýz Ãú%Nõp­E¥%8Íù±æÒßðÝP tT_a±diQÌJ(½ŽÃ#¬˜ÅvÓvg|Bi :8Ã/Ï\Ÿ• ¤‡DêçG¿þ¾®®î¦Þîêz§¦Ó[÷AwoSwWýÅ)¶ošz¾Ï7½ œµ¿ŸïC” º,‡ßGøò¿O ¹ªií×üPEGŸ*DÔÁÃIŒ-c^G`.ñmŠ}Õ¼S‹•áÑ=zoá¨Ífèq"|RJÊd|>õâ“ôÙô\½N½WyFŽPÈ–ÌEoSVÒ£G%*lffexÒc=8i¨$(úýN_KnmfPâÆÌ˜·MÝðιÇJœÐgPsmZ6ØcjJ"Ÿ”Ûhïîy´Ã~l¸ZøÄŒž—[¿È =#íL×Ô©ÞþºÎNMmhèþ ¿÷ÔTW?Ä4¬ðh„ùÑ™Rd ƒBÏH¾ÿ^ ÒÜlë¯|òý{ïëÆpn^d*Þ úÈR^tô—G-5ô»åMÁóÜt žÍýš›5O¸¿¦jzˆŽ,n4U¶´8ÔÑG¨+í‹ÝÞÞÞÞ‡Ò£_Ë≭תWÄeô(4„v.z½ÒCžŸ'ÁffVRÝu‚ ·ïÙ˜$ƒ~··Ô>͸©,êuØHn»åÖm¯>üâ=ô1uò O2áSweðe\ºªþ¹—¹Uznfù©zDæ‘!碠ßZÓkÙ°½½¡ÿƒþº³½½gë@¡¡}ûKoý„3Ô8ƒÞhœ‹ÞˆÂ¡ùbr)z¾¿ˆ±€pÉé6ý4úÈ}½髊|ÝÒ¸„VSq{<›ûö_J®ÉGÿþåÛú<ô£5汋™NDL’ŠŒòr’/ HéÑ' FÄåì¹êÅñ™+^)1‹¾§Úám¡GOò%Ö™™•á˜OÍÃQV Ÿ„@Ÿœïúj©o7MÔÀ= ágÃ~ªrŸ¹Ôï—Ëü¿9ö [Ò£OpZ[8®'f{ /·Ê|ÑÑSS‹SÖ?>Üpüýéo¦¦¯„˜ZÌ7Îuèùq ÷HG_ücAèe‘; (ô¡Y’ÅhÞðÑÑ-aóµ<Æ«ýBxb‘¬Ù"=zN±tLó= }’`"7)Ÿ[×Çi|åpœ7‹^=äèéÑûI”=3³2܃A²X½J6Jú!ÐÿÒÎwÕF®©Â>þã»”@ùrÙÕ*-Ê[ë=÷|ÃÍ)j­´|möwO“¥ÈùhuéžÈM$§¨¾ëûïS½ÚSÐ7‘ÆÙ\ƒžŒ½Ì·@ó ® ‡BßÑÁãF–¤ÑÑ¿íAü¡¿>É8r¸–À¬’‹ èÇÒC©©¬Œ0ú¥€•Þ}ñ£OX¤¦Ü\±˜j×—ð0jFBœæÁÖ‹tø,z³mÒ^A^æÏ³fGfVf먠¶†çUZóü2zôÚ¤¢Ú=ñíç.TºÉ𥒕—ËäàT£Å0•?ÖãFîy¨ŠŠ ý“ç¢W¸ÑÑGnÜ054uöÔéӧ΂†E· Ê*ç Ÿ“J4úÝ ÷,P·QÎLó&²Ôý#ÙbD3qTz…ó*£wÁwÛTª"?…~± \„@ß<1a»ÐVæü\Êb¢OæI­9×ÎCÄ~’§wçW¹Sã}ºYÇUìEßwì¢+H^ êÙæÈÌÊVÞLJ5B)“Ò¢_”ékã}x×y)žx«šD‚Ƽ{ù™‡´^¬Áν:ç—?´57"ïÅBã*KW÷‡©ëÖ¥~ØÝÕycøÝH9Z\8OŠÑrxô¥¯¼¶PzÜÁÈ<üô‘¥Á§ÞîC©ÈQÑé 4v¤/_pE¨:óbúœH}‰ÏSì1:mmŽv‹¥M}å?¨üô§ßЉ^p¡œoÅ}ù™¬\s ëÀ]‹—¤§¥0âFïñÍ©é+Ì'Dôè2Ua×E…’2E#únUíXÜìÔ þu·æñ±‡o~ØÊ.Qb¾7çWOå âJ1’««xãÊÞúû#éïÿ î {3Q“±ý+÷/˜wºy0ƒ~fÄ4FKáÍ ²ÈJ؉ô Þ0cƒŽº?VF)Ò£­ƒ¢¢’»½²rúž—¬ÿùÉO¾}¦$Í…2“V¥ñ ÜáNu5gýXßÅÑvzôbêVnø‰D3¡z—2©B,¦Cï.pÇožñ•MHe×>F&;ó„ñèEœ‡Ím#ÿð22hŒ>%µìÔûM‘‡=M½ª,ª&Yüsy´ÛÂå?‡=:maGqÛÎÍ7s£äæÍ;·ESÿv­‡D­:ë­/òèÊ œr…¢œ³)Ì)\„B]œPÛÊ 9ÍÀüésƒŽ¬Ç7Û¼Y7^1ak.¥ÙçÇ•Læ XÜx}…F]¬`2•ÇnÜüÜÍYО¾SEˆ¥³×A¤b¡›fŒíÕ+¸50òè5ß7É,aÆFÏ`,;80ýX¿O.ƒÜ¿¥{_oÞ¼÷×ÛnݶóWûöíÛ¹íÖÛ¬XºɃé/}üÂëßùàƒ>ùä–-O?½dÉ‘ýû×/Ý“²ÞUš™šs¥O£8EŠ´è3s>¨mµgº 2¿ yFŽÖë§ Ÿƒó¥™4³,·¦fÅHjì‰`#Uc_þ/*_þòÍ7ïÛ·yçÎmwÜzë-·%Ó6"¾þÞ`£"ü¨‰ÆAeæê-t#£ T?q­o ¾A®,ŠqaàPo¾ñÜ¾Í ûž{c3µ·Ð2¼åÖm›÷ÝZ²~Ïžÿ„{š´|Åž¥û÷?²cݹówßùà×AÀnË“¿ôÒÃK–îÙó϶¿ §ÿÍï>üÒ üâ‹÷þxóNªŽU'ÜÞóƯÀJWÏ!·lµ÷¯ÀQù莄ÕDI$‘DI$‘DI$‘DI$‘ïü=÷ï»[„ÖIEND®B`‚images/icons32.png000066600000017527152330733730010025 0ustar00‰PNG  IHDRô-ö¬êPLTELiqÌÌÌÌÌ̵µµ»»»ooo```ccc„„„yyyUUU}}}~~~~~~~~~}}}ŽŽŽrrrMMMnnn~~~}}}qqqxxx~~~www~~~ƒ‚‚{{{~~~iii}}}~~~III€€€ŠŠŠqqqˆˆˆ€€€ƒƒƒºººmmmsssfffWWWŽŽŽttt’’’VVVXXX]]]ZZZeee~~~zzzËËËŒŒ•••ZZZttt‰‰‰ŠŠŠ^^^’’’YYY¿¿¿nnn]]]mmmgggeee„„„aaafffXXXЉ‰ŒŒŒfff···›šškkk®®®´´´yyy²²²™™™mmmTTT***ŒŒŒÂ‡‡‡XXX‹‹‹mmm¸¸¸xxxHHHiiizzz¸¸¸TTT{{{˜˜˜yyy›››DDDÏÏÏ©©©yyyšššÿÿÿ€€€ÙØØŒŒŒ†††ßßß~~~™™™ÿýýÆÆÆÒÒÒ¶¶¶ééé±±±èèèóóóÒÑÑ×××ËÊÊôôôÁÀÀäããâââìëësssüûûåååÂÂÂÄÄÄÐÐÐÔÔÔíííÅÅÅÖÖÖáááåääðïïáà྾¾öööèççêêêÝÜÜíììïîî©©©ÓÓÓÝÝݸ·¸®®®ýüü¿¿¿ÈÈÈÈÇÇòññÉÉÉÍÍÍ———ðððææætttŠŠŠ–––ÛÛÛ°°°ÚÙÙúúúŒ‰‰ÌÌÌùøøþþþœœœõõõ¬¬¬ÚÚÚ•••ÏÎΤ¤¤ßÞÞº¹¹‘‡‡‡«««žžžyyy„„„¦¦¦³³³µµµººº¨¨¨ø÷÷¼¼¼ñïï ŸŸýýý¡¡¡ÞÜÜ£££´³³èææ“““êèèwwwhhh÷öö{{{cccõóóPPPÎðþtRNSJ B~‚+ ÁûÊp® VÛÞ!·3èeþö?WòïQ(ä§ÜŠMHÏ$š1Â#9’î~íǬ4;êhŽÄ(-ðû×õ|ûµuJžðÒôxCào­°`ϸMöhêGÒû]è=àGq_/È–ùOܦOÄìê/Ç­¨9u¤MA›Žñ¨òÄç÷ì÷»{}ÈvIDATxÚíÜXW‚p±—õÚŽmœ¸wÇ%n±;Nì´³Ó{¹\’M6{Ù$—ͦnï»·½ßÝÞ¨!«TF¡†ziÈé*dÀF€@ Z±SöfF’Á ÒŒÈÝîÝ}úŸÌ{XbéÇ›÷Þ¼ ¥šjª©¦šjª©¦šjª©¦šjªùÛfåǨÔc7®¬¾Õü £sa¯«½cÈ›Š!~Gíÿ©_x•kõžêÇþ7ÈÝwýg‰Üu7©pÍCk×P‹Y³öÐkh¤~ÕêX;€§ydû_Gý뙪ü§,u ê7,|/D.ˆˆžsýZV™¬½¾Òm.[VAc´nõš5«×-ô#9~ËA*uÇ!Â]\qãÒÅh–Þ¸‚ìO¾áwr Dä¿#óܰ6Í õ^~Qoˆ“^{ÃÂÌÀBÔ¯:S:’©Z$€‘;þ*èíŸ|·Xä_l^‹5ð5®Äx¤íúÊ·~m\°¯«]®ÕDÏÝñçÓeò畚ïî&P놃áüV|~‚ô‰c+*Ù¶e/¿öøËÏÜSûë¶âœóV•{þÑ ôîu‹Ð¬óÑ·%·»`ØY"0|ñë×ís=\L½9v¯[˜ù…¨¯=Åj·Èe®áá˜O 4“è×çêêêr ÿ¹Ï^õwv¶(,2™}ŒYÈ °þîªÏ~Žœy*ÒB݉šOÃqß Évpé«wã‡ÒÍ·l_Ã0ô¢áhd˜¨©¯;í+“Ó¬JÍŸ>]^ýñG¤0 Þ‰~ µ›3½ÍJesoöXmý—5ùnÿ¥gGÇMA©4hÏ[Zòé5›'ü!ñá½hëBþ‰Í5d6ò, /à? _~㈶6Ûgc4ÂÍÚ‘bžÁÀÕOu¢!Ý[84cå9˜ŒíǯÙóF·o!~I`LÖ}Jô]®7×ÇæNM¥!îT:H=jÞ*h¡®sM@ÎÁþ¥$÷;ÇšØ]e/`lôyý:>ð×¢ç—I…è1óê kµñ– Êó±HOóyòmà33RïJçX#FDía1f7”|þⵕAÞvdãÆ#mrƒ :¶˜ÌVÎPÉ£ß3­w8ƹq:õѱ= 0ö,®~kòɶøo×ÑxVÚЬ19¼Í}\ú¼!ÙÉ`ÙÑ Í­P%ÃnF‡>Da7'©'5¯C‚s.(í&i~_fð$yqå$Ð ‡ÁßQCng–ÆÎöéÆ#“€.1’É£>. DÏÅ"éiá2äÁäz†°r…è·í2 æ£ï–V0™˜Iz }rÜ*Àc®!ùó÷>Þèí;ß—>ó—]R=(½~b\ê9‡J _´dÛ9î` “ÉfA7´Û’E¤Ð{K†ý×]€E`U8®Œýe××+5ŸGGÁ®Þ`0EÿˆTgc=G}6†ÑÝâÊñúv‡hž“É8iôêlÖ;:jï »r v}pÕW.-é%‡5/4èSnW?;Àª«)ÌáˆËÏáÔü{;kõž£С•ºú‰ Ô=å?K¸ßu§ÏaÑ S©Ãxéµ+Ãçg»¨X¹Bô_ÒPóB§«¤ú‹@W—˜Ã¬Ãøë Éï-™ýLk•öuüëwv©D­PäüÑ£¹Ô*Î;Þ®AÍß~ó)è×™“ÎJ·Ü|;ª¾†}™¡ÿ=B<«âÊXy!Œü¾Bó.0ƒtáêy<²è/4ÓtBú6QjW»$€ {S›a§5$ï5ÏI&‹^åf Síö^žG§³Aú°ÙÐUäУæÍ<‹æêP³Ï~P·7Ÿˆ*ËÏá<ÑñI©†ÑQx"î)ÌÞ\ÈHH Ïb¡Q¨x)KˆÃañi¼Vi÷&­CL¨y…%]Jý“õa7Dvcü“…dP_âf}ü‘þýÕ.a+¢ÓÎçhq=Ò Øçé7\³ùØÎm7o‰©SÅ.FJÛr󶯯=x !úDÉ¢?lÈCÞÇc ÉÚÕ™ï éÆÕkI£tŽ‘'·vû€xo!B+*½§s»c FÌêI£7t»r±¶6{¯5• ‡m:ú ¥Â))ô¨ù¨XË󸆤àð¦üΘÐÜ]~gíùÕøÇØÉX‡ŸžÓ•u$ÐK±„©ýýT¼$¥vµðù-]x­2ôÛNêh"Ij^–š*¡þ»-M’ø†þòØ,úÇZ¹®Q†¿ìªïBeo¯R(€z€¡yÞŸ£º±ý[X~ž–Ù8’N42µ_Ëå!ƒþQÖÃb‹«Î›íØ…@…9œöÄLùñì#Ôü ¡©IÛ9½DF½K5£â%5Uà ‡=§ñZEè·Èº 5„šCó«ÿêš&¹Î·ûmý¸&ˆ!êr΢—pÙ¦ïÄLCЦ˜#Íͳ@Gk?8Ï“·ȶjEJ¡Hù3"­• Š- d;!úÑéB¦/—ðÚ(!ú‹€˜iY®P/  }.Vb> /Ì2*˜¯Îé”f#û9;ÍaQ¶œªƒ-L 5ËZ‡U©T£ê—Èx0=i²h› 5È]uö™:{¯C.c2å]]èÃ#óèµ$Ð×ìè“*Íõ°‹šµ_„ºð9œXs8 èûíô# ô,j:MÅKÖµ `e²è—-¿çÈò“…!¥C›zPóš‰åó-ß~êÉ‹×:¾˜ò#&'ߌ¹SŸ'Û½9הȨÁìØÌ£ª¾yr²¹^¥´þzž“`k´V- o‡¤§Óãq: R¨] ¬Ú5·¡Ïx; ñ^.áµ !ú3@&lRY,‚Ù ämP°8Syäp8’‰áá ZAòêŸÇÌ@¤•ÎòX­ÆØêZBôz1$ J”]ýq(13“€âý]2˜îFC½ž›ÈMô·÷eLÇ“R1=½‡)3’@¿aX•WÏ¢ÚÏtéñ9œÎ{‚^CÒDƒ1¨ÖÎA/Ž’@/Á’¢vwSñ’dŸ²ÅÊ$Ñ/sùìý# ¡6”#ì&®º”yÊ÷ì£=:w+÷”ïu*òVë7dg,g$¾ÑFIÀ;ѱ˨O ê#‘zAJíüñJަÇŒî#oÞÒh4Éð KÐ"è'VŸ_Wùƒ¼ùÞVúˆMÆã±Ö®"D‹@iö7Ê®ßÔ”/Ô±Ý0ƒ@L¨Áäõ¹úúúì½úDÍ ‡ŸfÒ鄞úÕ@Q}›É‚ÏáÌø1*Yó”ˆiŸšƒÞ@`1Q¹\*’€ÚÑQ(“C¿¬û}…óôéèGÎwM4M`l¨¡m~óŸý.KÅÔ´ú‘°xæDÍ«£Ö ­Þd§¯—>*ɦ]Ù€t‚Ñ®W™d*•̤ªŸþõ|ÇÍŸŽeƒIXtïûÙÞ½?»OãŠàdO6vøç5DèÁ¦á<óá¦b)_ Ño@ »5ˆh8w>Ž ¶²AH°…´ùІ&çÅŽÞV{Ô×Þ1”¶‚}—Í'4:2|ŠÐüèÅ~ôëòèÑÿ¢š‰Ñ§ºûcýÃ,{/’ëõz¹U¦ç©ôòLýõ`Q=G›ŸÃi,ÎáCÏ”«”¯ÏÎÞ_P«/ì!D/¢ÇЋòáQgf eRè±ó°¨ze½ÄþÊ›÷,Ÿ¿ÿfn\%–4ª[96ýÌ·¾ñj'ÃPÛß =lXÖÉË¡‰Ñ;.²’N‹L¦wZ}ó¾/Ú{dŸš'd§¬¬7oGóRÌšb yûŽì%š«?ø¥ýyæýÒb)_ó¢±5”•‚l¿DÒSŒDâg£ªB­/’DÏ@@ìd³ƒ§¯€%_¶ju[Ò¦Ó$òæ›[é90Д¾pˆD‹2‹¾ ¢cèe2•x§Á“™îLØ{…™ÊaÀÖÞ _U! ô+‡C®¢úÂŽº¿ÎÔB%{öºA.3L>w¹YüㄞúãR"ô:,2 ½.•Å*”I¡_Î?ªï½÷…ŽIôÜWJ>ñ«Ôq•ž†HZ%"X×pà7w>yæÌ“;ž'½à¬öÁ¬$Ý—žêãg¥öžl]`úç%NLíݸ„ë¥!ÞÅõÑÜý/$­‡Á}I ïû Á¹èÁBô/ML‚™¬T ª‹gqÕ TšÍ€“/‘ëÞÍ,¨ú2æOÅ™mä²ùî<³ûõ§Þ&³ÁYô#ý€S pýÓÅ­…ëK$vÀàKê|š–1ר¨8‘08#ûÄtœUoqÕeš:.`s8›É¢—TÊŽbí'v½VØB„>ŒE…¡磥NMÊäº7˜z%,“9ÑìÐJ?ï›Y«-)æ Á ‚Ùön·G °A#·dÿ¥6ÿzý…Fž®GèDè±þ¢Í‚¡·åc¤Ê$²ËùÊèû ÏŸ-²‘/•yÚ«*?Øû`KÚî5Ê9=ju[Þžy•ÔšßfäìÁþ ¨íÑǾ„þmé¬kôGöfÄfè~ñZ4/ŽlˆÙ Õ½g3}#‰g/±”´Ñi.—{yéZž¥)Y/‘UÈχ>\¦C +êQцžCŒf%fþ”…¡GÛz*µ„£7¡£O‚™Ñé¾½w\k<ìa…Å81ú•v'§gŽúÂŽ¡" 7ϢϲƒI¦ƒ½ ÿÕ0ô¦|Ú©|~¡LvÊòÅî÷…N™J )7ƒÝŒæ[²h«7Ú6¤çéÖFµš-á„2:‰…–¿¬³ÙΩ3ÕÎÿÄ|0?ú¥ë³šDÌñ.·\>qâË_>1!—»»Æ™š&ÖáuK‰Ð‡Ù3…°ÙsѳÃ$–+ ÃRüLÖ¼$…áô·ÈŸõäßF!ùš§4úãööÎ3´á$¯Ým¥÷m^(úË)toBÄèiY¯7˵÷†º!Ð5ˆ>\Ý]^—ÏBŒþ‰ó°øJõØN;yóxŸž‹ÞŸL£GG2I'öû•`eŒýà%IôOÛ‡|N…ņô\*w5Ý Ý©—‹¶ Ý1†V•Òi‚­~¿l¦ó„[ù"Ý áOL3í¿Ì×_ Z‰¶ú§eí!š( klLfËÙ³-L¦MGE´P»ŒxÊÒ8[H pvýÙ€‡ú%ËwI{e­Ó>_7Ÿ¯É/ëw-_B½<®šAÃÃÈ×ä¥ÑòA=cCíwurž³•ž×T„>žDzZÙ Ò='6|Á)ôYÖLÌwÖÞÑÆÛŠzôáˆ;Ú1úcˆÒv¥zŽ–'¬À<¥A/—k碓1úwC!CG~eeÇ\ô†Pè]rèïµ{CƒYÊÝØYn-ýU?b…ÂRnÂ媓ñTòT—âp ZJnXUwöë—ÍtiŸ;ñ`¡þC`  ó£¿uYè0!¼¨@”ôàIŠQbrÍÄ'§ôþÎ<óN±”¯éI §P~ür§H¢Í¥¦]Êßùò+PȰ´_ñÅRýàMŸª¥lÛôw%èœó--Nâ³7bôâVi6 fì@Dë7Ö×kµØCëŒdOñëÇÔ‹Í•˜§40MzÁ\ôÙ$BŒž'°¨Š++ñE8z¹LeðH¡_i÷7ñ‡Xc©0$a-/÷Ì«¾ya‚í–{f¸íO’éM&=¶$Ñáf ¯îy †œK¨MÞS¨?ØÀl¸zÊvÈ Ë%ˆ9¢€Ü´d’æ†3"‘ÃfÝv“ªªÖ¶<ó¶Öb)_S‘BOYòæ+. ±iæîº„æåWÞ\R‰B†¢ O}¾¦(þÉàÃWØlzþ\̦+ê޼Ũ›'Œ·°–žGŒ^'ÕÒ¦&;`õu§¼âr!Èàà`·•ý*M)¿R}´"óè0Úæ‘ÍEÏMˆÑ;Cqe%Þ"1ôL“Á¢pA_c‡¦¡§)ËûJž‡Ígïúk·þòÄkþå/¢?va…Ãá4¶·këDMý3’‘ë™bý a@\,þè”Þ·KÎmVŽh"Í0®4C¹-û¦4ñ‚3ž¤ˆ^"™‹^Â#‡Í%ì‰fÞYJY@Æüеˆ>_3–Aß tà¥k60<2[â–J6÷ýÓ\‘KÒKè¿ÿö} ½‚=$kcÙ¥ÓmÇNôaU…ÌÄèké3Íqý\õÊÊÌ£+ZØ3‹>£ö‰›ˆÑyqe%þk±u8I\à0’@_Û)fú‡îÅ–¹²ægó½̳jÅ HÑC©ÀÓO”}ÑÞu·4A=?Üvù[¶ÔûëK¢/,-Ή´ÅË"´¢Ü–›·í_/þ©ÇÞ¸ŸrüÔPJ%´-ü¦+µŽ'È]þ,ç[çI'>üø‘…ÒcLZñÑçk“eNN=Õ f¶/1ڊĈ×U–Ì>väUaèòEè5þ@0 iõùø|ß ËÅ÷îú{<_û§²èé}q­\ç?Ë¢ò§'¨›»òúÕj(£øç´ô‰évŽ}dü#ç{ï ²91Þ}ÏùÑx„ýª~ËÐXÅoì Þ¨ãc—*ÑòÓ7µè5]†¾ç|ë+ €Q 冊‹×Ê"Qs »HÌÈÖ’ºÈ]íÑ’i¿‹,úKo.˜£Ð=(¢/Θ–é)¼ž®Ï?IuöÔÂÍSá`×ÇváèóEbôhï@$Òh°e¹…k^êþÏ?•GÏ(ô;ƪݹ¿Ànp«ÕÐ,ú±î6é 1z%v)7ü§?ýiö.-h¾U*‰Ð÷Kû+7Oùì 9³ðŠÛÂ…ãc‡Ê/hÓÑ žoß<·¡Ï“Èdyô5;ÒáIkþfO¼Épz©–ä†?À¥. ‡ÿ@öö|~yaŸâÖ‡®»šQ"W_÷ÐÖRêŸ @æ­;ôin]ùFãÐn¼ Å‹¤Ð,vRÛb™˜îFëÓÝi³AðÏvoöç¹lc˜`Ÿ†OŸnV*#ŸˆRÙ|útø`ùÎÍô»´§ßð4›gσ˜›™Ãsl_Ù¥“‡f¸âï ßØ«é-žB9°}Ø›¿­wxû’ûw÷]÷™7÷‘»ëÆk·>üÓÛn»íá­×n¤ü5R³bå½Ï¯=ùáããï¿ÿþM›6=ýô½÷?¾òÖ+jV‘oú7Lck®¸Øí³òEBô¬†O†Ô¶Yé§5Oi‰Å³óô?étCÚqÁ*Ë£;êÊdGù…`3cŸùg,ŸùÌÕWßvÛu?´uëM×®¿} a'âk¯ÎÐ&#Ñq³y<™L²6o":Ûóí¶zÎteA½(ƒ~ïúkoÚúðußyæWסùÕ3ß¹îal÷ö’!{ÛÕóæ¯Çøo”•wz!È‹Ýv‘²²+6õ;–` ¤ÙÌwÚŠB@ßêõ÷.)«žÅzë­·þÍ/~ñ lðµïÿ«_ýÆ7ÐŽÑUW‘D?"óLÿèò1z?K¯Ší'8¯¿é¡Û>S"·=tÓúÿ±w÷{k†ÏÙÀ³ef!±öîŸî²ñã}ž~v-¥TóßvĨ9¾ý¾ûNlz=TlÚùá¥K—®¿uEMÍÿÂ=­]U³âÖ[ßûü/^|öŽûÿ v„ÛyâäÉØ>ÿoÛß½Ñø¡ë¾uâäã>úÚk¯,C{ª7¡B™—,º}ýMßùéMëo_tù¯u+Úzÿ;ÇsÕj5ÕTSM5ÕTSM5ÕTSM5ÕTSÍÿïüÐñÝ*wý„IEND®B`‚images/menu-vs-2x.png000066600000030245152330733730010456 0ustar00‰PNG  IHDR €‘;wPLTELiq#&26=aŽ©@R^GQZ| ²JŒ­B|X],@Qš\T@^ŠA[sS”µ(>KXK%#JJ^X1urQAI:]V4'>P)BJ‚zz A!3F0NW`~k^G†¦XE*Žg1Œ}gNWN.B}›cž¼ªon[P-ºÁÄ|†–“~~¢_\šÀÔ/#q§Â‘aa€4t|œÿÿÿP“´ÿÐÛâíóÔåír¨Ãéòöóøúîõø{Y±ÏÞÆÜçßëñ•¾ÒœÂÕªËÛbž¼Y˜¸ÛèïÑâëÜéð¼ÕâÍàêÃÚåýöÓG†¦øúüæïôïéÊÊÞèûüý¥ÈÙŒ¸Îµ½õ®ÌÜ¿×ãúÙþµÑß^›ºunLÅûþ渹úðñj£À¸ÓášÈÊ%.K‘»Ð„®°Øçî׿ï²Ê[0G‡µÌ“ÃÄû¥¥ýÌÍÆÄÅ Å×¹é鳿∺ºÀØä²ññìëíýê®™¿Ô»Ç칟ºvªÅáàâ›™“ÐÅŽB+/ƒ[{®ÇôöÀ«–­©§ ÄªÇg`@œ§Æ£¦³ëëÉÞè6^2ïݤÀççíÊÉl«×Öת·Ùssq¨­²¥±ÏÄ»†‹Š‹ÑµÒäÊçÔ™’¿€nûÀÀßÂáïÐòßÓš4G1“¹¸ýýÅÀ©___ÑÐÐÍ“}ÛÚ·•±ÖÇÓú´Öþ©Ž;·¸¸³¯ž,=`XKP×¹Û}€ã¯ªØéþ¿ÀŒ¡Å.@m¹›?nžhþ¯¯õâßžˆ ƒj<ÐέÊÎtÚ«œV—·¾¹¢`w™È§C¯ââ£Âë˜ÑÑ×ÃÚš“cÁÎó×´HŸ|…Uo„ÊŠŠçèºèÂÆÁÅgöû‰êÃM¶¯{ØÝvÞ7ÐMôØÐÞ’_–7ÅŒ1~{J§¢qå¦|¨¬^¬ÊîÒ®´°oPéIJx­r¤Àá¤ÙÚioX~TZŒŒ«Ð¨ ÌΓÁoB8ö»“ž¡W{,¤ùGtRNS$1F%þ…ÈæZý?âsè°»K6ûýKŒ“®ýÉýiþïáüûûÕk¶”SÍ€í·m«Åq›S¤‹ÄÞýà\þ”Ì~þ¿ê‡ÌêËQÎ- IDATxÚìÚíOSYÀq0][cš¾2%¥H€ò¼ÖÁƒ„Ì䯣ý&†0&;k2J‚!Ò¡Ù61m%RE2µô$ µ ˜ªÈвD(°yØ ‘€[ bx±“ýs[¬+ôž[wÜä~KÓK¥h?=%!‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹‹u‰ùR‘HšŸøëú®œ*üœ{ì¸þ«ñóESÞР·s8Ÿÿk²Ph3wæ¾ÿ£I2/ï[¦äÙÿ (H³ß%•X##ñÿÓÄÀÂÒh(4˜›l]GˆØÜb.çD±ËM! nuµŸih_x£ r–ÆÇYiH‘õúàIxLø•‹½«½‹•lü>Ê@¼£qL'se÷¦ççÇÖd¿Ýhvê½³y%'&E¥=0JÄ|ù»~M‡æýú»ù,-Ä­¡8c&òKV[h°“àŽ`ØûX 5Cžƒ‡jÐ)dÁ3±ôЪS* äÄV›Û­­>OQgÜ>¥Û0”(ÊPˆáVŒØa@VWÙhÈ :õzg0/!áTy¯ÉÔ§Þžâ›''MõCŽõM%%³|ŒŽ¯MO݃d­F½Ãi4:zãJY¬›\¦Ünó'ê2ã=ìj4èLGi4»¬,¤¥a U× *V³A‘w,HÐËMA…}ðM&óª´aŸJÅd÷v'“Å=2€…ëgÂt´’=¥\ŸVéó)AÛ­ôh î.­¶ËÍÃz¹ð$. «««&dzÈá%$TÎö.ãzïW’†ÂÎv•Eȇ„U{§Õ+wmSX{Z…,èƒA=hh¦ÄÄ <0f üÌ9Mƒ(s™|6ÚÚ°†kh­rÕÀ°påMØB‚ £}pa4kp×î“›p ¸IQça^©E jαÀ€,,kXð!ÜSˆ•fÕê·! ¶®.²Ú|VŠCJyãj[8¹ÍÍrtÌ/},lo÷|Iz‹,§ÃáXцôÇ—Âõ¦ÞXdW©TÉ<^r'X’ØìËðeô°ð4ëÚ|ÍA±8Øìe11øŒCÁn cŸý¤Cm¢°†*4;c…!³Ï{%C$’¢{K&ÀPKÿ ª–ÃÄÀÀ³¡!4M2<ó ³Ï„Ó$laiɃ-X[Kh Õçö”x6³µX,¦ Å©Å.Æàòù\ dÜ~¹ÜÁà³Ù|ñ`omnƒ…û“Ć•Æp?!49–>!ÔgQ©ð„‰åÀ0¶Vú›*›ô480æÄÂp1FŒ$jMàO¨8…/ða@£–[ؤ6á l1ˆF½S"›Ý¾PKéû 7“ Cõ‡C59†ÝA§‹od@&¿RÙå÷ï)¥º­©èÒºµõê "áÝ$—OIŒAî÷ËÚÌPSŠz6'Éî-B 2=XØXÁ&Ãcàó„v»½}j·Û-BŸ†¼±é1a0ÂÒÙˆ¦IFXF7¯óca¨?0f ™;4†ÿ(èd’Zx‹, o‘†¦&–ÀÂ×ßüáÛL¾dø…qoµ!Ê€òíÈÈ[%>d=2à5CXÄ92 b°p4øý>_—ubboOIǰŽ.ö "Z£Ö.¥™ÃUÔ_|tUnVÚlJ3þŒ^:<•»ÑùîÝ­ãD7É :V66Zó†îpDx`Ÿ(loo·¨ZZT8&òAéºáä<²0=ö4 – z£±2ÂÑ/ˆ![ ·o¿'>½ôg³³ðN»iÒ‚Èöà_ó­H2ìU…fD‰ŒÆÃÝQ65)Gn†qdž Ñ»IƒÎ0]ªaÆÀûc¸nð|~넇|OÉ墧QCùï¢1hÉ1tuE04iÍfmk ¼ÊÉû|ôôiø\‚²ŒaNÐc aÒ1^"Z@·„C èDÞ±$¡€Ã4ÚNZË‚5<¶€10L“Ôõ?„«¯Žª^M€¡'p{Ÿ;s$°…KTdiE]ÂØa @ƒM$ò†BƒL;« {6Ó´Ë››ËÚ´MÐÐðg†N7¤‹gd([ÿ ­Aç÷[=žÈž‹ýUëË—/·¢1¸›È1Ú§jQÙíðôWµŒN …S£ AõÜn‡«ûŽ’ý²N¬Íßí­eÝt`FãF?6†ºƒ0Ô‘l­ÔjÄ!*øT¡†ë%N×¢?Äè›Âõý›ói2½x[*…ÄZ—ˆ `Ë´üR¨$¨üÃâ‘ÝN³lÙ%ËýavËÅÛ†˜`ÈîN WØb³ ÄĤW(È/ϲ˭ÀGbÏq¢7ÁVi­+Þ` ÄX‡rlû>ï[ú¡ïó¶ÓìûõEùñúöý¼ßï÷y¾ÏCŽO”PØ NJµœ¶1U¯ .«Õì’åPÌóùePVCáÐðõ×ÕJ>2¦Iì,4mÍ8?5`ƒL)ƒ‡ ÿÙî»Òƒ6ÛA®iÙ#¿¼Hè 2\di Å4{H)3ÕÆ†dju÷ž#4^¹ÂN5$'ʽÐâ©Áj2ÂݯµH·K$Û¥-¸a4Y Òºñ$IÞ8+D‡Ñ3çÚ `¸Pÿ# Ÿ<¾tj¥fX%÷ ™Ï{áÆ':Bþ¦÷y&§ ÿ(i ÷‰Á óAü5‡ ¤gÛã9íw!IuR–”CÕŽì—¡SYw¢Þ•|Ó$ÿ¤I‘hG“2nܘôÛàS [†¸xH mñqaÈÅ4½ `‘áfL•ÞÁî9ˆd˜›S* ¡v†*º0yçí÷³ÖÁBÚ1R Úf0ƒr®!kÆM&ÝÜnçÕÑ<‘|¶þBã…úY1· ~øÊ Q݆Ðð2·¸Û1††J>-YƒOK87>UÍ’êsO‹¬_†²»ìÐêÝ2"ŸÑ$ÿ¤È / ²Á;¦tÿŠ>1<â­à‚%žK†/ D†/YêH1ÍÒоéì„$)þJ—62æôÊ.{%;=RÙ¥Là–A,mvâÅQ<‘ÁÑL=ñV0Ì 8gÔû³H½ÆÈPÊ)óõdxÆ-ƒ ÓÕû¬¢¢¦"X…Šg½.î;´EW²&º–Ð_·3µßãùxPÖúîoظ Oˆ }q— A“n|õ'¬²Œ)ýž‡ «e€¢Éb±m€ ‚¬/Øé‹dÏôÏæszeçHwãBYYw·=9—VM¼œÈ ×ð’!aÔíßÏ>’ æhe(_I“ÊËe(§‘´p×֬𬫩¥ká>³¶ ó òAÛ‚Ñ2¨{l€zA® >¼iÒSž“nÞî?Þ¤Mʘ0lÃuž.ѤÇyËМ½KFSïž%Ç=¤ãsÔC'Cîðr;ªºÌcÕVÆD#¨@Ð+íÝÝeeÞÖ¤îªîJŽlk%M25æ8gÖM<Ò¤L Iõþœ,¨Úþû2Hv¦UôÞ:`©[½iT‹‘WdõB'CÎX¿É3¨¨Ž}ðÞ»­²1«ŒŸ ÌR0c h‚&ÝøD† =ȰÊ~.€ Óaʰ2Ñ– Ã-Ÿ/w1ÓmÉ{èÏ66c¶±„ˆ ÝÐ4­Vöb1w­é3š4C\JJœA£1û4Ô4dIãWWW²ºýŸQÊp«|e4i• ·hd„*WM/ɵn³Ë>o׸TtŸ g ”Aeéou%I»\Ç~EÆTùÉ0T½V wõ­ £IÞÑÕŸÓ ­&”ÞxÉ~.¦ƒd0[¬Ü2ttØNÕ`::hdCqóy»ŽÌ;?á#ƒ vwº~îac›¾p¤ªÛq¡ª»kÇЪBA ëØ˜UCC|ä Z-pŽ_w«WÆT²n I¦ây/qáyš P)2)—2„'ƒ¬¿¿uü/w%Éd©§-f^iRÓÐZ‹{†šøÈÀŽ&AztýzSùE“&IJõVÙÀÓF†é0dèèYéT½CX‘¡ƒJñ°®}¸=Wðý'´óÎÞÿ¯X$Ü•µ_}ù̲½jÅæ÷ª’(‰BNº9ZIÛ§5½0h´Õ¤Ûž'¸0³Çÿ$¢”á“õdø„Rrƒöž*ï­Pñ\ë¾ ©ìõV Z<§ùíp€Y-æçòâe²zì}šäkáöG†û÷9edÍ–ÎÛÀ×…µd0sËp‰ÈàíTõÊpí —¸eèZ[uí$õÞó„ ~Š +}Ud ½ø3Îèphš!hŒ&£ÂD³Æá0R´cH ÔÎñq§Sí¿óR˰vÍÀO†Ú •H°2¨lý¦ƒ»X>¶y,ƒm`¯ÈÀsw pajÞgÃÔéÌàëiÔ –Á@-ƒ·S•™\¨»väÈ5ZŠþTÝÔÎf{ÂrAP|Ï^92ÒìÂHgÈ]d 8äMú³®‰ï&b™Ä…ÉùÙÒRýüDiF¢\ž±ÿþA/É0f5ÐÈp©ã,Û©úÛ;~ˆ œ2È›šÚ#ÜöKiˆ #^*•¡+ïâR3CT€ð@½¸G¬f\ð «zÓ¤úFndÇkÏ/•¯ÁÒùÚãÔã4²Si»ÉPÊ@ÆVûûM­­­¦…~Š>ÕuQ,>ýîÅwŒ‡4‘áæMÝ Õê,¡g­&I¡0›%ÉÍÂ=a"÷~ t206øèaÞ ÄbÛÚ›²»0Іò2„Nx'Þ4#YäÖl4j4Ô³Ïyãnpa /h(¯žFÅùõ—@ŸWPËŽ áÊ Ir-°»IZ"qAý—§/^¼`¦½‡Ù2¬,uéÌÚuŽW)k’u!²Û*LÖ€üKhÚ«#wA !6TØ@Þ ÷ÅpÊ“bv8´V²!€UëpPoP0.¸ÕÂàÀ@#ƒÐµ® ç]ÔU€,S°q2$9ƒf¨0&‹h£a0Âc@À!‡ ‡Èf1Gß>|øóvøð9š•0;¹ /É`0˜­œ½Il/)×qnËD”÷ìv_¢t&ï£ø²˜8R7³[ÅJšv«˜„ta¦ Èý"ßxX,F)¢¡ˆÇcZ(ŒÚtf6Á÷ »££·ææ¨NÊT9‰ùÀ^ÂVy4!66–þŽS,’~¤EEðahÖ€êgeæåD1‰´0h¤%“zχ–éÀš!nÌb±-8†Ž„$d¯koÚä‡={8o8cž6ä'ßóÛÐYXL5v –Œ}Zv1mŸ‘z1‰zÆ=®þd°d8'漓7­¿»ûß—ªf [|â"ÃÅÊ/J ¢(.ÒFm,ÝÒ5=Ýå“!ZjðØ Òh®GUÔú/pÔ†½ÀEÊä®{,uv%+©×ö…¹½¤(+}tuªR oã”áÿ˜ØX¹";[‘ÀD–Ü$8”“Èò ž©N ÂÞÖüá–––¢|–½{óã¤Ò¸­Ñ¯ä)?CD$f(•ËËJeV‰/b®'yòÁãLDbþÒ=w ðmʃOõ=Åð¢jµ:]ˆ·=‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚ ‚¼ŽDïØüæ››wD¿^gûþæ-øÚ!ÿQ$;þú“=ô³c?Ý!y­\xÿGïDãË÷*=Tßøõ:¼AùBÅlÙÏe›·m‰á}ï¼ÁMµùw?<Äð‹oÛ>|ë%>¤þâ¾Çpáí£ÿ&îlzEÒ8ÞjEvB¼–ßf&‡H£^_çÔ·îkªDÅ›ƒ ²A | Ùˆ‹>XâÄÕ_*i Hz2ÝS¤¥Ý‚RHv(ªê÷¼T‹Ñ/ôâÄ0§¶ÏŒ‹+t½üýýûMÖ¤òÞ“ÿ‹¹=Ž!œÏÚ؃7´_PÑÐä¶ùêk¦ºÚ»¥ª.~…­k%jpÿ'ƒ -êþ‡0ôà° |¿gm ‰É©þ|ÐöÙ±®Èwd!M»ÑЛdz^³LÊ lÊnk£÷xWmcu÷®øæþËÃ×û?ú‹Y¼]ήïrôY¸7$Ÿ)®8"¨v¿ü.Þ"œtd€÷ÒÐ'~AÚ뾦él5ŠQËÈbÊÞ ÂmÿîAb%]¯“t“‹»;ªÿ ¬äÁ‰_bΩ· º›<{ßñ㌌xÃIsíÔŠmzE`Ñ‘:ÑЛ«‚ ÎÉœôÇG°%Þ€žÿÑL“' “Tk5ë?éÓCáE+%~˜*ÊîöGœ„­ÛÉBW,¼›†Y̲.ZÎz·CM@ðHc×9 þ" –/*YV9V²|E aÁ½`é誚iÔ, ç¹'ZÎNLPÃ0‘‰'œ´Þ«|EÝ`¨XèFÃ@å]—÷f¤³¥Ã×Ú–´†òn\Fæe\íö9ÆfTŽ;m^w{«ªìçÙb'sa`‚„\Õ•·µøMQÀ0ÌÁýÑ¥¸®àäÃN,,—5 Y·è»2pò›§:W'À¶8þ‘ö_Eiv/‰0-ËCLŽ“eÛÖ‡¬ËÊÅ lX ©)Md]7,–'0ÁRN…‰ŠSgr­º- y˜u  ’I4'X g“) írئ¾_Tû@/öº‰RÑO‹Pβ¬Ô ßTd—¥Ô_Ž®Â ¾©vúcÄK¬û£X‰Gã~⸦!î}Wú–:jXøp» À¶ÅäϹ­³­×ÔëÈÎÐè®¶®¦ÖÔõ Û¾œBr\6'ÛÚÓÁ@Xô² bŸYð/m5¥¡"¨eœaœÊǰL ´Â TJOyÖSEOU»ÛX߬ÍjKxÞ§¦!K"½exVªÅ:tN™GÃl,eJ¤XhïW}ôü@¼v™åë¯ÕƒšðÅhTò‰z°gWaPÞT; CÛû‘–Ü7ð‡X(‚ ¨i c‡:MÐ\ÅF±ÓjãÚ#ÿ«m¨!¿åΕêöE€§†!ð<å|®Â¤Ìsr(ègyBa¬ }ãï1f`SSJmKMéÎçŠÁp4kŠu“ôj>0²×ÚoŽ•0qZÝ:Bë(Ëž«v7~ M‚ÀQÓÀ˺ب‚žhaèߌm{%ÞQ\Ù˜¹éw€áSù~žîþüëÁŸ…²÷w5‰9&0x•6p¹„u˃҅¬PPŸu “ðêP Ÿ”SÒÀ$˜\…°Á¢ w„…þÇ©D‘”G:ýØ'4Ðæ ¿)žŸÊrüç_k!"½Þ”Ù†?¬"û×`ðßT; cVÚ›ÒO,Hæ^rÇÔ,øAe¥¿¦e»Á ¦šÍ±ûË×þl©o€ò؃@ºw0 _ír¹,íºnF ƒ.ûY±Xˆû·äØ ±0 a¸„‹äCÅÛ=„˜º¦4(›py}<²¯³FÅ0¨•,ǰn©ÐòjÏPµ;Áp3Å›Sbt”ÑÑðÕÓÃ$L ß3Q nǃáÍÇi —hÅôãÍp0¦t¿EŠVŽ2 “„K‰Œ·‚„ðt†+µ†V¦üá`š$RúÇIšhËв Í,rMƒÛ-LÊ4Ûá9ÖØÍžŒ½Ë=õÚ`pM¤°€eÏK~yfYNhÒè3 yY”ÃEÌ2r¤‰ïí0ÜÍ3•„h‚ó3d°ÕÔ”ŠšÒ6¬=O/^EŸL¢SÀT²`QÀº@É ƒú¬ 7_ÝÂI€ .©hAoÓªû ®j…Μâ{%Ιi§ Êy.‹Èe£b:ÎqF}ÿ+Q|âú”2^£ –x’(:¼„7Üõ0é|^>ëïVsÖ.H7«´è•[ 0ì­0”,(Aô¬@©ièÃWÍ&Ì󜸃WÚ.Ú*«P±Á§­if¨ª¡':+h’ÜmëÒZïý„1 “ܽŽÐÞ"‰eèÆÁm‡a¦™ „këP×”¢XÒ×W×A`ä¯ “ŒÍQÀP×B ˜ç°)‹ìŒj–Œ]]"¡ëûû?~¿Ÿ†¬‰ðJôÂBHÃíèd8ëÝ~˜#»™d›¦š4[±Ò&Y÷tŒË¢èxrYQ½Hl8£ô GÏ?—ÇÌYÂfãL,EWa8*/ï_(Êë·1”c; k„2¥ÈÜx•€5 ^°ú®À[v|Þ0©XÀ‰´‚Ì1É3û­0.ø´J¶VÌã4ŽSÌÇ–.h6 %Íʬ„€Ó‘aÈD†~0NñÐm°/4,ÔÔ”¢—š Q¨›¯–sq(`H*!(˰n%ç]•‡/ÏU›†{?…±ìŸŠ.% dáÃ#<'ØŽd8ùðmÁ6ŽÉ]´? êA—Õ7âêÎq†ÁqºŠ¹ƒ¸ÑYÒ=‹þ'éYLD¥Ü=p$ ŽCÌàáúû/kàµ&]ÖŽ/­æÌ£ “VQb ôÊA˜º^Y<;L¢•³¦bA È*LJM+ÒTZš÷T ÒdCgÙbк² pRUï¨8"«4ËÒÿr>¿‰2÷»iÖ­vM[·Ý6éeŸþ½µÉžö„ ¿ Q‚!x„€ñâÁ‰'¯þSþIÏ hµMŸ2î÷“P‡&V óšÏ¯÷0dXÑ…Uí½yj85 g³Ëá[è*óá¿Rô.Úž׫jJº(b'C߬Iø¦­Œ‹¡€¡Zf8VUÙÝ’#³ÓénLC7ÈËœ‰óíh@ÅÂùËÀæ¢8:›äùü±¤ ÔÇæšûCÉÎM¡Øž–\]%š‡‡0uñ¯KºvîÙ}ÌÃ@ÔÖÆhm¿àèØ†Ÿ¿{Ä `Cà d ‰ñ0ŠÜƒEÑ0qdÙ§a!F¾ï§z¨i¡žâ!Š©hh?lC-F³WÂH²"½™…70lb„b©†¡ªºRÀ $ëDÇ9´ó¢(r`À.r6ÃðU·Ã= »šJêš- \nO^ y¡N¯†%±‚À°¬ dºÒÀ@úΘ†I CÊÞüúI'×û3ìM*¢ØµŠäéòq A( )Vöóë«U0tàrè û—íöe?ò†Kè¤ÁêêšÒ“vî/[³•®w/ãušÙç‘ȉµ¤žþ‰¶Õg1Ei5¶ ãFA ìø‰‚…áXÚ©$ºRgdŒR Î/Ž%EaÍÂ$ÖgH fÉê]’ÉÊ’N`0M“m®)¬E©„8j` lÚ^­M²=[¦€áºt´ rÈ.‚i‡Ô”¨År£Ü4™×ôóüjíÁY“F­«8&aWÎ$™ÞUvh`PBH˜´4ni¿íoV°  éRÚH£ÞÃcg4ê\]SÀðí[û¶9°ê9Fo 8qtKÛkhßé|†qP½¿‹Ù‘™òº1ê×’½ƒ!¥hº­mhB¯mk„ÈdÓ˜uÚe ƈi²qz±O« 2XXãIh)¯,¼<ŽØ:%×%axY晤܇I< šeYÈ2f6/¥,®x^n²Ì¤È6‘x !dçê–Ô”@DoòzOžØÂƒ€}j‚¡*îÛ†]¡ßcqœ·«ùS…I I>M“Ç ô–š…ÖŸX8d®ã1qºU\K–-I1Î)`8ë#5tΈ}é[ƒõ©o7KY¯J‹‹ÊÎÍÙO–À4åg#f‰v ZRÈ1ú–©ª‹Å"8>SUÓê7-ÓÆž…w†iøœ¢SÍek¥»ãš…S$²Ä™ar™H` N4Ãਠ©Á²x©”/ó¤v†_ÐÃW–wÓ#v5%/b£S`OíFàAéM0X•ÿ#0XµñlîÆ” ´2 þ#¦rC¥·¶´‚9«ò¹›"”º9¿x¼¤ƒA@¦Íþ$0üÜÚ&N€¡›äb˜¬¥Áý÷Ìïí”. Ò‘é‘J¨·šøeùNÆQ–þdÕ (ý†´Á/´cËö·Óˆ&„…‹ÖßÁ€}Ë&ŠXÁ@>Y¦€-ÊRQ Г«@@ÃõnÞÒ@jJü ,T0qèp^# ÕE­`Ø]`žT–ê!eiõ) oJÒ)ޡՙ¯j9Ø@"™$S×‘Í¦å« “D D–©<}Áö¤˜V$xÔaÒ-†}±^¡Å÷zIîÎoèQÀàˆû0é „»;ÇÞì]³;4ª~½á|ƒ3hjäð¶dmLÀ cœ/\ý- ¯¶ “ìf|1PÕ@e[‘´0$‡â¨a&7ÂpM¬·4¸€§°På ð†Ç<0à¬ÆL+¹m’’± ÕȤƒ¡Çn3ì­azw›EÖðˆçÃÊÀÙ†„³‡8N‡’ÅÙ¼ÞkN —œà¸y¾~þõëyç®#pmýK7Se]rìÞ‘ñRé4Â`ý  íîÆ˜q™eYÄ&£Ýui4«†UOÿ}›¯>³nЕÆö‹”>ÖCí¤­ ¬àà»"j“£ú—kUu$*‚U²Ê–{>ðÀóÆÍ0( xGÃF8‰…Ö¨ÈsïÍ‘ša "êi­TÀ-SÁpɪÙ6”MÎ'ìe8YÙŽ¦†8&3sÎFr]ÉçrSöç5¥‡Òäm9†ž!A’xVDp¼ômÞ¤*­vÍ37ÛGuße†y Šx°Û¸ïGõYA†Ÿ1v/¢Mª7rñàù'Õå2òº¦aø•õYÞpƒ®8F_´[½ùÆu%ŠO‚ÁøPÂíTÕ$Š0icϯ- ¼ÀCèyäðøfz¬?ÉßÒ0>…Öˆã ù†À6Ã@ä1{¥j%­`ÈI_ÐÀð•e;˜sŽ”žCëüOg-º¹•¨<2Ûf¿?Ñuz< >ÿHzÜŒå¥S'7ÎRƒ!çAªéÖ]E‹ q÷ûyx0P„0ØÿƒMC«Ý{‚:ºÃöüÜ£ÜÊ`È; Þ¼È 7¨3f²JÔ{ÑW–„N “JƒýÀ ¢Jb)h '<Å2…S‡QFø•f¡^[O&BqLÃäDpÆbYæ1 ª#6Ãàáy¸Wªîh’?¶ < ÎY) ¶—­îŒ¶ï¼ûϾüïöùîþŸîˆë¬”ý€¨ý«í_ðó-?$æi$ŒäúŽã» QšCA¢‘c|ë®S%°V¯_÷¶C H÷0¤é1 ) „ÛƒÒñ¢vÒ½m .ðía¨ÏšT« £Ô)ö·†eZáIÏøGoìN»Ã?ãß´0hkeNT«žó‚À“ØvcÝÖgŠÂǾáTpæ;Ö†Ê6A3 ¼'ç{¥ju=¢Sr¬\öøfÚƒ oIù§;[ÿÕ£1þd8ƒÃÎzl2ü¼ä9+²Næ Áô—KßÄiÖï„ÍÊv÷Þ )½?ÌÇ›Æ40xéþÁ!ï`ðNA´þÉÏÄàw9Æ]±£á=zŒ8èU,l}Ùô·ÿ×£‡Xž= )`Š8á@=ãSÚz( E™LHÞù6QfœÊþtIò0¨Ú\R›aÀyM±WªVÀÙô`〇Í0©È`Üé݇ö´*‘eÈõEù1Ûi¸ÁÛôhN†b‚(J8Ë­ÝëÒæÉíSrÏd®Ç †2ŸÐ&÷œžŒšlÖÔ/ɰ ÎÄál¢ ’’!„)E‘Á*Fn¦–è§X†ÕªÛ îDÒ¯Õ›§{|ófV{¨ «ôÖU©˜r¿^ŸKßÿ’,ƒ%{^ßkxï—Þ&šžØ™*c—¯4«J6ǰéBô.†V,æÃ‹ {~2#Ë ¢‘XöOªÞô»kÚz­.H"Iv&©;–ýzÎ~S%åªiŸSMWÆãÉXѵi–rÃmÿ\3S7ŽÂ{"žc’eÈsbÕ€Y#ÈÐ.Do¦–´ÌzšÜ9¤ÑªÐà8Q¾,&†³Jo?l8fø«ØÁ%… £±lÊ“1þ“|‹WΪ}Ú$_¯Þ)ò’O¢8ŸÛzZg+ò8 WöÈ28NÔ4´Wø#µãdH¹õÇYlG~ªNçm*dÇé#Êp˜¹¥Îv$ñ6CY Ø¿µ5/¼Y~bs=³G”áRp>E¸¤–ab-.hšµ Á1t'ÓžôT¼ÏÝÁ…XÙÂùÏ~%;¸¤Á²æs¼ð~ÎÁ¨0ˆ”Ïj5 »°[·²­á0$ìÁ_SL“pŠ×ûJq¸Ø[¯Ghk÷ÚÝÙ…Xò§'¾y¼$Î ä~}˜ÖG\âR1KÑq4ÚR1ǼÒÕôóð˜S¼ç¸G”YJŸ•–ÔcXé,¶• kh 5& 2šIjje§BÃe5±¨”ý1׿¤’á A¸'|§?¹æwuÁ ¡i’7ðú2IàlŸßê½éüÍ–öÆ™;Ë»Vì_àï–Þ Õ\{µ&ÍB/•µ¹jPD¬Êµg´EÄNlej¸¯VûÇ®@#CŒ¹ÌÛ’§,<¼¿Oü•@Ä÷"üZÇ­O8HÄãÚˆaØ\:_*åÓßr¹\ÁbžFhúWXà¿î*þ­a—DøÚ‰êYghæ·Q>oãÇÄ_šºŠ­=<¼ì3\ò–ÒyBôf³• dÙ¡5;x!x{ôÞÉdÔÂÒWe·‹¦k~!‡kóYÊ™BS ÊKªÍõÿ†ä9o Ï_÷EdÃɰOìÉŸ­wÿy0eUQTÿ`cãK›d2ÈÕ¸u,1èÜ~ÇþÅ/l74}ñœÜÃd—wÆ2ËÄþ„|UiÞëuŽ«ê÷n™æ”1Þ³‹'E,aâ xUD"Ò images/stars-2x.png000066600000002351152330733730010215 0ustar00‰PNG  IHDR*JÍ7ưIDATxÚí˜mh[UÇ…Á Ÿ? ‚ 8üND0(¾ ÎÁD¨t*™¹Y B¡6B,"Ñ臵q›ÁM©nÕÑÙN›–²eíºuMÚ%ËûëmÒü}N“ÇÝ-É–ÜÜ›ÝIø5äæ<'¿{zÎsÏÉ# Ú¢mQEäú-ÜØ 颤ѵ™Ó¦€¼o@¿¢ùå—‘›â_¹©¤~E%ï1ä.¡ÃØx]óÙô'š÷ïDv‚$?‚ þ%ý+¨?QÉû²ç›ÀÐ{1ªV}‰fÿ, ô °ºÿ6‰o@£|E¢…ðvä¦ÈŒ+û*×%_7µÛ¬­há–•@Mò’9KRoÎJB¶Ò(„8§–æG4ó{ºÿêüÔ¯àzÿúôØX~]V‚úXÕŸ£é_‡à†¹9û@ýzµ[Lé3XzE9”O h¿êS§½ˆ ×^lÊ8[Sž’?[ «¦úI¸AyžÖÖÑ„ÇèwÀüsuC9‚=-ýÉŽØ(à{¦n(GÐÕZÑøI/–»K;ê'<ÊsµN4=i@ì0glŒùÝ ¼pëDãgÞAôG`ö©ÆyÉ?L­º]3OÞÉB'è³ÛÌí¬l#®ÇNÙ[#ù!ŒK¯Ó—˜Ýº&(NÂD¸J×FJm˜Å¢W{ÑÄY’8üýX‰ð0è½àóÊ:n&ܰr”sJíSmE#n;Â#€ÿSЫÀM˜ïÕ}þ1I‹”ò¢‹¶¢áa/òk½_ƹ=ÄJ9ÿ¤v¢‰óÜÎMíz(¿ŸÈh'9U1‚ÊeûåµödmÑÿ½hdlóƒ¤-ÚÕZtÛà j"@˜õ.ê"P¦S¯¢F2~Ó«¨“@véS/°ì.½‰x$‹ëH«ß²è¨ÞDí²‹؈bAH2ÏêEt Kó1pä–,:¤Ñ>™îˆuI>ªÛ´hˬg—pwd¯Æ¢­DÄûuÐC }ù0ªE±dQpNt4"ŠF(¤fP+2‹ýÜ®:¥‘:x_ Ép¿V¿¯§/–´42¢–Íù¡uÐÔaI§’ÅdcY)8¢ä+KºƒÒUogÙ|lj•4–˜š-O©¹w¹©Ùkv¹ä›jÕQ'—!‚ŸZŒEÍ‚¿å?Y_7š iåk¹¤Mõ'“|¿™™ï’ •\²_ËG¨Y¶kf4‡4}Öó¨Æ/< %A‹‘E¯k-ÚË;%¥A7ɲF-EÏqMU¡vöj%º•€@ìà•Ý$‹žÓJ´‹ ÿ½b=ç§?ªFå1e«¢.B섪 fæÁÏm>Ö ºYn×¥¶è&(®…+F(sµ¯ê¾21õ¼(IU·}¼Q[ÔD qñ¥ZBÆNt”Û»øzjö-ä#cà ›•çlRSTlœD¬…N 9½[þeÎåf?1ÁíÄÔS„BÜ4çšÔõ–¼Ée<Äž:lV MùÁÏ®–裢ãÛ¸cæÑè‰UHá.¼j‰î% c€ç•Bžà=® ƒ¢,kçUb1Ê J‰è¿çŒ4YAš[IEND®B`‚images/freedom-2.svg000066600000017670152330733730010337 0ustar00images/loading.gif000066600000002530152330733730010127 0ustar00GIF89aõ ÿÿÿÆÆÆ¥¥¥÷÷÷ÖÖÖçççÎÎν½½­­­ïïïµµµ<<<ÞÞÞ˜˜˜ooo...>>>‹‹‹kkk@@@%%%dddsss===???:::}}}”””999ggg555///vvvAAA!ÿ NETSCAPE2.0ÿÿ!ù ,@–À…p*HÅ¡Pài6”„B8H¤Ã€ä1(ˆAá;X4 ‹‚€àU B2="-<£…A€†îçBoCaP JhƒŽ$ox” OCh #x{ bE $ueD… hŠžJ…Ÿ€f}D_… Z`¯¨S’ P”BV¨sA!ù, A Ž€‘dÖ™&jǘdg PZ &@·ÍéF1°€˜†(˜(¤ABA"ÄP"ÃA¡(`E¢û%%Ve€Y!ù ,> #Žˆ7ž£W0ËÂ$.Ê ŒçzŸÌ a3ŸXƒ¡j‡†‘#|>‰ÄA 8‹§ *d ÓèHÈ bF!ù , <à".‡0ž‰" Ý2tÆ8 *»\<6&â4Ç©A ‡V€ÃŒ§ópª:LÕlÇá@dE@&ç»@PE!!ù , CÀÁÀp…‰A!ŒÅ€` €4Ž i¢8 ex…”Äp ºmty|†”ÔgE ¸O½i%mEA!ù, [ð=s€¼/½€ÀPÍulÈ$—Ðp‰`'ÁcØøÝp>QÁä; }ˆ ô­‚€À)¦¢@ ;images/xit-2x.gif000066600000001471152330733730007650 0ustar00GIF89a(ö@ÅÅÅò““ÉÉÉøøøô  ýòòô¡¡ÊÊÊ÷÷÷ýññþþþÝÝÝ÷¹¹øÃÃÿþþØØØËËËÃÃÃêêêéééõ©©ÎÎÎûÚÚÏÏÏúÙÙõªªÿüüýîîöööò––ô¤¤ó™™ûÛÛäääâââò——ûÝÝøÁÁìììÜÜÜøÂÂáááÞÞÞùÏÏùËËëëëàààøÅÅÂÂÂùÊÊÄÄÄÆÆÆô¢¢ò””ö¸¸ýííÖÖÖö··ó˜˜óžžÈÈÈõõõøÈÈ×××ÿÿÿ!ù@,(@ÿ€@‚‚ && ƒƒ$ 55 $0ž0@Ÿ0«£¬‚ ž ¦§ ·0 « ²³­Á ƒž.@§@.ž‚«>@ ³ @>«@ŸÒƒ¢‚О ¬àƒ¯‚Þ« ƒ!2»»d„µbD±b#V šàé;RÒµÓ5Ã*÷€ä£‡†»$¶{÷ À‡bñéc¥CA§_=…të€ 4Õ#æjP0q¸ÐÓ…£mÈppU†I - ㇨K›Ȱa” O'H¢;áIÅ£«J¬œWbÕ B<–| z&sš-nî€bP·U)Q ¡á\Çì’Ò#+ŒõÂudÅd´‡‹wE8ù-£Fb¬:tB§XXªæI~”o–† —š9ÒSEÀ«cõT¹ e0RdF'*…5l«b|î $¹A DD ê)‚G‘Xtкª‹M£´øQÁS-°GuÂ…Ur€?(;images/wordpress-logo.png000066600000004660152330733730011525 0ustar00‰PNG  IHDR?¬·MiPLTEFFF!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›!u›FFFFFFFFFFFF!u›FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF!u›FFF‹9¾N!tRNS@€¿ïŸ0ß` Ïp¯€ï@`P¿ ßP0ŸÏ¯pô§?ôÕIDATx^äÒAjÄ0 †ÑÐH2²£X¶ùïÈ:u¡ „LW30ú–¶6zh»ID‰H¹™ùú¼¶ëê膿4±Iöl¬É,‘+f~„%ØòøH °Qâ‘,½¼‡ê NáHJ´.áj˜±v’õKŒVc‘ˆ¡ÉºÃc=•ÅŠD2~÷M†‹˜NahyÉöê,ëTV×(EÑö $ŽvnÜq“É¢«!H–ˆ0î£9šÀ{’ü#’ð´>ÇZùx’ôOrb8ô$ßÜšÛvëª@ãçÒÜã 6áÿ?ò!ÀnÓ=ººöØá%ŽÜ>0£)É$“HÏyÿ "”{qñ÷ÖßE2Øî[Ö„¢¸íß ³£Ë”—D4Avxg$Šså2åÅJ×ÑVoŒD»Ý)á–Z=’PaDˆ™’†·ï‹¤±múÄ‹3Y³v Är¶UoŠöF<,­šb³òjÔJAšå#^kpyÜáuÜù9’ÌcY‹_BÒòI›ð†´ó˜™ó­›¬ËëÁóØ”å Pœ{x=•åîœáΑ06æTúß Ò¹tÐ]˜bi Šå!Æ]öh/Έ ñxl€ÛtçøçÄ@Â!˜tW¼û•â:‘æzÁœ…Ødë\za-<)‘ÂezsÇ7%Üøsµd O¦&Í/xÓºL±jn_ˆD¢]öäè\‘Â9N™ýc»û“H"Áký ýF»L %ÖXZÕÜŽS wḬãl' ò&2gK¨ŠûuãVùñ$&B¢À¢ @ÔRº¯aúP‰T5J9šfU×}¤ ˆhdN†i°N7+ V“à ™sá]¹}à:øêâŠ/o>J à:„„DÄ%MÂf£ÅGß?ílyŽ‹€D´Ç& Ø´7E –¦Ø8Öæ˜ž ‘Ü#sÎq±ÝcòÜ!‘Êõú~uWgõopat·¾ +Bø’¦«y  í—¨ÁZ^‹J§5IÁZ÷  =y¶`ŽYèCøQÕN@‚æœÑ4½ÁjsÁ|q÷½=k¬Ì÷³WÐðxn»Ï‘`Tº‹ÁÙí… Ÿ=†·{îï)ŽI{$Ü—îvÁœaÁœÞ#’aElÎÉ{S‚9èM B½ø1 ÍjçúÖ"Aœç]Q’Y-Ob-í¥‹ñH´ðaz¸“Ä3”€„K ‡áÌœ>5©·ˆD±9—§7·šƒÞœ¶Á+šV»POJÂpB 54B2ï8‘¬*ÜK&Y÷¼Š>h_K5Hl@¢Ìa‹ÓšcIjÎÉe8@ÞìÅdWIHÈ¡uäS ¸X9ƒs !!é¥ÛˆN@Qù$܃ã)¾`Næ$H´OXá‘9àÄ®¸‚9ÁÌZ-Ar_BBêì ‰fŒÕ­Å²ñ=$Q}i+Ø(kho®«*Ab»Üp27DZôM@Bæ·©“ƒàÍ%©$$É: !ª»dz $°p#„„ºI‘@‚1‚p”É83§^©<6@Õ¢Z’™óñÜûÌÙ=Ð4"%X&H>¨‘çH hb’V’"鹯”Qrˆz´Í¡ô<,[b ÐòfLbØ{s$aß§+|ÎÞœ£ï7›Øƒì§qe}åH’H Bt:>5‹‚,0íIðB+œK²1dÞ([e±nŠa5Ö8—ÐäÞ 97ðæ%Z×]ñ$¸j BY¢1K€NGqüiÖ¶)0d–Ô«ÊÊ,æºr—1’ hà šƒ¼ç¢ án_œlÊk ­FS¯ (˜üÆUUžðMðfÈc#zc>ã$æ€7hxó­òzÚROú´¼¾B"UKu䳎ÃBÁò)AJ=U:[¼7Í̦ ½±+ø×"3¼AsÀ›ï5á5ÕÖÏšðõ%¬­_! ·{ µ¥¡é ãº@M×x@fSèÍøL°"5‡’áïqóbTÛG™ôbT3_ ñR×\†®Ðú‰dœ )›ºÕoà…bC(d•Ë…HÈÜø•¼y=Ðop*9&µ!^<ÞÐ/Ì2ü +BBo|«°@#¤˜kÈM–€7y̸˜O—Æ™XdæÜ0ðAÞ¼~ì;»$;CËÊk =öEz†$<ìÉ(Oºôr/!!/˜ Ó]Å[jÃÈËohÐ7ð÷&°c¶J‘ì’mÈ›üpàêˆÜÑSéq;ÑáÀ~7;Xøã…aOÂV6ax·Lìyš>¤@„ÁßÓé¼ êëUŒkHýêÊzwüŠÌ*Wò†Ž®÷õ1>BZû#¤m¹>áiÚþøÙ’`Ø<¹6‚Zª¨ù3ÊDƒ³èXUÙ"qÔU¥1›„F&X‹O‘•ˆ™Rhœ¼é³Ø`ëU«@Ê"5ç1 oæåü ±ŸÖæz_üjk>Žb%øê‡¶í%r5^¨ŠFÌ<7@¤>VÙšN‚Mº¤Vªå*GrJ†­÷† ¯›óc[ü×¾u•ShÉit3ràR‡ÌëŠ'C½š¼imf_ù˜ ­+ÓãFû±ûÿ¾D;ºt¨¯ƒ73>6:Û¸z×_ÐoŠê¬˜×©„”ÿÝÒ#Yu°M õäMãC3®Þ n˜ð¸Õgƒ~ïö*@øÞHVÒjdÒa‰–Þ \Þ‰€ £ ˜[Z“ æúÿ—s6 à ¬º¹&ÄNäý‡l ©Íÿ#œô–Àÿ Æ“ ï¹o´U*7YæÅ—`Ô úŒ^-¹ù&!˜Æàh(å“~FûD­|sôæï’Å*÷Å_ $µ½ßÈ¡è5fáhÄÙ…ôQ I‰6‡Rþ¨l"Í?°dÍ3Ê¿òTË`Ð6y—¯eæ¸Ø ,Ô|í¢È7ô:·¿ ò{s ¤L)s0HÞ3§+­ƒ’ž7IEND®B`‚images/contribute-code.svg000066600000022375152330733730011643 0ustar00 images/mask.png000066600000003721152330733730007467 0ustar00‰PNG  IHDReeT|-ϘIDATxÚí]ÛRä: l©þÿ‹÷ Ûê–äd8ÅTQËÆ7©[7;™ü}^îcúü)qRû¿j/4×ãíÅú_Dwß+û\FÈ]h»zÞñt½G;ð®ýJÒ:Ç\±F»’»>vpý ˆcÒn‡d‘æµ`«Â±sVÖîêsɵÇDŸà$h'É=¢×]ÚaåŸÃ£çËès'ø¯BÔfOWd³±’Lªe•µds(àŽLƒœ×ŠÆGWH¹B «×¨Œ·À€VFa ¯³]¢W6EvÑï&xM¬,ùÎÊð8°O°¢·1};BcÆ칦‚Ž Jv®YÙ_™#„eÀTW Ê´Íd›>*Q–é“Ù<šºZ„LÌ›™ß¿£qÍ)•£ü“À½ÂÜ'åüö¯5Y|—¢–=¿ùßiÛWOYíXѵ؋ŒÍÊI™·¤0G QWƒõ5¢Ø°D¤8FÖŠ”çc‡(X%KIºFÎñuÃ]‹Ú²ú¤æx„¨»Z&°–[Qp&×NxCêš²y€º­I%&òJ…H#Š«YtöŖ˪'@zU%z’„¬ñìú«ÆI‘å V%¤±9…¬ Ÿ:Ë'_Þ2áË‚£éí™*¼%C',¹"# ¿/ça×gYVhË´³dî*,ß:óž YêÿÃDŸ}A8«H†#‰¨zþrŽÌæ1*‰íâk¶ÈwÉѰŒ%% ~Tœ „) <¸f¢Òù!£—¾V@ƒ´âŒb™¶Êx,ü„A}’R}&8:SI´R<È ä©dID­ŽY˜Ê Éø @2¤°rf<#”ÿTMƒ(˜‚„øSÅ”M¬URºB/èw– ]DJ@ MäÁ/‘|âÁ fSˆF«D1wT¾®c kIN r³Èœk©!­ ³NÔ#„?pT/Bp4ÌÑñãIòŸ Zæ“q)O1ÒªÀb£À*¡û_(|š”Š!|êðØ”ÃÌ>C cUÒ°ˆáJˆa¬÷qô|Á#~—!޳{ h×ÝiÉ~ˆgðxL¼dõt#‰õ¬èö+›{| Ìâ~Õ#:½Ì£’˜)-QUU8ºVäVÀË—&üA”«#¹é;U=¹PŽz241Ä:‘´Õ9åÍãNŽ•›\ìýûð*´ A³ç¢õ»Bô#Q1÷ÞÕâàäqˆ'Ã’'¯y!'Q¤0_5ÂS”{íNñì’vGŒgþ…Wy…ØH!'c.«€'ÁS¬q§ ç‹äs2„MsÊcÃlV +å aÄ0NèÙ&?÷)o‹ ¾Z6’`9YÙ¨•ŽÉ9ªx*ù¤Ë@§ÊŽ”Ó "0Žü~‰aPO–Ó,Ù)(ZÆ®ÄÌ”–™¶ëÅ rÂ1Ë›®²˜Õ’C?Ÿê&‘š¾#å¨ÐlŽÚ9QuüꬬkïR’éÃS*§šÝÇÝ+ƒp¡÷)¯7ë·ËgÓð…&P;»3GïHÖ vVÞy £htT’Äú(v×me0wß.xâã”ÒRp)Võ”ì}iûûi»ôùn†”¨ S-Ä1{'wÀ<°}îëm’±!¥´`q| U#S¿Ž¡æ°ñœS Vhx°A}‰¾¸À˺žÒœ&úNÐ £d7Q™ç¢”+RÞ“! ãk §¾ö€ ÁíèÈø?=›ÃH¡àâURôšnDqíñq“« $’c™P‚‚AdÆbqPªâ€,–«’Ø(„4…"T”?&;HÙ³@P(«0ˆŠª{íŒ^^›Gtg/Oø‘è»^—1«FR ÊP%.céž|B”õ¢åÑ=ˆ0†&7FÁý!^ñþŽ6v½iøBÒšT%±);ÖQX¨ó*'úæ¸]ÛOAÁ’;ÇVï|ÓŠú©²MKâìBÿN­Ž—¤)ã†yÌÒSÞ)°/i«¢Ê&–®­Â—\Th»B–»HÆ¡ä¬ië4En ÷JÝ£¤àÀ\Ýó^öŠôDŸêF AìØŒ 'õ³DŸ™ wYj缃ÌÀÔSºíƒÍ!Ä?ÏsQÅÏûJw‘‚ÆÐM¾1ª²} _¥K‹Æî\~Õ$b˜Vrý7¾zJÆjº¬¯ÛŠ3í£»Æ|zJ—bí»„™ù‹»ëú(2ìŒ`J DW]ǀȮÛÑï·üþ#|]D×ø•ì¼k÷g®˜·ý #©ÿ·³¯h ãŠØ$X¥!…±lÛkŒgR"å£ f×W‹U UãÜyâÈÌ?#¥Ãz† øaÏ!' Xi§Æ0}¦ûv²egîTö„™Ùkc–èÕ>ˆ“Q /2RÛd^yJE¨ß<æäÛzJeâ+ÚOÝ<®Àåëæ±"|TÚ²óïÂÞh ùî~Lß‘åfÁA–¡ Ö`å¨wç8*|])ÐÉù¬aì¸@ß±Ú§¼âÇn0†;>Ãü‡¿ÏK}þÊ9såeÏ5[IEND®B`‚images/align-center.png000066600000001042152330733730011076 0ustar00‰PNG  IHDR„8<éIDAT(‘RíNAíKhH eKD‚>†HÛmÙðÃw4M»…–øú£š¶vA¾Jº_u™Ý™Ë™™ºÖÎ&»wfçœ{!âD3F±ÀWÆ78%ÄðÄ‹;JŽü¸!ë gˆcxÀT¯ëw–ÑÙɘFwkî“•ë–Œ³W¹^!ß¶V‰.¥~§ï H_Ý ? <ÿKໃ(lG…Å~)ß±ú…ùÏe£g>꿆ʢöÝ÷ý0 ƒ ð…” QŒ_}ƤѢã\ãcÄ5l߬¤—,1v‰ñÒ‹dH³ #àáfz1b$ûhÆXï Ï&Ë/‹±÷5²œb%Æ}pŽñ‚1fŒ2Îã+F«1eô¿(Ì(?7Ý »ÇÞeï´ß·SObHzé`c·Ýf¿kï³OÚÕº¨E@pI°?HYõ— ìà¶À´óÁ~D‚ÄYK¼Ì9CD‚¼Î!2eÎ:¼VQ– W”ÛC†c®Þ Ûk+ÄñþilÖõî|À€+› Íô1À@fÐUþëáM,Ä0BÒ•ãÞÁI’Œä1/j›W8êÝåqθÚFÚkŸa<L1QVSyà¥ò¹ä%Kd®,”d‘Ü*wÈ]r‡Ü*‹äY(så’j]T@/Ö½ŸzõbDû€¡9ïc9G (È1Èibœ&FŒšöÐI7Ý¡ Ê{i§ZÙ%ñˆ&ÇĉÏáÆÓ…NˆÎvÙÅj†HðoäЈ6tÎyæ(kÐ4±c£ÛG]£Ã4å4=ìe?ûÙÏçD³=¥¿­É‘&Eš4IRΠê›=^Ïqô¤hÑ¢ŸÓŸÑ¢Ýx4»Á™nNPP¾]ÿXOìv€š ÙÔuzxOV3Cºõuúý79GΓ9r™|Y.•‹ä 2G¾$—Ë¥òy9W>««uQ¦úJÑé¢]"­#úJе:y€lÑOu–褮u€H”ãŒ2âj”qrDÑHg9ã9ó:ÃzØ€&šH’,º:[‰ <Ã*NqŠU¾kHgé¡»D=¾!"Q&é¡Ëû³é¢‡I_ t2:mšQtR/È/T­ŽèLÑBetD×~Ò\è'ô°~b& G—t«nu{)ÛƒnÕm3ƾ,|UxQøöðá»Âw‡ï^çúÛ‹ÂW‡¯XQµ.ªÀô7ŠÊòj³üáG*ÈÂôñ‡€r#Dif;[ÙÊvÚüÀ'éæŸº9ÉT˜ä¶°…m´ñQvð&ï0Y²Äˆ“ð~#†ˆqšl˜`'Ûiç}N°—·ÝE²XY"Ã8“Œ»ÒŒ²™§&¾ê9:hfG‰1ÎÚu7H…u°\wC¥d­Äqç"5 DfÉr±\! ä:©“:¹NÈr±\ ³ªuQþ;@]­šÕµ¸àÈ[œ›[ÔðTZ=à¹=‹ ê2•:„U_óÜ>‹ jk ¯£õuﳈºù ¶úÜEQ/wb£¾îŠ,¢â#ÀFeTD]ŒPb‘?¸õ8ÎÔ_uI±EžÎâ #¨¢®-¶ˆ|ÀŽ’CETM±EԱ㜠Œ¡%Q÷ªÜ‡L0ÊÔ“%AÔRÕ®FÕúú´;QŸå£³™ôvvÞ¤~™’´¤oüyw -ðn`_àd ¨¾öU `æ¯óÍMfÚL™s~À\TŸ|›8ƒ´RŸ4ç—thίOí¡…2´`n,"[ØÆò¸y#<Îf¦H¯£‘ÆÁÆ%f]½˜1½àdŘE?=4Æ–Ç·³3Rô|ãýV.DiäU¶SŸ2k}[1ê¸añ$øMÒ\„¸{‹7°pݹcfÆŒ˜ DÌùõ©.vÓH¿ën¼¯h%ÍH ‡Yoì!ŠÅŠ1ÿÒ™"fz”̺Æ%‰FžÇÌ”äÂ̤iÌ—Ç[ø;f¤ØØB†ÓÅAêSfm)P[ŸleŒ1Z݉Q´t‚˜ Ì×6¼t쎶yËä[r“Ü(×ÊB™+52G.ü×õ¬×Î¥ IEND®B`‚images/privacy.svg000066600000001632152330733730010223 0ustar00images/freedom-3.svg000066600000003441152330733730010327 0ustar00images/se.png000066600000000170152330733730007136 0ustar00‰PNG  IHDR ºì?PLTEÿÿÿƒƒ†¢Ä›:tRNS@æØf IDATxÚ…Æ1 Â@óÿO;Øâ¨D8ý¨X¢béÊ ©!æsüIEND®B`‚images/align-left.png000066600000001052152330733730010551 0ustar00‰PNG  IHDRo¨?ñIDAT(Ï}RËŠA½·ºª_13¨qíΕ?!H6³ð ]¸PÝùnÝ IèÀ N§_õòt—6³˜ä@ݪ®®sêÜ{‹j4ÚL%Fe4bç=6ªÊÚ~öÚë!Z|pΑ}Sþxÿ†mÍT¹$—ÚU.J}þ‡ºd2yýá»w‚E$ˆØc&èù̲ÁÁV”œ$q¦+ßÊ:åˆÅ¯˜ÌUYþ,îžÕÉib|W+e‘àDQ;X Îf3™z:‰{™$íï{‘]+Ë:VÓSÇéw¯n®˜’ C”SM”…›avŽÇ#¢$.]¤¬³rš11·~Ú¶m~mµv>cç)¢/?Ë<×\)Š1s±X@H!ñ¡ù©´wä»È“M•­w'–]-ŸSÔïnß’'¥²˜4 7Uû¹‡ãÍ‹—NTnŸ·ìbÔM³ûöék%Š´¥VJ #PY.—»Ýµ Ð˜Ífó°Uç0vô!K†ÄPdì®×k,ÆlEh™Ïç!‘~`«(Š þ#áðèe¿ß÷.‚RhÒjµÂZ)Õk?C- ³pû°¦ ¹ÝnÇTƒ‘s°F¢ø×˜ÿVk΢'1º9¾ùÃá€ûá/ë²JøõÜv0"]Äxf|`¹Ò T$9vIEND®B`‚images/icons32-vs-2x.png000066600000051624152330733730010776 0ustar00‰PNG  IHDRèZô"FvúPLTELiqQ«Hª[ƒ'kE‰¨Dˆ§4HªeŠHŒªPtTxM¬=„¤;„£D†¥IªT“®GЍ]„JŽ«JŒª>‚¢M¬[ƒQ“­=¢Eˆ¦:…£L«3€Ÿ[9€ JŽªIª5¡<ƒ£IŒªF£?¢.}JªB‚£LŽ«N‘¬4 S”®]„IªB…¥;…¤8‚¡J‹©*z›_›³6‚¡8„¢E£;ƒ¢A…¤HªR’®F‹©F‚¤F‚¤S“­F‚¤$w™`†T”®C…¥$w˜A‰¦&x™=‡¤V•¯D£c„t–ÿÿÿJŽ«ÇÜåÚéîýýþÕæëùûýîô÷íóöó÷ùüüýòöú÷ùûïõøÞëïæïõêñõûûüÝêî©Ê×ÜëïÈÛä¦ÇÖßìðÔåê­ÌÙåîôäíó´ÐܯÎÚèïóéðôÛêïôøú°ÎÛÖçìÈÜæÏáéÐâêÙèíŸÃÒÍßçÓäë·ÓÞÄÚã¶ÒÝøúüÁ×â¢ÆÓ¼ÖßÉÝçÎàè¡ÅÔçðô ÄÓÅÛäG©µÑÜ»Ôß»ÕÞÁÙ╽Î}¯Â¥ÆÕ®Íؽ×àz­Á›ÀÐÊÞæ”¼ÍÎìúÆæõŒ¸Ë¨É×l¤»™¿Ð“»Í5‚¡ÓðþU•¯Èç÷ÅäôdŸ·šÀÑÒïý_š´ÁáòY—±Ðíüs¨¾…³ÆŠ·Êg ¸€°Å–¿Ï*zœw«ÀÊéøÃãófŸ¸–¾Ï޹ËÌêùp¥½Êàè½ÞïºÛí¶ØëR”®‰µÈ¿àñ`›µM’¬úÿÿŽºË$x™Èßç²ÕèÂÝæT‘¯®Òå>ˆ¦Íáé¹Ê_œ´1Ÿv©À¦ÊØo“BЧ«ÍÙ‡µÈ¨ÌÙ»Øâk¡»ªÏ⎹Ñy©Ä¤ÊßÜèîâðõÎåìžÇÛÔèîÁÚä¯ÑÝÑæë²ÑÝÇàè°ÏÜ­ÏÜ·Öà”¾ÕžÅÔÝïó™Á×›ÄÓ·ÐÜÚæìÚíñóûý¾ÖàøÿÿÓâéèôøíøú±ÏÚàëîöýþš¿Î÷÷øÏÝåNg¢òRtRNSôK *€î¯0û€•-¼4!&ðu[þLAÆÎÚTãÓh™›¤u§öå7Ø‹îI=2ÛV»ÈÅ®‚êúküògèéBÕÞ¦¸»Ò"ð½kahotO÷IDATxÚí½ |S÷•÷m\°1 [H¶Ið¤ÙÈÒ´Yš·‹Ë’¬Õ²jíû¾Y–dYX–%[¶Á²Íì€ã5¶q 6aÜÐBèKh€0iB“6KÓNg¦™çyÞÏç=ÿ{%[ÞÀ¶®ÌLG¿/WÞ´Üï=ÿó?çwÒÒRJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”TÖýk7m"“7mZ{VêÑH)¥”Rú»Ó¢UéCVk^žÑº˜¾jQêI)¥”RJ¦/žïh~qz='GÃäÐét‹MïJ_œŠêSJ鿪21ý÷ü«g¦ÿœ¯­_Ò/Z=Ìg³^W¨V ¹RÇ;²:Ô'Q ¿·ö{ËSCJsÆåŠÿ½€˜±{ÓÊý³ÐÊM»3ˆþ<²ó寯–‰jll|yç# nçùüy%}ÆÖª&Ã+šhVƒÇc0Ò„^N×ÖŒ¿§³£q†šŸ¿æžÇ†µ½?úîmz,‘1%~%_¾s+yŽÚºs®sÉ[/~õ¦•+7­~~îÅx Ã‡‹Ö/}¬ñhSã}«Y@êœöÂîÃ#éEFvÎ,Ä6¥?BäelÅ]/w˜êlÒÊV;Í/ßµb¾9O"Í'é—-‰²TR®Ú¤³†j·^o ø¡}kþž@OÊÎÎÍÍ»‰rs³³Ióú½÷•«ËóÜ‚ÛóXì­Óä‘Hý{–˜•¤9Ji^’‘ü3)IgÑ¢í+G|´Ü\šodåö¤®|'¥3233v½ìp@R{MÓÆ{%ýŠu¯\‰ƒûÞžWÖ¼¬×ÚÕl “5 15luûk„%Þõ£"îÍ_’‚âݵpž9?Ÿ¤_¶DRÈâód5¤6ÑøæÇæm•åüü‘8ŸOOÄ Eðð*¥B«›â£xœ‘ùÞN*èssØLm7O!‡Ådé“ú»úƒ¥žÐb@x0Êy’víüÜ÷5[íèׂ~UÈð©óW%ús—0#3AüÔ¸/Фÿ7X?’B‘{(=îšü|w žîç“t23³Ö?I׆äÕ¶‚¡¦G~0+ãå^¾ ÊL&ªZ ã©8E÷Ý?WÒ/Üöô»Ÿ>|äÈ £QÈ¢Ž9üö'=m#0¸]¶ŸÉâKTŽ6CétT”Ïâì'dÙ—¹¶Ý8³…¦¡}íüìzŒr~¾HŸ±D’û°èÅ#yùt‹£ˆéÅ^o:!ËÒ±Äìí=pî¦rZ©, }2@W]\_8çîÏyRù÷ÿ]ËYº)}ì߸þž÷,^ÒFúÕ•Š[W½:á'–ÂU4E¿'D"ÏÇ™”ÐY”µºVÀfÑé,¶ vuly{ÿÊ )îʤÄô¾oÙÓS¬§Pìv§«L.©jÚ°ù¾쥩u4ȱVšN-ò2Êž[?'Ò/ØýbçÙÃGN ¿ölìàºËÇN?|¶óÅÝ„¥nW…4|™ÉX ÷e¦ÒWM2¾¦h7i›¥Uy3M)æ5/ôMôÕ)‘Ìé×ìËÏÍѰèJ)WÀ•‰GÞ¿Ô¶+¹ÓS,BNó*"~9ö Þ^ÐÒ­Õêb³G®æR#&ªP (3*ÄDnʯ*ÊTÌÂd€q^ªÖQ¥~Œôcœ·=Ft.tïê–a…ŸâÄr lØ_·…{›† ”›{ø÷ -+±0ÐÏ÷ã¾:É 'de¼¶­ŠŠÝ]~-_â›ß’åÉàüÂïšõ>`¼ß!×JBU}máA_*Ô‰ P2d0ˆuB)ŸòÜ=sý=ï>qðØÉS§N ¼½Œe½rrœ<}ðÄÛ=Dåo2wQY<ªÇ(óÏXeŸ‡Êcév%`g--žÍî‘yiæ|q¾¢§§bì5Ú'¢aÖ¦Pv^¡ÀÕ}çxüŽ»·½2¤âBL¯§©XéD\ÝÈ’¨n+èór„m£I[1Ô'©qJ*вˆ"X)i(·£^G‘² ó“Áy:ר‡\˜Ð¤ãü}÷û›,í/åðÔŸqªeET±Qo·U˜ªÆÀºË+c®hWâ /@šyXýJì» ’ zBVÆ+Ù¼Q1WâY„íæ)ذ=œ²Õ lt”Ê IÄ\Þìn)áKÕ4£Á`°ŠAVøÀHSKùŠÇÌNOŸ=2p@öäñþõø¡-ýÇOžП8rê!ÂîËJ&]d¥”•ʵ3–¼´ŒbÑùK¦næÚªÙÕ T­'Î+:@ŠÑ×hÓØŸ@8è÷‘²órØ%0Áܼ,+-3ëŽ;ŸR ¬n½Qªé&bQJnŽêö‚žM àj¦¦‰bd8MF«ÑJ5Å:*ÍD¥ ¹J›xУx^d¤\e·Úöܺ8λá[„Ź©V(EU ¥H-®¶ûµùEU ÐX7ó2NñâÄA²¾¨¨x õö ÆIƒMõ8åÑ·E’ ú8Î'@úµºhTôvþ/X™;…V^?•™õÌE½½Ì”WTH"%åCáÖwË<5Í€½da=*¤êÄ}ššÇ(^:—äÍúŽ£xþìÙ³'?y?ôãON§(¦?Þ¹°û²ŸÍZ*å É,¤,B>{ ÿîHÞì@ŸWûÝùá|¦QÒ7‘QúEéRvnSÅÕy(­›£ Ð;î|…¢zÜ+’XîfuÖÉ®«Ð3ÄZ"ºÉi•Øá#-_o’¸©r«Õmtä:ñ γ¤´j_Àå÷»ÜêšÁ1Î?Nìoz~e%“ïè ”2-©\±ÅW&Ï/j®©EÝ1°î­£ó”9u{ }”óEØ~¬y’úÎŒ•`*ÍgÆHŸTзÇ×XðÛçFú]\™pT2!¶z¤wŠÝÜ^¢ë§23huÛËJµÀy­V17t¶v4 ¼Bà¼2óP5E,­‡¨u½tï¾40€0îܹSw<Úñú¡~àô‹ ‰½FEuûù‘‚+’¯ð»©*M _ô#ñlKÅ?Z1œ×ÖÕ5aÿ´QÒ7‘Ê¢"ô«`šËfp­ú²+OÄH›yǶ0èäQÓ-ùñ³©³NJ]u\ 2=Íj’”»©Š.‰S§6Š‹Íþ ³ÇÑPO¹h¸ á Î3½Tƒ›bÇH_²Œó÷¥O¤7šD*ù깄ô»¯;`¿zõêÙ¯ïg¿8 Ÿ ðûjU Wš(¥’‚YìÚ‡ $¥“2aÐg® ;É#´6ùœ—÷÷w­«;ÚÑß/ÇIßHrDE4è¦Âo(äs Å»OŒEÔY÷2UTƒ‡JW&´a·4Â×#A»IÇ“Ml]u¬Óupð ùÒù ‡Pê†'㪭&Õª£B—ÎmÿM:8uLFªI-">uœ×¨¸4ƒE‘¾|Cs²8¿%HåBzvZ<.Eej¨Öj_™åv;í(ëÖZMŽcgâ99¨ Ö#Ðc”¯š¨3JNœTgP¬–ŸÖæIý‚Föçs ¹mÏÎéþYã„ÿ½[•lÍ$±•[‰Nܼ^ãsç厲€ÓY¦-ê ö7òxj1$å^º¦dõÞ½«K4t¯Röb5S—1"f¼púÔ¹«çΞ8}ì¦c§Nž…C§N·dz¦Wç“GB3-ÂEu¸¡ˆÜ§ó2ý‚–¼Ùƒ>¯eAÒ9ßÚz¥©®««®éJkk”ôæØÑ _߉8ÏxÊ"-OÄgNîÜÏâ *½2‘Ÿ¿dØÅ7m#¶®5HåA=ƒ'´úJ#Íz•@( ÉMTŠX‘o¢:u¥N‡Un‚u¹@]ª³òˆý]u5lÚ=óT#ÒןWOÅy|oÖ,¡˜t:A!­¨=¢/ ¡Ôèvú! Ì7÷…;ÞG1RX›óH‰§èqÐê!¤G=`¾¹¹¾¾¾9^d¿ÀÜU3 */æ3ÈÐçãIؤ‚þž&Žf”ól&Ý|v.÷Ï'üï]™ÇâL+o%±œÏÜÒ¤8´Ày—R­wÊëmh B‰¢QÎÎiZž™¹¼)‚`¿ ÍwÍ…ˆ?þäì9 ó®|h‰‡–÷ì ÿêü»’ÌùÒ‹ëšúÑ ÒßTwñb)Núp.¢A¿½q^Xí¨?óèž=O=0Z7{w#]¥6Z… ‚žL>x˜œ›ˆØ¿U±ø*©€æv)Šjó ¥ªÀêŒt9ªBù•UîÎ.£¶Û¦¯2 ©•:SÅX!%¶ê8_ÛÜÐkŒ‘¾ä|P¢Åœ6üã8O„ïÍêÚ`æ÷lZûüÎ}Xye!CFÓ÷½ [ ýMg@qïÚâYÛ+ m©‹Rí1XìM?üΖ=¥A]Ä×ääö@ȹ *£ù"’²z.DÜv¸>•.®#ô ‡ý8é/â-&ƒ~8OÑv‡}LèÃ[Ìïã¤ð<'¢êL2–g#‘ §°âXh{ŽçI@0èó4 ¸O†jŸKiîkðóõ4.$±T5E§Gh ¸B;Uí¢áC”WÙ0œ‡Óï•é¡ .ÿH¥ H¯ T]ªyn¬j•ß›vO€Z»*¶»z!ŠÓJm¶ÒAüd]¶Ç=þœÙ©Í#’£×j±ê?ôÍä3˜Èåq"‹Æ ¾«$Ñ&ô›h¹•H5ÆyÕÕ?[ү̫t*€§ɤ©¬Yˆý–&Š +½F{*]˜™õUJ5zÄB%¬:H¡žžRä0•B±ÇH•rZfZ)²ûݧ×㯔uW®CRþC:ÞE?„ÿ\¿‚ÇôYëŸ~wÕ[ÐßU‚R¸³€¾ä‘$r¾,lí‰ïHÝ=­Á`Nz,Ì'ô+™|*Eqqˆ–§A)±¥êQ”½Y³¹W&RMB¯&±òʉ ·Ç@ÏAÞtld1Žvœd€>³1‡%uÕJ(áþ‚pWyù êŒõ” Åmá`M‰Þã”ÛœBj±GB)÷+Ê»ƒò6£ßK èó°°æ0T@z(xVk(vŒôá fªÿ9B}o2š˜CÃØ^ö ÚÄ«¬´®¿·Lp XjË#U.%ôr9B=Ôyc=·÷&×ĉ,BÙO{¨¶K($Gç¡F.O&è3Ž’²!ØUóÆ8o¡È;˜ÝOÙ%r–ŽÊŽ—W’IÜ)Dì}ÉÌ|6HÌÜï³XÁÆàëyuùÝωx&½@¥ÉµÚÍÎÑ€a ôò8M3 »¾øöÙ0{ƒm:‚“} >rê#ûÖì~飳'­´$³¤Æ²|تi˜±jºÌùeF)+ÁÔÍÎJÄùœY ‘¾rgò8ï »›ºã{àÓ`Ð…“%î ½—J©¸8$Îakè̦Š-áç;Õ¨OV-b&Ö0E&1Æ)ÀÂÞw“éöÉ=A?Dõt:v˜`в<- mYíPKK÷`¸@Ïñ©‹æ»Åº€bR «©k5Ícò9«}\Š8ÐßUWŽmÐÁ‚ H/?Ól´`¤ž¯qéGIOŒïÍ#½¦@dÓØÉx¡kØí•ýÓmiYÉ·šÐ—–±!y!}1€oßÑ›LÇrô›LdXl(à{€œI­£‡¦÷<v ê1ÎÛ]ùM³#ýª|ãX«¦ßÔ “¨SˆhÐïèƒN7…ÜE1Ð0Ðk¾uaPpsÐÏp?[çÃO_ûå×½pöÈñ(Ö®~SÛùÑGµß\ˆ:~äì ë~üËkH´w Þ%1w•×ÌXå]f‰+qп,€†ÐÂY*'/[ørÒ8_ÙÖî ï†mm•8éëz{ }Ö7ÆùB ‡ÎP"Kc%c,êâã0™4•Ù"Ñ ¦ÙgC ‡ÌÉ — w¶èâS78çãS738}ð Ü?w훳ÇGuö›kçàJÓ< VPryäÄ•ÄÚ>ÈL©±@ß[>cõè+ÒD«nžËÐ3g)}ÎsIâ¼³½=ØôÛ&ÈÛÛ8é;ý¯v·"Î3”R™¦@:™zþûMe*Œÿy*&?A›â‰¥hr¼ap4 µ"Ïjh9y$Qm¤²±5y šÆU1¡0…”8è é\—ÜÕÞcÖ6ÕADŸÃwSí™Ðæpª…v×*àŠ„\!„÷\¡E¥ôA6Å+ ÛIQÒ8tJ‹ÂJDúòýE>ç(éå{ƒ|‰ã/ä~»ÞcµVG6O“|ç‘„»=zÁ: ¦—D IOnÇDWuc±4´·u¢ @g­Å —£^O›ßŸ4Ðg-íÃí;"Å&qq¾È\;øð¬®µb½¶¸X«ÇlŠ·*Õ“d$¶ajBêFgÔÛ"½m=%qå•PëF¦•WVÎÐsqÇ'‡QS8ÄÈ~{œÎ]»Špä8x! fªÃ×w$ zk¥¤¸ùèÑ÷Ç ýý)uôhs±¤Òš0è³Q3 gVbi ó²“Ãy_mmç•`å ^鬭õE;§ˆý?%#Îóa&80Ï ±6_¿¡E¡×‰ú*>+gxq¢ ÑkY( ×”5$k¿p‡¬$M°åŽ ¢oo€ w­­JÙˆ½È¨”åKBŵmAzމ*†„G$’ɨF‘T¦†e‹Œ&’‰hF®X¦rýÎ’°5º².ÔÈÝ- X3!ÒW‘#`ô‘¾LO-OšïÍ…ÒJ ÚÅ3”=:Í@Gòn%ô.0æð;J±¾¨$Ê“ãëèÏ8õÿ;ž£ÿÛÇzû¨ wøá»\.‚Aÿì¥è«u料hý<½_bVŒq¾kèÌóºfl_2‘H¦ÐÊíÑ’¦ÕnÚdót±6cuVw¥¤¹½µ;®a U†@CàXÃT×Ìæ«®xñm< ?7pä üÈ‘«_Ä›b1´c:ùÕÕ#ø­ç¢!ý Ë}EqÕÑ B‘ÀÑiTU\A èa¶ƒÁ‡ÿf ìËèL6á ržÒ××V×éœRum}}”¨±ý㜠dÐW­a6œ‰¬\%ƒÎ ³ ë7f ú &<Š,VK5Iе:‡t¤ê£,V2@/TPe6EÐ\n‡ÔMÝY_d;"úˆIm©{„eV‡Z\bÒ:#ù«B¡$ôßmË®‰Är¨…º ¥hSH_tFb° Ò» .3'Ï÷æ‚é7êÀ§S~ê%Ù>Y‰³„УòÃ2ˆé±¾˜ŒûU’ã_ÞŽ'âpÔÙ€ò®ÊJbA¿¸ÖÔùlVֲūûm±>)Hݸô}¡9r~Ñö%ý—[¡ ¬¥õrÿ|8ì#½¢É稈`S³qå•:¨¯´+JF‚‚1 lÎ6{ÌþÜÌŒŠ×]>qd èq¦9{-Êùx¼6z3 鎜h_—èyÖ@EQÕ»`Ž"i8ÿnUQEÀšpÃÔ`ntÇó‘ÜŒ_‡ry¹ƒIá|CÃP]gìdP„’ÉGÊØçuC â'‘d>ãE>–»9òöÀ+Y‰ëŒmzw¼°H`j5Ó;Ù-†ÒË›…¤<”Lçõ½½íumnÔNÊ·Ûó‡Èíè3t´­®½·WO4éã9/äÊ”tfŽ.´y¸ &ìR³s*–,K#ô&ÊÜ$ª#NT’#ˆr7„ƒ^`ó9ýš憡΋z–Âj©@-•Šà?µ mDL"ª LÜMR!zˆýk0ç ›ÒâÆCzDúKˆô6¨§ÇIpuMã{Cˆ•Q •Ëã -[¦~b4yDÌû‚ÎQ' Þ…\ÓQáMt yœkICÓ˜}O1*ðw!ÌÇ:M‰<“T©’®)Ìí‡åZ)èÃ#³çü¢#žÐ׊¥ þôuÈ3²q<"vL˜èÁ#`P_Ì;†È3i”ô±~Xµ6cKôum³åü²­å¥¿.þÚ Œ//‡7毋]Z¾uYÚòtVT:¦RWúr¢A¿¾cÔÔLoñTS\Uíá¦áéônŸ¡KñƒÏüòÚ±ƒàBåøW§ð>z:# ”ñôGøç§¾Š^ À™þà±k¿|&¡]¤(èKƃ¾© -ùÆ»­„ÐßÇ€TÍJS g"Hyh(`eÜG8ç-fsCÿe4 )þÙ¨ÂÁèAãåþ³Ù’0é­JïŽÐh…üÒPë¥ñœç³Øâö‹Z½jÉ¡•,W‘x)ƒ¯@ßA>ôÖ™¾ÙÅó[C¿ùõ¯‹ÿTÕUßÿþô§â_ÿú7!HgÞÖk+â¤Õ‡ ž™µ¹jÔ¦+; N¶¶ÔL=J°øå3æáòg_j½~òdãßàï;wÄfÆîèÄ|½œqÏm2I6‘ìN— ²ôù2^(Fž8MÆD·\„Íå´£oÒë }üÜ@Dz>X)Eûaa¬¢ùè…'^]÷ø«çgÃù¬õŸðA¤ øë¯«Àr±¹ë믋 "|ð9*Px>ìÒçÇêëóõ®ðó„?ƒ™™uÇøav1挓0è#Å=@M¦™ô=Å"@¿Ô†@o¤8+]ŠÅ(ž^Ðå€'ň@o[J0ç¡PWk;x‰ãvÁöŸÅi¨?ªÓ™Ú[»B!c"¤_´ºómrÞÂâLä|EÍ/ͶbÞF&yÆ©M=|¼÷¹$F¼óƒÄ}Ÿ=Dƒž%Ó*]‘¾ú†áþ3¹y,Ö( …h~™RT!’ñ¼<ŸÎ¡¦~®¢8"óÂntîîöã-úI¤ËqÛ°²¤UÄùÞTQˈ'ý!§ª­Y,¯©jªŽ©-±œù–„Ÿ_ØU¢P|ЀŒÞñêÉ oÄjèþJ»aÞí& ôãæÃéERž¶ßð>©@ݣߋ}Ù«¯ÎægÛ¿øàÒý'L_£€þƒ¾°£’ãûÓÍL«´  Ô¥cšÓ‰¿Rc=S]±Q‚‚Íî¢úá6Óƒ%«ZGú¶¬4ÈÖ{ÅÝ3ÛñRO_=qð0è›SèíÁ¶~æ¶°[N}ƒÝrâ*¾ôô0x¤¨©'æ==ô==S¾§©$úÅå¨wF­ùQoŸ?€a“eÑû~´µù+)Ô{\¾˜8У©–ÖH¤ªµV¨» lñÐòñ WÅÂjamkU$‚ª³s}ÆV|z=Îù °Ã›Èy*ÎyN߯EiÄ€Þ2Nm2‹A'ƒÍØÂøþ„BØŒ•é ‚AŸÃPÚõõ5o‘ûúÉzÑN(+sôuÉ͹Ûï§hýmny• oÔB«ÈÀ/$ô÷ Ú&‘¾iˆ‘>Þ÷¦¡Œ¢vNúCv‹NÆ`±”ÔŠ):¦Vì+ AÝ‹MÙ·"áç·ºÚ—•j+$d7&rh‚ÈØÈPrãrú(nwuµÅBèãçÃ’¼&µùŒaœ—t<9—¬ÃòtÑçÐV|ð49«è믋ŠaÔío>¨Ðþás.ÊǯYMñÑH$šo„¼zMZ2´fÏŽ„™ËG.ßñ¨[ ð‚ ›L<¯|ãšY|èÔ ÄñÃ×Nc8ÿeÜ}XóK ô§¯a_p"Q÷ƒèaÂT~hbDê«§‹èCùDL˜Ú[n@B,ŽÿZ!ð` R`ò›#zXí•–ù BpJ| ò¸×§8?ßÜ:,Bb¸ÈûÇéLì8ôo·šóóÅsåü²%ùØèäK¬èÛy@y`*ÎkÌ鋳Ò½{œ‚"wµQ(éD60c^qÙ¤N‰ÐXí&ô"…¯ØewÕ¶uw¡]\¥B=Pt#ƒ˜O¥„N)™Üx*Xî«ø|h}Î&>»Ã®É¤‡¬1Nzÿ`1憀|ozWµ¬òG ’z&SI­œ¢cji§}^ýÒDŸ_(!¨FÓ³*±Â›¨ÝÁdÐã%õdÌSÓNÑ#Ì{<¦nâHŸ›#Ãؤçó;˜ÓKy•ùÃÏqÒG ð»PÁ9_ä0o_¿4½Û\[‡LùêjÍÝéK×?KzÑævÈи}޲˜ˆºAGŠëÃûŸ|¬WÀWz¡d šÙùMhíÂÙ‹}é4úZ ê‡_ˆ{”¾€:X‹ƒþôK„€^©ƒ™±¡ž =ZîMÑ÷„`f¬N™ð„©­"6ŸkôçUÅ „zÔŒ\>[´•ÀÁ#‹k)E­ Jón)‘TÙÐZTQA™+ç%h‹ºÂóuÝ.Äxˆ Ô£œ¿Ô²ñ M´HwúªEDÝCÈáŽSX¤w{tÜ£ÕãŸÔê®ÎãÖ¼›Ãâùœr»/b–”ÔÔ†ô¡‹pømÐ5ìíáñ=~ìöö1 ×` /èè/4árÐw` Ox8øÚªBºLL±!‡Õ[ ÷l±Œ^XE蹸;ê®A=“"îÍ1Ïɼ*z úú¹r«™d«Ôzm]k)¼ˆh÷ÐL‚(çþÉ￾Ÿ¼iÓÚû³ˆ»ƒãG±Q(E°`2¨+‚…ñÏia°BmУ* BË+s˜ÒHkXnkè®ê© îÐs<[±ZUò•Ê|LFÒÛò>s5˜ïÑQ+ùyÙû¿×ËZ,ú©Io¡3|q¾7ÅöœÃ1ð‘`Ð;«Å.ÕéMNܘ)àu‹ƒÞXò†gõ©X–žŒï®O=>RŠŒeè)n Â|lØ6±¤Çë*­T¶ë „87þ®ïÔ•—ý›Ï÷»ß}ñÀ ÿÅðIäëšî3 jßZ”¾ÿ„÷Ú/|ê†}ß#ð¼IËz&Œr¹:š¹=Ø/§@‘¶jÚ ÙøÌ½aÌy·¹¦³ b·ž¹,:uqüí¯Žaïâsôë?Âû {w€˜ÔFi¢8*"„.ÿS¾£#Rá ˜}æ‚•Ϥ/ƒZÐ-ÉWøõ&K³rA&±¤ïî…žPðãÞB2©zJ{»çÆùŒ%’ÔÅR Ýòîw°¼6ÀÚÙ  çaœþŽ;ïX˜•F´È$ß8µŠ ¬ÎmÔŽ(ÇžRåH­ÊŸ|>‚¦Ð&Le±R9ékh ^Ó ˜@N—ª” x0Á®S©x•B,¨x|)_ÏFºDÀ³zÙ8éµú8ß›40Üåò™èÎ¥Dƒ^o Ê Žž6ôKƒ±ˆž”Xò,{Q¹"=déåZ² 9‚ȸCYzÄyTGF¬µo”ô±úùjpàñûå~0·Ÿ¶½Â cΫB¿ùÃç×cúüs(©i¹l¼ñ‹_~þ¾à×ðï7|ñ»/oüÂn¼¼‰À\ýݘ˽ÉUÓPÛjC-6IWppó¶,ÄŸGº°ñx0i»²±sýÓWqÐr{wî¡…Q°e.|èvèä'8è‰ÙŒÐëm±<Ø8Mú+‘ ›>qЧen/×ðž€\R*.†=øºß’x‡ $ò€GÀ×”o'xdìâý`dK‡qs²›·kɤ^>XíîŸç×ì‹"SŽæ€÷m¨rW»!€†4Ê…Rà|’&áB‹ü8Õ!›ŸÞ*ì%Úç“{…V½Ï‰Zâ‰ý tÄYMF7ÅVQ*Ðç2i°AÉâÙU|šÔeSñ­^Ÿ‘"óñÑŽ0Ÿâ±ÀÐïrѦ#½8Þ÷¥<ìN»GÄ"xœÍ!`¹Žëõ‚û¤Ç‘ìÐlf Ï´he ¶ÇN=^F5ôÑjœä'ýØÜ@'Jk·Í1 ‡YÊ¥¡J+„"ü᥎Ò?h?梶3¡_ýö³ßßøÐö»~1=Äó¿ùàw¶oüþ³ßþ*D\õÍ:œóT¹··­¬Îý>õ̳Ë2ñdüÎ2d®‘ ße„ÄÙƒ~Ë/9péÜYì݉ÎUY™˜²VuâGΞÃÞ8rñé-€^EÕû!¨ŽLÒ•+SþÊ\SU‰ƒ~Ñ=Gª£øÈIÛ ðØ„ò8ŸTÏo6‡" ?E'åè—,"šˆûáì›`žTvSAÁƒ–usJ,dm**Ó0¸ž¨=þ¢KÝv´×l‡·0Ī­­í$‰ó‚À8]Á§²7ÕAªZ( v¸!oc‡Fú¡ O¬öTR´¶¶pÑÅðåºóÙ¹*…Š#5”†(…Í1µ‡d Þ”/å0 *o„&(åçfŸO¬½¢¸äü370\D«ˆ©¢"öv¨Ó÷ñÇ4}öÎ/>üòs-Ú¥ý5ìÑj?ÿòÃ_¼ó™éìë\OÈ=y&„sÞXd6åC'¼.3®°fa#>v®E#³ýÞ/´>v2ŠñÃ×ðN ¯›Uàuýtàúáè¥àä±Ã§Û_ر7AЫ«ôu„–{7}µšÐgnb)aqë‚ìMqUoMC®WX çK œ¯ÿ«@ÉÚž™УW§4Òh@/å©ãÖœ@¿(ÏTA-–L ¦(Z¾¡´Ì…2˜.;°@À«nk½øpò@?Þå¯I†›ý‡,Vrë0Á9 MkØaB7cè<0¹ðP*呪¾6=Ó*…aµ#ƒaRª9ð|F3è“”â‹9èRš8è_¶¨nEzð½AÃ!ë¡%ózt-U«á:5è©ô|~_ ‡º`*ºdUëë `Ð{Tv¤G§XîºùõÕȨ… ÃBbAŸõÃÁË¢¸ù°ŽPù[wÎñg-5{p3‡øaofò?þø/Ÿèo|èødéA¡w|x@ÿé_àÆé„ô>)ÁAÿ碢ÿ3"¦R{Æ¥ ö†I1ЗÏôö|râÀÛ œzû¦SçÄtö›oÎŽ~rîþþíSÇÂ×~Òóx‚ ·¸äA–{Ó°k!ô`'ñÚ0 |?=¾2m~qsMßH-ÒH_MWUIQ´xêmÀ@Î> ¬áײˆOqè ™h76š¤ßÿ³qÚMÑ£½XfáÜ@¿ªŠÍ€=h ©ö}b9Œ™ó£r-—]o4 |ýEO%ôãçe½/‹ ΂ÑÕhŽDÛ‘e±±Z„–W¦#JC©'V´›[ôlªž!Ô¶ •HLÜŽR!(£éý%Á¡ÀˆÐG'ôu,ÆÍI¾7NÔ«†Ê[¥œ$pÜ+]`dƒGôö›€^Iè¡JW\,î3Êø&8Õ™q ÇŒ‘± =” Ì „‚>ëÉ£ÅumT^ÜÜÀæ3ÏÎñ‡-Ú¡ÄÿÄV£ŠÁ `ùÿò)¤n~ å8¨Šq¾ü0©›O©Òÿ¥b+îf¯;0ÎWÃÞeƒ>¨¿Px¤ g!<°õ³}Ö+§œ8|ðøÀÉc8È_80…®Æ?8vràøÁê)!›b6_h©”+úgú~…¼Ò"ä³=l0¿6Äd€s¿Åîw5Ô¶]j¯mè*)@ƒ-‘-*ƒ3†ëe0‡^[˜„T6zh£áÕ5AÁ ¿¹‚~a:“Ńyjª˜ÒñÄò´'ªä¨Õ‚+·ÑT쯠¸—$ôãí\[d£ëaü,-l£‡m˜ÐŠ:)žªòw{:[.÷l@k'.ŸÃõx­<µW .!à‰"ä›x¥HE³ªit*37{C¢¿ŠœoFú ý _‰úÕ„"/+œO; 6éÅÕg’A/[¸:ˆ 2ƒ_`îªA°åÅ|9ÞÞ‘Œúd°ç²Äй*@¯i"AŸõdOÄ\Ó´ÆÍ‡-jë˜k{Æ’ÝøÊ`_“ùSÄyê§ŸýêBòæwÐjÿð;HÜ|xã_}ö)õ/@úOÍ ¨]ÛìÄ@/ä›K`õS3!ÛéÂY¬yÖ©›uíoB«Ô‘c'£H?}õàdμz:úÑÉcG mêÍkϦ%zO TÛ?A(¯×ß?èûûµ¥1 ‡˜~ÇE; P/†ñÐTsü8†FzK$¥•>Ì£Úâ±êàtd°ìwd%cË’ŒŠþøn>lWxÎÏfÆÖf†8~*lûˆîüË_þò)Dô°ûá—6Teÿ»Ïmú_ü"úOáÆ?þQ7BÀ¨©=ÄyŠ$?ÿÿ¸!1¶a‚lt/–ôç?ÿ¹hÖ _ô¤c°>Æ÷s“Hð\,Ì?ˆôox3ÁQ‚l¾Àà´É[[ÇÃ-÷¦}k«Üæ4ˆ=²}Þ×.cñ¥&·?¿ªo@ß^S")Ó[QÔõ)ñ Ë˜)kß·>3)¥)QÐ6LM zô‡ÌôÛ%¯Pg¢ ©m›ÑÞùš íÈZ ­¢ëà{ÀLè—0㌻¥òéåˆ<:D"ôŒêb1 ký5¡ºÖCÙÙ,‹×Æ«¶T^é@Ï”J²ÀÈD§^ÔìôÊìRs¤Vš8è7roEz6ˤWÂþzMR8ŸvÈžv·ÛH6èQΑ+@ã/ÈãÇôã/ádüä%C³ššÎ+Øw"ôYOÖ9$E½íÁÆ ­•sž;ˆ`ÁXcòáþmG@–êWï¼C±Xöå—_Úlð¦ìC;åw~ )´óðnzâ}åt¨´òÏŠÿ)à‡vNtšÞ)N¬±Ù"³¯ºÙñÉ›@zéÞ|3FúÓã9:Æù7ß@ýÛ'ÞLt88½Ý?ô­­È_fü±8Ðûí„H¿bwú°‘㥺½µÐ÷UIÊ,T)˜¢ u‹¥a‹‡Ów¯HçqЫ¤Ü˜oïDÐÇœ|aÒßA¿ÑÃ’™h:¡ °';°­qs¹¶››0Î2ö% ôKóÝ6mœyÚiesç/%ô… ƒ…V¶¹û꺃í²³™b¥•æS(V:]ÌgJY GÂyZLWE稬Ììì ‰þÞï¶“nMzpßGCy“Äù´CàÒ䨤P`Ì_’AªDhžŠ<¾óƒ¿7=lÅ‚+¸8å<Â@Ÿõdk 4I5þ|Ëî~9œGKá]Aw¶Fþ$&“ಙfúé³Ï~ûÎ{¿¿É›²¿üÞ|xãÆïß{ç·Ÿ}†Ýl¢™nž_x ôö?ËE¥R}{&6/gD«nþõ_ÿ5ö ßÛóæé¿Õñs§Ž¼9ª#§Î}|çü7¯<˜ èà7SV:ô(À›ô`/fä2=Býòݯ ¶YMyqCûÐp}Äo*9v!&‹¢}ð•ÝË3“ViV[us5›úQO3é:ÐïSrb«‰+ dž m»pÅ,·Eº7´j1_bãÆd>c‰™O𡸿%D‚~n!Ç °­öØ]‘’fúB™WÆd‹DÐ#¬áË4…l<ͯ†Íäɘ^&Ï›Cè3“Þ”ôhŒ,"ˆœò$q>íP©¢Bîw:Ëü®$ƒÞ‹Ê¹DªÎöæòávdG\Û6þ8Å@27:ª8Ïãy½D>ëµ°Þ¥(¨¯ü>T†ìîÂyЖՃÝ!K"‰Ï0>ƒ~«ÕhýDôïQì7¢-Ú7ì”÷ ¢ÿÜd…Ïé‰:œ-'çÅþ?ÿ9åêÓg„íT`'ôþÇêè:‰“þzç±Ï!¨?;pjkÞ>>pÂùØñÓ×qÎ$胀@õ¶‹g ú‹mPëH è1Ög<–Š’ª††úˆ­Z¨h:)ª×_{6#i”^‰\GqM}ô0ø‘*çú•ª6¨RÙùÑ5嚇Ÿ¸páÂ¥>¹óŸ—¬JÚÝ[¾ty†Ú·4–$ ô*§Yw¯¿´Áܠ׸‹*d<ŠÜäàÓ…eÃ"Ó3¤.]6Rê ˆü~ O{¤žtsÒ#Ób6»0/iœO;$¯È¯—•w’ANF¹éõ9¹Éã<€>?"ÑÚ`ƒ$Ù ‡>< =˜ìӢΕ1‘+ã½ì•Ôh0ˆ&z©ýª Õã”Gê¿]>p´— ÎjíW˜,–wÞC½å70!có÷°ƒ þ5´M ®#öÔ@¯äe´Õü)Ë×ñºÛýsýÂOœì|qxãÍiõÆÀG°˜ÈXõbçÉ/&:¸ .ëeÝÝñ0ïîFy½ñÇÆn+ èÅ"z!‘ ÒŸÃd»\"±¹©öKë“Î÷  ‡ˆ ‘&‚? ×ܹ‚~Ÿ^Çã –?ÑñW Uld™¾ðvþ-KU•å­¤žn‘I…–X”†ªjôyœ¼<6ÌÌÉaç° éŒœ¼¼CÃ(Ìá(ùlNN^. _p_'é¤G–TIä|Ú!m$‘Èå ­-É {„zˆTÈã§F’íqŠ8! Â<úg;¹:}YEqã£u!4ÖËùƒ…7ðÑ9ï¼3Jú¨bœG¤Ç¤IhDã¢g:"( w:ÿÕ;±µSŽ‚ÄCzðýþ×¹xݬêyh~ʯ»rîiuî ž4Z¸í¡žD×üzÍítM=ÊëMz—ÓM“ ú´Ìól:×à, TS­­ÏÏçè5t—jŠŽŒ>¿µ5>:JÐDåòèš¹mÆZèjOµ•ëíy0Žóï* HUŲ‘Ì«Ònè…‘ˆ0I ?Ÿ›ÃФR5°Õ˜ƒz^¹ŒÎ•Úü‚J£”Êp–rXlÑ&ó°èæ|§4 dú™» nAz@}29ŸvH*ŽnJëH2èétŒôR®l±4´·uAµ 9¾½1€ît ÑŠvb¥ç¡ÒÐ?ߦìò‚Æ'â‚· å<Øs%¥7pÄ¿÷”WþþHµA‚O‡qÚß(å&b„°eO'JÕ -㇞X놩-1±Š>sýš17ƒõ/žšŽó§^»÷¬IôRX„Ãñ0‡Q^oü±±Û ¹['%ô9L/Õh± ág³æóè¡SŸ öð˜b ï9z´?Jƒ,C3ÇòJ–À¢·˜d‘׳F9ÅO1ª•,ÂrÒÝ6Ð_Pɵª “Aï#ôyŠ‚[=ÔÔØx¥n"zSL7X™Jz™ÜÈp3œF5Ÿm’¬ƮÉñæ ËÞ[‰s^i|×u+Ò÷&“óôUæØrIJ“ z˜ÂMg¨À“;èÔüïxŽþoëígâGHavgƒÄy¬ ÌC÷, ¿µ”æö—·Œ7ª|˜XWµ#|;n¼ èß{ò^T”QÆ#Ì; cdÎu7ËŸ©ÃÜLz»Ý©§NQZÒƒMÜÏææ^—°¿xxjÎþh‘˜+äHM`v2ô(¯7èÁ&¬I=dPx\¨m ®šOÎÇ@oŠr~ôGvŒ^ŒŒãçúõAÔã>¨¢`4t_³¹•®b`PŒÆøõ-¾ˆÏxà©C‡ž Á…þЭŽÎô•+s+ô!yUsý[x$}3¡¯x+qÎËÔÚõô¤?š/ö“Êù´C%]Í%0v3É gÁ¤# =4ú¶ÇÇðÃýÖ ‚hEGÎó”ÀyÔ-³}Æ’2˜üìì¼ðÓ¤¾ZWûôX«‡Íå{'ö˜F¼ãsÙÐé}«çøkßÓ†×^ô?û™vbm{¦Ég &#Ï_=îDAÿcäc‰‘ýþaìíȳòÇÄ‚ž÷Ê>ôÈÒv:Ѓ%•G4èÑB_ÃaðémÏÌ+ç§}¤§'B 観T4°Ã5P…á§_”–±nOÐhÕ ¤|¦*ó›7fÝί{´Ù›k ¹a®Ô¡[ë3šÇ¨,"§Ã¢¨tT´¿5³*Ï·à¼Õ]Ó œ–ô¼òî`8©œO;$1—÷VG’ z&Ô‰rPúÆK9ÓæˆÍp´)Óe ôR/JÛæÁ!qЃ' lòQ.>º%¹/×]ð*Š ëzo‚ðªèW8E»æzV£6ô0†÷gø {º¨z)ê™úë_ÿêIôk^8rüØÀéƒþ!Nž8vüà/3Ä\K)„éBÁðx¡ œðÔ Rª­B%+‡hÐC ›Ínm~9?mŽ>¶›xŽ>mU3GhM#ˆé%=äóƒá2x eJ:TrçJ¶Þ†ÄMÖ“Aºu¹bCõÒcG0™ÐoÈÎã—ª«hZEÑ¡÷%mïÿ|f ÿ9œ·ÛÚ[*§%}vñcßMK2è¡R¸ &è„´I=œ3 “E§óUâîÆX©lãEˤi˜5`žNg1¡‘”0è³6örx&wÝæŒ$¿`Ó5x·m©{°È$öCQŽ3þæ@¬Ã{Öz°%Ð#Ï؉­z}š ì¬ôÀ`Lô»¯½}¡~`àøáoN¾9|>9vüÈÁ·¿ÚM$è™*0ÍÖ'íf§‘f稘ăÊ›óžZ1¿œ­£Çì^§«£Ç¦æZG6Å^¯˜ƒF`ºœ*$À7Q­†N[˜d’§X²ì6ÄótzÅT¨¦§Aƒ~éqG=z"@ŸKwr]R¥° $ä·ÿ|†J$Àå¼"2Ò™@zEp°¥¦÷†–&ûâzHR?2ÜP_ßU¤˜ÐãùÔ=%z„š©€ªm°¬ Q ß^ ²+O®HúY:aRÚÍ5çû•…›ÜÐ`W£š´ÚñhÇGð!`ìm¿H\5ÞJ6›.U‹aÒÎŒUíÑ9t6'اòaðá$Ašzü(Ÿ“ÁÙys}ÖÆr¾ÚCCNäû&µsì¸-ñ|Úf‘˜«b±ÙL¾Lg‰!=f!ô,yp˜F“4økíIgg³¤Í..èé )È[ÃEÝu0ðŽ@Ðïíã|_{ãžûÌtŒôÆÞ¦]‹ñ‡úñ§^›‡\Ù¡HÍåËí} USƒ^mjCƒGT‰D6!ö«ç ¸þf‚XzAÇìE}FºžGmOvz>zÕÓÜ3­~î»^ÛЬX+"$n<¦ÃÑRA úìo`¨?q¢5ZL¹¥ ŠÌ¿ñÆÉ‡{WEp§—Ñõ­ÉjÜõ%´–pÐ+ödÌ?ôÈØ0бÙ<A?6³§ÕBÎíÔ€=+¾@lÑ£yà˜Ø©Sci·%ž»mµ˜&ch m ŠkG‘>î(Í´9ÑßrùÏÓÊT|©\0Pô”‘ CH!Ï×öEJÛóKJÍæZ…ÍO èïêÇùïg,¼ëGÃ:Añ•—Ïó+ëP¤¡­í2 Ñi®˜rf¬F\3cÿ7¯"aÐcöÃì5è5ÌÂvY§~ åá«q×âÄ~wÖ®ž¸{óü„*‹6Õ« 3’º~ÓܯäƒPZùÿç­üàî›ô¤%úeï@U6˜Bl®HÖK§‘ª¿9ÐC2Væ@± ß‹ðf$°Còòaä[áJ‚Oó$מÛÞ’cñQMýè y¹¨Ê{Ž§Æ²­]¯LÃAF(f‡}fNÕÖÛÃù´Gs,1¤ÇEôÑ£…9†Lg`=š8è³sT…llu«¤°Áe´—ÁÆ™>à°;ì0>²Ôç€ 5·›@Ðï,Ïy8´ð{_¾kþã‡C‘áÎ`ÛP{{¯d*ÐSÿíßÀöšùoÿÆLôy˜Fi ES^b¿{÷ež¹åáùjê^´«ž'žxõ»Y±möQM(saš4?pr@Ÿ8è×€½Á^P96WäÙv¼Ìràò‹;ˆËp¬ÓV&VŸ5#¡Ò,&t¶ Ч§\züv@Œ×vçÆ4ô£7àuÞs=5mñrÀ ¶aQË ìÃò‡7Þ®F)@ºX `–Š+öh½ÙÑ@OÊV÷ë¼V¹Ê]"w;ŒÍ—õàµr»uá†@ƒ¶<Äß"î~m¯ŸÈùÛ¤ÌCµÁp‚úrÉ¡‰»N+Ї&€Ôv†5 íu-aF_c¼¿©ð/‹½¤úÝË.Qƒ›çñ”]±z„NÕÝBTúÈê„v†F67mòüÀ8}¯\@ èá^m{èÊu ú›/Œ2}ù oû¯_yh‘{ÜY«ÛÈËO£aÎH°ô+ÌÉ´¯&ºøûü¥õóz.~ûÞ{ï¾û;ßùÁDljÃÁ'Þþ­|çî»ï½÷Û³~ §7ÓÙhÏ ®”šNUúâ¬ÛÅ¡ÍpÓ”ã¿JF5XcIš©Î]`yÀñyËœ 5¯¤¡To*©G<ÂR» pªL\½Pˆ\Ñ ýúÖÿœЇڡ¹³³­a2èwÕ ŽŒó ­2¡½®¥ùcÝf¹3S\ZlþÀœ´ÑܸcÅ|>¨Y«‚¯ú¦òR Ý2±—Pªºx~ÒüÀ)HOèAîxáÚ‘«q–:;®¼öÂŽ‰~üIÑrgD#‚\Z(ýÂŸÆ Ï§ýkѪô‹!£8/f ]L_uû|Ò(T[a¯öf¬Õ\ó7;šè£}°˜+0^‚JCƉN'ôYûjþKp~¨»; ¦3}ù“@¿ª­@‚¦’¸ah®Z]•ÐÒxò¼[ôO9`.züÝ׿=ñ¸e_o¡wú´²·°w_¢;Ã+°áRH7K$ã¤'ô@†u/õÇ­¼òÒ³Ë }àî¸ãÎoß{÷·^}â­Yé‰W¿u÷½ß¾óŽ;ˆøâÄݯ~×Ýø^˜ö÷¢Ì¬,¸w܉îåO^Ý FôO<ñêOà~ºV ;Aðw,e’ÞI°ì “ÓhÐ/¥§Zv³£ > ˆ#rðíÂñÂÒÆ‚>íñóaŒógn/çqзvCwá Ï¸Q”º``0 ®ª‚ý‰ý¥³˜70ýü¹è‡?ýÖ¨~€)zúNñ¾#úÂNø•½bg#‡!RŒGÝÎÄ—O…çÛn>º#ýþÓ?ýçÜ@¿aïÎÿéaúÉÿŠSôìfô.üû¡aJóÒwJÑàuKµÛ-³mšúh‚ Ñ~4mÙæÁ¦¦Á ?œñr B¡®ÛC³ygÛåÞÈ£“~ðªnHÜè b॔’#dv 0R(F.ødÖÍÎmvç½wÿüÿ‘~~÷½w&±d¢ßˆBÊŸ¾úÃWrwL÷âú6®;qÝÕÂØŠpЧ=Ù]\^Óe.)Î?9ùÑ_–P,¨ ÙryuVêÕ8;ݳ³¥6 ÉÑ0‘i'òá„/M ¶e'Q™¤l¨™j~à”ÙR ô)ýWØ—YI$kó£ën}4¥Ù¯,íV8õ£+8eÍð#é 6“€bNÂ^×ÿ-x~iz«Y‹FÉ’H\šÖÜš¾ôy"a»ìÉŽÍ·¾’>ú”þ+jÅ"ЂÞ|á­ÍϬ߻÷þïŽé{ÏÀ~ÍÏÜŸ‘±`Áôu+R×ìW3ß¾û;ßzâûÈ·çû?üÖwîþvüŠ»õ?ùá÷Ñ?ùÁ„[Sšá’tïâíh”,™¼kÓöÅ{_ef-Œî£¡uá~ ›hßžb£m¸á_U{?½t´áüùoÝ›zSJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RJ)¥”RúŸ ÿ†‘"Trî¶¥IEND®B`‚images/bubble_bg-2x.gif000066600000000650152330733730010745 0ustar00GIF89a$ÈóØZ0øøø'Hb¿¿¿ÑÑÑ%ƒ­]§ï½¬¬ÏàÞåèp®Éå’vóÌ¿ùâÛ¨µÀÿÿÿ!ù,$È@ÿðÉI«½8ëÍ»ÿ`xdi6âX¢ië¾p,·Bm߉ŒÏ|ïÿÀ ¦@,s±£pÉl:Шt@ˆM«Î¬fê–\/koÏhÐmm3ÀØä,ž®ÛïÆ|QÓä2wƒ„S‡P0ˆTÔÍÞßàáâã˜]›˜ è^Û.æêž•íë>]óñõ@$ø<ûä H° ÁU7\­ Ž¿ ç8¤µÆ5_ذ¤FÆU ŠI²¤É“(;ü2"ì‚–z |ôàr†™Èò¼ìa§";ð $hÊ£H“*]ÊmZ¢NJ1ÀÌϦº@d5›­Š¢tm*5”«.Àrˆ;images/about-release-badge.svg000066600000010223152330733730012332 0ustar00 images/post-formats32-vs.png000066600000011767152330733730011776 0ustar00‰PNG  IHDR `Üc‘ƒPLTELiqf¢»9ˆ°F†¦G‰¨®ÄLŒ« MKF÷ñ)]2’ ý']ùïà ܯý;­ "â -îTÔæÈÖù ôUJ..?×3LŠKiâ¸×€t¾ì€¿}œõÎýß²6¥A;£Æ­È@þ¤òÝØ‹È̀˹øjí:”½7•Eyª|¿%f¶„ÓéýýS¯S„˜~è1ó–€ý f°äjNß•ý’c:”IDATxÚíœy|×Àñ-ÛŶRß·c;vb;Ž»nÓ“¸vœÃqîÄÞÍÙÄIÛ4m’æê¹MÛm÷>þÄÀ€8†!™ûI€@ „Ðm–ä³Éäm³ÛíçÃ÷~¿ï‡™yï ïÍ{#ñxÿ,Z4K^._4sÞjÉ ò3‹T„.nÿ/äk„ ÅŒgÒjäu‚‰"Æ/†0¿ä–¡‚Æñ·0i4fyÔÐTÀ8þP µa /ò!¬rQnùæo©°ó+] Wç‹&®T3‹uFØ$õ+{½ùy¹Ð!³Zkje–ˆTíS¥W_ÏË[­ÀSB¬êg?½'·Êi@ñ ñ¸ì"=ùLFAQ8Èô3ë@ÊOœLZPóÏ á?ÉAù¡=˜!ýÓ‚ù#Ué+ üR~Å÷ÊŸ© \I·€òkS^*T‡«2½š4_Ê/Æ/ Ì©ÂÔ½é#¼EyåG³ô’Ô”IŸ!Îe²P~ñVµ1–>\¼És •é9ÅÛñ™ÿÐ ¦Ï—YÒªÅ3\(cžsª™.¤3SçÚf¼ûÇUïü5É;ï¼óÝï~íŽ5kn»uó-w—-æ•(Q¢ÄÌTίš‘$2™ 2™„œF£ @m9¯b'#ÈdŽAQ•hÐQ䧘?ˆWãƒW.N„t’3B`nE8H$:F@ÆšµÍcl™ør¨té ”ÖQ˜T#AŸ—O µµc¾6ßX-IÛT ž€êj‡'ÉÀäpíªËG uΩÑÁÞÁÑ)'‘—U”Œ  ‘Ösés­ˆà¼ÜKÃÕ9ÀW= ¬ÐÈ¡Z.?ÏÀÊêJPª\,ŒÀŸHÕÐ4ú†­,¬ oREn·»Æ  da…ŽŽöÎѦ††ÑɆ.¬`&h—ËÍy°B{²ÇPVh(+´TE`…¢Üè…3‹0ÛÅ;+woZuËæm·ÞvÛš5wÜñ5’;ˆ1Äm·nÛ|˪Mw—~ K”(ñGŒ¡øÏ× ÕµbH 1Ų<¡¾?Ýï3²ˆÆ\Á¯j® Md8CA®pY-‹õýœ9ˆHø¤NšL&CÝõ#ÍÞÖó@€ DÔ7¸ôz}ïeªëÇ:‡4DwÆÔׯy;ø ¢g¯u©F¨^[¤ôúh¡Qè¿\uYAöì#-L¯-òz”¬ dzöŒª—„|ÊzF¨½:@Ê “‚?æ§Э“ý¶Dyµ=Û)‹®NuÒBk=Ö î·GUfN§,2k>§~gÓädSgK»†…\.V(ØçІ‡Y¡`Ÿ+ X¡`—*êèÈÃ4ȃ4³BÁ>W$—3BaD ³--”@"*ÀÐ)P€Êÿ¼iÿS¡9Baa¬˜0F £c¢‚Œ–Æ%J”ø30÷ý#o¾²õµõÓ'mç<[ñîsßß}jRÞ«áç8³­‡ûíGÏŽ¶ŒøzP•úÅæç:¯£&Y8÷'+0±®ð@M£"Wèr CË%WhžN®PÏSc¡ìùB¯ÒÙqg£u惄 +Kc½šÎëÊ<¡Flˆ*-£§v?ÿ܇o9\~=oë~ðÛw+žÝX–å禕û_¸PVñýõçÖoí-&l|mÄÞ STQO·Ë_Šqê"×&yE ¹‰q_#˵)^rBCësmšõFL5C²£¼Ýcwe„çQ¨‡Â÷CÞÙ0c#»áÐ`­[anMA™£ y¯Á¬ý {šïžêAe¶kÏÏáñ*Õ”{©<[(O=·{ýÑ­‡ÈõƒI;Ùñ|Ñ5®]¢D‰ÿ·,xáÅÂó/¾°€Ìÿ)v3‡ü†0^pï|E­ä ¼æz~}¡-ô"9{àt*ù^g¡-9ÅP ÁþypËU`K ­üV›ÍVhK ü½^?X`Ë3ÎA37ö õ«£mX>Q=F QLáW«£yøýQZbz ë‘̘4 †IiÁ&Ù8q[¥Êoc‘Jm´`°l’X…©¬üÒc`°¥ ´`7¤’SÄn·­ =d§0ì´€&@’è[Q²túÉ÷h"2•…&@ÇK@7%ù‰èŒ)·À°E‹˜Æ >X,8-ˆãx<îpˆÅb:ß‹ƒ÷âx\L 2#H’‹\Ô1`Ô´Ñ‚D œÄ‘7kéÕ,@B :ð Aˆ™(P1DÇLK!:Z¨«Õ1×TÙ’¨c!Z¨®ÒÓI½gÉÄhÁíf‚j¸€´¸ qƒmòO\½ æ6­Zu `óæmÛnlÛ¶y3ñyÕªM¥Ù‡%JÌÆ’Çž8ØMrð‰Ç–LK/üÑüF7õ£å6úÿ𣼾o z²@Äá ¹·C?6C]Âì Õ]ùÇ9Â~´KÂy¬AŒt¡ûs„uáZKÜh“qKmx]ŽÐ ÅaÜápĉ^ÇáÀaêÎ"&˜ì±´pÒ0MhÆ ÐËY@߆ÚSmÒmúæT’&°¬°Ž8ç ˆ?í‘6ƒI(ÔÜÓVïÏ k‰í2A›ÇóÓÄ|ž6ÇrZø!¹=-E=#A/U&Þàˆ¦Î‚åþÄ6b Ï_ Ì#)²¸Íï´FbR̳Y£TF$DIæP¾ó’×.£WµèºÈ¿nß²ìÂ…ñ‚4еY{þÙÞ`aæ/]˜åj[6‹À[»}¶+ö‡_áÕ¿qÁ‚o|kÇ7o¾ù¦›þ pÓM7ßüÍßúÆ‚7Î)ý6–(QbVæÏ»÷ÀgÜ;o>']ö½Õ|€{÷3€{VÿÝR6ÿÆÚå¦Öí)Ý]VóCÌôü4Ð@55À nÑÈwæ{ôþWw ëê„ÜGÿˆÏ]«©ã˜ìªCj…¹ kuu]Áy¤p/^#ÔÖ s¨«•jð{Iá@X"vêjër¨Õ9Å’ðRø ŠÇõýýùðÃåËÔk¿>‡>£TÛñ"ù„÷U‹²‚pãë$N§@^ÇP+Ø’™±~?1 R÷_V#"ÿX&i£…á”4dJ Ä0†Xš!3 SHšjÜCŸ¦EICISÄž ±GLÉS[´ÑÕ¨W¨õÔE¦W+¢tA¢v¨3Ä,G¿"£v0EMT–QËÄ ò%“!Í8Õ펇Ԋúz"Y_ïW‡ânNu &ÏY§ªÑ9 ¦P“û(§É}U”ÍÛ³g^٠¼‹¶å¾„=§Ó²ç¾~ç_'v¡-¶‹;c±;gõkÃæÛ³ù·—+²¡¥[<Ä€äü‰½ÙÙäOcDÈE…îë & ‚ìÊß#."Ôº… ½½]‚ ˆúSÎMîýrõn¡þ¹À#1bñd”s3W~""ÒåÔ9,™B‡k'ç ~ƒÐ=¡¾3ŠkµZg OˆAÄû*Õß,\&½ÿUîTõ1]¢gÌ×Nˆív{ wvú‘ˆø§?ÝîG ÃØÛÙüñí:aŽ€·Ots&è÷9@dœ)•íBbFb¨{Ù#{éYþû¼ i§#—umm&Ó¥ ;©šy0”âF*%ê¨Zßí‰8Zÿ–‡1ndQÐèñ&òÌpª¹‘©:öV›šüŠuQnd¬ËGÿÕªÒ?@[Ä=ÜȲp›7Há•-§2Â<fè¿JÍ [Ȫr p#k'¬!ú¯RÛ2d[!C–l¤lŸÞ­$ÿ(59EUéƒõa'2¹´F ªíšû˜‰ p#ó÷`§M>Ƭ¨ìz|• ÙHÙÚl_þ §Í•íÍü)<üð¯ýηÿþÛßyôW?ÿÇżßÿúçÿð(€zøáÒïZ‰%¾ZV¬¼kݺ»V®(’ž»2HT8”³rn¡ü |'½Ê¡y£€Q¾Ô-Å<Þ(¸ß4¯œ–_úúU¸Çÿ|J.…§¦ÇÓ—p\l¿øÆŠ²½gå:(“ÿ;º¥xÜ6þ$±ï½SQÈxWžð*…6§©c+»è…ºÖå {zRü“Ÿ¼\A”Ƹr̶׫¯õ©#¶– ÞÜ7&b=ÛƒWúô<½<÷ñˆ ääÁ¦¾6·Ð‰ÛúÞ7%Ä’ŸäŸæî¾6+4 øN¦CbKÍTþ#òä®ïãKãqÁ膹¹õ÷•·ÆúÌ)ǯî_˜­¿¯×ÓÉæ¯¨{R¡K¯—³õw½9Õ£¾Âæ›Î{=ªî§—fëO‹¢©kl~÷ÁíÛ?ÞºƒmF KóÕ>½›Ê˯?~cŸT „Dþ½¼üSU¸Ç4þä'IÜ)tÇú:ó ÷éÈŸ²ìeiwÖ÷] æ×ß (0´¡ŒWÑ"µùú®©3ùõwa’§ßo*^î;9•ê Þ5]hÿ ¹¤0÷Éñf4u%¿ø?CÊ뇨|È‚†¦ÕßÖ $=[QvxÃxNhùÓúŽO Ô——ÆÓC)i„[Ù¯Ð@P)oèPÀ5£û ü£©¥¯›éU"ç¥ýå….Æ¥[/*ãö@÷Ó….Öò‡Ÿ=öê[¿ûÝ[ýç±7߬¨8tèÈ‘3Ï>uøý÷7Î)/_úßÌX<~ZãIEND®B`‚images/align-none-2x.png000066600000000171152330733730011106 0ustar00‰PNG  IHDR*ÕJ·@IDATHÇcø? €aPXÿ”î`ðYOŸµ~(YÕO‘ 4jý¨õ£ÖZ?T­­rF­ÞÖÔ–îÈîåŒPë¹29<*[(ÌIEND®B`‚images/resize-2x.gif000066600000000227152330733730010343 0ustar00GIF89aòØØØýýýÚÚÚ³³³´´´ÙÙÙÿÿÿ!ù,@\xºÜ-Ä9XL8Ô°|9&Õ%_Hzh}^«Šd¬dòâÆnÀÛ[®´_Çç©‘R#iÐ(‘MÁÈ”’±ê¡04ׯvꇭØ׋ŸÕo3>—ñü¼‘;images/list.png000066600000001753152330733730007512 0ustar00‰PNG  IHDRP-JåhPLTE333¹¹¹···³³³±±±333¶¶¶···®®®¯¯¯”””°°°666ŽŽŽ333@@@BBB```aaadddeeekkklllmmmnnnqqqrrruuuvvvxxxyyy|||}}}~~~€€€„„„†††‡‡‡ˆˆˆ‹‹‹ŽŽŽ‘‘‘’’’–––———™™™›››œœœ£££¤¤¤¥¥¥§§§©©©ªªª«««¬¬¬­­­®®®¯¯¯±±±²²²³³³¸¸¸¹¹¹ººº»»»¼¼¼¿¿¿ÀÀÀÂÂÂÃÃÃÄÄÄÅÅÅÆÆÆÊÊÊËËËÎÎÎÏÏÏÐÐÐÑÑÑÓÓÓÔÔÔÕÕÕÖÖÖ×××ØØØÙÙÙÚÚÚÛÛÛÝÝÝÞÞÞßßßàààáááâââãããäääæææçççéééêêêëëëìììíííîîîðððóóóôôôööö÷÷÷ùùùûûûýýýÿÿÿ¯Ç#EtRNS??MNSUÉÉééëëììííg0ú !IDAT8Ëu”ÏkAÇß¼™ŠŠ'ñµ%¸‰^D¤µG[ÐT*xöOóăõ (Úƒ”B)[ûCzRñ`Mv6;ΛlÖ¼™é<²ì|òÝï{oÞ& õ"°u\Ö)&ôÎNJ›bêüã þz>L²§ œžýN1Õ1G`…-<Û›®)·ç:C¬vD=¯[BÀÉ;§ë"(}oNO×K”éÏ|Ù}Êm`YHgö¸î 8CuÕ¹€ËãrMÓHÁ…’ os]éXÅe´w†_|e®íÅcn£CEâO¶Ñ­|¤X;Í—Ú}×Ç)š;Ð8Â*™Õaí+„x)Œ+¬1zlÀ,Iå‡T°¼'± )¬­X!ØTÝNÊ·ÜåÒ>ñlB3~—ëÆ¤S\‡¾å¢IlóýkE^äM‹á’ogºõ7k›ë›«Äd|Z€ývÓƒ>ønsÕM÷уv{0øën²W\7 C‘¨Fˆø² ÝL?x\…ûÿGDB-c`Hgª_sÝ=JfÞ°W˜4|¿6 k¹ðcr—¼È›¡Œ[–/gºG/(ÃDË¢77 zêVbÊíí¹ã“xÊêçEN~¸7)Áð ç¬p_Ÿc¦¾†¿pGR¬|ÿ.8“dêä`¹¬&Õdb…”*½eàÏáriêª"¦fzk ãú†1ãzÊd¦³]#Û7eYUµ¨”ÖÙÞþw¡ÏŒæ/IEND®B`‚images/about-header-privacy.webp000066600000025256152330733730012727 0ustar00RIFF¦*WEBPVP8X ÏWALPHÆ ÅmÛ8òþk§^¿_DL ƒ'£Ý˜–‡+ik?ض¶mÇæH×ûý(Û®tlÛjwŶmU&;¥¨ÂR’¶í½˜­°Ö§kqì¹æˆ € ÛvÚ&œÈÌv"§¸ÿ%qk”™ ŽW¡y1¤üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿð?üÿÃÿÿÏýðè?ûƒÉYLIþ¯õÛß—aZ-‹»Ÿ…ç–ìH+)ÊÏÕ/Žnȶ³ú.Š$.Û2Ëoœµú÷øã7D£ªj®§Ëº%~&Cß½¿uCŸ~Lü³Ñø³Ÿ\A”%Atü>+Ú&ˆ3ö4¿ÿ ‡lí.þ²·¦eÈ õ,Ûw•yLòº¨Òè3húáÆ ûÆñ×LdÏT Í9ßQE<…ÃÐG/1+‹â×5–ò·sãß ‚x~ölÝ0Ƹlj¦Y’–Ýÿ¼ð²Ò/ñ7[ñtEµ/Žå:º0OE–å0 Éw1ŒÓÌ­*¸ÍßÇÍQ4-—ê‚ ¸¾!SñÉʪª›"«êºøQåø{mßÙº¦©Šaiª*/,«Š˜um[1ÖôóÛTÛÍ?ˆÄ¶4ó%YÖl[9M]žA7Ž]ðÝL¦4ø!ÿ˜nEÅ4)•‘(=®Eiâ þ^ž´x7.¿k*.Aå“M¸|î}\¾è._ÓËnÂå§ÁåÖâòÛfàò§jpùf\>tâòɯqùâïpùú7pù -¸ü pùÕKQù°o,*5–¡òÉk¸|n;._ÒƒËWuáòu]¸ü€¸üÐv\~â \þ•¸üªE¸üö©¨|8Ü—o,Båãgâ¨|Ú5\>¼…Ë'¾Áå3À勾Âå«>Æåû=Ãå‡ÜÇågŸÃå_ي˯^ˆËʇ}CPùp´•Î@å·qùŒ¸|^._׎Ë÷mÇå‡ÝÆå_nÄåwÎEåÃñT>~£•ÏîÀå‹ßÁåŸëÁå']Åå_ێ˯nÀåÏôÅåoõ¢òá\¾à#\¾ê\~È#\~ö\~ùVT>šˆÊGg³Qùô[¸|þ3\¾âm\~`7.?º—å,.p*.d£òi×pùâ&\¾ö6._ó—z—Ÿ}—_¼—ß: •gËQùXs/*ºpùÜÏqù²Ïqù¾oâò£Ûpùùgqùu«qùSQùp—O>Äå+ãòuwqù~÷pùI7pù†¸üúE¨|89•·âò¹pùªÛ¸|Ÿ¸üà\~æ\~Ù:\~ÿXT>\ÌDåsÏãòùM¸|ñ›¸|Õ‡¸ü°\~þi\~ý \þðT>4T>ÞË—<Ååû¶áò#®àòÓqù—öâò›áò?é‹ÊÇîâòYí¸|Åc\¾þ.?  —ŸÜŠË¯Y‡ËïŠÊ‡3¹¨|ε^T>¿—/|—¯ü—ö—é.¿b.p.߆ËÇÞÀå {pùú\~Øm\~Êi\þ¥½¸üºe¸ü‰¡¨|hÃåÓzpùÒ7qùÚ.\¾_.?î>.¿|?.?üud~)6?Zçrt.Ò¹˜ÎE)ÏÅt.Jy.¦s‘ÎÅt.Jù?‹ë\”òüçÃ!؜Л è|°¹€Î› ¤<Ù\èµ9‚Ít>¤:Ðù`s6aó!å?øOˆ# )ÿág‘Î…”çjmnä5™›t—Ÿv —Ÿs—Ÿ½—á*–­EåÓOõGåóïàòåïáòuoâò#oãòOãòsâòë–àò§âòýQùè.Ÿ÷!.ß÷.?æ.ßp—ß5•—óQùô7qùŠpù~oâò3›qù‹QùĉJT>ïò¨|E ._ßËy€Ë/ÙÊG‡Ç£ò™7pùâ&\¾ö>.?õ.¿p .d<*nâò™_àòõïáòcZpù»qù‹}Qù¨—Ï{—ïû6.?ò>.¿i*Ž@峚qù²N\¾î-\¾Ï»¸ü„.\þÅøüÚ%¨|Ø7•§ Qùøu\>ý.Ÿ÷—/~„ËWwàòƒîàò£® òÉIGPùè§?âò'pùoõº\Ã1\¾q.ßÚ‹ÊgÞÅå‹;qù>ݸüиüÜf\~@.Ÿû—çùMy27~+.¿°•{¦£òñ+é¨|þ5\¾ —¯îÄå‡ßÆågœÃå×5 òaßPT>v:•ݸ|Æ7¸|åg¸üˆ‡¸ü” ¸üÚu¸üÙzT>ÞŒËgÞÂå »pùÚ·pù=¸ü”»¸ü¦-¨|8:•O\ŒPù’&\¾¶—ïs—w—y.¿s.*NT¡ò‰&\>»—/}—ïß…ËÏ8‡Ë/^Ëï„Ë_ÍDåÃ\>û}\¾ô=\¾ïS\~B3.¿ð.¿{*½^†Ê'ïáòyOqùŠ7qù]¸ü¤\þ哸üù¨|t)•ÏnÅå+›pù>wqù-¸üÜã¸üʨ|Ø;•®'Qùôv\¾ðm\¾êC\~Ä\þ…øü¶y¸üÅT>jÂåÓïãòÅàòýŸáòc®ãòsNãòÖâò'¢òñk¸|ÁC\¾ú!.ß·—ׄË7Æå·¿„ËŸ/Bå“·zQù¢{¸|Ñ\¾Ïg¸ü„û¸üÂݨ|´<*Ÿ~2 •Ï=Ý‹ÊgvàòE_âòuàòÓ›pù—àò»_AåÃåÙŽË—=Àåû7ãòc.àòSOáòKwâòÇÆ£òá.ŸÑŽË—öàòuÈ|;6Ÿ¥sé)Ïe¥<—­sY6Çæ)ÿùv2å?ßNè\Rç2t.Sç²RžËй„Î%SžKè\šÎ%t.©si)Ïeê\†Îeê\ºÎeé\ŽÎeé\ŽÍ…t›‹aó‘ÎÅzS‹“ê\Bçâ:—üVP8 º!{*ÐX>1‹D¢!¤& RÈ(À inûÚ2Í›Áã^íŸr¨ü’²7ニ½ÉHHgX¿PýäWšÇÍÇ䝯ÿ{ÏÝßÜó]™¨£ÔO‡þãú¥þÏû§ÿÿµªÃz…þ†ÿ]ü¤þíÿÿïϨ0ª¿­éø?nýùÿ¨õþOý_ÿ¯³¿­õQ?Ø¿ÿþ¸ñÿÆüþËÿäÿeð ücùßüßÏ^àPÏà¬ü5ü0ýú¿vwŒ^Ÿjžæÿ—îgê«…¾ýŠþóÞ[øÓ}Ðoûýoi~úŸW{þŸþÓõÇ·oí±ì8u?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOóòÐ!\üå ¨¾:®uÌg}S ×»H|/,ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPbÖíþlxiÎ{ñ¦1á$éä1þ÷®4pùÄz€Gú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨s€Uhÿg#áç¡’E¨•Ñ &×gX…NôÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵqpµ»‹OŒ‘›-ñwºKŒq1'ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6–O»M“»„ίI ¶Êܽó¬Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ é•V»!žæƒ^ŽÊ#œe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=À§,†"*.Œ{ƒt7ˆžÔïÐPt²Ü…Ü7]ø^XºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Ê縮±"NÚ˜EF¦õòÚÄžê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºš²vNÍ5¤ØÄU¼p´"?èDÜ=NsŒ ê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(‡äÔo"oíaP¡°¬ü ›ÙÒ}¹ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Ê ëÀ@ þ5¢“»²Få5 ä&ȿֱµq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOôlEVø.¢^ÞºÙ!Üå„R³èH;³ýiȳøºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êú5“¹¥UQ$Eó}Èh¡€øç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆChü¯'Æ[¼T¥hlWÒŠíM`Ði…@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆP=á_”¼Ö„ –Ëq‹ß 8É=œ»¨£Á“É¥ômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷L²•ò‘ã½Ó¢ñ_eØ7ð ì/,ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœd0D0¹˜÷‰”ˆ¼“µéH]¶B,d%ê0‘ü/,ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœü{×\9ÉÛ½{`‡(=fÔ9ÅÇcf^ÆEäA}Û= ¾XºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8¸ZݳóÈ‹'±¸ ‘3PæÆÊ×ÊpšŸF‘£ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœdÿJ­€0ôBñTâO?27ðÝE2¯–î§ú6¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6–Ã).®­rka¸h.EV_TÏÌ¢¡Tn!#t(uà ó›Àê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£jâàO,T @R(nŽãÞ U!S X¢-UpP­L‘dÞ¯®´äÑÎ2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ~ä4Ç(Ÿ ,ÀÍØ;.§ú1šf,’÷¦Z@»«–TÆå¬mCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœeІB:Í­ÈW»Ã%yîV·6ä:èÚ]¿›É¼‰³]`KÈu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵqÁÀi Fáô¯ˆC>F“¹š’ÀͨsC.§ï Áÿ-À5†Vo|©Pç@=ÔÿFÔ9ÆPu?ѵq”ÝOômCœe÷SýPç@=À?õÖbª`1§)×”±ŠxS?œÛ{#ijQ%BÓ½ê,ð =0etë ‚&oM¾:ˆá!Pu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѱãX!YUöh8%ò³âÃ:­âê}Ê ¹Šñ©ªã15qÔI0¦—Z•g¶òªV¢`¤B¾EYcÊ?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ѵp ­#´Y+êØ‰Øb}Òú”[ú›|:H¦ŸÜÜTW…Í©ž˜dL† ®b u3“4™©ÌîÁ^QÒåúÀpu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu?ÏÀ¤Z5íEÉlÛfÇϲÜþ ("%;y0Cψ VHÑÙ:7”è(š(N#0ˆ[×ñKZ\²˜j´ùl &Pu?ѵq”ÝOômCœe÷SýPç@=ÔÿFÔ9ÆPu>â©·…ê¡)uÐs…˜§Š³¯st—;‹.;¯“‚ó¹A¬í‚s$­ÿ=eˆ±ÇŠë2Yc, •‚ÿ­à8©­]xÛ26¡Î2€{©þ¨sŒ ê£jã(ºŸèÚ‡8Êî§ú6¡Î. N1‡RŽe“»å Há;UuàÔ<\±þ2³…=_g! ‡ã"Ý®ÝJôÇ4x\›‰P`=(&ñ7ÒdW:=]éä -žê£jã(ºŸèÚ‡8Êî§ú6¡Î2€{©þ¨sŒ ê£b ±ÿ"JºÒ#Çdª 7מž»¹™½ìˆëŠsst ë;ðX;ü£¸Ú÷Àîãî×ÓK¿9ò@þÿ¤D¯ÿ-­úÑö”¿6 Ý-Jÿ\u…áˆÑvüR*}ö=G˜£Cåb"ï0ŸåWü¬;d"¡jñ!p2m¢/ SgeMT*‚Û&~ž5”ZNîYd€0A啦v¥AcZJ·³žCÛÙ©=!— S4•“¿Þ4áQf®‡ë¸Vw0öÿ UüZJñ–a »µ'Æ æ¤7Ìy»[ÑæùP%ôš(J×îâõâ:)Ý$ ŽÀoÝ@½™Qø‘#—çË€¾bû’¯í?SOƒÿZŽƒ ZHy…mú[-ýv~'ÈŽ¿þ¥Qd›­S#s@N 'U2L¯Ã¥°ù(²—h.ÛüGáN„€©Áâg—ö¤Þ¤2ç<Õ[·ñ'tþre p*ÆùåO_óìyÝm…AßÊÑ¿x!© ¶C(ü—GŒ¥Ÿ¿5„ÎAE¿‹G©aã9 0?Íg"ÚÿÐ4TžxÌð œ1“9¤Ž›í ŸhÖÁˆÒ›ý]¼Ë€Ó‹“–‚þ´<^–ä11éš2ßE00õ)þk9(òŽvègüÌo >­ÀQ9/Ø›6s»öâd(ÐÅ õ~بîaànÈ^¡M-;™‚'§ÔqØØí+Ì$IºÝ\Pý@Ãô¸üÖr^Ñ„>½ ÿÎÚ,^̯%IªÐ«7Åñ:“ÎP¨uP¨5lím¯àl5!©åê4 ±I¦Ïgg#ü¶ª(ZñgˆEæyeÌÂøÎÜ󽣑ʃº’´{õ¨2ó(p1æ”RLœØ2#~ï¼yƒ’ìI•SÓ2@gßP¦>oOÂÄ ¿¤NP©M€%fHRÄÞÍ%2²±3¤Ip”~ëw6îËèÁ Їû]b¾Ñ¥ó(Ò©uIç`G=çCf—¯ûêÍêÉ«†aa~o“ü]RÒÇ ùÂú…âzTÍHÍOR¹†Ð 2KÔÖÐ6îï¾ÖX*b…§’ÐIÉ:hIœ&§Ó -s p^åN—¹ßü#{é€ œ%`ãª?ÖBɦ¦®R;|pSs,¯—eÉwhè]ëäáo_£3Ûo¼.0v0䤹l;÷;¯Ñ/™<• B= vÎÕw Ôý¢¯÷’fÙ¶ÏÞþëWxÚiZà¬j;˜±zKÐU8Ê•(ðZÎP×ÈÚmmŠäãS²;¿K—RûÓÇÁ8÷ª±ø3 #ã' §7½k‹Î’‚µ… Wx½©‰’9¹ñf÷ãdñH°Pÿ¶R[£Í…âªJq|Tðãå`,£iIš›`¾· Öâ|T$ͦæ´ÛÆ¿ŽÄí=ööø!P"EÀ²sàû0¿!}£WÓ\!çë¥ïoÆgm«) þÇQ„^*L ö²±ÉòáÂå¾ÿ:o„MRVÐID›¿åÓ_Ô¬T€­æ * `Š)D-d‡Ôì™mì8‡å˜C]Õý›ƒºSî×Șè=©kPæ®5²…B72ì¬ŽŽ ö œf†_$“4“èxc{E{šÐ5**¶WéI+ yî½Ä‚xw¤Ž³¹qÏÀ8ŽŽjÈŒâoÿ˜Ó|©¦¡ìÚE1ªC@8vxægw‹òÌ¿žc¾eíé“3ÎZ­ÖH¢‹r!Ì{T"€ú“ö·…%&ªö¬L#.$˱aX;ä3ù"vJzÅiIÖ.QöëÑíj*ë3’ÞÍ&2üÙ/g€†*Øh­,JæÈºíÛ¨_)d‹£9ÔŠj#íg«ë#÷Õ)ôžL¿©Q–\lòÏ3k^Ž/徯R¡ÚD¯ç=ݫԱPÕ[ãÄÌ3 ¦¿+^Üoáv~¯‹Y§ñ—õ¢¯ ­5Ãüÿü··»Ÿ+Š¥e3Úº*–°³7À‰Ëß¹PÆËnI0%¥ïx~|hô˜÷ÛI4º²ÜšøbyV]Á2þ zi"V"ù#èí rìÁ÷ë@W´ÁVÔÌiïCjõcÒR%$@ì‰-ñrSÁbvC»têD1ñ¼Å”^g¬ø*ßw­®&@åoܤ-Rl?³O»‚ê.5°K#E;³_Ê´Qu²Mò[v ù‡‰Ç#O)Jnò ƒ¨ãØì<èŽ9Õ­Áòõ±óÔɳ¤ˆdÅí<‰åÌü™'M’¦Á;½~žÞ9,óüË‚`šÕ¿Gðß0‡Ñ°ì2m<Ã*–µŸñ0’LÝG¤©Òö”ý,ŠQˆ¢oTöúÇ'úÚšèRZ´3í2"+=Ð$ýc¤¼£)#k§½÷ÿ÷“o& …J§úó¡ ëñÒWð'|Jn9àp²½ x¯!?öÁÀë-F×À_%@9˜` 3Ù÷Rçñ:µ•C««{ó òïúƒÿËW¸0ÕdÀ•ê+áô§n¨KÞÝHÄk„QX¥R)±$~ +ð ÙÉÖ _µß‰¦¢Õr81˜–ÁDFÂÕ-"¶¢8ý†UcÊî|`ìØÏO—omÝinãÆ\"`4[ÖðwDm“í&ÚŽÜÈá¹…-¦iŸhþ¹ïœÇ:€-ÌÖù«‹ŠÏîà#yæ',r4ÚF¾Éâ3ù.‹€X÷3„¯ýFàîæ»0¶®$6Úì•ÈóQ…ÚÈç]ª¯%ãR +àË(¼…£]/ÏL‹{ zÕ5úB|mªÃá¼ð1§Ëÿ#¼†Pë,þbàÕ!סîb»!)#KV±¬(p`Ÿ<\ 1aõDõ¦ÿqýHRSÏ¥V }±ð¥ö/mI0VÎÓ±3ì?ù£¹ZîCqº½ÂŠCò5Ã+:(û<û ûÜÈKcÿ3á–löKJÝ}š1%%{ Ÿê-ÇÑæÂñX·ñdÓrEíî_ÒŸ8©õ,>'¿`‚ŒO¥Ìà‘ö=AéeÞuߤ¼£)#‚ǧ؜G•‘>© š ¯/|l˜É±Ý¶®éÔ%"ãmÃgµ„äOq)‘µeDØÇ|Ë <ªÛQ¸(!§¹'0#%§jƒ_¯¤ÔÑ@ä§8b…dh˜ àúc6#mQ˜6¯U(>k>'»ølž¿ÿûãÖAЋ  Ù r8gúâõIËlƒfáí¼S°vŸÐG~ ùB÷Y‚Ôl‡©9ýÉeUBç¤7¯¦2^3.­ÒPŸá°­.xürþ72XãåzâO´ZQéEFxwÔÏ ^6¢¬ sŸvºs£vt‡÷§ëý)A5}ÿù ´¨þQ?McÖ£Àfªþ,sEM­ZYu ¸)UØÁ—'ñ”EûËó,{Oe·õ†szIÛ.«hGí)L1¤kÓV±D_t¤0LLƒ¦T¢u¾&"£hVÑO:{ýy Â+b#kåN¢%?”ð»ÛDÛÝÊP ìEä`‡g£ÌÙ¤xþy¦Oꎩ V&ÝÌ} h–ag70Éòv¯VF·7E:àªÿݦ‰â‚Ëžß Ìn¶–Íï“î˜5Hsò!¤éÕØÍuÓ^±jƒB”ÂЊ¸‰†ÈdÙZáé@IÕN­ 1‚)Î'?f( çØoÞà9o5ñ­ü+ZèÀeR’ ¬çèY"}Û•i‹5n˜†¹’þ?zûoÈ~_Šk»¨5}‡Ç´VÆ?ðô}7`Ëu"w5?„©g3?âf¿—«i꺬;x–q¥_m^¤?ôhõE.Eõ þooÜ3à5èç\,é}Ïv–é-ñÏë—nÊõð¬Æ6³ÙE³áæÍä ¸.Ût¼õqëm•#ß²žw±Âî£Bêf&©™6¡2qx‹¸/¹¹sŸˆÃiQ¦^»„ö3à,°°wwˆÑ9ý»Ï´!®’ôþÖùì2?›¾ |joQÅ®Ò$'Ô¹Û‘6õ%Î þÃnzÕRŒÌˆq-3 x'¢ð5õF„E_àKÀhŸ¼U O³Ãs¼AÏÇN (X-”Y\('Æ=Boµc>Q¿«q77[dݳ |G%QŸ¹Úᑊ¡5¯ N/F·[ý:äØÛnkERšM¡)ž.KùžïònûTI:âf!—éó“„Ùî—ñ-ƒؘä—J. ¸Ñ¾ïN}fJÊÙB•ÝAÂ)ÜLÁIü¢J'DÝËáwª+z74;>èD\OÇq+î}vnçIÀÅOënÒä½ ý㟒á4 " )l¸Pcl¬ð-}ȾæïcÆÄurÜÛ†7´ØžD^A]ˆ¼tÇØzâCâÅÚÓ¿ëgâ‘[j„ˆâ¬.,µ$…üÜìÿGÀš€ÌúÑ,ÿ÷n:'Ùaš½pPŠ„ÌùÎ8ñó±iã%¶øæEËVBá;@Ž´f O?i+ìZè`®,•™eË0ž/ŸEÛº¾JÚÿíêશ­;¸ãíDï)Zÿ6$PFG¡è6ÎyŠIŒPÎDˆx;»e?¦ÉIšƒ_¾T3\-´|îùíÐ÷q\á*Æ¡RÌ ÿ/×”Db|ÑÆ2Ez„{$¤l[¢Cø÷³êìgLJCÆ>¥f~ØåüÔP³‹ §ðûûŸ!¶.ìUÎ"ýÉ^wW_§¿:fÍ’.áû°ÎeÿÏ›CýÁ·DLôàPìã-~é,–T[}© Ì%»{òÝRFL?<5°:Fó´O‘FN‚:Ué,a{ãdˆ“ʦv†¸61./“ŒoJßó2³ã½vÑ{h€ø.œVƒÜ†2b¡ur›h_ÞÁèŒHòö´jVÖ•¤7ž£!‰uPÞF7ÕPëïùü𛢅ölJ7Pçÿ^éŸÊµÁñ¯z0M™a¹­í\34¯¤ƒW|rÓY÷”kÚÀ’ʰÏ”<ÿ{bý¦¬Tw¦{¾¤± ÿ¬@”ª†QúVw/¸5ïÈ=µ,óÚÖFz ¼Á˜ :8-8,ËHu@4ú…ÿæö`þš©)ôeÙ¸¥‡À™!Å-†—ÆÃÈ_?½]•Y™~NjI|=°ßwYB¦ O=Ó}®@=xùØ ˜NQACÇÇ#ÛY‡ùD½›óPr`¦¡Yiögzµ„à¸yMká_UY8PÄM¦™ø ÈU‚™ÜpN#v‡ä£Ø¶qû*Kûá0ˆ3²àÅ.§µ„´@<+–|Z6¯ûÀ¦œ3Œ­`¬f/K_l‡7Ryn M>wŒ–j© `÷Êhà΂†jàÔc›˜ôqýekÝ{Q8—:ñ¡1Ž‚9¦ }…êÇõÑÁ¤ôšA{h@ž­4{•ø†ÌE+*¶Œ75zt€  ûæ»Qš9ÌG€—¦ûï€Q|§•¼Çϯ®]&=’ÂFu*‚¤E5 "R 2ôX§*8ó?.{Ð;Vòyð«³êßåÙ½Ìö°³†æçŒãaŒ‹ÞYCmýê#™ìuõ!C—Wù;#-×R­Š‚Wx[,Ðœì ™:\Ùõ{D@\2Ÿ%M1B@dK­!þýD?RßM¶¢ÀjœzŒÕ@pÏ=½`kì;jýõ|·Î©ÔP©üŸFw³zµ „p MT€ŠÚóÄ8ŸÈáyU°ŠÆ­P‚images/date-button-2x.gif000066600000001744152330733730011275 0ustar00GIF89a! öavvv£££mmmÚÚÚZZZþþþÑÑÑéééüüüsssýýý‘‘‘qqqúúúÍÍÍûûûóóónnnçççùùù÷÷÷ïïïåååñññ[[[†††eeejjjÃÃÃæææìììíííõõõöööôôô¹¹¹```ààà–––ŽŽŽ   äää¶¶¶€€€XXXaaaòòòUUUšššÛÛÛáááîîîkkkDDDÔÔÔøøø¸¸¸âââ×××pppðððccc___fffrrrããã±±±ˆˆˆhhhYYYÇÇÇÝÝÝÿÿÿ¼¼¼ÜÜÜ^^^iiiêêêlllddd¿¿¿ÖÖÖ]]]oooÊÊÊÀÀÀÆÆÆQQQRRRëëëÙÙÙ­­­ßßß\\\èèè!ùa,! @ÿ€a‚ƒƒ †„ˆa† ‰ˆ  ,060,‘š’”–˜‘Œ„MI!"ªª¨«¬"!!IMˆ?IK&!©±ª+I¿À II?ˆ Ì % W % ÍÍÏÑÓÕ͈IàáâãäáIˆPIì#I«ìI ¬óìIPˆI H° À$ Ú€À‰‚ :„¨0L‚*‘Ndé E–›2nìø1R•ˆ¨( ɲ%K%TÕHÒ ÁI’a¥àÁÍœ]xÖl¤" I*T€ð g¼˜æÄ'`T¥I€ r‘D‡ =œ²JòbKœT$q@Hˆÿ¦$‘²CΜxsBÈË÷’$SüL¸°áÆVŒ@ t;†\‘†$2’hPx9óæŠ ˆæÐÂ-8ˆ^퀴iÔªE£$äH$b̈a$SHܺyû>+‘R ÈÀE –Ê™gpÉ n9\jo™ƒ² 'IˆG  @^ãËŸŸä ¢ I(àxbÕª &Ð_ žPEƒA¨°À}­„à‚È2 /$Q"—}ðO4p(`Z j¨">$aÁмÏtÐ=iÁØIø°U^Ì@ƒÅ ä; 0¤A à!L$Á‹0V®b ŽL òE7ܰƒ ´ÃŽ&È@¦™€!ÄR$ñ"ðeçxPÙž| ;images/stars.png000066600000001634152330733730007671 0ustar00‰PNG  IHDR%­m¢;cIDATxÚÝ”MLAÇUH*˜B¹(¯ð/H4ƒQÃŃу1rÄcÂAP¢F¬|U ‰Š!FÆi¡->Ū‘BQÚÒé–¶Ðv»ó|Ãnú‘”²99É?³ûæÍ/ÿyó2[`}…˜T:KUâv±X׎̓²ŒV§ôt¦l4hÏ!Ž@·Õè6埡Iÿ¯7Üìe·ž ÛmÒ !& !©TøÍÏAG>qvBÈXÜ|=º]ºÀçë‘|Y\(褂‹^N ¬šü®á¡¦#Ëý^gùTrâã3½rbk4qÖF„T‹0ö ¯ðÍMT7W ÄÚèBeŠª)YhN"óuvb©C’‡y(ýç~ž\÷ëí|X“D_±Ý•K½S¢"P¢Ë›X™´Ûgé¸y„›<&=§Pð3¥·TÐ.'ö‡a7u"ìšC(û9Vû†;ºÇ¤®6¨k-îj©Ë¥§ù=ðƒ€ö~‡ne¢¡x–¾–B†Jײgm~zØQÃÔ{ÍOר„¼ŸŠ®¶êIEND®B`‚images/contribute-no-code.svg000066600000021362152330733730012250 0ustar00 images/list-2x.png000066600000002763152330733730010043 0ustar00‰PNG  IHDR (NòªbPLTEMMM€€€ MMM€€€LLL]]]^^^^^^222333222MMM€€€}}}KKKzzz{{{HHHIIIMMMooovvv€€€šššŸŸŸ   ¢¢¢¤¤¤¥¥¥¨¨¨¬¬¬®®®¯¯¯°°°±±±²²²³³³´´´···¸¸¸ººº»»»¿¿¿ÁÁÁÃÃÃÆÆÆÇÇÇÈÈÈÉÉÉÊÊÊËËËÌÌÌÍÍÍÎÎÎÏÏÏÐÐÐÒÒÒÔÔÔÕÕÕÖÖÖ×××ØØØÙÙÙÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞßßßàààáááâââãããäääåååæææçççèèèéééêêêëëëìììíííîîîïïïðððñññòòòóóóôôôõõõööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿŒ?åê#tRNS@BC\\^hs„„ˆ‰–¦¹»ÀÏÐ×ääïñòó÷ø—`[ IDATXÃÍXMG¬þ°wm×»Dam ¬DТ H6q‰ˆS¤œòo¹$Rˆ’Cqa¥HÖˆÄØ{ì™év»Ý½¬ßtKò¥™éÒ{5=¯ºÛ–2Šª #žÍRøòDíð–³YæÍ“õã{õâôÅŸ#øòŸ~ýIïß_Þ ½y2z0y]@¼ú 7‚7ïñ›_ xŸ=~6ôæÉJõ/^@ü§U|y¥Æ)+àvJþ< 0¾[Ù^;_,󳫢|:¸¨UK[G×ñ<;çye“«OFëÊ\ ,ÕˆÂóµ-ÞùêÑT ,Õ·û.ž®µ@^~K½ÂÛæB'Œ^¼{“ó V¦ôaÖ`ú…÷N Þ¡˜]P­Ÿq-°L.ëOÆÒÚŒàÕR#°F嫌ÀÕáM¢“Ä$»é|UoÉ­´t¶ÉGv!çF çÌ*¯ìÈÔ7…=JΘUz=[¡\ 0.uûÓ¥(vû={äZ ýž Ë³ç¢ ¡Ð•‰“o¯Iφ8tKn nbàÀ*lEÅíýi§$!/,¡ûöÈ¡Âaß¡Òõ ²L/$geˆ¦6“ÐÙÆÅG·­ÒjâèóÔ‚P“,›·,“¤qŒæQbA¨IÜ.-ΟŸR9 ìAÉ…Å,—÷T4dk™÷àëA¼vkèâZwBð×ç¡.–Ô:Áq®gPQ<ݪ•÷ïýíD L)^jr4©lÂôLþtûªÔ¸8¯S ë¹1Ýò!µ·suç.‘0Ë@ú•Í'NwÈÉ,ÔjVpŽÑ&qv¥rp¶Á”eŸœoß™„`¶ã篺ö£ëwñªkCr~äîÉȾ?ø'#–Áuý/ÑwÁ¸˜=¨´…dy쌌Ë;êÒbgûWÉ’ÌX/˜¤ 4{6lVþgÄ«~›k“¨=g™ÙSØ›Ø`LRù‘È÷t±qq»íNÚmXà:¨îK»§Ó÷Ef1I‰ÊWZofðBaæÂæ1-ÐtÍÅi€Ô  —Sï…šã%yônÃË$¦?…ømDðf!‡ Ô:^a!ä˜K·€V—úU‡P¬A)l0<ƒ>bp<¢*+t|“øèñAafÞ˜Bº&¹ÑÆËSB>Ú÷W¾Áó¡!¦»Ä$½6z.„ƒkâÃȯ¿RìÛ5I hu}Gá>°?r $.7I§ã€‰ïü’>¹ôÁ“‡¾÷ø¹Š«…¤xøòÔ¤QÈ›(žœÿþUTÀ›ý¾¼ø§G¼ÑÏ žœþ=Ø) &Ë)àÍã?ló$€'“q¹è¯SµZ¾¼…ªòKžTI^Ø k¾¼images/wheel.png000066600000013637152330733730007647 0ustar00‰PNG  IHDRÃáU˜PLTELiqÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüùÿÿÿÿÿÿÿ½¨»ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿNÿÿÿ&7ÿÿ[;ø›ÿ!#ÿNÿÿÿÿ$ÿ4ÿ,ÿÿ (ÿéÖÿ ÿE ÿÿ§ÿh£ÿÿ hÿãÚÿÁ$ÿÿ<ÚÝ(ÿÿâõsÿÿ­ÿ[ñõýñäùiÿÿÂÿ ÿ^ä÷¼ÿÿ ¿ÿóòTÿÿ”±ÿÿsÿ´ÿ·”ÿ‘ÿüë}ÿ‘ÿqÿÿbÿŽÂÿbÿUÿÿäÿþÉúøÿ̼ÿÿš ÿÿÿìòòÿ•ÿ‚œÿÙÿ6ÿ ÿòö¼ÿõòæÿÿ ÿbÿKÿ¼ÿÿÿÿ«ÿ™þüÿšÿÿ¼ÿ'ÿíÿÍBÿÿÝÿˆ|ÿÿðÿÿ2ÿmÿâÿªÿUÿÿÓÿÿŸÿ0ÿyÿ\^ÿFÿ…ÿÿ67ÿÿÿ"‹ÿ#ÿÿPÿ“ÿÿ?Åÿÿyÿ(ÿýþÿÿ­ÿkdÿÿѸÿÿ‡»ÿóÿÿÿtÿô®ÿ·ÿÄÿÿ ÿk«ÿÿh¡ÿÿ[ÿ+ÿÿ^ÿèþþ ÿÿ"•ÿòÿÿDÿS6ÿÿÅèÿrÿxÿÐÿÿÜÿÿPnÿÿÝÿ¹ˆÿÿ²Òÿ@ÿÿ,èÿÿéÿôÿ¨ÿ¾ÿ“ÿÜÿH}ÿÇÿÿÓÿÉdÿÿ?Ýÿÿ6SÿÿžJÿ[ÿÒc4FŒtRNSÃGðÒëþõúæáu\®¨ ÜUN—‘ŠÍÇ×:…½.³ob¢g¸@63*&z j€þ}5 …6)´N$“Z¤¢TwÄw:ß‚ß(kËQï{T—Â=R6×Ê7ëÅ’»—{”´w„ÓÆWŸ¦ÐÐÙÙºõ´JæLÝÙïÝÉcjé ³ëÄ[[rêÚ·ãëk3ÜïÂIDATxÚìÚ[L”gðÏZëa;ÊJ[ÏU·º®C]¤”%Ä .„©^¡W»j0ÁÃvo€@ ÐéL¼  ¼ƒÅ+ !1%Ä&$ÙDK²ûžßçy32 ›øÿm"¿Ÿÿçùæ›Ñ øùùM$3;/+++‡¤¼¼œþ”“••Wšý¿8û(9ùœò'OþEóo’ŸX°Ü½[N,ÙÑÈ"þÃÏË*þüùÃð“0tuuÝËÉZ„•°óÿä¹@`Ãl Š{Ô±ˆúˆdgUügzzÚoà=Ü¥ˆ®»Â@r$«4º8 ’iŽx‡ÉÛÃ=Ž8BòþÑ¼Š±±1‡ÁÙƒ¥.) ¹}û}™¡áá±1H¼‡{ª‡Û4E社hvÅð°eøÍi°VºKöp›#]¾! Ï0ygI× 4gr# .à†1Y„g!ÐKœ¸,é#î/ "’WÑ=Ä#öB SÜ}`¯¥‡œ@r&º@Óüîîî¡î!0K³t]v¼†û, ²™%׺itÃÖ0Á¥ví´qUâŽxô¨èTd¾ÇèZ[77t£@E¸{à/ÓöUé¡¥G,ó;P™ùm4Fþa²¯K]ÞîßWŠy|¹ˆ’¤@nÄ&Á1JÆ…•¯á5É™Üy-Á_Ä´5Løº{8rϵÑTñš"fŠ.ÎÃVD .××·Õ3A›Q„w!ð>¸7Ú¬õ033“ú­ˆ–ÔÓˆ@îaRKýkà}†ªA¨áeQnªçˆDmŽKZˆçåìt^6O{w]®ïYõ:%) ˆÂ”Î#«c˜¦É[æ¼ì̈û6±”H+í¨aæ%Iê^ðÈ*ÔÕÕ×yŠ€ÃTž“7ëå…ø¶A×@ /'Sµ‘’:£ˆ6«ˆŠÄßèGB ”arr25Ù(#Ô‹"PÝj!†+’þ¤"·´N’=H”0ùª0ˆh~ˆ@HEØêмw霼,B5¼~ ““qjî„&·AQ‘•ùîO_Zï”ð2PÉ\„ÐÔTׄõàÕz¨"/snÛVZ¤fÉ\†WÌðªð✠MfàÕúZIæÜ¯T `hÞ¾K‚`5!÷:¡pa.E°¦‰!®åg¦ê(ˆ^-²¯áí›wEDJZZšZÜb¸œ—Ò;ËÜ3`ô$½å†7ïv‰¥„–&c%RY‚(»! ©}—«wq ‹h¢® 5q¹`nï£gœnxS•<¢ Eĵ)/ATqµpÆÝÂ/$UÉþ±eVK‚b(Äå’yûäáTxax‹ ¿\I²Ö²ÖÖ–VYF\.˜ÏOϼDë¬$§’ÛçÖVÀW§yš#=OÖ$qÀÔÔTm2§A°óN`KáhaŠ%‰•Ȭnå±ù ðQâÅBaHx%"e­­DÉ‚|¦{ªð•«…©/¦]‰âææÖfSÁ% ôÙú©BW /H|©Ë¼ÔŒº‰’ûë‚°K`¹’Ø$5³h…l‚V,DB@ /úÈ‘›Ø$a„œ¦|ÚÂ'If>6ņ-ˆúH.D›¤f³ J`“¸2$ŸÈ#I¦Ó\|cú¡¯oöi*khhnP„fÕD5]øg%=‹·&[ÂÏäŠ$€hn̶Ö—4T!Árɱœ8èЇ•ðÂÌy±˜Uh8`´ot´j–…®nh€J Š–bñ «P–ÓÇrnJ¨-K"òÞ©VÏ‘Ì(ÉÓÊð…nÑ]ÐJä7¤©¬J[EH´ÜŽÍQöe:€!È­Å«0Ê££¡k-j@ˆVò(SÿÓ´ ii˜„E Ip+xú®·À£OC‹(noh°ÍÕú>/]fCºO“–– Å¡X A (ÁÓ§!EDªÛÛÛA*Šõ·,ãI_–îÔlðYœ8XðR ÞNÔZ†¨ ©Ç¨¢ ¨·ª,ÛºLEkÒÕ8$Î2Tð¦ã$p@X¬†öz@Ä%øŽaÏÖmŠbB¨ÅÑ‹ŸaŽ2U@ ¾" :Úu´¢~ÏG2ʲM¶²Õ´˜«³ ‰@oNkÕqÁ=&.ønö:Ú…vQjË`ùÈ l³k ‡ Ø„ÑCpQ¯² °äzjèP!¹„?ØC“±GP2 Š)Á\‡C±ÒÑC¹àLL¸_¬Ë:8¢!Êð7}β‡'#ׂ%!È€ÓĪ0 Aî %P¿qÌAØëè0 íí—ŒÖÒ|î”dø!ÐÛ€Uøz k­*àŠqzŒ»n_‹;TÀD5ëHÖŠ„tav¡p˜Wªrþ4®­>݈Î0kvíÚµŽgí:[‚ –Ì”¡ÀM˜† ja|ÜÞêÌX¬#¦b¢Ì‚Í›7ïâ‘Ät ¥ÀM8 ¹7ŒXÎZ†1Š ±j6mÚ´™BD%b9+Th#wàüÇk¬×êÓ±XLTS]X5PÃ&åØìkD;ôzà2¬* Âú]+Qƒ4äÇJ{”d€Âþtø÷FôRtvvÐt¸ÿz#‰áÐûáa P@Èaò®ëÓW¹®Wº“g€ÿÀîu–.ݸ;pŠáV˜UP˜&V„Ïp–X´â¦e`þóÀyŸÆå` =T¢ ·‚Uh˜Ü¿u¥qþ##½#½êWÏwâP‡{¥ƒ½4Œ±T;ã0`È2 …¨ÂDÌb8>‚OŸ½ÇÕe©ÓŽ{¥ƒ?(‡ƒ±S0¼ ]D¨"B ÁMuò½ì‹FÝm466vÒG'}ˆxþÏ—ûöíó8ä’Ë¡R#¥² ‹3ü N^ z{åÅõ(;éhä£îçùìKà°¸ ºß¦BÌG¨ibEð “Çp½×޼¸~Ó(Âì«Ñó<û÷F‚N.C(üVÄl†³ƒ¼¸4!Mx.­Áö3gì3ë YR *BÁ‡Ég8§Îü?H¤¡¸ÑŽçÒ¬_¿þ€áŒ˜|»¥Â@ȵ¦E„ø‰“ôŠäë‰$ ;vì˜áP°k”(¹Ù !§i6C%?o !¹© ===ðð–,Ù±:ÔvØ ¾PÁÊlBN&º¡#ÊÐÓC ˆáy‰ <¸D9Œ:ôŠ£2¸‚¯…œ'A‹ ÃDÂk8î0| \¡â3:tˆ3€ÃbìEe@…ª‚n¶@ðiÒÃä5ûîΟÃ0ô$bز嫯°ÃÍð(d|žÁ†)Ìð39mü% ç“0D"‘-ȧŠ1Œ™ ]…œ'ˆàE„b°¢ ?GÏÉÔÎ2¨" ¡Æ‰ìŸ¦¹N’³6I–Èë”aØ›j¥gàôŸY:ù#;môcÒ=¬wõ°1ņgV ÁÌbìáx’†ó)é!µ†¯Ÿ%d¸Å¾Èq~öðõ¯ Ïøñwñkߊó¦ ûéûE¸ç @D¾¹ÅOþ°|¿{8÷«`¸%+ùç"܇¿ýWFþ*ß‹þ¯½³yi#ãxþŠ…ùC&Â0„0Bt`ê!ßñí"Ø“/õÐnr$)<(*ÄœR¡kÚ“«² "!––= KwŸ÷—™g’¨Éd–Ýo"=džO?¿ï3c´ö"zøÄ8Gaï‘ ìì¼ã«ÇɄ΃ñøøøðø '"0xò&t}pi8É{5.­¾ UÿR÷˃õ(GfÐåÕWQ̰õÁþ ââpøËo0€@P­„ÌCì+ gàßËŠdªòúa2!ëƒÃŽ}@^~µºYÝ\ÑÃåÁj4‚ Ì!¼nÊËßDf¨ú Ù œ¯BÄŸuàëǘD¨<„@âpÄ#2ˆ€-Åo˜úÓëâ¢Ñ8ƒ!1€Ö.lúS_¤Côiý€<}†©/¬ !ÑÉH$fhú;99¹8@bòA ;@YÕÂâÁ9!a&@l×AqH :(•*¥R<,}° dÃr•—*•J"$Œ“&>1ƒá>l Äg€¬ÄÃÑë„s` Û3éºh€ T*©Pxˆ`ˆÂò.-#+Ày¥‡¡Hà†wi&SÀ(¶¶¶R!ð4ä(Ä £°#¢¯”$[(¯âýËå(ï…£ÚoR®` ?”"‚ö`Œår2SýÛ²Hœ+ `–â}îƒfçH(K}‘à"¿•Ï'´þzHæx¸ U£Q«Ù±äA̾ö!jçr Ëï ´Uyýˆ Ÿwï¯Áz°r®`Ãï SA÷LS } …v»°ýß…\UäóKfß/lIŠI"`æ–Ó¯G†”×ð(\þðõõõ—ÁÝj4MN÷@)²®Q¢ ŸÝ ß¿ÿHÒëkk#8‹këëéáác”ëkLA!Š’ b&ÙÝK=¥D¸T @† ‚ü òäw˜o „ŠØ>R53t« b)æù$y4|ry €àAŽ Ã&qšÅx4ÒýèY >” ÈÃ5%7´o¼ ¼ÑŒÏ*Iªój'„ާþ"Ž$â_RG „Bb·ð %’cé¹Dp¿­Eš !à”RÛÜôcI!{šµ–I‰&-ÚæZz‚ª• BPÃ|z$8¦Ä‘A<åH‰J¡0®‚ ¨Æ9³ä@.‘$çãg·ape„`po“¤²ÍO–HÒYýßX~1ê7$~ÚЩó’O}A™ØÔG³FÅ ÖÈ‚`]F¸PPPŠ%¼ð´óùíËß^Fê!à” [!È’v ÀübÔ¶˜ÍfœpØ¢5Rç¥ÕJ¨ÁI—UüËñ´Õ*vØí|QvBÒn‚•”-âÛí±Õ:-Žp¡àY/„–‚í’!<ðÿàê у@f›Ü泡¬l¸Îà ‚¡n¸¬ŒÈÀÀók¸ø!za,櫪ª¦Áã\˜r¹Wù§Ãd!é4ÕíšZަÃù ñw¤+Ø62ÀÏô nÇeÄB§ PØf·a€`”i[ÚpÚZ´2#€Áls™±¬™(]ø!zc–·_yP…k~z½X¬v­ŠŽ°ÓѪK-.^Ÿž'ÜE¶PÀŽ¡¢¯@#˜Ã½+½þ®Ž.ÄL§ýd#)m…pÆaó9Ðük:‹KZ}På%—W.èKÀ4‚ €€µ%ú +—™€–Uþš×Õ¸æ²O²{®'³ç\5ºùW-"BŽ·(Ëñ ®‰=!mƒý2aHÛb›Z´ð - 7õŽiÌ-Șž#£V³aÖŒõvPûð)ªeµêtîTVóCRª[§³Zƒ\E²PPˆ¿!;bòðGžã\5!zBÚûe,:õ9>Z®ÑÓ–¬ðÏõt=\Ú*™SÉ¥ @¥Ã2#A6\ Ï.©f²dkéaWí‡9 ˃‹~Â@°V)]«,æ÷ë.%: Èß_ ’bñ¿ìAàÅf`O<#ÖsáJïÃ^DI§WÈSØùe¨8.•˜½ ˜KàÊJî[ÏvÖŽÜ|2ˆÉÜdÐkKeåÏ´z<3›@†yss¤¶s–vWûpZž„`µöõ™ÀüÎôŸIqL™úú¬ª@H‹!õB ¾ °õ1ö9g–Ðý ¹Gm†K²ò»†6üÝ·XšqÒ¿érN ×qùpÐ×7ev0܆Jp˜§à+‘—pj8‹¤&ÊþT6ö‘–K а@à%‚bñ˜wƒè+\)!ܯȆRÚøeœhJ€ >Û˜4xN:·)8ØóûÈ[¿.”\S"+äb°½Ì‘÷ Þy:*Å¢/ƒƒïêÖŽ3Z®Õ½ô%@‹¢o?M”BJ'PŒú:…øG ö«†ÌääLŸàvþ³ñN78%ÒÖß/C @–«æ6¬ül3_µÀ+T  ïµ½žôoGªÛ,²òïÛÔþW'_3yûMÒºa]µ°>ý†à`ppÊ•Ê`íp2Õ5­û0þ˜^_P­c D£Ï<¡‡}ýä Y;¼.¼Ü\^4@ð÷K¥szv÷Ñ÷¨Ý}x/„ƒŸì?õJ‚é*Á‚äÕ©ýŸ¤¯^ÑBr`u»6-rù;CCÚÅ,úÿ'kQ;4ä!á\nÙt¹G-„–¾ hàT ™4 —-Ç… ‚Ÿ~ îO‘°¥¡œ±‚AØèlr@À%JyA® ¼žü·Cñ{t‚ø¶šéëuŽ„”,ÎVjÖ` ÓOÇ׆¡%¡1—Úæø¢¬”‡îâõéšH—ئ“^>·|ÍØ´ÇcB!<¸íOÚÉA7 C Ñ‚ c¬ | ‚‚ á3F €BÁ¡[¸¨Ä6’Røs;†RÜ¡›Û"ºÁ¢íͨq©agŽŸ‚uìÊ‹ :G¤Ë åS åøòãæÀž³¡šTìA ðÅìÓôÃÒÓӛ«}¼Un‘u3àÔðyàÔP_) TÖN Ÿ3š°BaS©¶û6‹ë\C€šæhúJIsMÐn ðiLÛÕÊèmCÿ¤¿ßÔ9„»øÄÎ=߆' ?“ÿÜÄA òŹ\]‰u&*Õ ” ˆ.uJ‚R\,Æ3ý©Äá´¹Ï6ôq¾£i¸Ñ}šzàiw#´Ûlrð}f»|'-j/¦ÜªQ<Œrïú¼{ØãÉêc ­T ´6Œy ©|±¦ue=Þš¨‡(ÈåT „\>ê”j°| áíÈïl~2s„?j÷Û‹ZÛ_u›û~*å÷Zzßm‰c{Íï}Uûb4Ê „â@Å/ããã@ 1ÌbÅ8É»Í!lµßÖ:ƒ§t'|Á¤Á£—­ ¿’ÿµ¡õ%nGå‹!°ô„̓Êz; 6¯Á­~ʆÒÈ ÚPRy¤S*eåw•:üm(ÍŒ8Yýtê¨È#¯Ùl¶ûÔsCÒÜ}`tm1àûoJyài4Cþ]\£RÊ5úÒ2UM±X̤1Hè›F'tž„ó^+*_,@@gÖ¼¦¶˜—:ѳTªò¤Â3ObQI¥h‹¹si–ݧ)A9â±Ívk”²½˜0zËf{<øýO‰æëì„;7nÜ»÷ôé7_|‡ƒp\eÜæiºÅsÞ«¯ÉÆícDå‹%õ:)‚D”^LûË™-õ$hxËÊÏᇄIùÖÌËöþ]þ¨öDÚâ-Ûö_ÙT6ÙmÛn-¦à}0)Äw @ØïýðôG/f ôÃîþp`g¿ÿ_>"ïkCå‹xàp°ÀÒÀ»ÒÞº4&Um€Œ€ €€J¥*éØRkû•Ý>ó¤´/wÜR. Eºw¾LKâ}pîxA€Å#áS`SW$Ê­çèùꇋQ,n585Xdá"–„' +`œwãC @ðž€+ Ov/aíÿcïìBÛ¸²8®6U­ÊXB6hmч6ÁPC 6]ü0^–>^ ÑÊ–m™‚…>\I‘Až$vyS0 a –RäÕC`-f£—´²¡ÐbpÒ‡M[XÃBß }Úsg4šIsgFÅéfþyÉÌœ9’u~sï¹wfîyI_ Y\ _æÿûÃ9€ðÂßx¾R‚¯A­ƒÐ–/6l<lh•€ðå‹e‘Ñö‹/µÁðñ³,ý!ÉàC:ûìcë‘ YdAPž,® ¦p"Þzõ*ËËÓÓÓÓ 7䂸Ùâ§3Ñö 0Ñ„?^¤å@ _e‚`<•P>þI•ë,Qô0Jç|1 Lƒ jt"ŽÉ³k‚áƒg¿‘»†ßž}`8Wq (?ƒ¹{èjñŽcç|qWuý .J®æ/æï<Ÿ @ïx~gþ ~æëKäd±tñúï„ÆGÞZ¡-_ËâWÞ–•p»^Bý.M@0\~I>¾ü“á¼AøH ›FÂà‘n4uÎW­Ÿ÷ _‚õ"e 4¨¡EiÂ'?'”~øäw Âqã´ðq« ´çk}þÎüqó×âá„F;5ù¡/§˜/˜Î‰…3$õoÁ½¡žn4uÎ×úüm¦ŸÿùT¸PÆéÏLÿ~{^m¢×¹¥s.“o:]6œ7’Ké‚'¡–@hÓ×:×Ï?ÿü”[:çôóç\ÿþú€p½­Ã¯£~™—Ô/¯Þ×zí„Ó¯¹Å´¾>­í|}@øÿÓ_ zõ¾Ökzñͯìòz¿~ó‚ß«ƒð¦I_pSW•üªÂ§ŸêKðê$¼÷ÎGï¿ÿ‘¾(·N‚¾L¿.–½p‡.]ºtéÒ¥K—.]ºtéÒ¥K—.]ºtéjMú³.†ý¦“.ƒ^ZWƒ·Þ½rE0åMç?ªvíêÕkú£jçòó‡Œ=&ÕDR§4µ5õ€£VÂWs|ZÉöœÎ½B¾ò4(û-t4U¯µßÒkì1P¯­IƒÐÌ¶ÇØké·ö¶‚Àë/·{èRò-Þx¤¯”K—Ôú2šÍvk¿cÈh¢Ð?êD¡ÑÖdrô[íf³Q=ìj;žø­4»ðrzçVÜÃî=Lfí¢eîÜ‹p”Ô•r©TRIBïà`·yŒi(tÿ‰ðrŸB£-Ó Œ™»{Uÿ=žÍª£]n îÝêŽMÏ9€`¤4ŒÖ ±s 4¿R.•vvÔ‘`œ²£‰ .¢ù.ŸFdšØšŒaÄ6eT x îd²µ5ÙŸf3'{Að,B“d@Pží4½:l-A(Øz;Â4ašjÂ[¦‘>ÛÔà[t'‡~B_͜ԉ’¶=cƒS¶¾u­a-! ׆ð«òpmh 唿Kç¨Í3úûÂHKP¸ÏÚrË„å\»Æ‚Á÷%“8¸ü:‰8¸I© ¶VÛ@08¦„¢vþXEXŸ¡ó'v)8”S’_ ÔïRX“9=ƒ´ÅÒI’‹ø[LÖsàVÉÉ ö™ùà~(~Y| 6 HÛšû‚A›I~h_6¢iq¥ŽttÚ?„Ÿ_H¶gä”§4Zñh ‚gÑ' Q*90ô¡E0Š‚Ë×{–AÂÖ-B°_qh_ØÚÐÕÚÐÊÉu+49G åºqz€6——=Ù-mÌtwYì/1¿´‰4N(RmhJíÁ 3‹ƒË/˜)‚”­Ø­’ƒP­ ̓À $å»bmhÙîEœÌÙ>¼ŽÏÌlæd ÛÒZ¤,Ý'™Ù¼þΠ]M…&=¢ T;‰0sÔ¶¶Ðˆâë=S°¹%u&ÑÖn§ÔÅ 0µ¡9ªµ¡)8”$ŸëGArmè ˜$§µf.–òN£•DiÄ¡>NŽ‘RbM{fNÚ& ÐßHJ}¿†Ûp£8¸|½gy¤l¸ÇQ Bµ6t ¶6´âh\zO®U¦~±f\Ë‘J÷ºßu¨»YvÍÔ¹ZÑ2Q€Ñ”¤Ô€Ûïªì\pŸ Š_9•‚MR¶vÞ¯Y93ˆªÖ†æ@¨Ö†¦àPR¢Ÿ/-U:íóÈÁħ©¸Hþ@`i)Ê ¨ê,™Phi)ð‹½¥4L ‰–”:ºº¹xuw ‚Ë×{–¡©m£_% ÄØÔ3êss TkCSpˆÄ®z€2ÑŠSª6´³Í€INöËX!=xPÇ?€=zŽUŒ‡Ç<øóþ:h—(H$‹ È*»†ž6^#\ çUô/DñKèR°¹*u2Á¶Á¯Bªµ¡k °µ¡e@èzÛ‰î¡ì´ µ¡Îƒ,˜8eïj[WwQ d”ùÇ´,X³³îxZqófNÇÝ8ßaQú‹ÇÐîªV 4ZÁ`´áxÙŒ¢àòõžåA°­÷«„ì$&!ÆŽG@èzï3äÝÅóÒRµ¡ñluØ‹*òOº8Æó(U±ýÂ>péf"šš³+û[ìs©hrT aŸíj.S(?î0h©›³EÐìMüÿ‰³¥dT ÕÉâP_0ØÇwZk8¸üZÊ8¸kR§mëü*ᢚ׆¦àP’ÀÁ[y-š…âjC‹§¦\yÏ<‡Ó(Äs ‚§ÊA$²/)šé/Å÷a°Â’àa{‡ªË”ÖøöÓ##{aþ%ꇌ ¤~Ô` -Âà~‡]›H¶b¿J@ØDTóÚÐJ8x7(žŽäjC‹÷æÕ†‹áŸ8ØYôBÖQãàh7^îRrm•ã»G5 Gñ.î 8<±¹Q­ç™×¢xh…Ÿ~â`Ö¿)¨…iQ«ÕÐ Ä~Ij»6ôµ½:+®6tÝî½kŠ €ZWÃhsp.loøÜî8ËÁv8ì§åÿžAÚo³$ÄÝn߯v¾‡I¸¥]z ì¡}xdå["û' #µ;?þ}+î·è‘¶DÚ¬ }åj=.\mèúýW¯(* ìÏ.§¢ñPÚ>:<<ù0Où"‘Ýíp¹\Þ?”íú÷Á0¼½‰øRñìÃÉááQ{:¦–µNØÁ›wî­‰½íÄÁŒ%pЬÒ µ |É‚Ðfmè& TkC·NBÞøûÍ-£ã…\äår±˜(ÈN—NÅ"öÇ ã£lÿH-ÄÝ!ÍÓ¶O]ÀE“’{áÄp àmU îX¨àK!Ø0¾£š×†¦àÔlFÓ®« ÝZ×À$ ¥À‚·öÍÃgÅ@¤XÌd ‘ŠLæc©D ™L± φk å]ðkŸ° ,âßh1YŒ„÷&˜°ây^u Ü— ¾wI ÜJûR  Bcmh I‚€kC×'‹\mèÆdQqmhëjÆ-øæýã¥D8(lg»É'vg· @B"Qô"”»¸Ú±Sðk9wTf8€°Þ©!‡îÇš]±û(W›œ¸‹nJ`á wó—äK)nD5¯ MÁ¡-Òð1[7|äjC‹vÒ®¬šWfã´ð·4Ù+ùH¡/”ûÈËô÷•Á¨ÉWìB;ŠîDzÀºžÆÍ4K&·V×݄˄¨dNéÓyø #ºÙÌÔO(Éò1„ǜɗ ªµ¡¹ØUkCA`'”Ba<Àª ÍL(…ЙªW§ŒÃâÏ´®¥·óùlñŒØ7XΊÙ|~;½&¾þ·†;øð*Sø¸Vî)÷§„ïÕXÏ™y®àqM$x+’/¥ x«Ö!„PuòÚKÁÐõv­0SÌRµ¡ÎL‚*kCÖµ“'ål6Cž^´Ïe²ÙòÉdÝõ?ÚÉÇÙ¹æÓŠðó\¸EnX•°…ƒ×XÏoKк@àEò¥„•‹¡ZZC×Z@÷¡Sª6´³²““­6_ªíœËÐyš˜$tƒAfn²×ðÊD!¶„Ä(cžç­(ü–p (áGöƯXÌsÿHê|¡ É—R>«Þ¹pñ ¸ªw1>#{Y…(Ÿ¸i©ÚÐô¢ëLVÛýÍ-kÙ,ý3qðÙ5‹áí?O1À»aB†~\ü εɩƒ&&,HL.–sÒÙÉé’ÆÉÁÄÉÕOàòµ´'ÜÁ+¥÷‡èûp¼ä¸_¯ÿûêa1ÄßÝ<½L.@„[€‹ܸ‡Å|ίÌXªT “ÚŠ`rC UšqF|Žç†žÃ%Á"0h1¦]os,Sh'²ZEÐ9¡ÐÜ>?LÞAõ…B÷½­Ÿ\ó9£kª‹¥E0¹¡3f:Ë)Â⹡‡pI¸­“o)°+ޤü>iÕ+ÂjnhÁG€OcQO#ó9£SÏÕÅR¥Z˜ÜÐV“Z¸JsÌûù!­ürv¨IKu¦I‚‹$Ó«UۃϺª:õé>æ–lµ¥ºXªT “ÚŠ`rC WiŽyä^Ε!;ýJñª!ý:ebEØþzö°˜Ïq¬.–žüêÐÐy¢K³C„)® .ƒÈÿ®ÖЋS´±x–ƽ¦EPí*oÖÍ3ì*BP,ûzV†‹õ Î×ú”òäÛ@)"°ö5Þ}üh³¦EPEÐG„Ü4rÐtrx,õz×.—7Á^.¢D.¶Ú[ŠÝ> 4ë6.‚¶ÞS„µÃÂ;ŠkQÏç¶Å'f[¼K„" BñÃ2þ羬ýðø q|·~¿.Í,óö¸‹¡±b®º;š{+Â=·]#ï†^uGç´ñI§¦kæ<¼ ì$B`¬8«ç¯®Lƒ1QÝGS¿ï½ ¯÷‘ñæÅ$ãúcÅøaZû#ÂßcŒP¬8C̤TÇëI9¿Ÿ’ÿ :p“0&м„5rCŒŽé'2(qAAAAAxòò ÓvÑøIEND®B`‚images/about-texture.png000066600000310610152330733730011342 0ustar00‰PNG  IHDRèè0ÍptRNSppppóg¦œ‘'IDATá1mg– é½+k/YFíöG ÙFycP€ê'ÔÚRœÔN­ÓúÞSu‚ÛÈÆ?`Œ¢ÑíSÏEÅu” 0.2¡L9LesË µ€–U†rÐ(ÊA’¯ž‰è»‡—Ùé®’3õ`UUȇÿ¨û\º•†3adÁš£œJ­°&@Ö„- `Ĥ€°ÆÓW!%ïa#wÈ9vV„Ÿ¿6Àß¹lä$Ü‹Qï¿«,¶ÔC¬ ÀQFût=¬à„}æÌ6+É]‡Í„Qäñô²Ý}¼0T½öP=ªµÖž ÈBwÖ%{ ¥Öà. ˆN“%aDØÖ°ãéëu ¤KN@‡Ì½²±é°âôö+ þÓ—Ûð`¯Z5êýaLÖtf/ÛäqÂôÓ« 92ïún¹›Ú#‹Q4$wWV=¨up׳=TU!Ï¿N²ÓD ÝëD1–Á't¬£ SXˆ 0þ›kj4Ë–&6™DÇ„&åì5Š8=60Þÿ‡cØûå¡F¿ÿ/Åèì $a/ÀO½_!'@°À€•56È Y`;½ êùv|½èÕëQOªZäÃU½ 'ÍRHhQDêa9V²Xa4@:(`|ú’FÃ2ö Y9‰Iª6½40ž¾\I÷†´<¼¿B£²'ë qìíÓ ,9 €ÐÃÁŽ HÔ©ç—|xz½z½~|º½¾<Ü.ú¤:a‰‡uÀ YYÞ4ܹwØÐN€ÎIè0Ô€%€•µ { +¸$äÕ† Ò°špn°Á]zØ*âÕ ŒCµ@jÃwâp:?~ñüîQo§Ï·×ëÃãóóó[Õ¹ý¯_NN@±Ñ‘,ÀÆs#í1€ ✳‚  À C-HH `T`4 £ nN`do3çJL 6€eA' ¦s˜/ÞžÞžNçÛéÇ·o_<¿^¯~aªwMýô?zV ˆ`#Š ¶•ÈN €½Ò¦a¥ï' ‘“¤€ì´¨ †BAAZ£˜l@T @C6ÄÍX³u'bX† ˆé SÕ«¾žnzÒáùªè„dÕÚŠ¬"t¢ /²÷"¾€,h†÷°)Â$Õu¨&§“¨1#P È{=ÌZ€Å†ÑxÀª²B6ÀB8¶˜l°΢ £F³ðWÿØj]{YÂè» pÈû° u¬ ¬d ¯5 ôxhX!+mÖTÕ†h‘t¸cÂÚØ¬:ˆ†€%l€µX¡Q,ÀÚ@2*þ÷¿`¶Ð}H€p :û„“ ²(,kÀ²ä+ŒŽ‚(rßm€¨;œ$a3†ªLµ¡FѨ@:; qË €CAã@›,½mÀ 0œ,D*±s !Ö™Q+ðW/;ÀÃØdÚ‡Y°Y^F/+ÀDAÂrü5¤ AÚ¬¤ j,©¨ž/¯¡Ãf,€º)¤ª ÖC's«1Ö¹¤+£€°ÒZ¬Q°a@ºÝ=\ç MÌÃÚyz ÀãmÆŒ6bê„a­“øèµ³ÓÉy|ˆÆ¡óX@ÂqB†S=œ_žß¾†ó£‹…zT‹Pµ6²€;R1–1=S'@°N˜„@ÌœŒb¬Ã ¬ÔÉ À±rÔЧWXÆmú5@ÞÜO_Cλ ÀŸ}??újL€ñº‹ŒÐc±d€Å²…ªz~9¿†ó¤ TµUK›²(€©hÃ2TÈJjXáFέ6€¦5 ƒ¹jP@R› ²ÃçV oÄX+,qú†ì°¨à'ß›_Èø?¼ndÀ‚ð8γ·ˆ –„ÈTz»½õ¬&C§Ú¤ªsKL&È¡ ªÂSr.lÀpj3*ãpBU­,²sÛ<Ý`Ý€¸Í˜È^ˆÓ/` Àüoÿ?æËh€Áÿæu4Àˆ€¥2ŠTgLؘ@¦ªzú~¡‡‡Û4˜hCpûÐÚÆÌ€l+aL£WFÑ™í¡—Žy`CᮺGe]wGåQX Ã’-XÈœ£“ ¬:!>ÿCHý²ÂG fØ[6ë\€5L'át×l6ÈÚ†'=_õõ¦§ýÓÛ¯CgwÆÐÝ< 'DÐ+QAZi0šlÈ‚ŒÖª cïaÛ¢£+ì“PæP¢²É9ö‚ '0`Z@3f~þÒî/Šøè›,ˆ¦h¢+€Å°2ÇTÕÉ1š¡WUO¿ÑËó§·oª–œ ݧj r’½K¸àÑ$Йê$Â>4[BÔеA MÄMäØ ›è½`¢Ùò/þ@çÊgˆÓ/’у  &Ù@°-Ü9B÷ݰ°©ž¯z¾©Ú?}ýšÒ»ìuèA­M• ,F­‡ ½ h‚Iv0Ž»ÂÝ ²zth€; "H ¸+6Òb7–ü‹?ŒõT¼ÂáôÍLí¤*¢ã0W¨¨žŒ& ·á$›(H==)Š^ôØzŒ"MçPmFmimD) Ò ,Çã„5 †MNÈp‚ê8’C‰€ǘÙËpWŒ¨x¸N ¨1aýÙWcþýWžeÌ-󓯶QÖ˜PÙ-iÇÌI\K+kÔ€WÏo¯‡V|ówªÓNCU˨ zÂ"=Œì6s `§€ì¨Œcç°ÈUe¸³@4$Ñ@L€ àázlô>¡?ùjøß~yyž¤æ±>ùj³ #;ÀhîHkÛ˜ÄåØ9ÓÑØøXO·«SC/ªÓ†Qº{PË€À&àx$5“œûÑ Ø`BÚ* Î…•¥*­YÑ£:– ®k³O¢FûåÙ ¤]?ûzX0–lÒbag÷0ÓÐÀLϪª‡Ó«ª;zLe¨ê2ìI¯°’{±:Ó}&€@Á¶1£am—Ôi»Ë5 `…¥†½EE­+Àð€bŸ Ðl¤îkQcBÎáû/=ÊO^g4Ÿ\SV¶mÔ¨h`q¬™½0f ÅêÕ³s¨Ï7}ÔŽ:I§ªØ&“¹°Ïp¹ËNˆƒ°5°¬£ 1T»såNõØN€aÌ€á$VX™á.L& Q cƒ÷_Â>ÿìû_dóp-X€ÆY;޵Eh‡ëü×/Ãa%µÌГªz:ž^ÕF í5í¡+а… wGc.áÌ,Rˆ De³R„vxÔy×¹zœc ˜0Îÿ`R… ôÇ`4¼ÿîü?þãÌæ“k­ °¯Öî}V:ëáµ3{4ÉÌêEÕëÑWµÐbK=ÎÔ}ŸÃQ,À‡œÞ°:c.¡‘ b+ ¡…­CS§êýŒ ¬Û` &K:¢`LXap,Èb}ÿ%Œùgß“‡¯fÜËI÷ÊC“"›tòðÒcaÀ`F„ž|øÍörVÏ­ÐJÁöô*cØL²k,„Gµš,¯ÑE‰{Èb®À€T—Ñ3ÈÑ©.°Ž U;î™,0fÌ„h²`‘5Ü›Èå©`ŽŸ¼^<¢€8ì¡ œ^#'Q?“°"&|ôRÑ…‹Gõòö·¿?ëYU+´ÉŠZ|xUà PNö2ôèžÃ½Ò…˘Ű˜Ce40jÓ½u.¬QÀ ,m`%²Ù¢z°äeƒìÐb™F ¼ž¾âg“€• ¨˜Érz½Ï>¹çŠ%‹´˜À™¡ž®O¿ý½^Ô«Ú¡MÇ7·‹‡}L¦EØ©ªŽ³©nÙôd_Ïsô\²4ÂvWÀšsR’ÅJD£µ¤;$C!š¡Íh¶,€8i3Ü£’p·qú|òUñTAC”¨NÔŸ_ž~û{õ¤^µC'Ü=¼^´G‚£BhªScWœÃÞ1XŽëÌn4Y:ì•u¿Ä,Ö;¶8¶{5Ã"„˜dAC/K< Ù8 F1FG¸D§ž:N ‡fƒžqzµ>¹6O•Lª÷£ÖÀ£ž_^´<{yôzöáåóï^xÿáÃmïöpö1!Õ9ÔR@jÍbc@„Å0w9f­XªÇ•°Á°v:-ÖÊŒý˜å¡Ã†”áüù¿0æ/ÿŸ_aGSÁ ÷ÄОQÛecß›è4_€ ÐË$œéT§8õ/ÚC}ö¬§ËßüðRï?|xáÁ¹M&“Z€¡9ÔÒÉÒ Ç °ÀŒQhÍ4ݳbndÓ¨Ú²H@‹°nË`÷0ç\È& Ü‹?ÿÆü«ï ˆ¦( ¢ÄK ‡jÿø@eѹÄkP@‡&Ëphbˆ=<¿<üG¯Ó‹ªWO/Ÿ÷2!Þøp›xPçfnD«¥Z©á„T—±±@6=Ô‡f݈ƒht%@¬1‹(H«\š•;€œG=6þÿ&¿ü/ÅP‚ˆCáÒNŠ,Ò£ZÎÌeØÖøu0€ÉpçNó$ˆxL¯Ï§‹§£g={ÖÓåáö27ž>|øñuR©¶G*æFZC=ê$&¤C£`¶˜Pz²€Ì²–£F&€0’{ÙÀQY·Ÿ~ÃϾþô=´!j4Ëhư`Õãÿ"1! ‰ $„¹Ûûó ätb„zUOç¯U¯êLÕzÿáÆ¨˜9ï *dÙ©ª÷ ÑÀ… !l¬ 0â0&:áhÙ–Ñ$Œ#)Á`¥—&g>üêîþéª6P{EVXc&@¶.ÀาQšZwöŒ…ªêù:UU;Uãý‡1Ǽ+²â™kvªêˆ€…¤€ Ø2÷'Ü97` ²'¬Ä2²,rd­Ñ[3¾"ž®ê„ÞŽ®MÖØd«Àd%@—¡i-‘£,ÌV/ª'UÏzìTåý‡4ljĹ6¹óˆÝá\±B¦`-@À!dc Âzȶ`t÷äŒ/Òlb9ììèxøõt=ª½4c%`Xw)@Dv(°Â(£M+ZÒBŽªê颪j§êÓúðJtÏNµ€ÐiG75jlаÅ; ´€ìêM!šÜu3ª3Íã|ÿ˜„íLÕ¦ç¬(–°Ê mè ¶áqM´é óEC@½É°!²Fô„˜N€x:ìá+¹7Âzl¢É‡ëYÐIXÔ° rP uFy(y†TÕóUU;MëýXšP÷tnl€*Ëia#„Ђ†»GÓ†©ÃÒÝ!iÀî&lƒ”p‡ˆb0¢Yˆp$UáV¬c¡i¢ÉËõRyÔ™û†Â``CuBTôH!¼êYUU½®©Öû¯P 6@çÊF¤@ØLF ñ1çÂêAÕfŽ¡º«½iÀF 㘠Àdr`áiÚ0Œh ›ñàiW-DÅ Pç„ zKK¤ÃӋ꣪gµ‡ŸÞ‰“Ý…¶{¥¹kX!& 0–<”»C§ÇÕ¡@4°ƒ;€¨X /=72=vôP QDi6l„ç7Ú0&Qd;ƒ8ö À€&“ —ð@ˆÌðáE½ªêI'ªO¾DÓ":€“QÚi- P¤L&ªÖ<’3ÕɨeÈÐy¿@º³EXtô`aÔÿÀG°OH'l4‡ °Â#Z - æ5F?\Þû±æ`XC<½\={Rõzq¢úôþKœŒ"fn$C,Xh;€,Ö{5C­˜÷cŸY1ÈX`„R@ƒÅËè5žÉkß!@j³ÁŠØ`‰IEz~vÆBL¢røp& Ñ®°€–2“ðô¢^UU'w3õß}ø’£ ¤NܲØ62z­©¬—h€¨jÃÊ©‡&™PÕD³€f± ¡€†pŽÿãë¶(€@çJ2Ø+’™ žõÀBXQ|ì¬d @U+„ªgí¡ªGÕË“3kؤGK‰];­un*!ÐË"93gä.0iR{LbB° î6ˆ¶6òá¥a­ì^çJ ÈIl èüè¥CÝ‹"‚([ÃHȆ@U¬¸= œ„žÔgk¨úFõ|zÔð6iÎ !´‡5Ž æ\àF1THØÆ0‹í¡¤;À=l 0 ÿú¿û·@ÇóËœT2‡' m>~韯—«ž¾Ðóùz¾\/v¨­è̇׋V1‡3&˺ÚÔ:`U€dXËpN†=œw Ò€¬Ø(vˆ‚ÔÓë䎰 °=ô¨»ÇT'±ŽÝtG mòpè,F) =l‰x¸½xVϪ¾ª—Óùr²Ã]fVŽ‚€ƒ3?ûáå`ñO`µV[öÆÈÒ±œÎ×»ÆÄ†Uˆ‹ š,ÂÔW'Ù’Î5ü‚¹[«=`i†N Òfà®Å–6Šž¾{=.>^®ê鹇^/êÅ]ef‡½’'ãó~¥fzœ#&DgoŒcëÐ7ê„Íbìļs6 D:¡È€(è ~ œ¯¾:¡+;Ya°OrÚ,OÜ,yœ•0„`k2L2í•Q¢éDqÇ߽zÑÓY=}ÑÃÿ“çÇËUUí¥#f2 üE~öïR “¸€X ;Òê¿9ÿ"mØ„ŒŠbØŒœ E6±D±n N¸˜¯NÖµ²6°©8Î=&<õÈ¡¤¤q€Ò£$ÉpÔµ9B!sXŠc§‡«'ÏO·7ê媦WÕT† Ò§Ûo¯º2‰I@&½Ü3`¤¥†ºŒÉ(µ ›¹3je…€€•aá ¬ÀPwÙèѣ஠jÚ©m O6EÞú£ ³ŠªsìÚY9ÆÓû+‡9C=«·ÛUÏêT®úx‰žé$ ÑŸüöºÏÁØ`Y‹ ¢rÆ\ØRUÕ^FµHÚÈ ¨^  V€À8°t²d9™À6<£½ê.ŒpT´5Š ·×€½ÏÜÅe¬Œ‹MgoO®»ªút{ç/WçЧgõ¹6X#‹¹£Q=>üöªj‡°@Bôº@&Y ©NÕ-‹Q'](Fî]¸7À $F-ÀT&Ô’‡{À 5ÕUA"öÖEì}{€‘:³€,Æþ´ËO´™‡šO®dªêÓíÙ‹ç“S=_=žídi,ˆb:ÇßþqèÁÚÆnÅ4kLF CQsËfÌ‹]* ³€u+@TÀTæ ‘  =õkÌ„ ÒÎ ðüÌ ,0ÔÉJV[<íîñ|mÖ,Ÿ>\‰ çP^}özm=¿øtÕÇG`t6Î{†§ê¡cV˜“°¢îœé´í¡u<ÚQ 1—V V À—¹Á¶.À("ŒsoÄ+ë ;Šuuï DAÑŒNØÀÝ›O ôPu~|>_¼œÝõáz~zñäE(î:;õpòüUª1M­ Q°@¥6£'Àº­Œ#³´†3C; Xˆb@ÀÇÅ '@À²/sB¯ëz,€Â½ðÔ±,£®ÍÀV@4 `Âûܵ´ê©TUÏ^NzQÏútUu gÌìÍ ¡:´Trd+Då¬Ú6Y“èá Xd…(€h@Xà“¯€˜ Ï3:°säÁ§¯ ^¢)7†²Ä„,k#¢`!€˜=8›§í©ªÕÓã«êT=«¤z84=+T=Ì|ûõP›ÞâÐ @f MÍîIÎÕ ¤£'C%ª  €u+ñðR£ˆ €QÀz|%&£*&lT…»O_£·€˜¬ôFä… Y CXQ¬XÑ塆¥\TOªgU¯ÏªêEe¨1›ª¶ûÕÐcS LÒjqL{†Æl»ín`hm£gª M‚)Àg/= €FÁF<ÃVqOÎ`–O×òÍ+qh¡"œÏ)¡µBN 6«÷Q•VZCêEU}üBµS=édèŒ"rÔгz?ÞΡ ÎaQ‹é‘N»¶³C»6:!:{ÀÚ` ŸüÞQìÀ(²ˆ˜°¶Ó§ëôôJê¡`} dsë5Š! L`¬°†¨½èEõ¤ª­ªÚ¤E6éÓ­ôªªíÔPˆNT…´=ª}–ã„áÜD«böº÷@0ÆQŸ|£øè²a+¢âöµeûÓ«zét&ô1½ÊbÝØzÞ"&±Y°9ÉzCÕóÕ=ëåò¨Z©ênÁD›ôï¿ûrÄÍã®N¦[åý Xêä`uÔM˜‡ã}®Kn g… '0Xüä×dÀßþ €ØÍ¯Ö(r²:ÃNbºlµŒªql“„á GêåQ¯úìIUKU§ th‘þ»ï¾ñÎõ¨:µ€e£¨“C“Z£nG˜µÇ\—¡‹Ô#¬@ë(>ú5Ù@~û#¬dXá©›b48Ó†˜ƒDXYWÀªÅ ²ká ÇðtÒ“žõò¨jÕ^ç“ÒÿööåˆWïTõ z­0޹ӤÖà6aö˜°ÝyÐNÝÉaÀŒà'¿&ȆøöGFžŽÚ„¦¢7²„…œ£k,P@6€ÞhO¯§ï^ô|UÏ:‡ªê„#!õï?|çéëªs¤æÁpr× ËÐÉ–z˜¸BÑ {±Oœ[ŠYѰÀPP0¶à'3&°ôÊ1|*7¨ðÐŦ‡¸Ýô*¬‡Ú,-úèA¸cXîVŽ+°NÀ¡äñôúÙß ÏW=y{¼ÌöèÉóU‰ŠI*õï?ü¿<}xUu-l„0jM0ìfDư†•q쑹À Ç aà  L@6ˆ çh $?ü¨—bÑ1GÎ XWL€¬‚5WF¥¤o^?ûá=] }ç³G½ªÙ¬5+½þý‡ï<}¸©3;uâ\¬ÜG‘÷ wVêAÚ+0„(ÆÌŽã »ÅhÂfD­°D ‹ Ѓ%›bÕù¿üxö sL†Œb;õ€Ø—€ kÑòá×þÃ7zVüèé²aN†uÀP *!Á @Vî¶0¬e¨×7ªúêªS+¢Qw=??½ÿpõ5©VzŒ5Ô qÈmÆ\'1Sƒ;'0y,VCæF„‚sLH@(¢˜@4pþìßoßÇ™=É}ŽÜTÝ2Æ\™Q||û¿þ!€Kö À¸Ý`!hF¥¤’_N—³êÉ/TÕé±F€ª—7Oï?\}MM{˜ÖQUI€Ü—ÐÊÎÃÄTêq 3{û!9G£F¯DCÚ@Îh€nŸ}øïo¿+ÒØ'ìj=:tº{,¶ÊJžû/@Nb²å\…õvƒe‰QD¡±«§Óå¢z¹¨GϪËB=ÏOï?\}mUµ­˜ªÇÆå°ïÇ¥!­I„DëÌÉF¬GƘ gN`BFÄÌnŸ}øxûM0<Ø0RMÖ’MZLà£Çßþ¨€˜ƒ¸»Ý ˆ¹ŒÒ‹ž.§Ë³'ÕÛMÕëY €ªoo·÷ÿ?½yÜUíQ ÕÉ0æDØ{f£²I8BÚÔ6¤ 霰@A¶@öOVÿÙw¿†¨ax»¡Ú0t9_‰Ù9É̱g5,yýü_€†h·Œ5`ª¯êU?üxQÏ×§«C Ú%}|üÍízyëMwUíu¨ºAtB4ûtf1vtªÇ†˜ aCz,€€Ì Á¸qhàÓÛ—¾˜Ýn¿‚8Îy€9bþå(îzUjgÀ@UUU¯§?êÉóõéÅmì¬%Ïç§ooÏ·‹7UOí¡ª °Ø£qf -@U÷†e”é`í-¶>X$,@hYX€¸ÑÀ§·/ý&0?z÷ôR½œ-=8…Žù,ìˆ( ^;€@õt9=ªêãã‡/êɧ«cT³ çÇ>¾ýÍwoÎo¼©êU+Tµae22z‰£ÎÔ‚PwÝ 8îÆ˜LÆ.°©Ì€ ‚Ã>¬î6 lÈ^Ù>½}9Þ l¿Þ^ F‡6dêAÆZ Âçlˆ †vö¬®CUUõtûQUŸ®ê^•ªçççÛëõùìMÕ“Ú¨*D4Œû‰d/©öPŠPO–Pw'V̬"uB4åëºHuÜn978?·l?}}¸6©hÃUT­™‡‡Û;bÂB@1`x?}9u"©ª§³z>:CU{¸3œéùÍ»‡Çw^/Ϫ>\ÕÓ¯áÎ&tc²Nµ“1…Ô‡¶MÝÃÎΣ…²ÂšXD@L OZd|ø€ˆ‡oêÞÚ,t2c?¶s¨°ËG·—‡ ( 'À¨1CŠôú7ß=}Cd¨'½x=iÅ UÏîÅD==]T}x±Tý‡ØµAÈp¢vÖP}x±Y—Õ‹ªv2îÇdÌE°@L ÏW‹…?°ùðëÊcÍòb{åécÖG·o>¹î Ä5¬R?ÿîé+P&Ëõª&1CÕS LTOÏon·ççëåY=ø¯_†zú¯C††¬Ãò`G %B߼ج¬ªªë¦“¢€ÑÄҫŇð§ß¬y, Ò-Y(rzPHë£Û¯>¹v1FQyòo¾{úŠmHzzxñ¬ªªª6Y„8Óëér¾Ý|{»i3>{BÕ*¤c Æ>304æPO— 0ìaE¸ s2}²@HfC¶×iy»,°¤{C¼öGßþ YkÌTiV€¡zp¤_g5ŒGX!æç?üö»§ÛuHÎo/zyvªª®Ö¨8Ts ÏoÞ½>Þn:·»Ï˜T:tŸ¡ªc …Gdç©z~Ó•EZ îÜ=ÚÑ£T«a€›qÀ:~vÒƒ¾1¡çØ'Äk}ôí÷$¬NŠî S£°X²V€€QcRüåùû§ÛµçÇO/WÕ©ªÚÙ9‡0™Kœ<_žoo/·ÛMM?ÿN–¡Ê M•2œaë„Ψ¡z²eÝ‹AØYKÃ’æ`Ö•Èš|ÜúXú¼3ª—aÃO^—~ûÇ" Vغ–œR7œq €Ñ££&°þå÷¿üáé7×çG/z>ÍMgÕÖn &ÉîùÍùõéööñvSÓÏþga¨2CS7B[g¨Ç Z,:õ¹X·Ñ 6dAjdAADå:Xaœõ ¯ìu×£xå£oÿØØŒ†Ló`N†Ní ÖŸ• ŒÏÿøËïžn×y^?ûáv{÷ôìêгGè xºœŸž¯Ï¯×WUUUUòí‡ïUwÕ£ûËÅ– å¬!K„jån »¢8‡VXš-ž4à/¿ûjÕÊÓïæxx9N²dd1½½}iî $ðéÿ¥€œ ŸøCÎõ¯ÿi†ž?ûáv{y¼^ŸTõªN¨h&Å8ùüöùíííã[UUÕa\üÉo?|ïUS ÿÏ?\®Í¦¤½¹Ek+ŒrèÌõèœKN`é`YS€' aË_þðu:áô»9¾‰"!MÆanÎÜ6˜î·ë+h4|ú?sƒÏ?üß™Û_ÿ@zò³¾½ÝžÎçGõtñr=Z+BŸŸÞy»}qSUõ ôão?|VUþí÷['á gÎP­¡á#Ý=Žœc`…¥hHE,++pò—ÿë¿g4ü›ßÌ|x9@°‘ôʰ’ž±ßž~ŒðéWDÁß|øUr÷×ÿD#êÃív{9y}Rõtºôh‚ &kèéüüîÝãã»GUõªjïzúí‡ï½¨ªzº9;mî:÷Á–Îa9ŽB8SµÇÎ((&¤µ@ذQøËïŠáä'·_ä饳`Ô ÙÄŒ 27'0Èÿ݋Šñ㯲׿þ®`›¡žßÞ®ê[Oj>¼,ëÐc‚žÎoo—çç³ê<¨ªê®ûáÿ UwÍõn.6tÔŒ9:Žó÷Ž;YÂNí X€qWòÀñ5µQ @2 |Kœ~Í £€`Ød“d¦ÌÉ`<Ý^& ÿêOÍè¿þðOÀ õôp»ªOÏêÌÓ7 Ã5¼œŸß¼y~.gª>_U{Ž¿}ÿá¿W=šS€X£&veçƒÕÜM¶ðÎ1i è¬(øÉ/€ €Qàqúu£ ŠÜa9Fo{­l?{úOWaÉb|ö§-¬¿þð%0C>½Óóõ­êŒÓ7YÎ(O§óÛ/Þ¼=_´Æ UÕGuüí‡ÿ’ª=œ1ØÆ¤ØØ^˜€»:š#°f-°†ÀŒß§_dÄ\°€TŒ ÀÏžnï`ŒÏÿÖ_ø'@ÕÓËÓ»óÕËI/_ÇÃËljr§^Þ½}|¼>>½ê}h©êEÇéÛß½¨ª ƒ½m¸sF^Hˆ»£9©˜°°0bY0j”jþ `Ì„†‘½ï‡˜ÃK°âÓíºƒÄàÏÿ²>ýð%”§‹>¼<ÜnWõòxþ»ñÙŸz8¶õùÍùí×/¼ÞµJNúxRÿ!UÕ‘€ó8ÇQ›!ê @‘‚EÅœ[¬²` @Ev@̘£TcFÙÀpÒ¬É°È ?ºÝz€ì¨~þ dåûÿÜ„—³>¼<ÜnWU¯Wÿ›?- À ½\¾x÷|}s~ºU'yPOý7¿H½ztŽŒÎ0;eLí……l˜ ‰: s` Ø`ÑKEÅ„ HKŸäVzL5fÜ^¿[伫´-àçß@6ïÿs‘ž.úðòp»=«^Ï—ŸýiI‘ÔëéüöáñÉÓíõ¢:IÕÇ“úžôèý°:œDvÎ<èq°ÁÖÃØ'j q V€€l €Š QÍU¶¨ ö ÖFû@úÑÛ—_‡˜8~Ù¼ÿ‹¡§‹¾œ.WUuægßï½@®Ã‡oÿñv{wõùvSNTUÕ£ª*•j¥_©sÛÈNF³­Ñà!{›Ëp®£c°@d“ • ¬Ä$làÓ/¹wiƒ °.ÊâÁzÖ¸j°$0 dCÂÓµØ8~üâÉóÕGõª3>û>:Š$'ûéÝ·?¼}÷¤ç§ß]UO¢¶½NUU=–êTs¯uæÍh&»yœéBX™6 +@dM6È& t²N²>ýr òùW0ŽE@@š…6O¾ €(`¤À`îÄÅÈqzõ¢Ï>žT·¹þ«ï£Gm#YG¾ýþíÓ;Ïon¿9«»»mOzÖ]õ¤Kuê™:aKk]•k=šÚÃjY‘adÀˆ}û¾HÕŸûáw·Ûíùv»zЊƒNUOZÆLuÙêá¤ZYÚhvÜ/Äd­G'l®+Y°>2ø‹?60È ãÐÀ(À²–ŽÍs¹çþjØ @<=YÀSAú õzÕ©CÿæOMNTOß~øþt{}y¼]M¡NSõ°Çqf=ªûðÒÚ£@5ÕÊf²á±bæÑ0 %'„ù¿6,Cœh1b‘`d ËÐö0ã6ãhÄ ËÓ+ @Ä­á¨êùèIUwýìOd zúö‡×·OïÞ<ÝžUgTÕÓIÕ=ˆªócí¹n°Øcn©½ÑÐ T'ÀL6(ˆ‰y†y7áóß;܇ÂL›,FaN€QB@ ÛÝxD@Œ§úâJn@Ì =ÝTç^¡ªu†‡™ª÷Gw'• 9lÐö°tÂ]E¸[¡£€h¨µˆ†ÑÎÃéH†ª:!€°ÿüÅ ¢³²ˆàÓ÷_¦“ —<Àà¤úæ‹“zñUøìû¯R]‡gO—ëõ¤ç7j;£H­áY­ÐNu_Tgt0´ÆÑÔ©‡9&Ëd*´ ``€ÖhÆ2aÙO§_³Ycœo²;! &Q£z{i –eƒ`=t±|úþËpBxH²Æîér¾\õtº<;üì‡_¥Ö6ôt>}q;«§ËãYÛ“ÔãP/“p'ÕB­-zLµFÏÔ™3{LØÆq² 1 c2˜÷ÀÊSÁé¿^Y£Ö»éåÙ::áP„Äý¶|òúÜŒÉdgðéû¿;!4@˜¬ª>_T}U?û¾Ób Ï—Ëåú|õ|õüV=Ú9·TõY'cF¦Õµªl1ªÇcmêÌÎÞ€´,W¸'\ 6’ ž&qúµ‡flžžl„ÀØòáö®ˆf#+k)¢>}ÿåt±B±‚ ¸{õäÕ‹7—xøö)©ê›ÓùáÝãɧ'¯êq¤ªªê~œ£ˆ^sÕ²FÌ%{49Cmµ£ö ÇIh;-œ0&$D-4@A14N¯“šj»ÛñÒùϬ€Â¦:Š0šÈcE1£ÆS!+À€iVô¬ž.Þ¬˜Ÿÿ!™Ë:<ëåúx¹¾^Ÿß=«ÌУž½÷êY'ŒNïÚËl „ §jCIMHujEGXbÄ÷Û+PŒrXNÃúèå«¿úgH­¨ôÔ£hFÁø ö @ 1£aaýñ½ª§Ó«…Ÿÿ°ç¸^õôèãã£O>žMc8Õk«Ww¢‡Ù k‹ZÇ„¤œ[«sx°X&ÛÑjb¦åáÐH4Ѐ" ÖQ£6N· `4ÃEg8?zé¿úgš5; Ç~êÑTAdC4Ô$ˆbƒ˜± ½äéEõäéæ ÿæ™Ç£^¼ž.×7ç'¯J¥GÚª—áFg—:¬D×pJáLçp&„³Ã9սЅ€€ X¡`À¶0jÄ›WB†3ô£—þ«f aŽ´G‡Iqj`N€… b2`YXr®°øüüìëE_ÔþóØŽS}UõííöîìùI%<ªz¾ÝÎ*è¬a³Âv=‡]Ën“êê^3µµÆ°% Œ×6ØÇ鬠‹òáuLŠ|xñÉtßõððMÖÂØ£X `-XX`¬Á’µB2ˆÓùÑçõÛèõáyÔƒŽ£—Ëéá7ÿóåñ5j¨ª·wÏ>^jIû°b {4½ÛÑIztGÏu4^tQçŸøCºŽÖ§Óåüöv{s¾zU1ž®—ëíéöíÿm¸ORÈXÃcÂ"öP†6›9è`7V`Xâß¼6À6Øðy†Z|r»~ìÚyzK+  € 碞.Wçí¦ÎõðïþyèA{÷ôøÅ£—ÓóóíññtQ=®žŸß=Ý^ ƒ}TzÐ º0bâñ8´ÐÃŒb@€*H’ІþÓUޝ`¼¹2-øäªN<è饀jLÑ3€%Ô €l„3Õ“ç·Ö‡ÛP'õ5Уon/׋—ÇÇËùé UU¿ðê<9ŽYcÆÔl‡Ì¬a3ÙQX:v€A w +<}¸ž›Ÿü6ž~÷ ÀÐ…-õô‹"Xt.äV€- *ôá›l€åÂ$œ¡ž=¿³>ÜT{ù«ß«ÅPO·×“žNúæôò¬ÕÓùáút9;HF¡K:Ѱˆ ,`…,, ,P@<}¸Úüä×ýô›+ÃZ·m„¾L‚%:!'°qºœ¾‰#€G'ª>=Ùn:׎_þq×bÌqzzº]Nç/®×gU[½øü¨ž'+M ¬+Ä“ŒÎf#ŽsK÷!°;a4,9¨É0€lþÿáA«­Y~'è=+ê]•è½æ]5ШÎI}ò¿ÕgËØ“Z[¬ßV«A–AûRq¥ЃŒ÷< r}r”ƒ¸Aœ#Ⱥ¤ÁÍ€XÏrÐ2m5i(AJ¥Êëç¡@€§÷Ûò¿û4žþò½MŒ”eœrýIŠÕç9A_ ÚÜû´o´ÜÞþ lÇ#ZÒ²zV¯I–ÍÛ_üMr’‡ööåñþür{÷ó¿{~~÷î1ÉêI¿}~}wMPvšÞ—–$ìz6½­AEV«Vœ1@? @{“‰}<~øI›íÓ3a>}HkÉÚp,­úÊ´“¬…¶½Z?M¬^˜:Ég߀v‰2’ÖgÏIµ$ ãÇ“T¥~ú’·_{ýé‡÷ǯóþžuI’wO·×$7Ð&«%§¬ê©$hs„ò¦èY²LŨbuÀ ´â’Ì^-ɇÿ+§?þ§~Ÿû±úâãÐ’µÑìhc6¤Z€ô¬¶>û´#ÛÈ4æñY8gílýÏÿ&©ÝÖþø?}ýøz{ÍÿëóûÇëɺ$÷|ñôúzMz5€âᔜRŒZÇ ÕÚ!'»m‘Ë‚–YÌ‹°@ oÒfÓò˜w‡?þ§ž¹mæÃXm¡Aé೩ž € G+zÙwØÚúì½û…vZF.Æ ý²´ÿMR²¯_òÓw?½¾ûñ‡—ëýþòœÌ$y÷üÓ×ÜVŸt6vì-¹dÅÁŽÞç„ýMªÞ,šØh©Ã¾u8€½Ov -}Ò“|(ÚÿS¿Í¦ZåãÜÛB 4û¤§lŒSm£XZ‘hëÓo¤Ð6Ú)zîÆúÁýq¶\__ž^2Ÿ>ü?cÄê·ëÛ×÷É?ÞßåÝãsV’s^?Ü_Ÿó€¡oã<¡%iÉ´EË¢]S#ÉÑ“?ù/mµ‡Ž£5Û6pLͦ@ŸÛ8ítúãß~Óg׌>}›;K}òͧ¿øÇ¯“à±Z 4F9ÿì7ÿâ7Ll…-K_?¸ß’\ßÝ~ú’ùôá¯S=VËãÛ×÷ÏÏ?þ¯÷ç¯ïïï¹&?ÿ¯÷oß%³Í FJs\Ö9#™-ÕXoú±i×{$éÉŸüzöÕaàpØhScLЦQ;\þø·ßõik˜>}¾M@Êü»Ïþü¿Âã”QØ€”£Ø%Á?ûÍïüÆ™ÆLª]Wª?ݯI®/?}û’üàÃÿë^‰Õn÷·¯ßÞóãϹ}ýtL’\ÿû÷×k’Ó 8iCϹ'==’žÕg–þ˜IN9çwþK_&P`Û («gAŸz)´ÿî·ßõ @}úí=И|òݧ¿ø‡¯èטhåMðÏ~ó/þ¡: ÆLªgöÙžî·äzýâöÓ÷ÉÓ‡¿~Mbµ<¾}}ÿxÿñßÝ¿Îcn÷$÷¼{z½?=&)`T³é—ô$«EF²2÷¤'5’´Õò'¿sC±YS¡Ú%É‚6õ2áŸýå7ßûzr9Þ€ðéOúŸÿãWŒ[U°‡€VF¶Ý¼üÎof§Œ‚¶zfŸý÷g’äúøö›ž{ž>¼–S>{ý6Iòïÿö9×wï~út»'¹=ßW²Þ,Ðæ=É9Y=e\–ÙfÂnÔÐ&ÿâ7]ïuLHØ@çHªŒ³v ÿèׯ¹íaõïOÞ”g¦ž÷SO €>°e½ÉÜõ¥åX#s«ñ8sKrÏÛ÷×/’w^K[Ÿ½{I’ü÷wÿúv÷Å=·$I’Ì7sƒ–¹A’$#edí«­qžÚkh“ßùMÏ6ê¸@B­`èȨv´^ úþ‹‘ÐŽÏ&ã¡¿PÚ5³z'& ½Øú4þúiÚ[i“qž€‘¹íý÷+In¹¿}ŸÇ{Þ~x-òÙO_nIòÿ}ÎõéúüÅ×Iòø|¯¤ºcC;ÍsjIVOêh©}k«g‘çøä·Ó±’$%ÆÜ³JOhØ@í /l[ž ÊÁ˜ M’TËO|ò•ݨ¹§R» ƒ–ÚoÛ¡ÍÕ/KK’$+þñ>×äž$×<&µ$_ßÞ½<}ýíõv½%ÉéáÁ&»Qp˜dv;-süV›I’SNó’>{çÐ ý´s˜­ úx*Zª÷hØ ÓçÓ¯0êh‡Öxƒ¾ôZ"YmÄ9#+¯{’·/ï¿M’$y¾?fe&ïß}ýòòÅý~½%IZ;vfŸŒnLu`¤¿’¬‘Ô‘s‘ ½°°£Ø6ŒË­èM.Õ3{é—à 8x}-Ÿ|ãÓovF–Û©­}$«…^ZÙzõ‰²ìœç‰K–‘Å\c%›¬‘ëíž$Iò˜$—d$?Íý§××·_|ý.×TÐúåT£ƹ¶h=í%39èS¯Ò²¦ hÐAŸ°c<\‹Ce®þÕå÷Ú¢À_}¤}ç{ßàñ^2Ñ2ûÈÚÔ–ÞgoЂvž›E" ‰¤F’Ÿ'÷äškî÷$É×ï¯ïrI’Çwß>>þôå럾ϻkÒ³ÚÖ6ûfÌQ­ö^ÚÖ˜i/Ûˆ Çt´T&ìh ÀÈ…½-GŸFIn¥-`úùGÚw>ýŸ?Ÿ*ý'+=äTciËö›¾çK9ŒDniI8'—äo“äöø>I®In·Ü’$ùéã»Ûׯo_ß½»?'+9he£O}çhó(z&3íåè«/t$I¶ÌjŶLh@h™¢Øÿ|Ó m2éËÏ?Ò¿ó½oèŸß‹ÞæÖ“:_–´’j‹‹–ÆeV¯$ÊÖ“N’Õêe&·äúøÓ{òøíëí§¯¯/ïcäúîõžë5ïo÷<&Y#襗î€Ì‘eÐ{fŽo22lj1Ùv{±kЫKèÙÀîwÿñýXùpOÐ[é9•3Ô§ß4[? í´k%5½ÚwZýî¯Ùûi“zŒ2LZÒ.FÎç}½®\ï÷äëÇÛ-y|ÍãËóÛ÷KËíÝÏ¿½ÞnÏÏ?½åñž:0;}b”±¦žYp ´Þ&ØÛd´¶ÆÜû$úz8@ýÞ?¾uýpO”þPFŠ1)ßû&å8æÂÖ ºqºÔ®§Õïýʶ·óÑ<…‰‘šF‚çvÊ÷äñù~Ož_¿~ýâžÅùúôó¯oÉõ‹ç{Þ&åM±OÚÄ(=«·È¦6kÎÑ`@;éPZ‘íÐæÀïþã7©ññž ­cYÓ˜ð½oì»,Àle3²lÚwøÝ_Ó3Ç9¶q*ìZ2×HB{mç?Jr}üéýéë¼{Íã·ÏÏïÖ.y|½?&Ï_¿»åšgL°¥-Ð ,l6ö}Lú‚ÝyôjÙÀ§ï üÞ?¾Ïʇ{Òç2’ðé7ðfbsfÔ¡{³l~÷W´™ê´žsaI–¤zÊxÍlYÉ-·?{Îëos¿æë$íéõþœ$yûôþ’¤(Z0Ê9 šž¯³°9Ú<`Ô~ å¼Þ´^FA[ Ðç|íG?Øè—e>yY½hs”Ç27ÐGo'@`pÊaóé,Ú%=[+ðft-Y}¤zÊxÍ޲皷ùù×yý»äöîÝcryz~¾&I®ß¾O2ajY°ySrNÐªç– Ç0ÍɨM?g¶VFAÛ@k Í'Ðô÷@Ûèá³@{YýRíÆ:][Ð HiÙð½¯Ð.ÉÚÌVØOÁá!™½§z¦þmýöx¿ýûoo¯›ë5Ï÷ô<=å9Éõúøú>9Oöž­­‰CÏDv¼™®É¥{8,¼oôÜg¿”Q6€ ÀþdGûÑßÏ €6û´@{Y»S1J´4:Nu”¶dé9ðÏ¿bT9<88ZàtN.™™¥½ÆÜÖ9yÌëëó»×ÇÜžß=Þ[®×ÇkrNrM’†¥•È*ɇ‘´¶Ûç?ƒbèÉìsäé)¶6Û5;ÚÛ÷sT¿¯v©m$èYmeŽ:ˆÖ€ž.eŸ[KV´}ÚF-«§(–ž$+ ä’ëK’$Oß¾Ëãõv}¼}KoIrN’$É©PhÕc¬lY´E«í cZý_ý 3Y¶9òôz¯Õs@2¡½½ÏV€O_–1,yûU&ãmÂjçBo§ÌèSÏÄ›D¦žrFîI’è$ù£/’ä1O¯Ï¹?_oÏï2r½¾{L’$I’LvV[s¬,Ú„íR2˜¼™ýÏu0Ð’slÆééõÞVKè×€öxŸè°}ú²ŒÅHa,íÿôÕ(Àx[öÞ¡1æô©×4Í,})ZT[yL’ô­Ù³r¹%¹çþôí»<Þn×ëã×·™¼{—$I’\Î#K8«dŽdá`×'cLËžþ«¾„j™=ZSO¯_çœh­¸Œ·÷L ëÓ—k”#¬Í~5&¢WŸ0k­Ø07½-­ '+vV[úÒ«hW’$IŸíœbä’[’{^¿~Ìõññv»'3O¯÷$IrÎeê+u(Ð/#Y{ÛÆkfBüë¿Ibz“dd^?Ü“$@/Z# }æõõå¼’bϾѲ·£ÏQ»J£ñã_¶¢zÛG2¡´°ÚƒÙ®ßµc;r©q©'’äz[½¶$Kz’ä]ß%·\¯×[’§¿xN’5rΩ¶žDOé³g&™’Pvð/^’’ù{¤ZZ’$I>Üó’è“£F&úéúñã[{›mi«Ï^˜tÇîû?þ¥¹´f$ɆÌVÒžþ©¯Ö³ZNu%ɺfõâ´:Ú§YÛ¸?¾¿>>~ûýöþžäíÏï÷$«¥'µõœÚ®O1’\’£˜ûã/«%éY¿ûñ×IZ²ZO’äš|¸'Iáhš-s‡ëÇÿ)³/Z ´…óì“–Ú á³¿Ô›½´$yê íí?õÕúZ#ñd%·äÿ26LúíÒ’wy¹&·<æé–•§×{’szzbo§‰LG;Ÿ’™#(½>û‹jÉ:ÆúÝŸdŽ‘™Ü“$ɇ{ž“[g?á™(׿ýÿfõ‰^ЭÏ^ôìöÝÑÊøñ/ƒV`Ÿ’l@µl­F‹ë?õ)s[£<9åy–Ù×džœçï~ü›#y—\__²Ò“ôdöd¥Í–82.ßô\’uŒ…ÖÏ#Z’$yzŸ<&yI’{ª×^ÛùR °Aq ' C{™lÛ¨‰©DË~øK­¸$òñ×ZõTŸ›¶è =@/ŒA’Ö’¶VF’9ó»ÿ¦F¾¾å]®ÏÏ÷Õ{#³%IN©ÊPýúo{Îý!§dQý<1B’$yûþñ~{LnqN2<µÐ @=“îp}9zã(,Ðê³T¢eøá/Á›\ÿìã¯{õ‘Sf«¶1¦M=ƒ$I²¼)»–$Éï~ü›9’k’ëëK2’œgR33ɤ¶¾d¶ê׫§O»D—,ìê=IÞ¾O®Éí93Y4x•ô,û°üÑKŸ“`P0î•hk~øKeÓnù³ÿúÿS’l£˜ô©Õ ô ºK’$—Óœ’¹~÷·3[n·äÝÏ÷œ“œW’™¹õÌVeÔXèIÉ’$ÉL&ö1ò¼½'·kòœJ& ýuϹ ¶1çˆ=×—6g£€3`¤’óiíÀÿ3héòú7—)ÕÓ¾Ñj hòE’uNŒU-«ßæ–‹–\³öäšÙ/=I’\æqJÍ–2N©,#I’$¹'IÞ&üË$I¢Ï¾¶SwžGiAO€ì€øAR¯É©PŸ5€©HV[èõÃÿ;-T[Çž\J;¶s,@_àÝs’uÎÒNóç%«ß§sZ’{æž\o«Ïž$ÏÉåœÊtJY§%y÷$ïn÷¼»=?çùùþxK¯ëãs’¤šŽF;•¶6FªÐ  ;˜öø"©×Åç_qFÅ»¬öôúáF¨¶únœjW -Úh£ Ï+IR´õójIË’x“¼{œo’Ûmn-Iå–Ìôd^’j9Í6Gò˜\“kòœ$Éýž^·kÎI2;:ô¢/Œ`ç`í€vÐ ø<©×[€·_±i Æ9nYŸü)úüá/1ÞÐV‹^lÕ'mŽM›¥Ú©pKnI¦}·^¿¬ä´"™ö$I.Éê-5*IÖêIR-™½z’{’$ÉcÎI’âM’,Û¢aƒžSf› @O¡-`¬TVß>ýî`Ì ²Ð&cäA’,þw_2&m¶T/2Ön䬵&Z’)­ˆçq}IÖÜ’ýxšI²¶‘„‘$í³'5ò0“M˘#ëa$³'I’d&Ym+£²´eƒf£ç”©€L€Ú4›/êÄñ;¿¡iv¼ ušÓx{/ýMÆÓ‡_ôÌžÌ7#»Ã‚6–ëûÙ’:F¼äúœdö¤úS’u]ú9©–$ÑzN¹T˦OZæìéF’¬qÉõ–$k&ÑVO¶jK› è«×ÜÈ0 Œ3À¸Áø“ÿ‰¦Ï 1æ¹·- Œ§¿d­M#y“p´耖ëûÕ“‰/’[îÑ×lyJ’üd3{VKrÉ›Ss够VõKzb×{Ë9IfO’$¹$KëI/€#S_LPÚiµ@Œ¢ÑL€/jrþ?þ¦OGOÄb*y›¢eñôá—½ŒÌ–œf/ô £z&KKî³'•Ü$·ë-™ý4R-ÉjS_´œriekÆ2$-—©U¯–œ†¤¯äœ$™©žÀ9[mv™¤mÊ,@Œ`jxd}º¶å¸Œ-}Zõ9[FB¯ öñ㿽Fj¤ÎYh ú¾ú!ÉI’ûõå–KNÕÌ´[²è)‡\2{ôô]e9õ–eo³ˆmkk\*ÕsN"«e*€¹vÚ48dfWe/ô ^#ßžlãÕú,'#³- ñÃwŒlT%©}Cî-5ò ø,s$Ï Iž“Kªö½§%Eë™hÉn&¥=Œé²·v:7‹ÚÔ–c¬lç,=‘¥MÀSkÓaS övš=4 O˜Ow¹ý)è‘^P•”]²,?üx·ÑØö̾¶A·Â6J´ÛÈL’kº–\¿HÒOµ´ä–Eë™°r˜ö íè&mÒƒ©MãœdL$=YÖÐ.=³enô75`Ì1-À6 €1Ákäq™°31icÒ$åðÃwˬN2ÇÒXíhÕ.»ô¥_gOÞÝr‘\_ß'IòÃýadAµ‚Õ×ÈJµÐ¦VÐ ­'ɤzò0ÙÀÈcŽž¾fÚ§jl`è4yYðÝøÃ÷yº¯ñôa÷Ùwýz+Æ´Òæ^ ñánn¶¾è#9M¶¾Þœ&Ðw];'{ë_¾ ¹¾¼Ü’$?þxÿË–t´*½úCrIµ`ZA’\¢Í‘mŒ$ôi޾G+jk—‰Ž6Á  }bÈóüä»ñ‡ïótŸãí‡æ³ïzÞ—-Ë ´”wЗÃ6N9ÓÛOz&¨Aªežù÷_öëës’$?þø?ÿee ÚÚmÆÑÏ—°ã”Ëšö=YÐ@K²Zío´šLÆD¸,И@Ÿ /õÉw>}Ÿ§¯Œ/þêO^.«E:>üÐRm£dSíßÀN_½ðƒ¯ ×—÷I’üøãøÐ2ÞlÚ¦Ó8 ÀqÊ<Ï>“,&@K²ûÞT.쌉-p4l И¤`Ã(4yÔ¾ñéûëۯ̼.Ÿ~ײ0*²4î e¶™”±Úy,ðùë—úbO?v}IÞ¾Ož¾l§™Û(»¤ÎØÛiC mïO•°@+¾„Óim Œ\3Á¿úøŸÙ)=F|þRh×—{Þ¾Ožîåc.[×NzZÎЌ唙#…>´‹¢±AOòГ̶èÐ ´äò¬¤¥×À„ÚÔ&(°o´¤C¿ÌýíW Ý Oü~=†à×ZÒÙa´Ûþüã/q(ýnÄç_Þªh×—Ûííû•§{í³¶¡ôÙh+K’ê§du6`ƒ–dr‹^$sµB­¤IMè…Vðx+´EÑØ M@zæþùWàôo Oü |ø’¥¥Ðwl- øWÿ€¾ŒøüËQôä‹äzKÞþ5~žÕÖ~´¾ö–l—©Ÿ+.#é—K2¬ðÀF’ÔÙp°ÃHÖ4•¬±s‚ÂmaÐ íú–iLÈiÁX5µO_Z O”,àÏ?þÏŤe‘6VB¢%IòPRYcÕ2·¶’”}i}öd\.Éf,k£)»Vý’äa‚’°ÙÇ9IhK/@› ÑàÐ/ôÌvú‹ÚeÚ@º -Å(8-€§¢eA )€õ_bòÙËêz.IJ¢%¹÷ô’J²N‘< IŠCÏêI*×L™–®Oã̾kµµ‘d‡= m¡Žž$ç]›6;HhÀÆÞŠ& k¶¿ø'-³•6ɨ}2 ²žŠ™Q86ZÊüùo¿®ïW¯ž•¤$§kdäœ3+ëÔsNzr™Ã¥Z²z2R_ÜΗ1{hÆT`lödfíÚÞ–an€–ŒvJÊ,ÓnÓ.´"£Œ˜Úèì}jU³0æÖþâŸSoV&Ð&ÃŽV 5¯e¬–¥ ÿ꿲·âz›­õ¬ä±«Æ9™û%•Kö¬SKõ\²Ì§ôÄ~N’X}õËÔ¦¹O´ÕgϘ}¬±ú’ÚÚJõL¹f…Z mA6€ ݤÈë|i×ïvÑž*Ó^ô™0òT–¶FNeTj*ÀÛoëinhÉÚGrJÂ1ÛJòUŸã4³µs’ÔÈ%S‡jµÖkIfKŸmÒªMmöLý¡s쇓°6=©ï?e¡gfÊ¥ÚØ@o)¾ÿZ¯Æ7`O•*}~þü%°Ókä©0}ö~v#Y£ž.ô=I2ÒÚlI2{ÖÈeµ}dJzRÚÄê³åœ’ÊÐržmnŒLíÁqÖsiªqX  --I>{ºm$Y-³G+íRÐ `¶FªÈëùÛvúŒ2žVÐèsÜ˦AC«Ïò´pšý>“LZz=…¤%™™}JØV’\gžLÓ˜NéIµ {ŸIRs$}WcöÚv##5Òγçl×Ëf±±––Ù“§{ÑF2ÏIR¨Q  Aµ²IíÜ^óªýØŒÙÖSe,TÖ÷¿ÔÚ ZÑjäõ¤hŸÞ§ž¤@í³Óê)%Zzff›íÒΙzíZ.²Z²zf³sšF’Ó<úLNN©=ŽÑe¤’dîz ™ sÚ¿ÑRcíma, Oì­ýé^à gB_¯Ý®ÍÑ2·§åhô-™Iéé¹~ÓržüþéµÕf_ÝaLlF/àÃ/;ô鵨´5ršz9$zæÈ¬> º3#ÉCKZrY-sÛ³HÈj©ã|>qôÕWЖ£Ï}bôÙ'L4Р¿MÁ†–i§åÚ#sz˜|ò‚ÓXIŽ={žÒ’É÷óZ²Zµ4‡¶z øðK¼™.“:z5¢%ItVO˜í”Tôz3ÁȬžŒ$™­›ô2B2×ÈlÆi†™8€¾X=Ó±ØØ´mkÕ7´ïî…‚–iG½@›£=^êéR|úÚã éy÷M›còƒõZ¬¶Z0÷17øðKÚœ}VÏùL¦$™zIûÞf’5 #˜z¦ž¬ô,´¢—‘%9­Ë¬fœVÙ+±úh‹­gjS«]¿š6[ýí½k¢¥ì¨´ÕkÌùTµùäÆLç럶Ù/|~­vI’cöIàÃ/QúÔ£¯-ØeÚ[.§EŸ‡‘Òò/øÍ˜#Owhà©v0Îç,ÒaõE_³eI­‘¼}?GÒ°r}Ÿä÷dÀH’$פ’J¦´¬¬>{&`ü;,ìôNéçs’ÙÇÛ¬ƒð&çèÓHíÄm<}™LíÛ—L}ê#çE&z -Ð×§ßô9Þ~ø%Œl0’Yh,£GOŽIr}?ût˜;’ë-ÉS’ 'I’$É9Õ³Þ$I[=Æìäö£Wï`$Ißfí½öØÇ`72±ãé'#ÑÞ¾Lúä³ÌV@Ÿ½ }}ú½ÿÃ/i™ì#I%§ÕG²’Yé’•ëûKÏ5Íeô?|ŸœžîÉ$Iz’$Õkd$éëÈX#ùw&lú0’̹ç1óóÍã]…^ÐFm{YVÍø³/%ÚÓwè³ÏÜ–Ò U¯‘ÒÒþôÓoðÏñKFÏ PÚ9—‚7˜mõs*«·‘H’\.ç$5jUŸã<{’D6€$InywK’$I’ŒyNr©Ú'›ÎA/b$­gœ.S+`G/dítèssÅeµÕô«·þ:OñGñß­$IÎ ö~¾œ’²Æœ}iûìKi• aZ2!ZÁèFJ—$™-––`d¶ä–$ à’Ûý1Éý9¹Þ’$I=Ié`´T¶m`¬J.ä”Õ°÷‰ÇÔÓ˜Ž–oV[ãG¿~ûá¯óšõÉ_ýö¶Òê19¨ãmµÚèÉÄÑk+èà³ÌI »vnIF¯#‰‘Ç„URÒµ$K’Œ´ $·<çñ–[nÏ÷$I=É¥60ôÙ2íÛ¾§vL=IJ«–РO$(½mÙµÕ×øÑ¯?ÿð×yOþ·ßþ)è5V.¶1Çø¢Ô¤¥OŒSX½è)f˜Zõ¶'I¶$‰¾Œœf²NÉu—\2 'Irÿú1y¼'I’äÕ“ÚÁ¶Ù2á‹m”žä”–sæ°~šè¿‹´Ò'ÚêÉ~ýöÃ_çéî“¿úí7´©×g3ôÒÇWÆíaL´Õ'FBuÀ§)),-¹,K¦$·$«%™Y£¶±’suI?Œ$ÉõO[îrÞž³•ä4ÏÉe‚dÖHqI‚^ý”ÅÖ²ïu´²zšƒ4=é|ò²|ïŸî)‹¶k™œ«½&-;ŸE G¿¾¾¾Ÿ›=“,Ú†Ø4úÔRmIbg$+É2²dž¶½fË2Ú5Ы'I’[˪֎Þǰæ%¹$™Às’ÙSÚ‰]«Ö31æÞ›¼) €qNh/kÿÞ/þ~–§€jùú©Ökb”‘éó¯°ÚÊõï^o£æÐÁ4@Ù´š}–QÂlYZ’±8eõ$F"딜žÔ¨äœ ZëI’ÿæ’LsdëY©$ xLι¤6ÇÈ(ìÆ˜U 6 8­€áh´ÒbÌ>ù.ó{¿øûÚ}Q`ùtêYyz ôŘʨSþø/_3íØzõÂvH+6mik?göÔ K–vNú=³’Õω‘¸¬ždö¤Æù)çj íKOrJ’ÌqIŒˆ¬6G’ Úëmõ$Ó”ÐV_l@:ð M{%䋸Þ/þ¾6Omµó%u<Ý™|¿´jóœëëK2m —V«£µÔik&3q>o{›€~Þ.IVÎIi«E?'sêyº¿¾æ’€‘ä’Ï^²Ô-2Çj³'aðÉo_R#}©,À˜°Ñ:vmj™Æëû´\– üÙ— ÷Ùß~Åq¼ðùW zrý³ŸÙ±Q.u`›;’¬^­_ÖS©M+Àžž$™ÉE«}¥k\*O÷¿zMR`c$GÖg/ ³§ï2³Úì÷LÂ'¿}I’S2IÎZÒ™@§mhú$S{}NËeþý—çÓiŽ·_¡ÅxüÊNKOòéÓϘ@/°‰$«ÑOó]z¤6­ûæ”–Ì,ZYéڲÏmûÁýç¯IfAbO*¹¾OÊÖ#Qkõžžš >ùíËÚ{2Z1Ò3ArJÛ´IÖM{_ôh¯ÏiÉÒlø³/qŠ>ÏO_iÓ#€Ï¿²k-=©OŸ~¥M²ÑW‘Ü6í)=f;ì’–I+†6Ûj52žî¯¯I.™´DFrInã2y³¶w?œSÅÎ'¿MéÉÛè)`¬ `he£MFG×Þ&’©eâ©ÐrÊÌãW³G°Q?ø‰Ö“¥¿ý™¡¦}slGqIŽ} ½[†jYìÀ ÚHÏi8´Ò3“ä|Í’dÑúœI’$ý2¡?}|µ8Ÿ³f@{L`ôtcРOú†½vl‰™-—ë-ŸÍ!`æ÷Ò¾ÍuÍ(&}šZ IôKµ7ýiííØ£n¨ËHr^vI’ÇS’Ë9YζË%I’ëj™0ž>¾:Zú9ëR´¬®@ì½ gàì€æ‘L hmåv??~Õ h ð¸—ö’ü)8¤àP–qÚš­ô6ÞÖ†±z*¶Óe¥zv¶I²FÒ’ÔãsN•¤²z’$+=ýr©}ÓŸ>¾BO‡^p´é@ÙÀX`×Z €~¦&-úÔ´¤Úê×?5ænÔÑ´øÁ]Ësnw0*Ém)ðfííA?­§Zd?è x7õXG7Šq.oæHz´¤ŒÊìs$IRúêi鯯Ð3GµÃbï= Œb77í'—ÈûŽ~jŒÌ½O™—S‚‘µ§’Çu$§$I’$“]Ö®!Ó‡_Ò¾£Ï}0`7Wh P&=Ž¡£ÛÀã3­Ú»¬ÃHmII29´4=?úuŸc{ÿ‰QXX쎖¬IÁÚÜa˜æKª%IréפƹWÎI’5G1ôó:`”¿¤}G©M]o™Û,x@/hì´s’m£¡ ÏÐsûªFÊó³6íã~Í„>É¿þuŸh‘ã„`¡92RMè`C泌yY+³%¥I’¬žwIN+I’i`¬ÔÒ¦6R?þø%}‘ÔÒ¦ÉR¥¥ éÉÕeÑ £--÷å””<®–¹÷$-sëù_÷2R™ú½ÆDòÜ–7Ë¥º—è)­ô½ÏQô²3NkIO&IŒ"I2k$É‘$çEŸ=Éš‹ößh×[²Ùû¡e²A·«…Q0¦Fß¡h=Û;Z@Ç'/ì}š|›ö²6»Mû"«F¡NûÈ4¦†ž×ß¶¤/z’­{΀6¡ KoéYúLbÐrM’Éó=ɲ!9¯Ý9-¹$‹Oþ-ϹdŽ1µT/´ÒêP‹c”^Zéehôså0  á“˜pð˜óóZl£(íë,0Jo§ó.S_ çõ·m­¾”‘êñ’d¢(mÁ ÛÛNoçÙÎV‹7u´$IRI’d‘Œ%ã”eäÄ'ÿv}ºÏK’Ò¢Ïâ¨ÉÁÂ(º^z„y€c´¥‘và“(¼»nk§blí–ÕÐFéIÞÔysƒ‘×ß¾Yúš¶‘JdóÀØ´m[s¤ZÌ–v©Ù“{*™IrNF/ÉXƸd½I&Ÿ}‡‘9õ”Ö#™Ùٙ腩•ÞæŽænèÕ€óÜÁÖ^ €ž$ FÑ«%K›z.s$iKÓg/´¼þe²zÊæ²ÆQÇÀA ö¥gî¼IëI.}–e-Œ€ž-…aÚ*mêÉJhѦVúiµÖ^ïùI#‰“1 ÀAi+ç¤ Rjõ7´ÅÖ“Õ’‘$©èI–c缩–´7³×HÂëŸÂÚÑS‘ÊÔgƒÂÈV-…½µs†¶FVªed‚P±` -ÚÔ“$äA›ÐOeïß>^ÓfÃH–Œ‡‘u¬HS\&ãúú~ÙhLMè‹Ï’Ç{ôK9Øc6휤«e$…\²µ)ÐÖŦ·¤eÂÚz²F’¬­%I’œÒ­ÆÞ“KŒ$IR}Ž$ïþòu ú°¥´®—cZè­6½ö1µËí’þ0*9Í,ˆV( Nyýbie¶Ô`j™Œ{îïbKõš¶¾´“\ÒÖ¾´ŒLô¹2q>)Ø{.ÔvJN™ ‡‘j#I=I¢%Õ7c¶$É6’df{jŒñø_Õg/;ƒ¶lç ýºûÁÖ“SwLÍTYý¶E¿L=eDm£ÆFÍ#1ZЪåÒ“ÔXIº>ßd$™-³eÑVÏJ’$ò[½Æck×'.ÔÑRç¤_Æ8¥TK@²¡ŸJvº¥“™[v0ª/Ðvx|Y>ùÅoúÄ-çÕnÚeN½ü ´´9&öœú²€¶8š9{9`s°éYÆ)³˜Æùœž¬Œ¤µÌ´ždI$3-ã”díFFò'ÿï{?Ç{8ZvÛÄÎbefö“^öÕ•cƒ]GëìlЉ\×ãÁ(͸Lì»ÿůxÈ«¶z¼­¼Ä(ýíû§{Aûƒ¿ûÿ$K?¥ä&öNïÌci§Kêè)8@ÐJ¦ž9@’$I!íЗÝv¬–$’5d‘Ké¥ÐÊž^Z¶¨£®€ý<“­eÓ3{y;ÆlÐ'¢ØùüïºÊ«¶Zn“Q+/±áíËë½ ÿwõŸ¦ô~NÉX,Óˆ‘$çóÜOk,@«žÙÎ9uГ$™’‚Ú˜#«%IR+2«eÒÀì—´©h {=@’Ù0ŒÚÅÆèÓ©ì½x³€ýó_ü/½É‹¾Zî‹1½«¼dmª½½¿ÞˤöwÿkѳFZÆb/ÓhÆ$™GÎkßÙÛ†§SÙ«Í–Ù’¢Ó²rNf1$°s¬ÑF¿Þ’¤.Iªú\¦ ­Ê¹Û’óÒpЦ­MY#}â8úªè¶]κ-“ÃÈy$O?1²b=ÉIRIV?UÏýí½4|òúÍ”$9' -É:´,Æ%IRÐÂÞ Ð/5é°ÙGAª_2{ HV‡2Î.¹%Éô&—ÔÛèFJi¥eUízÀ[½zLcÿô'+ÓDΞŜí:Ûª<Õæðé-oöùû{;èçéE[Øø,I*I¦ž$½ZBoÉL&œÂÖŠ =}:ôÚGuÝŸ$=œ“†Ýjû›~½%‹1*-©°Y#Ð&I¡§`Ã@[-#ó“u´iG’6éYŒºæ”“Ö§£ÆÓù´ï>}Ÿÿó7Ÿ?'9ôé³BpØÆó=¹¤Æ‰ž$=—VV¯–À%s£#Ž7I¾lônzæ9…6]’eF9Ú%Éœ-´5÷IÏC´b³ÚlÙèk ­Nç`ƒvªQ­ÚétÛä,³%ÑÎ5R-Îsßj|Q-ËõýííO>¿'y€çÔþýRŽÛñÙããÚ¶«´s%IKä’¬]µ m5@/-ZÆDŸ#2s22“…-9ÕvH.Y[fË^èuLú)اÓjóÐòR ØÕ¡ik£?ýGmäÔÖƒ¤ÚìõY¦‡ú<¶öô¾’‘JÞþläœ×ûe±£4sB}þz/½ô䜹ôž¬Þ 4ZÑ4‹¶1h¥Ï‘”5²´$—œ¦9悹ÈláØm›i™Ç>RV_Ž«Í$5~}I/£”¥Õ®¯}úêe<Ý‘KfÒ—^|?‹ Æt´§{eõ5÷þögF寞ó ÐÎŒyûú#=³ç”L˜cõÆV@µÄÞSÖaL}Ž„‘6“szõyH\–}öè“}¬> P–´Ù§Ì–0TjÌ™$9MŸ½¤•±°9[OŒ§¯6•ÇÈšÆÜ®)ÐôÉx}/Ù3÷óÛŸ•Ÿ›g€‘í ùÁë<׸Œy”Ô˜˜9˜`ÛíZRF¦µéKŸÉ EONé3IKª-‚í Õ8eÒ¾/Sô´„9ÏœËû~ý®ŠÅ¶-“–ÙSyú3 =å1 h}2^_$¢Ÿßþ̨ñW/¹ÁŽ‘:6Ÿ¿þ„öŒ¹ï„‘ê%oñ+­ ýá7$ÕOÑ“ó,=G?­ä’ý?ëéÉZh—ý”ÕV±]êMë³ZŒ\’¤VŠÙZVie´j¥Ê$›Iª'³±mO_Æ9s;ôT;¶öéûÉî_&E¿-½´‘œ¥•VèÝ4îEËmA3ÖÒIËjõù‡_Ù›­OøBR½…dMzRX#+Iþä/ß'IÆJ5¥EAõeB?gõÕWË0r‰ž™L¦#©}³7(;˜COF¬ž¥ç<±mO¿X’yJÏÔ'šOß/JÎíqbkÉãÙj AµVz²Èó´9Îç£Aæ%«ùüï(v>ûŽÎHÈrÐ'x3³Z’ýïVIrj)6lLV+èÕqN»¬eî=É%«¡³ ÙPØ `»ÌÕ’ íéã k'µ6|öÍI6>¹-ݨä6-ÀŽ à³\²µÄDËi„EK%“ÏÿüÁ›Iÿô›ÆaÌEV}pNKòöõ}/=I”–:j#e5ÐW/ä”ulµK2²Ú¤³v›‘£o¢=´ÂÜÁv¤°³ò´üÝ}Û¾ö6¯YÃ2µO¿#AËÒI (`™#’5ÑR}¬b¬v¶êUãùþžD›ŠâKNè÷:ô°^ÉésÜ{}ÎÐ#Ÿ$ÉçÖIòu앟d¯|’$Vr$¯Ïš•µÁ¸¨ 7Àgï†)§³IbíËÚµ’á¦÷…5ú˜5@¶µaMè¼~þž“¯pIq®ªœRœ£ÇŠäØ2»sz$•õ¿ÿÓ/9kW%?ô¶†$™•Nrt>Ç“Öd àô¹Ü€ÿôû†TEN%Skž‡5žyc àöWÿØè½-wWm yýü—•çªÊÁ ¸­$ÚT¾f?kt®žÊ‘õÎOÑÉäO‰µÝë²+$ýÊ<žÉfÉÁnµ äµ]@÷v¸ð¿Ï6¤*ïÏéT¬}-§·»²Yà¯þ¼P?œîÑswÕÖyýü÷l_­ ØÔázP/ëupXyMŸ‹ìNòÊʬú|Ë®-{%9¨lz_7ÖÙN²sª_u:–¹Ö+ê…X56€Ú.p“+§ªO’w’ó7óåbÝEoÖø«\èÜkêʱYŸ½rþø[¶:Øþ:µõ+ BjoØk³6úÇïÉéäÓI¶k*ù–¤ød.€ät’ÍJ¯OÎéÏH’I oàZ£7Hê5¨ÔÖ£?™õó÷7•³ÎíË^ùŒ©œžÞ¬‘PÉ?Y?üî·äk噕B½ÎJJ¨dVËv×®íæ¶z¯ýFÖ–3èÙk%Iâ•ïûºXÉIjTe%É!‡+ñÜÉéyíY½uXPÐׇkõ†ŠõJÚÿö·_út_®Î¦rz¯??½f*ßþIÿü}€ßýökf­Wæ<ùŠó¤:IvýŠOv~ØTÌ¥Î}ÜP;›Ê©Á³ä8®þñ—ýe’$Ù_’ƒg%¯dC÷~PÙ*òÖINmϳ2Î ½ [x@?O³Ôu×¹ æ~®þðۿݨS{×tÎú`>J2ë'*?þ¢þ>Àï~ýþwsÖYÓO΃¡“$õ]?É–MM'*1Xä@ýøKÎJ’ä“X‰À¾Ê¬ÛëìëZ™‘H’“l+¡õQãf\j2´úº]÷ ¶¾Xüç¿ýý ©]­;ë`Úù>+‘¨|ûÅúùû(øÝo?Ÿ±²^œåËîý¬$'õƒJgKNÍ(’|‰ À—Œ[‚‹‹N’$y'I’̽sK’Ï™5•³"9úÔYûúò¬$©:¨A¯dWTòžšöÔ\ˆ”‹û¬¹%õ~½OW SðüG?Û'ÿú÷¿l ¨l+yeòz%g]+k×oWmÉôë+`[|܆éä$_¹é“×+I’O>yg³’OŽš}¸×+9²Ù_’$së\Û'Ir*§èXW'U5Ix^‡d •ƽΚ5‰”“¤¾òdð‡´ÖÃúäüþ—­@eû›I'ù»çîd*Ó¿qW²×Êë°=ŒµâÜnèlë$¯$5ÖôJ*ÐÖØ‘SÖ—$ó‘•$£ŽQ,DMN“M½Ü¹@*^™ô³víDg?_’Ýce¶Á_ý£³~å•óû_¶Ýù[µ’d%çî$“Y¿]NíÞzÀeä3¸ÁsÝ´„µ¦’¼“Wrj|Q«S?(Wω:µkxZ’ c­äçß2Äcå(9×z¿Ò”: N'9ݯ±òV9݉5:£f×ýãŸË TNÿ´Ö–íädåûYIò:{ýv¨¼öÕ{9ôgãÜôIÈ\‡Ê^=9•ÔÞÕ$ùá<ýÈ…>½ W’¤ÖAòßÿ%ƒÚèÙVÔçœ÷û€:¸(ëXètÿðÙ îÛJ¶5@ç pø3\üî×Í…‡Óï²{[{/;9VïÞËštvoTÖ‘•¼‡¯ÉV›^‰N+IöšÃŠÍÀæFå µ×‘ä¸oò$G‘ ª¡gEðûÿòz2;pçuw¶:ç }_þðg¸øÝ¯ÿæQS]Ö{[³&9‰Z»÷²jŽ»w ²N§w¨ÏЍ£’Ó*I’$ýθzŸ{ ¢7GÑÙ.ë5OÞ{-_ê¹:{Ù€Úf­œÊÙÚ鱸xôïÿ¼kMõÊçî ’ÌÊ þðgPùݯÿ複zokÖ×$9ÞmÝkÖ°rzë¡ÒWg[Ã$Ÿ¨·úÐ/W’¼òJlÖØ™‡X9VrNÔçÔJ¦“\Qƒk±h.Öž½¦¦r¶;¯ ¨£ÖÜ ` •/uÔ°Æz_òÞxV’ó¸-wÝ·{3™Co÷:5ûZŸ²¶šµWn·}šs*“$#Ijv_žYköÜjè:õž›J¾ý”dp£>;IÞPzîîve:f£;ÆÏ×Ê&ɸQÿZ=Ìâ)Ðî 8:ì]ùô†•ÓsÛŠ×:Ûú¼7ýÙpvÂÚµ­½r†ó4mÖ畼·•ä+ËÃE²¹ÏY§©5íFÞß’ìãò ¶N2hPHOçvgÔÏ•ó~}Kžú»©Yææ™Ê àñ(¶cmÜÉñpƒ $¯éÉô£ÎÖã±TÎÖÙ‹zmy';;9.–ÃY•|Àµ*¡:™É/ɾú5àòN2\ÀFÏnÀÁ¢uü4W>yY{ ¨¨Ö®Ü× Ð ’•¬¸Ì©Ì\QSy=NýZ‘œ®S;ù!9ú3IFjê8GN­]\ƒGM¶åÜžÎY齟l+™|ò_Œ®‹k÷ zÕÛµv¦6}:Ô®Ôus×·|Ijƒ5ÐÀºí‘$?çŽ E É®Ì:À¾¿ìÊ{fjÍ®_k:+IV’äuðJ¢¢j|ÙW?8[ÍŠÛÊk¯súóÚ:Iç$•½T•ê$Ùµ‹çiÀÖ›•oSCrÖÁ»¦æRÉOyýrú¸Ñ€ÃÚê5‡•ä‡ß²ÏSûVuL½wo@×H²-w½~=•$IòNþ! :©›Óôvƒ•cô®xdX9+[K’:•÷û ·õÊÇíµáÆàÙzXùaPŸ“€‡µY+?ä•§6xpY.ö{«ºè$ù1w§÷ávqƒ×©õ©]P³’s×A~µ’$Iœ$ ’l+û–]×è1î•£õVû¹ó:rNŽ’äô©d·Kc½ÞCåzßV2çZ ¨¼é͵Ù+[ SI’ýu%Û²ÊîÝI¶•}©SÝ•ìÞ§N¿ìOüîíë³UΓ‰Ç¹àºkƒÎ{£ÖéKQW¡óuí|ýé{Ø÷\XÖWO}û'hÔ¸OJø«_²×:&û4PÇmí/€d»1_òNz[gM-Ñ['t¦§N¡k¯=uÖî|Ÿ—ßýceX‘WÄQƒãVƒ¨m)›zÃÊ^‰þMØ@ €äòôÿ ꓌ÚðWß3اàÔq«YX}ï‹]?%§3ë¬W½½}T6•ÁåZ»B½ûäÿûÿu¶>›5v'éto*ZAeÜ€ÍéÁÊ^×?üÃélÚP‡ Tö\ëÛ?Á®]Ùjà¯~ÉÈgÄÀgJ½¡úõÙÀ•³RIÒ™Îzת×)n2t¨5+s­œMó»ßú3Ú– }’nk£°T àê>·NRù$§û`eê@Ú¬Af®ÊÖ¸¶  “$ö¨ÝÔPŸC}²{`mèÌÕJÍé$yUòîœ:=nÎ:œÎ­· Èwýø~žÖüîDÚÏ'³wÆk׃ªRû ëS[Þèßÿºo{eÖTtVÆl<ôf zz¨¯~X 6 Ö1•ìÞÙ†ÎL­vÞY'ÉYÓ‰•SÛµY95çX—ß~QïïéÞ¯ñ»_™I’O&ÉWµ+¹®Rs޵ê`}µùý/g÷^ûЙÎßÝW%à Àßü-0°6 2z½¶Þ²µÓx9tNjnÔÆt¢O'I2+¯wÒÙÏû€ä{ë£G%c%sÃÿæÿËWærgŸG¥:ƒæ¢FÝ+ãË®ž¾nzÖæ¯ keÜwŽ®•¹Ö:Žš¡þð· ¬ €  ×°v.žEÍÖfXsòš0½S¹u>™µ£òþZyíià®5hÔl.vWBgÓ×Ôynà±ÈÑ{»µ-émÊ>zV~øz?×¥Ï×Ú‹õÞêWWm—l¨_‹ÞØ–kmÐú}`|^›=4·ÞsÕaðe*ÓÃí¾»òYQï}‘£^ÍYWšOçpíÍÚS×Pcå¸_ʭݬÉôpc–¡3®%¯œÈ^Ùlkç•‚ë ¯»6×N¬“$©¬@øZÇþæçÀþ¶fªVÖÚäç¿c9ë kwö®NŸ5+É>*9Ò©Ì­²û½1Öz¬Úܾ䨷5zÃS¸—ήÄ:—á¦>I® \žô\¶“]éœ'³ÎÀcÃõ»­6óÏ€ÿ àªÚÆÊ¦§ú‡ï´¬Œµé÷[ŸN[If«dír­tò ý¬­¨]§O­ •Sç–}¯ :øä¬-9 v½’½2ÜÜ.€UÃÈÍض˜×ýó(€gýÀ°±²©S¯àÿש# ÍÔ{wï+™•douž“©•H&®NîµOçsò@¬¶Lv``í[%Y[r@’d@}íÐ…åØðX§6}àd,ÀàôAÏúÓŸÿ ÷Z³rÓ§Þ¡ÿðߪ£sÔaîš•dW’¾ÉWÓûZ‰•Êt’$ÃÔÚÉâ‚e\5†Û}¯È^>“$I~LÆÉoÿÃ·Ê :¿ÿ'@×.À¿ú¯éÓþê—| Ô`¾àÙ.Xèÿú?ì¸Vçç¿ÍupÿñûØVÆ—]3pQÉ{Wrøâ:=õÎ;§2OòΠr²/.(¨]››«d/že’$ïo?$c}ûÓ?ýÛÎu~ÿO³[oøWÿáõÁßÿ’6=ØÁ xà¿þ9˜eýü·Ï¶Qþø}ð|(½êðJ²+ÙÜ•³:‘wÞÉ'»“¤óBeÇí.¨S粆ڨìçq­©O’×ÊÉèüö§oZ–>¿ÿ';jsûWÿóþê—üðß¼=6€ ¸ý«ÿð À°~þÛ6µgøã÷ÁzSlf%ÛJ¶]™Ó©IÒÉ;ÓIÞOÎ\Ü+¹àòP 6jcͳV'Iþ>É·|Ϩ$ÉÊÐêüþß àò,ü>ȯåøÃÈÏßGÕຠŽ?~×€‹«þþÎíÀWüñ»â¦Foú@®sÑÙVf|’™Þ5I¶ÏÔ©Ï{%O  ÔÆ=O’øö÷¿þÛß~MòÓO?eà¾×zoÔùý¿,®u€>øö[õñŸý/ß~þ3ï:Àšê\×ðèJÌí±iXÓ¸Y»oœuÐÙV†${÷®Irt>'*I2¾Bû+¸ƒ…‚šþ$ÊŸ~û‡ø‡øþíÛ·¾Pë=¨óûw:x¨Á·ÿé•ã?û_òãŸ=' fз<ûÑï2úáP[Éh{«L<ÉAçXS/IŽÞ{Ÿz­½òɩϮ¬M{½@ì€M \~ø1ÿüë·ß~ýžü›?%5Ã:¿ÿwìA³^ÙÐXõí·Êñú_òóŸsž*ý™ P`«OÖ€Úõ>+ɰ‡ƒ5ýµ÷SÜ@r¡³óóßV’¬°Î±_Ÿ©üöC&ÚÚ:@Ÿ›GeV’ÿ—äOI¾}O’ü”äÕI~ø$ŸñÜÊ•|í¸è—=üíïøò“ðWÿ”µ×¹ à¸PuxÖèÊ\+g©1¸qs»=(îëÔ¨Þó‡ß¾×Éû§ÓõY™Þ¼óÛo™å¡î}ÁTN¢Ç©$É÷¿üåïÿù·þé‡ßþù‡ïù!ßv^#Ù¿ßÔ H¦æIª6l_öÚðÇß¾×\®kkÔn@ èËêG쪜5Mƒ¡G dêT²ýøþož•Ζä=ïÎÌúöÛ¯§8ý²¨|Y'ç|—$ù)ùË÷?ýó?|ÿöoýç¾'INL5.+Yjœ§6üñ·ï0µ;úÈÜ 6l7¬}UÉ‹Tv}]#k¡Ûƒë‚ΩœdûÃÏ^É+§’éì–o¿ýšúýZÙëTÍ+y®/[ÏJò-ùËÏúùç|ûùŸÿþï“üœ£Î^ßñ@bF¶kÚs=Àû;ÌËœE[ƒ›ÚpãÂà`0=uÖëµA½Ý.u.¹èí®•$ÉT®ž$ßþ%9+™YÿþoW%ïãK}¾m×>ò_ü˯I’$I’$I¾'òÛooÜÃJŒZ‡Y}õè¹Ö\ýt:s9úp¹©ËÚM\cÍEps©®Ë“óìËsš\µ½LõÑý¹äÕëÛ¿d÷Ê~¿ù÷»$W»kÿÍÖCþ‹ù5ß~øSò=ßó-?%ÉŸ~úáó’ß~  3Ð[T¹( éìÚ’Wòw+á¬Á¦ks¸ærSà6lpÃ~pdo5$¸ÔEæAm€EŽN@û—³ûÓûÈ¿ÿÛ’PzÿõÆÝù¿ý˯ɷüô?$ÿS’$?üðýóÙùùߌKƒšªçd,¨a½sû럶¦chÏÐ=6*x`°’9š}4¸„›€ÚE¾në8¶úö/YÙ+Çú÷Ë»öEÏú3|Éñ/¿æ[~øû$ÿòÃ?üøÛ¯ßò-[~þ5àRÇ*야2^ýV畜àzè½6¨)èÆ‹yg£²­äÒ?}•5_¾°ÁÚ\ÖëÛ¯I’Ÿ’~ûí·o¿ýößýå?&I’$Ûkþú·ïɸpÀ½Nl<¨ üõOÙ4ÌãI½5AÓàÜ(½õg@nù~z2ë‡Ixl¥äÛ¯?%É·üð§Ÿÿá·?ýöëÿý/ÿ1I’ü)Øôåb˜õó÷dÖÂŽÚÛ:_2®˜MϬèŸþ~³. P:w'èÝ€  Pà¾7 µ¡·ì¹+ÿúy¿cýiÚÁÚ ß~Mç$ù–ßþù·o¿ýößýå?&I’þ€Mï>˜Éÿö{Ò¯ì~M¦7£¬£÷é¡Í½FÏUµ×üþ§Ÿ6ÏU@éäéu¸0®ÃAAÏ­¡ÏÚ¨ÁFÊÞnõí—$¹W&©™@mð¬_"g%ùéOù5ÿ&?þöëÚÖ¬w²7jzXózûùûû¨Þ79]ëÐ9k\²ŸÌUû湞€Îf½XP ’Œ>ì^Ó¬¨÷ËEÙ¨¨Á¡·©lsߊúý¯I¯{½OÓÜú¡[%É•Ýc °y€×€ý²~þž3ËäôŒKz÷©¸TÄe¹{ öfP(PÉ ×ô{¸r•Ã…¹A}5ê,×Úà¢þú×ýʧÀ8öµ¾ÿ)TNo=ÀºÜ( ùö_ý’ œžLÔáz:#õ“E†¯@ï?ü# ô Ð2@'7nûé¯ôpe¯¯œÊ¡§ÇC¨M këÍÚô82ýköî¼’Ôà>.Hàî$?%<ýéñêpêX?Oðà‰ýU«óΑÊÓÌÍ¡mП?ü£k5Ô¿ÏÅÊW ^èTþ\zÖž×ÓY[Û¾Õ€~ÕgàÇ?ël[•óyïg%»5ÐQ‡g…¡Óýö…JÎþ  |fýü=I ”¼æ¡“¼Ô~¨Ý¸é êce[@nPWà¡sU\ýêó¤W"Ö×]^Qè €Ê<þðßV%b½öºwÎZ9I—Æõ.póã?¬í¶Z…+SYog@NË@' ûba6¨£k½2 P*unÙîÌÓxxÝŸô'×Í•C&=.*Éypüá;I½%IöÔ+¯Ù•w]°27¸m*ðW¿ãBíNŽ­*³2µkX^òªfuÆú W²ÙnÀÚ¦ƒ~íʱ2€Út>IÂ~T¬÷¬):¸°×Ù?þ™ç–ÊNÞÓýÉ«ö;]ɦ3ànkÔøÃ?Ay:Üz– eú\À…Ñ“Y»Fà7lÁÊ0ÀçèÌ€…Þ§s¬xšEugä¸ëà‹ô×Àõ`ÇÈÞ—¶rwfòч§?Ç­]½l¨s@îÞ¬ÑýÊôÚýAÉ@Ô 8ž±ö©wܨ#‡›­Ç @%9j€ýTòžû¥}Õë}ú£“˺|ÎKí 8èÖµ¯ª©¤V'{ésÕ›]ã°F: ï«X£3TæÚ°{­‹jÀ}ðž§²ï®IöÕp€ÎXô<•¤‹[å£Oé«’sÑ k³ÉY_-™ zu¸j³v'É;™ÚýI^¯Ìî©l.îêT°u,p9À†ëó©:¹ €ìéÇB€Îx¸4 >G‚ ês²õÒù~Їó°QIò‰¼6hkj[Ÿ£6½{$ü'ÿñ7Pg\³p× ¬íM žÛ½özÀÉ97x½_ùñ—meÜ4@©¯|β2xV«SïÃUÉX ¯¾“œ·ùl¨¡¾Ÿ$³²×©ì®d>ç¾>Ûk“é±Îå?ù¸:\Ûîr?Ð#,¶Ú@.õ:¨¹!Iþí/Ûʸk»­ç•ϳ2Ü+Qw½w½ëðNöÊ(rkP2*Éšd×ÑÏêdÒ{eËaM'ü'ÿq€Š«w ¸ëá¬×fp¸ŸÚÄ—x€Ê®½€ p’üøËö×Û±x®>Ö+Ÿ$ƒµŽzô^ïIŽ\_“×Ê ëWöãZye’¼s®Ï^X½;››55$çw¿bðû_Fí¬lÌÍbáÂ…°P€Ú•©@J¾ýë=Ü)±^Ùë³§Ôd×çRÓëè ®'I2è:àˆke2O’ä6Q¯£+GÑ=œÚj¸ë÷¿l¼>Ð4àÂÍó  ÀÉQ€•¿{ôüu^¸¤„ÊéÍÒ“#OÙ¡uÁõÔ;g –°ï©ƒ§^W2™•|òwˆzm%:ùéÔV¿ÿåF*70¼GAqƒÏ êÀYQÙ¨zÖ{ÀâE%nZÏ)QG—êȱ—w=uï:Ü<+™L%§cÃ<¥2pùáØÜøý¯7jÐj»{ïèl·b½Pù;.“a.¸Qs}rz¬‡•2§n½Á•;Çš *ÿÕŸp–׆K`çÐûïüô׿~ÿöOàVðó¨VöÊf½´;Vz¯×ñ–c½^ËG¥‡Áæuòy?+Ék×<+ûšdìü´5®õÓÔfÉßá@} }êZ±“SÉYÙÐjÿñÏЯÙ@ Lz¯üôû_óã?ÀÏÀhì•éܽ¥Þ[¡÷Y[d×ëUëZÛñòð,j°’$;9Ià½=è2t}ûU:ûÒ?mô.ž j¯|Ôô𬣰ppáZ(׸U½Nå§ 8zÖü<°`¬ 5ê=N¡“¥²×Yïm%ó‰íÐõéÀ•$yå O'CmmTýük½ÖY œõÓ&ÉÐÙ¨5+PzzX¹àYܨÁ…åø’úáû,=k~ŸÁ:Ÿm5Ö®w«UIÔç$+ÙSñy;ú½û3€$É'}*Ÿƒ¹é­³Çtýé×­ôf}9Tò:Ø =×íØk»:`mnÔ°R•ÊO°`ÍšŸ‡àÂ~ÖqÕkÖÀ¥æR+Éá•$ÉQ¹6Wgj7y'IârÝÖÀ£’dê“mú5èãNª¾í¼÷oÿrœg¹·O€[ßSÔŽk®ÔÀš¯¬T²€k'/ †eÉêÀ¶š­7G£Žä=M[‘\7ÝÔ ·Úûp\ë¶Sn}=é$ +kÔ æKò¿ûÅTòí×£€upî3kV4*s¸¨Á:`%ÉLpÁÛW’ p»£ f<½ì‚£v5µ×L’ÎΩw«ìΩmè4žZ¯±œDržÛy$@οúcí¤/k Ö¡Fmë·Úp‹ 5Ô}À\àáÛµ&É€î£Oç=\@:®¶ß3I’d*Ùµ§²{¬ £“ýzÉt²“³n[ç%¢ø’ý¯þgý<ùžË£†Ê¡Sƒ~ÃUÛýÜËT¸`ØÝ•­Õ\7ƒ I>¸ œ¡7ÛlJºŽgÕÁ—ì$ÙO}ËÞ9‰¶NõóûàžJH%ï•$§ñé¼êø¼^ÿõÿk]Ir¨‚ Ï¡¦ñTp•ûf¶VŽb“|½W7£NW×ܼrW ¬³"€ À 7îË#Þ§fõ©³}’w*·õ={e}xn°Ý òa$‘œ»I’­_ƒÊ‡•|Îûðj`•dí>3äîÙu:Óï­Y 65<`µ§^}4ëIb£kðØ7èý±²+Ivrvõ+V¶•/9T¯ÌzxÝèUÍJ²vç3+§ê³k'y¿F?î­rdq_5P;Dm¨¡ÿŽõpÝ]^¹ þæÏþ&cýï_o¨~ƒ5¬C×î÷'—ê·ì\¬È†5{GMe³­¸“$d%ɰ᪠×Iê\ú§œõt¶ujOr:ÉÞkÏ-¡Þ‡ú$`ЯO×°ÝNgÔWm>?ô ø³ÐÐÿС£ÔÜ`]„ÞÇ®P›YÕcßrpwg™V™ª-qg'Gíî$›«†âYj¼’³Ng['9’ÓIö~nd|ùº¸g7<´m÷ ”ge×~¶†Oz`m+pQÿOxèÁu .ÀÅzØÇcóÚŒzŸY-· }ôhkÓG¿w':[6×ÚI²u·þ òÊ9^›º’½’d'I¤?I2@=êL'ûèÖÚú<°ðål É]»>»^µ­JöJ&‰MjÓ‡+ÃmX{ÕS[ås¸Qõ¿¬é·ÀMö Ô_°nKQ™zë̓%_«çÅÉWL%{>ƒsø‚É/XÉîÁÚõ~'©ÝɬäÈ+9Ôaa¬lÔ>`•¯ýTNµë~TN¿‡Ç(7kÀÀ_àPÛ¥XQy½7”Ì:õÕË^ÉÜt* ¼ ` pÑÊÊé£?ŸäóN’ùÚŸìNŽ˜`mÌÁ…÷¸ìMÝj[džOŽ>ÝàPÜ>SÉWౡ¸€ Ø ~hu.•×\ƒªÇ¡{´Õg5xE• ¨×ÔO§þ¼¾e:Iö;ŸÌz%BŸjm´…÷X6ŠÚžÇWR³W\ToªÙ¨Þ¸ÎrÀ`â€ßàÞh¢¢*Ù5à<ÎýȪYIBà&6µi€êô'yŸJ’¼å•ä•Oæ¶"ÔÖn=®þjÍ6.ðÊymOæÁwѯ/µ²K1žb÷ Ö àŠü74Kå–œ»X׳çNꕬ•°FœKm.àú$ßþK«×¿gÖ|’‘<årz.gÊX9Æ@oºgØ@áÜ•'™×g€ÚÉgè•«‡ÃƒÛU36 `§€ë½ßç‘CÍͦ¼¦¦wÏ h¯œ5jh 9ëÇò´?~Ïk¥’±’žË©\LíKgË6×ú  _Ø¥¼“ã•=d,rj?¬u]ÔÁÅE bpësžwz°ë#Cë¼§Õôë\*l5z¼Ó?ÿ“­~þ~²RÉéwÒÓs§jPŸW s5@o½Ój€¼’W‚ì¡«r:•[gã n*àÀ­öó>½¬õ™÷ÐçZ§ÕÉpÈQûî­X°|9ýã/³êýó÷W’Jïš5ýz½÷z­yP¬§è¶Wgt2ܵis:Yq°;á©ä`±>»äÔ\¸ 6(Ðàj÷ôJ Ъú<ÏõTr w…5pÝŸí}®bmë•zE5²súÔ®sÁÚÖZû¢zè¡¶ë’õ:Ëg{¸ÁzKfùd«ý®Œx¬>䘞¶Ô@×ų “L\êR_sêôŽš{è:n@½íëf  |}ÃÕ‰p¬}±r’Üú€µ½&¯µ 4°^9÷uÝz¬Á:ê}ú]ýbjê•e • ¨ ²àpázL“DʃÎéô÷@-5àKÅqPXàY*Q·õN'®ß½zÖ ³ê8ú¬-y¬K¿2X_Ñ› ¬sõç­fs_²;Ôp.•û¸Œ^3zWrÖW”õQSù¤3k €ˆH¦†µa<+›Gú¸z|™5K¿?Ý3è÷'_Áµ6œÎ:÷ÑS/Ôa2×3‡Ú¸¡§Ï_|µ¹nøl§ÙŸäxPÎgº÷åKvÅ:°N@$`¸X¨Cèd¥VNèCgV§öå÷¿ Ú5 $™ÛÉ<6d,ôÔ¨é5¬ôЮKpMS©Ïö°“Oë Ë£÷Ãi.{ë¬SŸ!À <:™1Tr®•é$Ù•LgÍš ~ÿË¡7ûµ À¸hm½’­Áƒ¹q[d—Mà¾ñ|½ùÿ„Ç<—nç™ w=һ؀:Ð[Æ»4h:˜h&ƒù ólLí|môº?ù;(Qpªë'4 Ø9P *š@§Ðµ ñPø78pÔz¤º©òu)`,@ppæP·Ù]½­îµ`ÎKe3ûÒW­™,§D6pÅtFãª$É9“$]ên$÷4Œ—W Ìnƪ4Œ4Œ´AµŽá ŒØc4ê8/c—ls æed·³e« FÏH@mÀáªgÁUÉ#•$¹Uê±fr›ÔËo–qkx dφªÇ:€jœ@µ*#ÛpÔr28\àÄX€8¨—çóom¬A6f¦ÃHVL’®À1ÍØØÌ]i8Õœ¨Œä±ªI’•át,jgÍaA­U€€Ûf} î F@TÔ­G%lŽƒÂ¾8ÁÉ© þ§oß~gáÍ À\fÌTÖ2M›«ú^ËØ”­p\sîب$Y«údûâÎ ªµP7Ô[`µ¡Œ¤ló-¨“Ðjܓκ ˜¸'xÓ\Tkü«oß~ àZc]3k¦²ÊDPŒ¥v+©ûfì™t&ê–dZ!ƒñh`ìµ6Ð õh*0V³XÕh€ÉlÌ•$s¤pŽ‹, ÔüíÛï( ÌŒ]ëÈx3³³iY€ª´é¾æv™÷$&P #Y•`3ïTgî7'¶ƒJƒÃëà„ÚÆ®ûɼu`÷[¤VAnL-˜k&™¹=hô¸ƒ†S™õà¿}û[à@.ÀXŒóš;›ÇÜ€±f›˜Ûì¡Ç£ FÒ•4˸õÁHF’‚ŠÑÌæ€ûH€±fõµ+}`…Kõžë| •ŒI_d; 03@n_ º©×/ÀESñ@vmsŒÃ@mÀ½O…Ê’Ýuk0’¥Ò,(Æ=# Ì¢'àD µ³y“5IÝWs,€£OóÆQ÷Æ-…ÉÈ À»úª0š?úîǪ—³Šêܵ•Z XpmfF™v ’vŒµ“›ÑEÆ>fS‡j–ƒ\# Ø:ÉQ=cjU[=z)‡ŒìÑîf&lÛlôµ®sá@ê¹U õþйѠppŒI%‘¬¸4µs¸ŽStÀÌÆÜfòÍ5Žùò1+³gÔª‘žµÖÅ `ÏÄ\Úe¨FƒÊ.ëª]={ìÚÔvÕz¶£²ævÊ2Ð@Å×0¨l]¨  Ídõk*Ì\”ªZÜÖÈ^¨d3²«F°þìùñ°¯ê™}Ž{–~¤O ÀØs%SÝn¹ofàv É›]æ8¸˜ÙÜŒ´º7³E.€Ù@åD-À¶%Éš Š]Áã oÂBF:•,Fß#Y üÙ‡÷ÓuZ£Ï=*jWTÈf¤±-ªaæÀ}‡Ì•P jsŽ4k.4f‹Hƒ IƒÔ2$#ÉiŒ†7ÁÀQc»¡Î«AcœÈm;R·ôðÓ¯?<jné±ç>Γ0Á´°Ø[e]#Õ 9¨±U[r]’njí⋳)\λÙ ˜ œ€ó„je[YÆ\×eÕ†ÁH‹ÃQœÌ4€.m¤s?Ü;8r_IÔ_|ûýwÿËLZZÍ傘®t²–²cƒíRì¹l×Ì:™;–ÂU@a¬ñx´‹jͶQÖ78©Ô®Ê²¯sÇX£¡Á¼gsQfºŽ(°p ÉãÖ3ÀÌý%ïzüÅ·ßýÉÿ2’¾f_NÜW5LÚLâÖ›± 'ˆë,*KKÏ àt-FWf°@Z7œŽãTà°\åffŸ×|ë< {®^]ro€f•½FW˜i·$ŸÖüŸ¿ýî'?Þ³:™£-`®UÀav…í à<÷è1Ъ¢=“±µN×h¨+¨åíÀ¹À™†j`4Àõ0·ŒÊ>#o]sã°Æª½p¿c¨…n£UÉ=Éšý&7#ô·nÉ»×ñíw?ùÛ‘t2G[˜·G6(S…HÙŒb.‡QôP}Ö=Éæ… j¹ª§¶N– ¬.ª’ËÜø¥Í<€±Æ‚ Õs«È*´Ì$I»ÅÿöwÀ•ð“ÿýwÒ* 8A-@©ÚãÖ=Ï‘^͸Ðö±€Ñ¦™Û5·êÉ6év€[WÃ<×Y.œF€ZÅ¿ÉF%‡kÏ¥Ò³Î0Tº¸¨5'€$yyÍ=)Z þòwÀHŒ¿ø»ßUIjŸ8Ô£Ù‡~ôZ#­äþf»¸FÕ¦™ÛÞiGÕ£{;½.–“£@FukþäÇõÓ-÷xd¯Zà ͹ç bp 1A%Fò)‹ Œ»ž_ë Òd¡¨43.kf-ó±Ô‚êÆªß~|´ëJ̽ÀLr¾ÉLHÔ Ìvœ•üÉÏ/À¥ú>¨½ªúã2©GnkÖj9±8N1ÚqÁ躵E=hêž%I–CT)õåëÆ4ÚÈâÛQ÷ërUvcŒã¤€j¿ý˜û¼vcÏæÊz“}¡‘Ö¡óÞת,0ö=Çò'?.£Í™²jÙfjaô±£kƒZœØ¦ÜßeY€jÞÄ?|Ý­X­²–Ò˜Š¹ÝÖ>αh0pTœÔo?fìlj¬±áIÙPÙlÅe¶K½k¨× •\æø“—Ñι.*Àæ,šjòµß@¨…jyÉ®,€p‚ÚÕ[z˜]GÝR«˜ ɲîkŒHÃHsº6ÿIn™‹J³Ò#·Üv ¨`¡Øçjàd6€'¨óRkT-PÈWÔ'{ækîY} '®cKÌ…ž‡¶¨û½]f–Q먦0Ò°íúO•D×­ÍG\ÕlSõži`3¼iŽj Pû˜ F+£Jõr8Þ,ù ú|ÓX€H^ÞmYªa¤Ò8öšm[ÀhŽJ.0²¼!޾Æ9î '<€º56þ“q‹Új_Œ{Oâàhp¨f.ÿ]Õ Ã5®Àï9ÀI$É–¥@E5Œ5—˜Àèê!i…c.“Rc5ÞB-jÐþ“Ñ0n£:©¤Ø(p?m¨Ö(˜ó2u {Œèé€sÞšÑÒmÊ^.£ÁÈ¥Pëº%ɸ;Áèa$ÉRæíê‘æõȾÞ$°1’åäçp1²˜I˜,füùϰ¸€ Çló±Ì'µ @î•Ól…k6fË^cUöiš‹¹Ôv”uÕÒÉkëJ×9“dQg%ffƃðÈš•@zŒdÃÏ•óý;0zô\%ÀŸÿŒ梡ªeUóè Ô£j².¨œæ6p¦‹C%»öí¾(³‰£ö9ÇY¼KÕcÏõ¶ö¼§²`Ží3@g[6¤³sOãçÀ¨Í@½¾4Àº,µÖŠ?ÿh À\Œ¬¢n‰æ¼-Í2dŸ$&ι ’<ö¼%ÛlÔK;²3¶±Ý*W’Û&×Ìc'ÙS–2öÜ®ºg‡±çž6T§÷èÑø9šÑ˜ÙüÑÀ±àœ½ýÓFU”06Ô (Ó#1We/­OCúšo*`sÑÊH¶½+É=?®-IV®e2“ÍØ3Ifö…Š‘¼½¥Þ¾Y`F’mƒ:F, ØŒ ç›´?þ¯0dÀyÞ0Á©Àf¤QuK?rÜç®ì…ìÖLv-µÚ PËëǬDrOã»/.É2û8F3“$I:½¹÷âí|ì™­í‹ã×Lm *£ßÄmQÍ…¨9\•Ü›?þ¯0š¼Y´êãÖ Ö¥îÉœ’$)ëÁ9“žw·lNÀ–$Ù•=“f¾ö#IÃx‹1²1“{ÒÙ c&™Û1²Ûš™î}lT²FnŽÆ 8cŸsÏ…?þ¯jSk›9Ò@À¼·å‰ù¨Ì="ÉMn co]QË9àR] éÊΆ9sW*Y5Ð$ËHrOŸ³9F?zþù[ÄH­’ËL´‘ÀmÎ æÁ0kÍ[|ý£_üWT›ÍÞ`H3²ë_ÿ~Pôy˜ãÔ*gI"Vz®qÛ‹!•®}j#Ûr@])nê‘ÜfZe§i¸ò1Ûø³ä¾Ö¨ÍÛ7t>ü 3yÜI¯,kô<8™7”\óm­ç}û0sé“Ê>þõïjÕ€ÑÉ·fB’•5ÞdSH8)w{i‡“q« =nI5•ÛØæº%YÃg9’lfÒ+9{»okäÃϨdß²¯™´ÄLsT3 ôRx“–5ÖŒëùGßþ+0Û™`0ydû?ÿ~ .€ÕÙ ÚQ0×È2f°A/¤w· µæm]ɾ5fÛÒõ’ÑÕ3=óš¬zý˜Û^¥³ç>ù!˜‰$¹eÄLSLsi¨´sš‹S"óÖõü£of»?hÈÎÎö¯¿œ8Ocƒ=ßm¼å˜ºb‡šZ5ukÛ ¢´É¸­™,ã˜Ù\¼¹·$ëÊž™l5Iâ|sŸÞÌ÷A¥velúªmn¸¯œ2ú¤2ÚéËa„ÙéoõõÄÐÇYÞ^“ÂØÔ.“S;@Œtµ±n÷®ÊÊÂÉ…‰=\¸ro»’m錮ä%IÏæ˜yÙ}H}Õ±Ò—×4Cm÷,Ì‘‘À’…Š©¢²1šÙYßê+8ÍBm€¤]üäo°{6i¨–•`XG« Õ¨…gR+·dwÏ>›êÑ•$·ìÙŒ‘lŒ>Ιž+»Xkz¹7åMTÌ1“4FôQ9µ dÜÆ‚¹ÖìÜ¿ÕW§±p¢6 ^CÚOu¤$5Ó89éÞš¨e¢p0³kGlF_¨·»z&ëM%­t²™3oÏÄì©Ú9÷×4¸TÖàIÒ³« Ô†[d­ù!ù—ú:. ¨ Þ^•Ø“±ÀLF#MPs·À4–Ñ¥¶=8µ7Tç¾Ó…£É{$ë8*G%«Öès&3­ŒÇ-Ý•%«Ú¾FrÛ‹Ùi¨÷,0só›Ÿ=¯jNÔ[¨¥Òjó~±¯ÊÆ¢ÎÒpúéóç0¾ûù”î cQÛ*h—Úã(¨žcõªp3;»’eß³Ô¾*‹5ÛHòXš6r¿*y¬Ê¶+—ä±½åTé 㨚¹~ó³§b]²GãK}\ªG°ÎÊßcÁLWðÓçÏQã§! ´†ÕŒey‹6[¦Õ³—TZ5ÕF’dܳԾnYjÍÔ#IådîkÜ`Ö6kÍd&É6]yp[`ê:~ó³'Î5oIº91²ºÚH°Œl`.˜Ù•?}þÀøé ªi˜úÜ5ÖÞ禺g›YÌXÇý¶{–tß’$É>*;îI¶®ìÙI²t(˜c-öÈ#I’åP}VeÀ- {Ö^N ¿ù¿ÿd®™dϤ¡6ØiìUY`ŒÅÉÜe3 FzôÀ¡€Áˆ‘<’Æ9˜Ù+îGîÍøîçz$¹ç–dé)l]Ù#éÑ«û¢îÉ0ïIR¹g­±Ôò&AÝæÂªº÷ºôÁ¿ûØßô\#Éšùp‡±1[½NÀŸ5Ž ç3³ç½Í¢6 ìz¹5×5ä¶.œä¶FÖÜC¾û9uIòqUÜfrKš$k¤Éª'Ì´µ”9w¹ÞÞöë~VÏ4ê–†±²èkðûØßFe$É}æC vq³±i ÑŒÀ08gCÏ5z®œÆV9‡ì‘]•æœYÉ:I–¹Ì¬ë*ùî?´z¬=rKÒõ–=k$]3¹%iFªê¤{]¨å0“¬¹÷e(zNP£ ¨÷ñö­zv’ÜgÞgljS£ÍFp6ÀÈÂŽ‚ €Ñ£gSWÎr•}=’[‡y빓Çʘ©™Õ#ûÍfäѪgݲeCG²·J’$o©,@eźm¡–¹æ-F²qP,0Ô[j_óù›gíÓL3W½KíØËhªÁPÀmãO¿ýã›}ˆÚ€<6÷n—\µ¬9’{vv­qË2soÌJº’Ff’>«’ûÃLÓ6À^9¯Ú®ÅèÑ[›I8@" öÕÔ‡oŽ7½FšŸöìM=ÔÙs5T@A`‚b,üé·¬û®Fq. Ë}ÄØÎ£Mˈ£I’Ç{$ÛHZͨuÉf’ÌMr_•ôÉ äaöi/#Í>UocÀ:r|øÆÌZcñozf#0¨€«6þôÛ?)ÙXÍǔʲ-‹[ÚŒqORm$ÙŒÕB3¬‘Ä&É£’FÌÎÝØ©ÝFútTUïÊɺšƒ Õ`Ü|øæ:ÇâäÏnÉ¢²,c ¨†Ó…?ýöÿÚjMåapÌu𛬙$Y¨lÆ:Lk…=¡ÍŽÓ9³Æªd$aÔâ0e;Ž£õÀ  ­Æ[° ¨=ºv-f§OüŸþÖ¥ÀŒuªXG ð“_}ûççó¯û3€Z•e ýH’u%I’t­šék˜êv›£©mÁ•ªÖý¸ïù)GŞͼ¥ÓºÕ}ÑØN€a1ÔÚ£¥'c Ѐ?ùÕ·úðã/û3àc9­Ž™N¬Ê#Y3a©låìê$­nëWF æ:·ä]XÖìÓ¼eM¶¨5¶€lÀ‘ Ô2–Ù³á¶`¤(´ŸüêÛï?<ÿú·ÿ±91ºö1³Ó¶ÊJz&íª¹£ÚdI6°÷HÃÜc%÷ä%={®ÙÙ—T­J@í† ÀX\K-³gÔ6 p¨4¡Î €¼üêÛ?}÷ãóùqpûÐ'£™¤Öé0’s&H²j,Yæ#÷M%c›P½ŽJ’å(µ*kvB;j Æ¤ja,ŠÕŽ­ÚÌÕP ᬪ3^þö\GYИöÁÉlfW®7`${f#É2ŽrËm¦’±êNÁ˜IÂÀÙÿ}', ö 4MpÀX`4.Åh º¡–™ÕÞl@ãý_q`¶‹€Á†Ãl‡U'F²fB=²É¢¶°+µæ¢n{d6…’$Q7ÔÌš°-À™ P h€Ãb.àÄص®ÕµÞv½üG`¶Àa,˜çeJúBn¹%íÔs‘ÕjËuëŠ16³lT×&IòÖF¥ç‡_{ÍX.æT ,ÀR –Í4N€CT€¹NXµçø¸Áh€Ã\†c’>«¤çížö†CÓÔž{¤³q0—‘µ´Ù{Ëü÷ß¾}›[mæ2«Ghp`¤± …F%'ôÉyŽ h€±6©U & vÝöñf©ôáÈ:—É5ÓéÚšÆ88Inû¤˜YÒWµ«º–#ÒŒuåüöí¿ÌÑÒj›që ‰E#j±ªµL HÐ ˜  À‰al8( vÝö¼mY±d£.3+éÚN$‹2Òízl’,ÆZóßûömtW6Ìì¹]µ˜F59UsŽÅä@™ëL8©¬¨ðhèyΆü_U(æXF޳¯¹³{Ùu7Ò3à'¿úG,왨„“¨«ºUö#y÷üå·D-0×<&`„(TfÆÃá‚™®Í±Nj[‚f-Ç`¾6d(Ç ·=$»öˆd›F—e3ÒׄìÓŸüê©®ÛÚ•¤ä2ÙJ¾F^nýò-×hÀš{níN› @f VEíƪ¦¢£1¸Þ.®ºPþìÃÏN¤cm}xÜr“Z•ºå– Û²Fz^t%íO~õ:^ó¶WÁ)¡–¶ª«ùxIË·Œju´>®ÙWp— à<”Á›ÛéTœjãPöYí@3³ ¨Ñò¡O¬ƒ&€Z Ö¼[’ô鸜爙æM²ýɯþ±gmÔ- U N¾Ì´÷ß"›î±çƃ‹º«gæu¨Ù0{¬:al Œu´ùú¡'Âh4¬3‰eîq¿U’¬é{Ï!é+}ëzskαàT0²`Éå:£iÀHòªÒΙu¬¤§zì¸Þ„Ñåb4ÃÄ\º¶'md-p˜oç6­(Àóž[–}Íd©${l]Û-I̤sa<€¡Ô-`ž3ÙŽ1gm0“Ø8G–™è£²À ƒºõ1pÀÌ ã®Âêõg³Ì뺜 àà00’UC2²qËÈX·®åqKeÍäJŒ“s,€jõhpÎŒTŽ‘á-6ÌäUÌu“™Í,Õ NÀ¦:Œ¬FÌTŽu,0FڔܳØ5ï9æ=YrO%3¶±Xc˜=²À53’8F†·8a&émì18F6Sv7Àý±Ø €ƒ7u;Õ0²p0Òfj½ .0B$™Œ­ÒǼçk’:ÎdæÖÔØT =’¨FÏ$ £gg¸ƒjó‘Ts1œ#Yõ=@õHŒûD`pœ‚4€R-€ ëâ8°yÜ"Éj3§ÑIò5 I÷a×vUÉß@3“d/³oëÖîjæãõnpšo½3}~ Æu7º&'Pû4ÑX@œ86 f3óH¬™½Í´z$+_“´]IŒ»]»öHrÉrÐ$ɾŽÙ9kɃê‹ùHÔªíäÍ}f]ŸÎf§À‘Z(0úd‘{ã<@µs N0›$‰®5·ÀHVžIŸ#¬y3:ûêó˜Àá–‘l£mf’ Œû4ÂZÀLºrVC'IÞ½ü:÷$yý˜ä]'_àÈýÀà 8 °©‹±uôF“$Á5[um㊗_?¶1Ò£ç½G²k¹ßî«6û4’,ÀæjfÒ3ª©$÷¼Ïë_üKòòõ»çóùùù|¾y>ŸN*‰qkP=ÚáBátÛêêÀ@ ’Û–$Ôç¬~ùee_YFÏž3YµaaÄÌVÛ8©ÉpžM0“µó¨fdÖ=y÷ü‹I¾ûúéóóùõù|~yÿáù¡æ˜ë|“]M;`;ß,8¹FgŸµ8Ø€JƒËé ‰$[qÌ6ç~ùu²Ï¨Ñó–$»r*$j©‹2“ ¼‘ÌD=’ñ>_þí¿¼äåÇ÷Ÿ>ýòáù|æù|ÞóÖ±zΆózjÆhT›'N¨à¼çÁ‚] \PɈ$1îŽzœ"½™©$Ï¹í³€+c¥ŽZj$™·ÍX•$Iòš¤ë»ž÷|>Ÿ_óòõùüòñûçóùéå—/_?ýüáÓI²x{OúPjÊÈôÆ턲í´@A½…Ê1¸ÀØõ$YéìkÍ¥÷Lj&Ä-õ‹©{ßI¶c,÷–=³ve3W%I’¾~üúÜóùüåoó|þÃóùõÃóù|>ŸÏçóùüúò|÷òéË»$ïÒpNSé €Ãy˜8fZ-˜ãæÔLà`Œæz8qÜ pN€j·ÇŽ[’ì¬ìÚÕ®ÎÊ-É=É-õå_jSIÝŒì1Ú}{W2cöcŸûöúñ5Éëçw¯/¯?~÷áËožßþîùëçóËóù|>¿>ŸÏç§¾¾~ùòãçÞ%ÉG‡Ê4°™¹aRÁIÕZP``,`î‘["ÙÉšI26}³¬$™vÖ/þ¥öÉÜó~;oWÚ1VUKfÔ•}J:ï’$ï>½÷áû÷ϯ¿üíožÏx>¿~~>ŸÏ/žÏçóÃ×—¯ï¿|þòþ%I#iK=à8Ú 63 ¨>]àBÓ\p6ÔÂÀ0×@¥gä¾ÇmÕX·d?º²âÌš={\!•$yI’äåǗϾ|÷áùùù|>ŸÏç/þùùËþÅóùüåóù|>ŸÏÏç×ïŸÏçó}>%I²jeæQ›z›u¬ùŒ›‰ TÏë8ß4u[c«=²ÀäÃh€EÝ“=åM’TÞô0-µY¥zÜÓn•$Iòúþýû|ÿòáó÷?|þòýóù|>ÿáùÛ_ÿâ¿þåoù¿þ‡çóù|>??Ÿ_žß}ùð̧O“$YIÞfÔF²FâM/ÔéèS{ì¡°Î025,c´Ãp6X€€ (Ð&FC:I¡¹÷-÷}È*µÆ-I’—$yÍË»—/_¾|÷áë—çóù|>Ÿ¿ü‡çßýó¯û|þòù|>ŸÏ¯Ïçó맯Ÿ¿fs ] '6kdÆM’$ÉžI’$I’$IžIò%Iòîãë§w?¼ûôòõÓ§÷_Þz>?}~>ŸÏçóù|>ŸÏçóù|¾ÿúõ»çóÓǼûþóKÞ%Ir[æ£—Š¹*IÖQÙ(€ÊÖµIê¾Î‰¥¶±GÃ,µ f-Ñf’ÄûÏçóùùù|>ŸÏÏ>?ŸÏç×çóëóù|>¿=ŸÏçóùüúñýw/¾|þúüðîãË»ä5y—äëÛÚÆšovö0ö*Ž£{Þ œs,Éc>޲à¸À°/‡ƒqÔX #ÒõòW`ö ¨¥ +ÙÀÈU{$k$IâÓ×ÏÏç×çóˇ¯Ïç×çû÷ϯŸŸŸŸ_žÏçóùíù|>ÿ×OŸ¿¼Ïûf­]€™ž{$I’$Þ}~>ŸÏÏçóóóùþù×çóùõù|~x>ŸÏoÏçóùÛ/Ÿ¿¾{÷úúáëçç—ï_?}÷ñc’$Éjë™(€‹fžÐóÂad½éºÉXÆ#ÀyºµÃL–‘¿³O'˜Hjs:gzì™${&‰çûçóóóóóëç÷>}|Ÿ×/_’|þñÃùð|>ó|ùš$ùîcò.I’wI’$ÉU[­·39'ö°³Â\À@àÙ§zȆƙ$É=M’¯ÖP{<–ê™ÊÙ(ÛXyÜû‘†7I’d%Iî#I’$Ù#IòéS¾¾y—ä%yÿÞóù‹?|ùòîǾ{þ$I^“$ëšòöØ·}o’ï?öLIî™c]C®«¶ÊžIÒdæJÖ[µá;6ófôl3°‘$Ÿ^L–™[žÙ•$·´YIv£‹ù¶-+I’U—‘ÉëÇ—ç×¼~Lòòúñó§ç×÷ÏçI><øú|>ŸÏçóùåûçóùå³ß>ý/Ÿß?_òõýûÞ¿K^ó1ÉžK­ªÅÆÈû÷ÄLz$Ñ9•dîÙ%ÙÀÌ=ÀNgš݌¬‡$/ßJ’‘{¿{º%kÜ÷ÅeVòØ8U'´±U¸=’dÕ>ëõËK>½¾¼¾yyÿúñݧ×w>~zÿýÇ||ÿþÝççóù|~÷åý÷><ßøÞóù‹?¼ÿòîùþûïßýwI’$™ ÎV æ‡äJI’I«Õj&Ù3½GöIe¤’l'pe÷æ:‡ã4G,Œd$_>½üU’$§Ê®Œu´-’Gs'`lgŽžÉHV]Ãˇäݧ—Ï?æõ]ÞååÝ×ï^ÞÿüúùÇäåÃó‡Ïç—ç—ÏÏïÞ??<ßöùå]v2“$I2“$yY»@-¸frŸcnIr$=¶Ea&éŒ9î{î^•ÇmªìëB-YékH•$Iòúýók¯Ÿ>üþùåõý¿û_“$IòCòš5’$¿ùô.Ifþj$i‹¼I÷$“$yy&ɾ"$ÉË÷“5“ä‘$Ùk¾d$I²“ìÚIì}\Ç9Œ{L=w%Iö|$ÀI­ãÍÌ=É6’dm#p$ÙÌŒuVNÒN³ÖT‡S%W%;Ç›$Ékòš÷_ŸÏ¼|y>?<Ÿï¿ÿþ¿ÿøòš$Ék^Þ½Ûãå5yýÍ—gò1yùÛ‘×·De&ÉÇ|÷þ}>'ùòþëK’ìž}©~$9Qç88fæb.ÖLÒÙ÷¬¹I¾Ì³î+mŸ{$ÙY³ç6Æ6“d•‘¬÷6Õ6“{š¬}1׸ßúMæ-Cí>ÎÊš3é­’•ä}Þ½}>¿>¿|xÿþÓ×/_øòï~Ÿ$I’3^³G^ÞåÝo¾~É»¼ËË_¼þ𸶑|L~xyÿÝÇóš|úúcÞ%Ib ’Í¥æ@eg1ûd&9»öX•e$·Õ«•½"I’ûšk6àI›D%©Ûz«‹ì£ÚHi3f›e&Aí®UY3I¶JÖ¯yyÿî‡÷ŸŸï?¼ÿüùÃçç‡÷ïñûw/ï>æõc^_v}|÷7ã%Yó7¿ýš|J¾û1_Þ%YI’¼¾Ë—|úøîãKÞþú1IÒÜ’…CŽAÝ’Å\‹7é'髲Œì…K’TR‰ñº ÚÜãvKz¤ÖΣ×iô®™í¶Æw?¶·FÒ’m&ù÷ÿŸN’äå¿~þâÛßýê7ÿ噼{ùþS’—¼KbÌU3oÙ#F’ä‘Åqœãþæ†Ê×J¢^÷uÔh&  ĉl(0vÃY÷¾\l»zQÌJ"ÉÞ=Ò°¨ž’ÔLd§¶,3;é6÷øîDzGfeïÊÛ+ÿþë$I^>üöù«ßþÃ?ÿ—¿{¾y}y}÷ú1ù”•d/5Þ:’Äø•$él\à̧zMΙ£1Óë à ®pÇè†ûÜc H%qKViô&M’ÛÜ[²¯Ç>çRI²bîûw?öa®#£’=®™üÿïõš$ï^~ñ믿úöw¿ü—ÿýùîã»—÷ïò>/y·’ì¥FúšIŒ¿êÊšIp\ù¾²GÏ—`àÀÅÇ92zaÝ{´æìê§Ü’t²1Ò›µUof’änÝ=ÚØm$ke<’ï~\s'É–d$É_ÿçõ!yÍëˇçóù|þúÏ/yI’—$ïÒsÍ,FŒ™µë˜IpŒFÞUvõȆ 8aNpj€£©ìÛ²ÐoçBmÇÈ¢+do§cîYaEÁL’{5º²+m$K’仿{~yÿ}¾Kò1Ékòác~óÌóõË/¿ú§ä}’·œÎ:Õ8Œ>±˜ÕÇ|,`&¸ ŒÍ[ÕFi@ÝÚ ª ,4dHš¬¼üxÏw?f3“®Ü–y¿™K%3˕ܒf<’„Š\3mÔÆqŸoç-qê¸Ý›µ=*5ì™u&V-Æw?Øæ‚–ÛØ’$ëPɪ=\mvÊŸ}eñù9¸X·¨†‹Ó)cÁ¦ñá À\ãåC’仿-ê±Mwã/~Ÿ|÷ü˜Ü*sÙoÖaÄÜj%33i<¾fg¸ælU ’óÈâ‹J͹™u&IcŒs,gÁ1, ’ÄL’µçc欴ÙFgÖŸýøë¿gÌpô½ªa6®úÍ#{ÔB`$IÞÊJ›ºîÿÍ’ï¾¼Kî®Z¶l‰Œ­¶qÎiüÑ×ì¬sŽ'ÀÜÇÌV›ƒqÓy*¯S™ÉƸ/N­c>öÜ#IòÈš÷o²ÖXF­dŸàøQùdé·jaœ°}3× 3IãR}¢ÒGoÞþñ’ïž“ûÅå­Ê:.3>UõšÀO¾fWVmî±8F% ¸ ê5{¾9’ ÷EǛƚ=sÛ#÷½f«±T’u®3Émý÷-Îq œƒú¶?i3I“9º¶Z˜/¯¹f:]¹«û=]¡öÿ×仯_§uÙFúXf¬$ð“¯Ù²ê¨·çÌÚ‡•ít€ÚàÏÞgÏ<.c«¡6Ü“$É=;›û–$«¸ê–8àø{®7fö†ãàø&*i˜Ø 5ó1ûk_•ôH²ØÎõ‡Ìï~LÒcÏÇ^ÇyÍd(TöHÃHך¹GƒìÒÐàܰFz&ÝÌtÒæí ±$=3F’Ü’d%¹­ÕY0n™] þüˆ7«0p¦6ÀüMÔV}°Ë ØæmfÍäÃÏ®å2ÿ⹿~üøq¼­‘lNF—Éæ#3¼Sûx“Ç=.Fê&µ«nF5†ì¬ÊËLšJ#ËñØ428“=²fz$I’=s_ÙI¯ÉØsÕÆŸ?ƒZÕ®ÉH¤/`~ûãvžËNc[(²é‘ìùòá‘6øWx—ï~Ì®Û-ã±×º¨·GÏg3’dÁø8Wݶºª ÍQñXû¶o·mÜ{Ѳ³Ìuœæ=Ç¥’uO›i\lˆ9z&k$I’=÷LöÈìôØŽ?~ä@÷â⤒ʮã7¯Eõ74\Œ¿©ÕT« îÉxýð²üñòúé‡d¼­}¾I/0zÕTjæÑ˜¹çžU{ÖÊ ŽkLã¼jÛ×›•^ô‘¼y[cŽÀH’¬Ôɲ֨$É;I²’$÷ÉÊöéÿÙ˜‹æäÄÜË5Ô3ÔÆ\pb›Å=éªò¡‡«òš|—uHÌæÔŒ[6‹êì™Z0rË6öXrÔxKÕjŸÉâš»M%,Y¬- ²Ç=Y•$ÉšÉ:Ç=í‘$Ù`6Ø#ào–¹«OÔlºÖ¡Oˆzùš”.ä±GF’Õs9T%I>îô|Äâ€êDzN‡±WÝÓš»z1FV‚&IêÑfvm`æöaô¡=Óeî±`Ö=Ò<$·|LrÏI’®$=’Y«º`6ÌQÛXC-Ø×i`WœKÔË»¬‰†¹OIÒª^?&¯¡bpÀÅX›Ó̲ d×}Ç!É=“…c>Ò0Ó!Ì4°¡Ì=@Ýf¿i–d'I’$kïM’$\€ÙÜzÖm©V4sô\° Õœ'Æ!*_³'Ô…n—SîIc&/“/ÙZ‡³¹°‚Ún}5ï=.×Á=̬ëªk¦0ÓáæxlxÓ¶¹{¬ªé±ÎV[™¹çH’ìNƺ’d%Žpæ[ ÕK=ÔÒTÖtbãåD¥›o…$ 4Å5î $yùúé5ÉÅilçL + zFzl×1Ö‘M5Geͼ3j PI`,'f›=Ò¬Çc¼Uª!ŒÊJ’ô豓Ú+ɲf’ÎyõhÈ[Ш; ö¾fð\xt5ßJãÍ‚QËTåÑ.•”S’÷?¾ËǗܪ™Û™}n ²Þ¬Å2¨¬ÚÙÇX‚à0ºòVâ& 3I+£ÁncW¸õØœªÆ#Ù•5z®™½W’mͬ³Ž  ó-àP àÜÒç žÓ\ip•@-£õV­<êJŽS’—¯_ÉÃÐû²²ECeY‹eÞ›ìžIf+*ð–ÚÌ8¬óíŒ* Ænf;P˜«z4À‘d»Ò•=gnIjËÌÂ!8€ÿ®Á·ô‰ƒ'ómõv-£ÕºP×¼Ç%É_üókþòÛ^èuŽ=¶±€>Ï0ö˜i¦Ñ¹åºÝ“µP‘ƒ6!=ÒæÈ«ºSpœMPû€±«1AÞ&ó¶æ4“û™[öY‘5óPÛòGØÀŸ7üùÏ€dƒ1ƒuÖ‚ÍX£±qÍCFþí>¾ûËoÿf–ÍL6 ’Û#5+Û°ZmôŒ z[8$;klÌ3iàâ:TfSÕµÖÑô5’d'cŸfÙj×c®¹§uñßüaÿ};Í_ÿ=d;!y‡¦aö0êê¨æâ¢nŒ[Ú0+ñ‡wùËoÿ˜6³g¨m«†eæ±Üî{ưTH’Î}ϳû‚Ù†d;Ç­’t͡ҨzÜ÷܆ÍÙ#+kgW}†K%·[ÏdÁ¿ýÃ~Ú­Tó?ü=ЖË&y9Á…šMå œŒf÷={,©üÅ¿|ýø—ßþ¿›‘ÊZœÔÝìùhÙ3=´=ïK’[’ `ÚC²¸÷Èc%¯nP´<¶é({œÌ •$¹­JÝö¼ÍjWz8”ú·Ø ÿ¼O@á¯ÿTkÆ>TÞ™‹qÀÌBŠ´Ó5¯Ù¶dÿñï³þô÷ŵ]Ýcd©%I¶™¤²+I’^³5FVÝÛ9zæÎ†Óüðs*[½üÇ71—‘ãPZ×ã÷$æX•`<¶™G3™€MÞcYð×?ã¶d,§ÊŠ“ÑP=ÖÂXÕŽq ’ýÇ¿‹ÿöŸò–fŽlµjÜHfn#=’‘ôÆóvT&ÀÌ‚êÃ1?üe¼üDZûa®jZPi•$ɪM +Àív#½9ý÷àȹ/'ÝqÁ°.hΫœ¨ÖÊF$ùŸ~—õ§ÿ´Žp,Æ¢`d©eÍÿŸ —Ñ‹Š$ÿâwÙþŸ–“ à¾À`9j©­.Ǽ%iF’¾œêIÌ0ºöuŒž¹Ó æÇ¯`ª?ÛèSÖXÛI,§ì‘[’d&0ÓÚ<\—ÐÀa¶N%Ym|ü%`WþoË0+gõätŽ Í€šÉ23>öŒ$Ÿ}ÚU ÂÍœ&ιdž4 @µÙ•]­¥Át‚šæÒ#µŽÚ§ÑJœæ slIÒI`n3ÛÚ=ª)/]ïëõ‹ç·üü»ççÏ·föõÆ0»œ*É=×ýú-‘¬×¿ Ø4 Œ`d ³u¦kî—… ®àp0;MmªÕ ôÌJf¶1“d_0[Ý–™ö²T›]o•ožßòóï€ÏŸo‹4ÀXe«$÷G>ÿõ¿MdŸ?ù´Õ€ê±ÆFÛ\µ¹Ìm2×™Å0ÚÉ|s1ÚYÍ…¾ÆNê–c&YÌ]UKÂl'³Ç‡zýâù-Ÿ×ê‹gÚ   `ËH’Ç¿~KŒQ¯Ÿ6 NzsÔcUÂP1ó`Ì4Œv5]˜m&s9Ç250×ÌLWæ>f’³+¹e»ÖuœœFäõÓùâ­øü»Ø×©Úml0›–äžÜòñÿšFm€ À\×2oµ+q¨…‘¨«­³æmŸõuõÎÌÙ3O»ÆŒ—$ ŒÕ’Ü’³k\èãA-ãuÀÜû¤$ÆÀÀ"(˜‹}Y•=“žé@mà€j'ÌÔÉm¨ÅXY8À V5¼,æJno ŒÑ³Srûd¯$I¯e¬óHrO˜8°®½e¼ÿ ÆÎòr[ë0ŒFAÁÏ6›UÙ3I’@m`âÐPÛ*Ìû¹+¹Õ¨ì³Ö\¸ÀyÒpÐ0Öa&Éw ½ÆX³—ÜëSV’<IrÛûºì‘$3.8jɱ¶ZÆû¯8ŒûµT?–cÀhÔ#'Õø£´ÍUY3™IÞ7çØðùW(cÀH0Ò1j×íõ»Rɵ0¶‘,€:ZÁh€9÷È×\,¹*£“ÌÌ$yìk$IrÏŒJcÁ¥‘_ü‡,€k'ò0A5<âæ­ë×oP+ÉL\8]_ü–DÍGk# ÌûÇ–]û³o·ùñ—¬ e$¹50zöòh#A«Kvn€±—ºuz1왤ÖL’$™P«ª1\à³ø ¸€* ª)µÀq¨æ×ßE%÷äËU8àåãW éùè [¯ÑPN[VíÏ¾ÛÆÇ¿iT%yä,šKµÅØWj7˜‹ÁYË=ÉÎ:UîV:IêÑÙ3éa¤Ñ°.Û‰ŸýÕäâètÀSÔ»V¿~*ż%I\|þw ;]ç AWúãªtíϾ¥~þ7»4z$I8Y‡“2Œ ¤O¸&ô¼çÝ(¹eϾ'!É#¤•Ú£mŸýÃo˜e\ÆQµ ¸¨,'~ýµbÜÒgÒï79?ý‡$ëTm)6Y ÌÙŒ…y«ºµ“û1’$ØÚºjÕÆÒNÄX&uÓ¨T³²“¬[’6“®•»Ùr{ì±…Kð[§ûˆÃ C¥¶Z3Œ€—Íçkc$¹'陨ÀOÿáßôyÓXpQ˜fרŒ_]¤9÷yrIro.È*ƒRlôÑÀA­s¨´Ãh‡6²ªO絯J’dË-k'Ûí+mÎm,À@ýâ?Î¥‡®Œ¬ó±TWú2ïP·Í¾XãPöL’¼$²Oøé?ü6£Í18MN éÃ\=þ¢Ô\®ëP0F’up¬¤{Q'8\ªºÖxŒ=²Šy”#=“¬[’$·þY×c×XŒNõ‹ßÝs[êµOŒdƒÛ­Ï˪´EƒÚm4|p¨‘ef';˼T«ŸþÃ?o`·€Ù'Õ0“¥Å،ٌ$¹o6n+\Úeœ§C“eÏÜnæö¼‹¹,I’äž$m&9U¯>ÅòÍ·£×ƒ÷ Æ®㞥Õ#Ýfg…ÚHoêm‘$Q›Ï¾ùJQÍå4ÁEŸó–w²T7õ¸'É6³Í‘¹Œ$w,€ •çIX#-Éã‘=7’G’‘$‹™µhÔé2ÚOþÛßmPqX,€koÀ!7'€ÚI¼~ÊI’{Dm>{þ—儃YËl ë´0niYª§Ú€e¬‘ä~P[F²^êVÜ4¨$®“€ž›dÏ$Ò¼d%I’,æšïª%÷Žõ÷¿[@ƒÍÅɾ¨…Ãl'€z$ñ³Oéñöúeö=¶Ûæ³_©v‚r›Kõ€c† f¿ëÙ€6Ö¸%÷a9Õ¸e¥î͸ºòa;N£ôÜܳGµF›©$Iîë0÷uǬlj©jŽŸü·¿m 8æB] ¡˜ÍnµÑ|™úɧôHò¶XlîY8«É2N Wíñ²3@-#I’ì$I’䞇©€J’Û6p·V¹'1’ÎÇH’äÞÓÜçmqr:à<™úü>ÿ •Ûí`6ÙÛn@í¤nÉmäõ}rë¼ €jƒa€—l8Ý‹/Þš8jI’$I’$Éž˜{&«=7Wµ¸/¹§‡‘Çíã3$crÙ0úæë úç_!Û¸£¯‹n—£öØuOòeÖ¾ à4zô^²éƒâ4ççÓlnÛHòþ-I¾ü×$É*ÀŒÊ³OªíÔ’ô0Rýñù–ä±G\We;0_h€àç_!‹Ú‡ÍA¥@í±+I’„#K§‹Z] EeŸ*·ƒª¦2ÒüÑß4[=â³$I’$I’·,,`RY³Oª&®™=’õñ™$I2©ucÂÁðòú€Àç_a.jã€ÃYY@Ѱ{Œ$IGú³økØWÝ’™$I’$ï¿üîÃ_~ÿ|~ó|ýâùüôÍóãóoŸß|óüÛçó»|ñ|~ñü:Éû×$I®ód5¸jÃp¡Öì[î ¹ÇÈ#É—“äždF;õIðãõ’7|þ&rP8A©…J2GòšŒâÈúƒÇ#AÜö9“$ï“$ù:û·ŸÏçóùÍó›çóù÷ÿøýÇožÏçÇçóù|>ŸÏÏOŸ¾~K¿&I’-÷®¬†Ê•Æ#Y³ŒžïÕ^•yô™$õˆ¹fÔ0fÿäÓá¤@ý˜úpŒ/ÞH j°ˆ2^ß'’äQ‹ðãï0ÒlÙçÜI’·$É×yÿÅóùüþÓóÓó›çóãó~~|>ŸŸžÏçóù|>¿üâùüæû¯_“I’¬3Iuñ象’={¶Û†£ç‡›½fRÆc™dôìm, ê'Ÿ¦ÓQ ~Ìø?sÆÂøøßvÕm@í¹Ì;€«¶Ê‡]I^³LlÿտÈѳ“$I’¼æõýŸýåû¿ýøÍóù|>ŸÏ/Ÿß?ÿþŸÏçóùüø|þãóùüôé›ç÷¿|K’$É2³Vedl\'l.5Œ÷Y5_²ëÁ2bôXf×O>-K-P?¦>eÀIãõ+Àé0š’mVNŽj*I'IFWþô»?ÿÍøø|>¿>ŸÏçóù|>ŸÏçóùü.I’·$¤“ì[:’íñ!5V’3s§%‰ Úl£ôqÛµS…£dûîq7zkmdm·}¸¶¤‹êwæ>-àúÉïÑÅ`¼c.ulª²_@ƒJÝrOvÓ¤’|ø«ßŒ÷ß?ŸŸžŸÏç×ß<ŸßúúûçóùþõÃ[òúá믳v’$Ù¨“J’U3o±_²Ë¼t¢bÜ÷=v ÍFõ”` ÒqÌ5²Ï$ 0–ƒÏ~Ï úÀlÐ:e蘀£6ÉN£©N^¿û¿ÿÇùÅÇçó›ç7Ï_~|>ŸÏß|>?½½½OÖ|ûÛ÷é™$I6ë0’d›IìÊÆêÜÒçEYc[4ÇÙcoæ½ÕàPé¬Áªž€˜­TVÏž}àÂ&?ù_Ù mÉ6ÆNp]¨®^—‹ã¥AÝ’J’4œuTòá¯þSÞý|¾=¿¾}÷ýûï¿þúo?¾=Ÿ_&oÉþ£÷yÍ-©$ÉÆh€‘$ûL»:µ¬—¬lœV-…ƒñ+ŒêÞ³—ã¨> «çHÈJ¯¹N§ÒG9?ù1ºÖQ;ïæzÙ0Ì<Ö1omÜÔ-I’¬¬MƒþÃÿ }ôᤲw¼\cóHÒsûxŒÜ6à˜I’$;èd»®ìZ©ä€µu±Á¸î=»ÆXs®G’¶säË_JCmÀ$iÀL»€ñh¼0ÚåœràX–JòH²'øÃÿd6“±*ÛIìZ$IÏuO«4#FfnIÞ-T'smÙçJ%ËQ·ÕHn=vœÌ£Ý³›ù@ÕIeeÍ?{ß—ÓL’Æxß 0ÍõeŒ56sï‰Z¨$IòNs?üg³UÖ9×HÛ*÷$¶“•ä6Wòx9çP™Y3IÄœ’ÙÌ󜩤I6$·Ç;ûZ'}‚«ç£çBôìª5w-vÿ,¿ät`1L•à4•´ÆÂõ%€Ñf›É8xÙʉËVIrÏj—ÅOÿƒÊz™fê±®‘$¡6F’$I'™{Þ7 Œd'I²e;@­Î# fö‰$Û|d{,.\%=8a0ûîœÙ3}`¨•œFj¿ìÙrrúéwËÏyNò.óvÇT0+uO96}8pÑe4Lfê±rO’0³3Ù3™¹%3If3`$I’~¤Êý&ÉÁÈ>©Nº’´±€«.ÅtÌÜû˜‡óêÙµÅÁQ+ >H·¤]þà?-?ÿ% r÷‰H^ßò„Ù  ¹%äžËÌb¬ž¹=2rK’$°¡’$+õ>*Ë ’ZÉžM-gÝ’°öæ¸=P=k3ijŸcd±]É|äÌ PÌ&ïàÿËÏ àÀHd´“ÅRšG¾Ï#pqÝ#=ÖHF®lÆîy»%/IrO’Æ-IzzŸ=I瑤ÑãÒIºvÝÛÅ­Õ¾æf+MM´Ñ‰ Ù#h06@À\jƒ?øOËÏ¿`31¹Òœs{£^ß²œÀm¸ÖHÖ;3U9“}QÙ³%$Y•¼î>ŽÀIµñ!I¶Ìe>’½áBö¼dGm€eXµ“>êpì‘í¶ó(õ õîp3àøü»e6Ç4Í6gò0/³CåCÕc‚£ÃlÎäÞfÜÛuKS‰)Ù·dçžý³·¾*‹Ú•G›>vŽÀ&I^z˜Ë1{„:%Y¨¶klµb¦çYŒf¶Ó™Ã¡ >Á<ÎÁíq°ð?ªͦçh^¦¤{îQ5 ¹ï$Aµ¹0\àäaô˜é“ó¶1rët’•¬Ü’Ïß–[o%•l³>vÔ”0÷l=z.Ž)µÆ=kl°+ º·Ê#ÉJ0Qí|À¥p¢>mYÇ€å`ŸÆgÌÑNÖ`$•ä&[:=Ä•d>¶Õ{¨j8u·=ƒZµOfÖšI2“¬‘1s›][µºgt|ì, ·0÷\–ËZ÷ µÝ“NÃ>¥ÖHÒÀØêŒÊ5,¨OKÆ Y«ýâ[€:¦S5æ1SY‡¥’ܦƒ™ä±æ²p*`ÞÒª—[Wרµ!ËJ²“d$y¾áR©º73½ €qºék®™5Öx¤¹²oAm`ÌÔ6g±óî‚ Yææ€Û'Œ>œ…}Û;üâ7ÀhæÁèÑcÌ‘ÇRI²ð’$‹ƒ± Œ>ŽtoÎùX²•3Ùµ‹‘6“dWöi&žÃEå‘,fzÕu`µçšcU'iŽÛ¶GC¡6PÙcô¼'{j n‰\/Ÿ¨6ÖHsòàÿp!Ô®›klR­’dŸ¥’dÁ¹ë@íªnû¥­éLÌà*ËUI’[öi<’çWhu_Wúœùðnôh/-F’kô茬y?÷aF(Cõn03÷9ÖÆbf.טŸ@u¥Á<ùãÿ8ªçšPïæýÖ›>k©$çÜ¥’dÕ²©Êîa[/*‹5ÆffÞnjõ§J’$m¬ùþù7ÚRf².É6P «¯3=zns’=\‹ŠåÀ¢ç}ŽzØÇL㜚\Ô'ª •nHó¿eP8ŒVj µ\#yŒUf’Äh·×â8¹˜û¨}¢Ö¸Í$Ivµcô‡flT–í/¿ÖÇÔÙPYTš‰Ú\@õl© *}¸Ôs ÿÛß@ÝjqÏvQ®†¹kIz$y~ÚÀê± FÁÑTíÜÚÁP{£Ú1“$I–q¿½¾ë¨½8?äµá¸8 öiՆʢfA½C¡ÀÁlYÇcA9)ÐÔsÃ}¬þð7P}„dsÂ;Hn»:I¶G^_?mà€}ÂØX(gmX…lÀL’{îT§µ1?f£6\àÐulYÕvÖ˜‹9z<‚Ú(ô c™}ËòØÀÙN€õ ´¶w«æô‡¿ê¼np¸%}VÉ=’9sõŧ·¥>¾mªÖÀIsU×q˲æ:8±cú„Zf’‘Ç×±¨OÙÔjÕÕ§ŸþÔ£©dS f׸¥ÏÊJÞMùòùáWÙpulelL Ö$k×ÃL’$}®ÆÔ/þów‹_¿u 4›±ljÍZ”qï‘X@5 IjfjÕÐÕ„‚±ïNÚªv­y£IGÍ¥’¤Í<ŸŸögßrVƒ³6gm² kpT1S© FÏ$I: µëÿùûUþú­sëV …ZjÃqÁ¬¦Œ$ywm4W5”#IŒû@),Àe]×!N€í± Õh •uŒ$i3Ïç‡ýÙ·³O€Z\c9\NF·™JíÇñH'I’]m4æøÅþnþõ[_}k.(¼¤ëPK[”ê‘=cصÉ-ïêgƒq¸,À´Æ¼ŒGŸpB«à–5’ìyó’ožŸögߢHîœ sh*Ke³G’žI’$«Æ>ê6¨Üÿô-‹¿L«“Ö(]‡ZÖ¹¨ì™ô?kŵ.0ÓÙVÝ9ÁŒ ê¹€£8'Y-¨ôL²FË÷?þøyýn|ñKHz>´äÑ çHnɇ$™É©¢+k®¬cÖûÅyÁX£9Oh‘l£k®6’d§áøù/MFl0VeŸÎ‹ºâõ{pÒ€j48²ôC2ó®æÞßüøãïŸß}ó6òñWÆèK±õ²®†Ém'IrÍ­Ò«4•=WÞÉ# PK32—´‘¬“Z3·ô5’dÅóó·&µ*1$Kk`Ô ”P¿€ódQÀZ¨‡v;I–ì/üñýþ˯ߒ¿¤Á9–'¬sP½è’l&k$I’<ö®¬#k N•}ds@­®wfvK2’œÔš:ë1êžd°ðù[_Ì5“jÍQÙk.ŽB-l ~ÀØœªƒsa®ÃdƒÛžI#ßüøãï?}ýýzŸ¿ê¶88f#Y0Ò3ɧä±gç±§qšøì»5ö%’Úh\«zJ²v²F²G7÷™-ÉÎX}‰ä‘[óHÉÅH3¼ãœ­6l >1öblÓ¼m¨®ºoœW·ãrc$íÊëóùa£’4ÐÇ(šÙ«’’$yM’Û2nYøì»=‚3ɦ{Ô#’<ÖÈÚYóFW²–¤Eú‚58§RM™Ô^8O¼ãeÃhNÆ“±q¬‘cÝÕ€Ú(¨¸okU’væõ¿þHÒà  ÕXšYIÒ I’÷’<²¼$Í…Ï>e4®Dn,‘Þ’½T2æR r_}VZè󘻖“jR=k9\Ò*d£Ò >1ÒMö¹Æöp®º›÷EÌû}_•×çë×iŒ¤\€jÒîÕ£’d;‘5“ý–$IsΜ.|öÝ]˜íÔ`Ž6MkJ­C7µÇ:»²jcsö%íÄQ!TºbU¥gT¶^·ê•ÆìÙ;€™†J] c©{_u_*¯Ï/³OÌdŸlP€Z÷æÑcí6¸'I2“$ÉbÞOÁX÷ô\ÀY T³o\ifÖè†0´A«O© FmùúÃåX£físQ?d/pbHpÀ³/Ô–ìêñhãêÞÌ,h㥳&T’$ÙI’dYŠ`¬Êž«Áª]}0ÒÌjç\Ž™ŽuÕrp0©gF×pŽRÑŒ÷±p‚ ”N£ª9Á\€Ùls£oiÁØü,& ¥‚.Æ-I²’•„jȩ™ê¨5j%µfÃìk$Ùµ×XN´‹z&ë|yýÔœƒ± >½à p0œ`ìÑ(³ùnÏ´4ÌÍÈà €Çi¨UI’$IjR73i@­Úó¶rߨ*K%I²œ4Ð.çí}Ò»¥^€ÑÇåDí«0E5—uÆ®.³gƒŽ‘±$EŽê,Æ .@_8™”Uyû$I6sq€‘4 võXVl\ “$ÕF»ôuX+5$œ®±€xnjàrpsÍãì±k™{¼;3 ÇÒÀµÙ3yM’$ë4nF›ÀHP›jë•Ö×l0“låè![`Œæ€cd‡s, žµ5`ô2nÙÀøÙš€£-ÓËž}•8P&¨EeÏ×¼%·$ém†ÒàI HÓæ^%Y`&y79ÀèÝ2ê¶ëD²À25}ª¤Ÿ¨¥Õ8[Ãáœãžjöl`´5jÍ[vŒÚ›8qhL/àn¼&Iòú÷¿OvµÀ5²O```®Æ\a,`$yÀì}‘™dÃXo'§¥éjÌÅà ŒV ùÔêj0ûåXµQI’YgkPŠèÊTŸ³1UÌ÷oI’ןìÙF GU²àä@¡eîé¸ ÄPÌeŽœ;í¥)àgÿ}õ„a<Ì] #u]|íÄxGŸ¸˜^¿ƒÑ^Ú¹À圷ÄÄxÿ–ŸêÖ À1[7€á€a~ñ–$yý_~Ÿ$kÔ-/N ncÁuº°ÕíZ².NäC²³€r¥²×±e,VµRùÁ ƒ±eWc®øªÑ>ûŠJ†NöÜÌ$}8ƒºH;a™cÝŽ'¬ZΊñþ-Iòúãï“ÜVݤÔÈ:0¶¦£® ]Ùœ€™d_µ@-ua¼c_Gæb$ÕŽùƒ«Û¬å\µ™>ñu-Ôè†Jq|öm\ ÃÞí3éù>¹=P m›  ¡šÚcPk¾«ôL’$|J²9ÍûªÑ`„ }€£ ¬=NWﱎÅ2 E²/µvmcö†­Úå 60•žæ¿ø/‡5W›¡Ð†õ† †ó°³NX`Ê @5µÔÂuŒ¥:[õHfrOÞç‘l˜} c1á*í¨ÆË×ä¤úÂ\cÁeöE™ÙuvíQ{¤km,XÐ}h9¯È¿ø/ó1Œ4`áò¯FŸvîë\²P ŒlGÝÚè‘$ï“™<’wŒë`ܳquµcnÎb`϶0ÇfšÙìÚKt ¸gçà¤`qq%íåÿô_®›¹˜Œæ_5¨9 sfÕ`´Ú4}·ô¸NæÚsÏ{’|ý!ÉGÀȪ™ÆÑ¨8ŽªÄF[€Z²×XYLÉzD[/[*nYTÝ=ÒÛX&s¡ªpš7ãý»Óõ¿ùí9F–1Óªyþ¬s;ÉB-' ^?-À±§ZÕFRI^“$IV-.Ë f–ÿúùK €™M€Ñ$I’ä}’¤ܲ“,ÈÉàË€Ù,EÚ9~òÊåTóþÆâªÆ>ª^X¨æÈ2SK—‘Ü’|Hòõ[²'Ž«'Œ·åÿ?7‹d380¨¼~H’¯_&ùj0³Ós3;‹ ÀÇ0t Ò¶ŸüX@“^ŽÚŽI££-`¼~ZpՌژ5“$yM’$ûĨ `fùøý//€ƒ5³À¦6`¼t%yM’¼%ɽËLs3oupxm.PÛ ~òª'—ïopÕ:`,pUûì[°o€ n•$I’äë$ óÞ£‘uýü­/Ëb•^š¹’ŒÝó–$=òú!ÉžI’mì‹ÔKâe¦Í8ÖÀlPm,À8|öé:ËZ0®,˜`ŽuÁ0ôTšÚj@mi˜If’{ò>É k¤5àÝ5òGúd¬A­ÕŽ™$I’/“Ú³’¾f{™Ž‹‘Ä-YFÞÉ1æéêlÆjc€åD½~Ê.Óh\`,à–ìFåÆeѨ/ÛXP `fAÝ÷IîÉ—IúT]› pd¼_à%NF¥’Ôý‘$Ù#o>¤¨ä˜Á`“4Q‡2‚ùÎ*/jãÄX̆®zý÷ÙÃpQí|Àr4Â=Ù¨9öصÆcÃe©P  *{$I’÷IÖ¡¸œ@sƒ™ÛÉèZ$©Ü’$»’×÷™Œ¬17($·®œu(#ÀbÁ 0`l&P΂êÔë§,jjæb´Ñƒ“$ •$.Ô®{p^:P+{¬$I’¤jµÑ¨#$I’$I’$I’%·s‚±\'Ø3í$yKòúú!ùðþo¿ÌÛPÍQ«*µç\¥UÆÎ¤Oª½oÔ8q@]ÿÍ·PŒ><–Ó‚‘>+»Ò ôë7U{ûéwëKuÀÀIF[MíÃ9nIV’GÅHÎ`,ÒÇéž$yŸ¼æÃûä}ò!².h–ó¸Ú¨ R ² ¥öi×’FÃÄÁå:ßÕ0NÀ¹jן~Ûœ¢šsçØô${n_ÿ sÕß­±0וÜûÀŒéŒ$‹™I6ã–$Y#IÞ’$ï“$ÉÉj×öò2’Û€±fnÝÝ\Ü“d©w&\ FÀp tÃy¤ÇWרcÁyuÛ¿øñ·=kÆš=ÓÀHFcv­–$ë8fîÉ#ɺÎ1²F’5“¼¾å5y{}Ÿ$I’T 3kd5œ`luk d&_/2ÛƒJC5'8ï Æ–6Ýp^çNÿñ¿­Õ3ÙP÷¶¦g™iPÀh\çLf’dfÏ$É:Ô=µÞ'IòöþÇ$ù:ùŒäÑFÁH’Ʀn .ºçÌë‡Åh´Í`°ÔÕP 8à°€±n §™ÜñãoéôÜn÷U=—“ÃQfí¹€¸5Œó‘$éJìdø­™$·$¯ÉkÞ'ydÏ‘${›`HÖx4¸P›ê ˜«’ï²Òp!;€m4Ɔ± ¡öaŒÇù œœu{¶j¹%Éõëß"[ŒªeÍ¥@mŒÖ €ÚÔ#ûÖs™m&=1[7v §wÇÌh¨ûÈ2ú%0öj¸ÀFÃU{ä‹ï>~…ÀX ,̼~ûÓø‘vÒÆsc:“¹¹-5 8ƽçÔv=4J5•¬êÑfçàžÚ˜­¨…ÙppKM›à ¨M5¤ögùÅw_|µßUà€±ÐÜ.Ðdý7ñÓ¿ÿ‘vª^ö¸-z,I¥Õb¦lãöØý] C5pÔ€Jö³ÍÎ#*3¨6g£v-* GU’ÕxɪA¡vNF¾øî‹¯Òæá„ÙTc,5àÀö“¿øé?ü¦GÚÉm›UK-éäjqTɱžé.IЀ;§™ìc¤“[Fj'÷Fúœ=\õn.ÆhØsd¡rÂË}­ ðÂÌßýÕ¿»LN'Œvi @ÁÕ®yËg?üìùíùø–È6{Ü:mî$™Wmg¸Ò`æþÅÛ# ¸jU²`t•¬«çWfnÆËíSvÝšÙ¨ÚUé MŽ=“eÈýµÆ¶ZN‡lLÔ®=^ßÿúßU7›j Æy- GŸsInùúèe¾¾í<²•cd1“g>$I²N3ï>{ËÇï–8ÆÉŒ¤QÉÒYæ óñuVu3•¥.GÛ›Œ•$›Ñ¹7.jÔ`66T×6¿þë®fn4@Æ~iÀh³äöõëã1ÍÏ·wÉ}ãUçL¾MrO².3Àü/¾k,0÷HÀc5*É:ß§Ï„ùú)»º™íhÔöÙû_ÿój€l\Àh³%•×oíi¾ÿø–dl%I¾IÒ#É}Ågoùø,°öÈ€*I’µ×L×=²«ß1›ë1²U[õÚ®´±ÏŒ$Ù˜ËÈrš{Ð\sƒjÚF>¾-)/æNrÛÆÈ_ÍÿË/Ïzg¿l†Ùïo=s.ŒävÎÇšŸ²k׆V8ÉXÀe,p¡qg%IöQé[’ÕklèÛžÙîY•ÚVFrÌ̤aYÆ;z&F­jf5Gzl¸6@Þ%™Öûó¿ûü×ÿdAueÔîRIî7Çu¦¹œT[`¶‰>Çä$µÜ—‘$k–Ó#{l*=sç±Ü³Že“¹I’[gdQ{fÚFòŽZÀèæÞª £€;`c4^“/SÛëó¿ûü×ÿälp¸ ®ÊÈhÙpÂ`PÌ c]x‰uÊ2óš,Ô>ä-9¸YÆzÉÓ×ÁX®™»™ôqX#}Ì r¤­™¼0râFÃÙ€­šãðe’·¿P÷õùßýѯ¿²@`OÙj÷HæÆä½j`™˜»Õ} f®ëX ÙXnI²ª±vÍ>n$=²®JÖL_ãÝYŒÜ/3iÕ]§P›d´™A…Ù¨Pùóߘ½8öi<à’¤‹J_fºM;ŠÜÛžµiŒ}1þüHÕµŒ{Ï{ÆÚe,ΙÜvüä¹ñGÿÝÒpß/åXý(˜«–Ë©>û\œ, @>ÕX¨wŒµTÖÈ¢KvE6&,É®e$òÎ1Íl{î¹ggm\p`4ÐfÖñÒ6c$Û"Ýœ‘4>ËÇ·÷I’d&I’äϾÎJÖLî6vG3@­J«>a×/~‹  äSí±°à¾U¨ì‘M¶™JºÔ:%I-#éô9Îd]c'IÖ>,Pm´Ã©¼» ª¹^ô–Iòu’=I’$ù:+¯IrÏ;,Ÿí—Tæ¦z‚úÅoOf0ò©öØ€85²ÉYŒm${´s€´$·íHY=$É‘$I²@› pÔ† €T8prŽþ<ù˜÷É—ï“=“÷I’ä/?ì$Ini³ãWc¤5Ø•‹ctÐÆ/~{2ÒPò©öønAŒj8%*;Yé±Ç=Im×èÆìÊ™Œ$é+F’=’UIÒPK¸0zã°kve<ÌeBeŸ^fú5©G’쑌•<’GöYI'ôØs—¬jìdd«nA©_üöx,ÀøÄgß5BCÖxý0rË2GÏGn—qëÑ-Æ®6“dít’ì$IC¥8¡öq0—k殹kxý¥Ù¨‘ÅÑ&M˜jlÔ£\Œkéò¿Ë}¾_ªÀ•Õ.7÷wöH’õñ«ÊG3É=k4P»šN€±Œû£Éª¬e›dT²© uK’] ˆÊ6æ:FZ=óÝÜI`ô5jÕNF¶Öü»$ÿoY0zC|þÕìù|>÷â(L½†Ê=IÖ¿ü'ë)I’5Z¶JVa`äÖP99F^² I¶‹…Ù¦JzΕd/ÌT’j]°ðN% `,T³ôÿ.É_ÿÓL3Œ†øü«Ùóÿýãï²¢’•dýÉ?©ç-Ù•Áe6ìk$ `ÜoíÅU£‘dI6ƒjI¶“å0ûˆJÖ1k&mRm,•T/9 TY”«ðÒªÒü»¤þäŸæmQ ÌeZðùW³ó¯þ—ß«‘ sçȺ'û¯ÿÉx&Ù•ÁenÔcñ¶Æ®ö0o£1²OÉâ –™ljš-*‰‘ûLEíªm¤§Œ½ÆrÀ¤â8N ƒZE¥çUsÿño™ýO³6˜- Kðó¯æÎ¿þÿýþª•cnFÖHò'ÿd>“­ö`šïà±,ÀrUk• pc‘…±@dfX'“$·ddæµ3’5˜m¤Õ8–a¦Z´ÙG^¿+òO³—ÚµgfÖšÉÊÌk¶‘ä-IÞòögßý/ü7ù|:¬±©6rs#ùù/Í÷É¡öqž60»T\¶¼á"±/Øëª fÎy3²^úœû„mä¶æ»j0³ŽñH`>T­¬ÕBnIkþõÿTMöØ3_¼-ôõ§$yý.k&ß’o™O¯ßúÿ„ÿ:›eižX·žÆÙh¬ó g7À¹ãèô"^ òöKîßGDÒ0‘@ñDã·€Ž#åÐèLT¼)UË«i]ݧêvç_Wh­Gþ÷ßÿ—Ä\5Öi0ö4ï¸gϽHV}p/‹±ÁÁÜpÀ0{´Ê¿ÄÉ@’^pIs}©‘=öQYi3`«•el`$Æ^8GSI¶&Ì®dÕc_ÿ‡ÿo…™‘äÿôe™Ÿ’äwß>~Iò×̼'_ßÿÆ#ÿÝ÷ÿÏÿî5ÚÜ'Ø‘=‹}Í&ÙÅ\. ÀÈc®VÉ¡ƒ;I§a4Ūµ8Y²H\*I›¢Ö\έNT¶™æÍs,êšÛXLgîŒljìãÿú¿ŒDòLòñË&Éû·/Ÿ’üö_åñã§OïŸÞÿÆÈ÷ýù`®ÉØ\0’$6ׯ@Æ2?þÏæ/¾1—ļgÏׯ߿ÿûóI*“ñìC3=Ï`r™#ªÅQY²û„†Ê2ÚL›[U’Ò³ËÜeV<³¢göܤǢJ³ig¥ëL5'Àp8“UsU’=ïç3å€ÀØ`[-óó¿ºUÿù‹™‘å4Íׯ߿ÿ§Z€Œdw­e&û˜Ycg d›I;Æhçûmý˜êêc›s˜ªï=3™m0wµDö[+skf°‚ÐT_{ßéÚF’¤²{®j`Ô‡£G¶±Œ_zòß¶™‘4³òúõû÷ÊÂè–‘,•eÈTIv3¯f¢²ï¤Û9ls×5îdžê±jܽfLõ|$mP³ç¦’«ÕŒËÁt:¨ªTƒBÀ[­]ij›I¢²Ç2«©Tu5ðÌ6Ö9’ôá/¾m³Ç3ɽ*¯×÷ïÿ>kTÏr% žŒÙ³G’À =³–ZC«ÝÆÈPY•ÎLÌŽGÏY˜þ2Ì5O³ TƒF §a§²¨î‘d²Y뀑`€ÂÈ®ªµfó¨U£gÚx¥+à0ï£Jõ0“‘¨,¼mT3ËXj$N®Ôæ85TöR éfÔæ:*.€cQ\êµ/0ž;ù`~Øp¨üµe™ Œì6;ÑópÔTÙªGF2+©œxÛ¨z.oÇ4¹R£—¨¬yZµ/ à0–Ù.€± Øj ;ƆùÈ^€-»–Û\€ôÖ¼6@ÝK=š>\f’Ǯ٠›U›‘u-œ’ÌæÈx.­²ÒtžN@Ël8– Õ@³ @5Ù`&»€¹»öØÌÙ€¥*É/y-f÷R'0sWTºžœÍ3{9’Ý8+ÉXH²¸¨¬ê®,PÙÕ.í/^ûmmnm`,¶>\401ž à¼Æ²€¬qÁ1g¨$éJ¢²OC©»¦±©­’´q²“{WÙTY»Ör$unT–ÎãÞ\TÖØ¦=Þ¿ÿ§3ÕÒ`,Ve[€Å Tš±à™¨Üà uïËÖ¢.˜Ç¼?¸+y_F>õ pê.Æ2cIp1;[YzZó¹·µT–icd‘½g»¨¬³ç|ÿßÿÓªÆ>I»0F`4pjÓÀóÃ…Ü6ŒÞ—c4Z`š÷v§‘,W¾t?7hjsË ó2“Õo=Úè3‹‘eDò¶O¨,S6#‹±÷É ²FKϼÿþOk,Ãuªpà³Îµ'pTšjpšƒCn'ì™™޹æ sޤ%y®ÚHêu0À4*Iµ,#1"ªOÏx •=˜Ï¶Ñò¡züô·ÿ~!M×·B-=çžÀŒ 0Ò€ªíñz« ,3‘å„kæq=ÀX€dCåùìÙ–}•5û\3Û¸7LìÛ‘ KS…ä¹O>€Ê>¼ÅHv²q`$Kì2ª7í¢ZüåÿF›w}ƒj®d5PŒ€†±ÁT“×U[7IeCõ:²®3 uü&ÍBfZ‘´4µ©;kö\3Ûû¤ ${-o5ÖèuvÎ>+ÕÎÓ[rxK3Ïdת…‘&.<ƒ GÍ“$?ýÏp*õ  œŒzôüæoà´ÁØfúel ¨$À\ÎÌd—‘¤öÆx,43ÉèÑÉÜÞvµ1@²ÓŠŒå6·V÷š0Œ­²YYε’]£ÊMlÓ‰ª& •<ø7pmV}§ÊLðÓ^€aüæ_6mæ~àÉÌæœ#÷ÖãKµ€ #ϱ}b¤É2Œ¶¸VîF­Ú*Y•¤gÖH6k, ‘÷FKÑh3+ÉnpfáB§™d¯v‚…ZZÚ[ ͉W§Aó!æ€Í…(«¹NÀH—ú—±/8PI¬ûÎ(f;Á•Z”9r˜YjOIBÆMG6É2Útf’=öf^ÜÒf’Õàâ 0i`.pà*¯û;€c&ÆXץͭVE»jNÀx®ƒÏqÊ^pàÊÈXã™1ÉÉy¬ƒLã™<ǽG’GÌÍÌb˜©l;»šš€2׌ÚŒpŽÕe&Ù pŒNÒÀl£ëàÕßMÀœ$ô1ÃÈö\sÂH[ãÙ§ùžÏ ‡ÅH%{fõIR㛹d<7sOÕ’×·Uaî™,€p<’Ñ VÄñêïÌ$¹×‚ê1ÒÆˆ¹¬o®s5j¶  VšÏ_`12’5²¤g¶«6Ž GþÏÙÇÙ{ÜÙtöȪžÉ5×âb´ë¼c1ÂéñÃÿT-í|½¾ÿù÷`9À¼N.PÉàÎ4oé= 0·cTêçœkέÊl¬4ÿ— ¼5GFÒ•UcÍçcUv-X¸ïI+©½‘<²ÆšÉ~[8Œc¸.œÏ f`þ7ÿÓXf;y}ÿóÿÀ>Ù ’…r9Æ@3=Ÿ@e.ƽëãi0Y3QÕ£¨•æóoÀ…qQ=ÂX…罓ԂœT’¾:Ïݶ–$‹‘ì· 'f²ëÁo~úÍuMêõë÷?ÿè@s‚;½ƽ± pÌÙ3 sަÒ4€,Y‡ñ¬¦•4Ÿ¿¬ cÈ®\j$¹“ '´Rõþsž+YdsŒ=³³“¼µUáän¸a¬:?üO3Êû÷Ú ŒÀâ•=5î ”:S' ŽôÈÂ4W6ÖÜ€ZêÞF `¤—Ï_zkµÑ´™CRÛ(ŒdõÈà‘ì¿ü”ôHŸ²¨Úcã”ä-sÕÝPÌÇyV;Fúü‹_ÿ ƒQ™0Mú<Óµ]ÆÍQ z\w½Í$}'ªGŸîíbÖ.Æ Çqœùeé9 FCåó«A5dõàâ<žKPI’9l£§ZT–CŒ, bÎ6@’ó±°gúÙ×¼0@eéßdíq§ô®ÎsOz&ɇ±©{æÜ¨®•v¬ìi¬'*™}®5×¹ŽÓ½P›&ùå0îV{±\§ZpᘜÀ)Ùˆì™p˜c_ªË1{  ²P-'f’T²AI²Í•>½ÿ¼ÌÌVY»¶¹=g’¬¤ç# cqTWv[Wr ˜ÌÅ8k™ß¾æ6n8Ï»ÕÂ|@Ø€‚\£++{&­ÂTÉeÞŒ8&¨,Ü-˜IvÝëm^ªïwÀ —ì™edv­Úk].ŒžI’ÙÆš¹3–A»RÙj¹aÜQjQû.³™ùü  ÏUŒ†`<‘¤ëÙ3IZmöê4à`Ž¥©pï>f²ר•.]3wÁ ûZcÍ<Ι¾å~¬ƒÍ-$I홑žI"q¸Ø•/k$IK’]Ç\ŒuHÞ¿åK’¤‘¢öl 1ªÏ>ªóÈR–‘ °{&Y™{&ÆB­ºûà„à™=öXo1›0òØÇœœ³çš‹ì¹6–cœ™{öLÜi™[ƪ}}ÿí§$a‚ÚU\ÉvGs•ÙG’ñÖÜTœ4§n´ZcOÀ¦$»ŒµŒ$•=–±ÆÌ>•mäJ§g•$iwîl3y&I’d¦©ff?eIF¶s® §+?}K2“ô1AmÕP«šÓ9“v²j8ͤeeÍ,›™eÉNžI’$I²Ì¥õÒlÂqb˜ÙjIÏ$ÙsÏ>8VgÏMjŸÌΊ™]I’¤“ÄbÏ$ùøËë§×kö:Tõ¼–ìD’¤¤¡òíë_£Ò.p໺jÍUém¾¾~|hY÷Î>wÍÜùɾ.#I’=“$ÉǯI’uÎ¥Úa¼ºÔ" M™ÙªgòÈ‘ŒdÏìU\Kv¢fz.s劑]I’t’äÄUÉǯ¿ûñõÓëUm<* ×i®I¾æ¡²¼~Ø0°H²ò|«ÒSýá—O÷hû¹’}^÷H²ã‘m$iHöL’¼'I2’gö\íP/ë­–J—3›NòGE%{d½µyU²³j¤ç2’Í[R3é‘<²A’|üñõÓëõÖ0“øô)Ù9K;\äõé_‚‰(pfך÷’Uù0Õë§o÷àb&ÆšÉÇd$É&ÉbˆçÌH²g:Fv$­’¿g>Z­B±u6Ï1’Ç®&Ù•<·=“$I²f«$_÷b&f’$_ÿëÿðÓëóëõz½^¯Ÿ^¯Ï¯96¿ƒ™D’ìL€N0Ÿ&¨­<âýôJ’t^O§À‰C% à„Z8j Ébͬ„Úd«ìÅlI¶Œ®6w`.FFÀX•$ ¾·®Ó °˜‰™$i#3ùëyGí+I>&ùôÃϯo__¯×ëϯ×ëõz½^¯Ï?½¾½¾~y½~y}Ì{¾&w’GŒu'®í͸wW.œ¸44@[%ɃѻO {ÜÉ6²c'µ ãžÐ•ÀÝɧ´Z¾«u:V˜÷bdn¨gÞ·±æa¦’÷oyÿù‡×ëõz½þðúþw¯×ëõ§×ëõzýôÓë•üü¼ªF»fÕq8ÁLÃÜã85V€ÒÔhX*ÝäÎãNö9ÆÚHÝþ2mÄ1²V-˜]ÃiÖgpßyÿ1ËÁ÷Vl€3÷ºŒ\¨6“¿2z¶ɧ¯Éן~ùüz½þð§_¿ÿá¯×¯¯×ë—×ç×·o_¿>“5`$TóAh÷›ÅX礻ƒ &ÉýÃy½~yýáOŸ_¯×¯¯?üÝ¿þõÏ|½þø‡×ëõ÷ßÿðz½^¯×ë—Ÿ¿½~|ÿ˜$k>’u’G’ä™1WÏý BÂG[eï4fгºçª0€JŒ °p¥’}0$M9êþá÷ŒÃQ=“4,Tf’$I’äó×|ÿñõúõõúãë××ëõúÓëO¯×¯÷þö?|{½^_^¯ß½~Ï#Ï$ÉJ’¹ã™ÕÉ3‰$¥’$ÉsÁqÁ6óÏa<{D]Àˆ¹F0µ@eW:äö–„ ¿ùÛÿtŒ0’Ç#kF„®…ó`I’$ï?æë×Ïùþz½^ÿðo_¯?üé¯×ßýá¯xýÃÿö¿|{½òÓ+¯ß[#ët˜Éª½ çHÖ[žÏ$W²Z=“$Iƒ [=cþys c´ Èè™d9ÿÛüw³•<òXu¢ ¬ N’$I>&ùñ§|ÿñõ‡__ø»?þ῾^ÿøúÓëõ·ÿúOøÓëóë—¼~y}«Sú•OWí éä™${d•N’$Ý`6ƪDþ ƒÉÆóÑשN€ÓxP[5L Œ¾fRÙ•då™DøÏÿö?æN6 Û#YWç‘$ùáç$I’W~øåõúå§Ÿ^¯o?¿^¯×ï^¿¼^¯×ÏI’$³/c¬äÈ×étÍŒ$IzŽì™t’$Þ|PIj¬ñØÎŽ`>ÓŽ\´jµ4(ÔV óÞ÷š3阙¿øõ#é‹4 –b$y¦“$Éÿ&=óœk}ÊæÀQ÷çé:e­͸;©ì‘u3$IÖxÄLí<’€±%É1ûä(ËÝœ®™í‚í 6Td³/ãÙó1˜éºz Œ|Ì3$IþÛo鑞Y€m=úÉ A5µ*±®™uÖ2wÒI²GbÆ5“$áÎ>“$q `,7NÙÙ.˜@sÂÁ:º6‡‘‘ ËYÔê`>Î ktŽ F¬k ’¬ÙŸ~—$ïÿÍÿ¼Œt=ò)µ²ÊÇ¿£À:+™«ªÇ܉™$I:ù`&IöÈžIÞ’$é*4Æòlc€5k¬ÚP™=a»0VÒÌÀ<@o¹/Ú90Ÿ¶Ê®®Üû”JŸ3Ù8X#¹ï@IÆÙ¤UõœI_ÉÙu$óCb&I’$ËL’$9çÊ~›I•ûZ¬ër¨>aÀ®4¸jÀû·¹Ó®Ë®*Y÷žëÞ² V²4ÇX-•=–Y8Ô‡±wö'F;©=.÷ªÎªÄY9jñ!kç“JÏNÖ\Ïì#ÏÙó)ù’$«ž†iîl}ÜF¨ Ž£öBŸpè¹/Ì lÞ_I–y›ÔH’GŸzÞY*×hcÏubXéy‹Ê®4ªkæ4’žó±Ò3ã>+e&Œ]{q˜;1šs©t’¬™ä™$ɺRI’•ôQc¦³¸òAöLÒÚ<޹Y(.ªU3œ×Xµ`[êýN²ÆŠê®óN’ ®}Ïm,Ze冷6Ÿ¢²æ†HOp2“ƒ\̱³dÔIKÖQ]iFÍž9g“ã0î$Ù•${f¬sŽ$ÉÎs1’;½ÈãÌ>“çBm8*í¦‡>ÕuŒ>.`;À ﯑ÝãN>ª63IÌ,Õ´;s_И›ó|Ô†…˜8ad_ó1ϨÑF¶$=žŸÒ£Ñ#ÍÈhf?#ÉÎ1–·d$œ‰TrgÕÚþŽ“äÃLcë2*IãÑ…Se]Õ¸²gFÆ£™½ÕŒdœæ*-y®¨'êùD±ŠÌ=³wTî5î~f¦=ÌÔÝËQÉyäîæ¹"ÉvÌ5³ælw¢²w#IîÄǾjf›iÆhu2³NŒÀ•€ÐÇáÛ¨¤'µZÏ5²æœþ2æžT²ÖRàp¨˜Y3*Îñìd¦ÕǬ‰G£’mŽÇæ4’ý–±Œ¬ÊkæQ¥ªWW2“$ý¹‡‘MšqSzYNæ k¬€3ÛQIÏfpgõ9ÖlsåÄi¦gªœç3¬³6#ÐöÉhc8ãƒ=“t%±û4ã¬$ûd.ZeYÕ;kÏ,#ËÉ1÷8Œd]!3™ýiÙ#iijMíî;§·5Æž `0«Ÿ»·z&w›\‰Ygó¹çªEV­¶zƒ±ñ66 €4'À<®äi&Yi’{W®ÚÊ\çÈΕlc«•GµÄHöì7’™Ð³'g-§ÍàZªA=ÌÇcŸ#yŽ4uê±ÌfÖó™;¬¤çªJîôHrÌñ9]Õïktm=š9Ì}b4‹(p –j#«fîì?'û<1²3ŒµG´ Õ\¸€¨\µSÉÇ/I²UföaÌ¥zÆUÉ2÷#YÙó»’¬Z›,#ç °’¾à~óm×Yss2˜ÏËY°öƒô™–=c,*+IÒ¨,Ù¹Œ3¹ûD¨¤@öµk$ï_’ì‹kf1›‘íº“–˜-KËVÉšî FVõ9’ìNœ5öøËʽǾÌ=³ïÅÕl8C²±ÍNt}K'½Ï˜w6* ÛÕYû " ' I_„ÐdS#ù!‰kdìçcUÌÌl*Y’=ï•ÑFI'YX#³ÚL’žœPµ9üå?åy`öÈý짃²kØ.Éfl³“Úã[Úx[Ö%­²àÀ³óÁÕôvÀ'Y88! 0?4€Bîn#yÿ’0“]Ï};+ •¹*kçÞ©>gžKžÉîÙì=÷ÀÙ3éÑÀ̳]~óÿÛ{Œ´š]ugÓqBm—xËV÷2zÎJ~{0žmYên ŒŽÚê^Õ*xº¨0@`WçÖfvvR’ì¹*ÙgrZÏgÆÞœÇÈVÖJvgIÒ°“Ǫ†K¶Çb4“YßÖ1rÅLßIOpÎ>Á8F[µk´st‘|{FâêDÏvŒ}ÁH®™=Æ9V5Òz¶±”n–†`nŒ»Í›y'«’Föx&8× `ä™=’ç’ñˆ‘¤“¼'[™‘5ª8T‹­Lf²ôsoµ“ë-‹Ëì:QÝ ²G«±Žj€Ô·¤’ÆóþàÂØ`fM9׈¥Dàà §ƒ`ƒfÍHöY¹{Ž;k,#gÛq¹ÆòH’d Ù#*‰‘$¹{ ¸X{ä¯{<ÓÇiÍg¶™;ûdÜ«]Fƒ‹Ñ0³Hª©åÒy~KF>L\Í4Œ=ŠãŠáàœ#Yˆ´,NÎZmÄpÀh³Ž*F²ê‰’êì¶ÌÑJ’¬$I’aî‘Ì$f’/‰9fk.ÀQ‰ñÌ¢ÆÎÞ#¹ëòœ‰fQcµS5€¹°ñlV¥zäÛž.… ×ø0Æ—Ñ'RÛ¨~$Éxr/@Á_üùß½qŽ0 Ìf>²ÆžÏdÙ«’]k`fÅ#›™$I’${&k$Ï$#’/Ü}î‘=ÒàXc{<“efÍ$yÆÌY}ÙXJµFZcScp³yËšÙC­Ù³©V™™{ÍÖã™uA`,€Æ_|ÿwg1€Ù%ÍÜç虑dKvÔÖ3‰ìlI’$+I’dIÏ$"ÙIœªk¤-ìõÜÆH²f’$Ï$·êidXõ£VSÎÑæÝó™dl*¹ä±ÏbdIǼùpPjøÏÿüï+6¨Ñî–Míópä±®9öc¹—Ê3R!ÙÉã™N²“$+=’[zfͤIË>$ã<8$ëɪR{$;ÉÉfÇÜ \§¡ÀlTT¢Ü;Éêüs¡#9Œìó²j$½B›püÅë÷[ª“teÏ}ŽG%z&©%a®Èž»fvÉÎcÏ$1’=Ó#k$Í[Öœq×XÈ5³Œ5$yôLòtum .\68RpqŽK I’¬5Í$¸HfT/3ËùÖ…h¨d㘠œ'ÛÈÈÊ®lÍØÃ%IŒ±²ûÊfÌ<’¬5“]I’™žÉ®tF²f²*!ÍtqÖóÙœêÛL’ì[Ày9Î pÔn`BÚõX¸j©=Ž·<ž=ÇsïÃs£Ú S%û™ÇÒ¨Z€¹T²a.àc›I²Õ>«iËNÒ+iº>îÒ•G’çÞÉ®$Ùç%I¤·dÍGž™áÄUÍYÏàl õe®‘}š‚êJíjàtÕLÀRÉaî{ÕV«vIân“ñlo$yÄÒ¨ *Ù0—NCÖLV²j_]­æ²d&Kž;ÊÖ*5“‘d×x&{®duzŸçš$µo ÏPÕc£¾N²`*ã–{ÁÒ.g-E ò0ãëîÚjÍ”$8õ1™æ4³Ç²ÔÆ® 6ð Ò ‡¶©žÏº“dUÒÅÛ™lÉ5•%f²“=’$I’fRyÍÎVä6Ì,zÜÌ6`Œ¬ueæGD@5ph¨æJÆú/¾ìÃVY$I3²ÆÎqôè$I’GW’dI’Ú÷Vµ²Æš #‹ TmÔX× {¬ÇV3mƒÓó:»ÀÝj¡4æž÷?æ‘Å̪»„}³]`dÕ|$Ÿ0@i°'t²~ósS¥%;‹‘5š9Ýé‘$Iz&I²F’$Éz:³Ò#É­¨ j¬1óÁn•ç1?3«6Nrž]`H Ö¨mæ­çûÿ3Ébvú ’¾7—ÑZ%ÏG?ò œpbðŒÇØc.æNòÜÕÇX`Ε÷™dÍ$IÖX3Ù33›‘¬Zwë Nf/”Zk$é½f²®‘žŽ‘=·f;Çn3›Í\‡žk~þ²:ÿå·$m.³!ßæ3P xKîmž?¬†ê°Ñ—O†À±73j«ÅÁÈLjWz°´S²T%3ɮ̙ì+’ûÃH%F¥¶|˜ÙŽ…>Òçâ€d{®)©\3s¯ô–fkN½TWÒ„lÒ3Ÿÿ‡H~Nâ˜ýÈ[½ÿþš›cã„ñ¥g;æçž0j¶¨Þ€±÷0S½Õ#É~nk§r¨ìˆÊN’]Û‘ìkŸ¹¤2ï$ÙÇì¹§±Á\޳ïV{˳ÍÜ飲æ–ÇlÏ6碤Uºý0¯ÏÿC’çoï„ñìj—Êﯹpá€ßüu•¾Þ>ßá0÷ €†9Ýç¾€±f9ãN×ãNöÜö‹,åc]U{&Ùn»’±ÎÑæš²“-ÇA’ÔÁhóFQY)&fž{>’MÅ̲ Çl£Kµ±çciçåùhþÅ—ôÈoW²Ìç:ê¿üýܰY¿ùÔ3ŸïPÉÀ¥)˜œœ0z$ŠIÞ_ÿ&Ùj©[ÉnóN¶9’d$ÛÌaÏd«5I’ ç¿ù#Ø#wËSs;Ë ó…Ê…äÏ]ûZjÕæ#5’;ÉÜÆì.õþ-Ùüó¿"­ïß0žÙöÛ6ÁÑëÀh³ÑuÞëHINÀLÞ_ÿ¬”«ÙuŒ$É~{<’5’ÅE²]Þ’­FÆNÀ´ð›Ÿ»Ò¨N¥>$ÙUdž[óY‹ Õû²®Zs—™$Iî;Yj¦©÷owÂ?ÿ+æ†÷ßCÍ=ö\`6.¼ÅLci T¯¬Î^¨#ÉëÛZi‡vžél™I’GÖ3ÙsÍ=7ó’°¬êÙIÀ ’ßü5žM‰£’,©ôu˜¯ÂhfY{fÏ­’δñl7Qï¿ç\þù_‘ÃØ~ómQ÷챰稬V0ÚlœÙŒ†"é¤QË}'y}Ës·cÆ%Éfî+Ir'IöØ#ÍLRÀ3}l05ò›¿qÖBIÔ¾Fú<™•vðb׆*ÓÙ§b$•žIbÎT©÷ߣýgMÌ‘þÍÏMÝ£ÓÒæ.€¸.8Õ©¼ÿ¬r •$|Êé…ÚçH’ìc$Ô}œÏ‡’´o#K²‹ÑçPQ=Úi¸Êx$ËT˜IÕž P¯œN…£f²†£RI’ì±ç^Þ#Å 0–9W"MFFž¸ªÁé¼0òL¾Œç¾F’$I²AÛ'µ$yì‘läÙÇéƒH™Õ—컚îKÝÆ\³I'‹±1’¾÷l Þ^a½-¨ìãrVòHë1rŽ$ù²æž»]o‡VF<ž{6óÎ-#ÉX@Ù  `Ê|&ïŸYFf’O3ÉͲjIRy&ó¹pˆ¤t©dõT[5Ùt­á˜é‘Åܨž«öhÞ ^A-˜ÙkUI¯föX#É×O+{†Ëͦ̅Q½NŒg›[’ìqOªU£eæ³ëÎ3I’|H’$#IN°-½ŒG’<×[T¨žjW2Α$¹jËfTkÞÒ¨V’±ç‡¹¯o][3ŽãâxÂLz¾ÖLÚnI2’$;Ip´‹KÓ0¬æ03‘ß&ë ªÑhƒ0×6I*II’T¥’] ãÞ’dÏô•öe4¼õØòÈžIf6yÿh‡c]I̲Ǫe¡ëƒ¾f6gî\I×ê™uÌ]IòÈrŒ<’…hÌÜ{,hšC-SÞ#?'é±€sÑTç°qg±è¹·Ñ¼%+ÉÇ/IH%l§©âªçHÖŒó™ #k´é8I’$[%ŸpR÷¦z'÷aªÊr¸v_³›·,pµ5^Ý#ËØ•ü˜d¬c$Ï,Ž™<æ"mj° ¿~’ocÏ8/Ì{£²ÙjÍçe,ÉLº’/I¹8Œcš—ÍØ£“6³]YÕ@µóy§fîd›yà¸Ìûb•îyÇÚKÙ.®Jh³C¸8뺲zlI’]Ù#IöaΑ]ij×øøc$¹ªŒŽÙõé:+ã‘ôe¬$sãÉã•9föÅUIš™kb¬áä<*Kú™‘ÜIÌ$§Ç‚ù!–ª¶#Æqáàƒ¹a´sä>qG½žI’,æ ok$ÉÒÎz¬7µgƒj*IäSö¸N×â¬;é o¿¥žI/.oI2ªÕH><3V­qc&Íu$µ/ÉB=’Zdá=ö¶%ÉžI’¯‰³™Y3}p—¸\j­¹’v/X0NÎz®Ž‘$yÃLcç|¤«Ï šÓØa,PgWÏ$%Ùæ¥f­1úÄü¹Ú¾²Ò'—äA··;ývÏͼ?02VcæÞW% $0»1YT’äc’$iŒ‘Tš¥1סÖx&aìÑÓv`q>ÑÏ'ÀL’/Y'Çü˜t}KÖZ‡lhµz¬ƒZ0î…™$’ì2€¢º¶2ÒPŸÎs=Ú…kî£0’–u0ÖÁȆ]‹dQM‚Zp2‡c_#ÉÊ3Éï+q¡=wŒE­Ñ3Ôc- ÛK­·ì$I­3‰Úcy$kŽÜÀG%Ò×¹˜óc?½f6À‰îáP'À؆$™c `Â^xëžûYùäõJ6ÀÂè`6 Fš$Ÿ’“µOÌÑç½ r/S²çyñ¶‘Üß>%ïïùô%I²¯3”ùØæ˜9æÈ®göœ‰Ó °³Ìž{%É×÷Ï?ÿôãç$GT6fW:ÃÖì$ÇL£ÎÓ¸»Æ¢Úo~LîñåCâwßòÜ蜵ЇÑ44*íJòq×b˜ËÅÀ9ú°Æ¢V-c]s¦éÚ£á˜ëþö1I¾æã—<“•E3}îÆ1zŽ$÷Ç9òHµÎìÓìy®äëû—¯¯÷_~ú”tTþúä/{Ìd;à-I§ÍMíJ››«Õ×äíó—ÇüäÓ·}oC. pBÚл]I¾,mÎ9Ɔ±÷½Ö 2“¨e¬¹a„÷$I’¤gV̉ãÑk&yfo¹«g‚VɾÌ$•/ɧ¼úò%IÆ–¤ùËu57£1“SÏͽµÆ6ÖVkÉÝÿâK'’õÖærÎLÀ’ü€•½0ƳgÑc%I’<“d'+YFzîœ=÷Xcæ™ñ¡fÒ›RcÏÙI¥’UÙ•÷-I$ï?'ïIb;Yu\'XYÌu4ÕNƪ•žYc+˜{4µ@eA%²FSIœ&p@}Lþ% MSÙ8gWv9ÃTkæc’¤’$É[²Œ¬ZVž‹$cKÒ³ºz<–ܳ“J%-kæã–$ÞòñK’$±-N p™'óËnîÅ83Æ=“‰FIS |]isqBK`׿äd©8*çX5'£Í5®™$É:“$ûšIQ[îÜYFmæc‡b¬•{vÉý1möL"IÈû§äc’œ•‹ÿ,Û¼ë4vޱfÏ$8DZ`ƒÙfsn= wsr©»Éû·΋G’ÊÅxŽ$I2×ȾFòùKæ\çÌLÚÌ¢¶Ú•äγ“‘f$Ï=\ÎZcdö|äëñ-û˜f3YÌ${öìàTzîa$*we«<·“$0Œã8)YrÀ yê4$hcWzKòþ­Ì–$IœF’$I²G’J^ÍX 0c$F’d̵³G–‹ñHKòí¿þ§ìkª$ØN#vªáÔÇÉL’ÑÇÌ5îTbd-e$qP­N•ÖÔZsUºTîÌ•µŸg6ÕÆifòþÿ®zt%ÏdlË|&I’d?’eæó_©¹Aan빤g’d$90w=fš•ýõ¿ú§¬‘–ä`c.i¨Ðc±¯‘=û¨\‡Œ±·¹=“m¶ÑŠ™8ô½Ô œP™ÛÌý  ù€Ó‘¤™Éû7sµÕÈÊ™u“•$IÞ“™¬=ó¹¹ÁD²V–e&’lyÜ ˆn+ùúü§¨ìÍHÞÌ5Q=zmY‹¹“=Í$k̬5óÛÆæâ:TÒ‚1’$Ÿ“$ ˆÅØç8°fò_ü¯3y&òØ*NÇe~IÚQXk‚±8*˜ªÏ†d}1Y’æY@­Þ_¹WÇ#‰™£97Î’MZ%»r?³8פÕnvîù˜\ sõ1“FX`äÁ¸·J’äs’|Mªq8õo~>]ëôþí8•ñH6c´ƒ“|Û—RŒ‘6œ+ÔšÇlÇ Õ×5úÞ µg;Ö¡QÆúýÛžk&ä^3'ƒí2qXãäÍ9*{>—·~Éç¿ÿúz}ûøÃ·÷Ï?ÿöËç×ç×·÷×ëç¼ÿß’/óñõþù[~ü9ù˜$ÉçäýóÏ?|~½^¯Ÿ~ðzÏï^¯~ùô»ü˜Où]’5Iªa$=Ö1ŸçL§™u”±³ä¹4`k8˜I%yÿ1IÒFòŒR0{ûͧUašÛý­Õo=“ ¶´7Ƹ³Œäó×õñï_¯¼~Ìçoú镯_ùåÇ÷×/Ÿò×|ÌÏ_?½òõÛ¿üòéë×|Ì?æëÇüðúùãûúåóë—Ï^Ÿ~ûãëÛëç/IÞß?}ý”ì™$c¹ôyô¤ë^f2í­ÕÖ2²FÌÑíNL@˜‰äK¾$ûH_’±¯‚âÞfZz3–çWgí9ÍdR.<;æRãýãï¾~ùü÷ßÞóùÛë‡o?üö—_>ÿòùóo|ýöÛÇ>åK’¯üò-ß~~ÿ’$ùš¿ûús>¿^¯×·Ÿ|{Ïû·_~ø%ùú1I’µg’´ÃëÕ…¬Òfž‹`0öRYé¡ÀvâRYاùH’äã—¬šûÚµvri³¢ž•üËëíyÑsg©>¯±Œ¾2“$wòãÇOùô÷_¾<û5?üœ_>æÓë§Ÿ¾¼¿~J~ø’_~Ìï>åý·ŸÞ?}ýô)I’|ÍÇŸþôz}}½~÷£¹Öqî$I²fB$ŒÅæ"C˜8PÀ5·Jf'³©dfó¶5V%#ëRY æ 6ëP]ê;Ù3í¨\S¶JòžÏ_’÷¿%Ÿ’÷Ÿ3ŸIçéè>Vå‰Ü3{œÿì¯êñž¤òHfK­<8ë=[>w¬œ<“=³:Ï<6æ³UÌÅœT0OèÚPàªí-+IÒ*Ùù²Œì™gd©TÚsÕÈ^Õp$ÉžY®Úǰ/äã×óñë—÷×ûùôõÇdî|ê™®5Ær™IG}ÚÖ?[ÆÇä“ñØ×\Y Ï Æ[æçŽç¦ÉšQ;yÜ€ô 08M=Š ,Û“±ÆBm#Ï%IäSÞ²Œ$IR#Ãa.0ZmÆ^FÑ${nf-Å<×LÞß?I~üôíË—¯I>%;‘,{ÎÓ!=wjdóÏ~¾ç{óÞÇXcUÉÌÏwôA%Ùc+#O ¤Œ}¼5î]k,f°Æ³{d?a«dIÒ#É®`/•̬ƒìq M*×â88\Ç5òHòL’$ÉI’g’$ÙI²æ–N`p vrg3Ö}%;ò¶¯Ú#5œæ3·Ar?à챊J­e4äÔ˜{†ñHF;¹¨†±óÿ'y°MÓô@븼ÏÕHŽž=÷ w@ÆJ4û¸^ø^K@r¿Ë}T9€`ª¥)$ætlÞ+¹VÛK2–ºÐT!B0A›à€É pÀæ ÛÍq$Éæ<îJ’!ɽªs£O ô'Ûõhj?vg:I’üðKþ«œ>Ùkôa×:èAùJÙp?PsSýêœ u*[½fU`¯d©Lg è<Ðé³›•¤1·1ÜÖI’7k=»’¼÷:®$çÁÍUy?uNm¶›› ¾¼^ÉÖœc*:I~ûý÷¿|Ÿ?æT²ØlGo£‡Íss±Ë kP\Z% O%ê%g•pž•óeÀÚ —>É+Ù÷Œçâê¼Ïú6¡8•J²¢“줟†N>à «¾Weë€úèo’$ßþöçüMNçµTPÇš°y6-³óOP—ÊÔ¦N'裸`>'I’Ïê³ÎÊ=¸\»p?KH¦ªì—Gé÷\wç³Á]SI¾ýåÇ$ù ÀôW½·KCW@Σ·ôIòÇ$Éû–Orrxïr^ñÔcÍw†î·}ਫ਼éë>Ô×ä<ܰ¦>o•uV:YïÂ'G'ÉY¯ŒÊ ýBfK8 Ve÷ ¼î:zFr¾ûó?$Ùõ™ 8:»:…:_9Q;Wg“ÿÃ÷ÿÕ“¸@Nê˜Gå¬j*àª*5úÌõ¸*§{Ú#÷ÕÚ$ÓS‰~_ëÕÈ{*é$9êTŽ$údò¦y}϶:ö×5wï[ÑPs¡ÎÓÉ·þ1É4èy6€>ûJÀ]ž9Öyî•AòÍß|÷óOß'sUŸÃÞîG•úžžQû2.ꨃÞu––Ï;§g9X»Ú­GÍ9–JäÔ~å"$+I»sjÈá¼> È'<éXÜЃµ¥§èä»ßýCò}xµÍ­ ²í ,33¬ät6VòËÏü6É´~Íטk¥³ÕÐg½ok[ÔæYÉ—„ÚŸì¾²ŸkÇPcWNç¨éCrž•ë¼>‡AŸ(¯œãwæp[S;íº\œ5µu’}­§¶lnW«S»qUîÛ…V³O¿¦óí~óãTN媾ÖÜ@6–:¸%?ï«›î¦×f¥¶Ì½V’õ?üS>Ù5Ü”û²€ê¼ïÝ»'GN#9×Ú¬R™|R€e%íKÎÅ‹5¿¨—G'œF¹€s©sû${’9pQI†«Ü\jîêí}Lå›þßýqdWŽš|l•[ïÝÛ ù99Ý›Ûfͳ:9ùþ´:XÔ Àª$»_8ÏÊ ßµ«°2IPIº¶—gÍ/l »ÇÊY«º¿Ùws%É+»â\PC¯O  WÕæÊçÜ_öÊ·ÿü7?Ž>•÷VÖ`m­?z» ??fzê•m¹t’$ÿéOÏá3<Ï'¡°^§“YèW2¨$Ù`eç“ôóFÎnëܬÌ/jS[EÏ+§×\kîsëd%ÉëY;ÜPC`w@[YI'ï÷Ú¿þqê¥ò•žçÆ:rg.z#­Þ8*ÛŽÆFÆúä¬ü§ªm}fÍ¢¸¸Ö¾X’dÖCÍÊi$ß|{FÒ;ÓÇôï–š5ö =$×V7t:gX9‡þæO¿úöÖ{냛è5è¸ßÛ¬$Érg××5z<÷Uç¡kTrê<ôw~ÈJeôžääÛÁAú\âW\\+p*›_ÿç„JRœŸ ù/¾ÿqV²'ãößø­W°aÖtrý`*«3š•ê›?­ÿb[¯×öƒ½:A©ÌeùâbXÉJwŽ•Qã,ÞǬ5*Nå¸:õÛäTFf%ùcc÷tèMž¿úã~z|ý.¨]Ùüú„Ú+¨¤Ï|û#•|óÛï÷êlÙøþýA;+ó˜»÷ZÉó€°@éÄsß뛿^?^¯ñµµ¬rë½ìû¢/ÉKrørî•Q{%ç²ÖgÄTþ€û—äTFO’ä·ë¨áR,É?ýûM% Wß²ùõxp[}Þ‡H’½:Ç:Î?ú?þûƒv*É8Ôî}­Lp˜P ¬w<žätNþ׿¿@Í|rôÖ›½†²²_V®õx³Ç畤Y›ì-+›ïþ€$ûÒÉù!ê:CWÒûý4ôÎz±pcm“Í—Óû¾ùÖQ§ëäÜRùýåßN%Ù•×v*_²½¸ÔÖd.wräüÕïþ ê¼)XÌ'g×Vãž5¼îu˜Nåô䕜ýÒ›õ¾} •ïÿ€ï’AeÔ<û—ÃujŒ³X unWÏ£F;½éÝ›‹çµs:GÎ'OOçþ—‡­’¼¿?•l«?Éîx8ê¸`s«÷”¾þÉïþ5u¯zÌ+Ù]Ó°6÷³ŽŠwrõ{CNr6ë½U¨¾û•TFú!‰Ö˜5áKÎ<†aês5ú¬MÍÝ?pŸS9+gw¼“ÿÖ_þnë•È®äгÖTÔ{6¨ãrճƺU«ÝõÝŸÿ ÒgÀÚt2ËîÁ ¬ÓN¦Ï îì$×fÍÍr*¿þòr\:S½ù%9Žç"ÓsÉ^ùþÌ{а Õ€J6è_p>g%É®£w¾ù_^‡ìJr¸:cÞ Ü/7WÛe%9+z¯ÏÑ?ü ®î SIŽ•³yÖÐ+ïY½Ž> ·$ÃÕz[’·-»¶šgU’dϨÂBžÖ¶'T~õ'82uÖ‘ôî›|÷ÍJ"ûZÙk:³.Ð㽞ç¸QH*u,¬yª2êDXC'ÉYï,×ÚOÅt•x<5•œÞunÜrY§6zÖ>£ÎÞ ½YÉ5¬Í]z%I>ç¢Ðã¾­óh›dW¾ù –®u֮ϻ³ÝòÍÿîËZI:+Yû¹:ÓŸpÙÈÔÛÊà+H:—»bÍ“Jª’­•?&['<égåУ´µ9:Öa“GÚj¯Yž£2SM+1Ög:I’OØB ®‹œ»òÍŸ |U['y¶ü ŽNòÙ•W¦ß»3’Ý[åèÐj\€zy%•|óÓ–)I½Â—ÅÕ/+I’tæÒyåÔúïÌÚõš> ÕçÙõía“í€Ú¼+۵޹뗿¯OmÞs®§Nr?ÙY?çÔ\+¯ÑÃ@u¶5+ÖÑÉ9ꛟ•$—$ôéŒô¾JÍ£3jõ~Œ×J§ò§;Ÿ}YÇþ2j£·•-Ÿ$ÉôhW’Sëo¦“½r5kV^ß°NTöÑûA²½~ùk»F'{ËÆ V’?oW'û•Œ JDý,¨£Ž•d'$?›^÷;û¬÷'g%/± O¹¬lzW6€5+ç¬úSíùŒ:2[`e¼vï$•q“ä¤~˜ºsV’Œ:]’(ÜT&Ùj»HýËßsžµŸÅ¹A‘œbªd7ƒ7ÀÒþÑ_Xƒ¼Ô±’~LŽ|óýÜ×Ò_õêä“J²­Ú…º¬lUÙ+pÝךµ?Ùú›_~ÊΫޟ ÷Ú}’3nä¬Yƒôû¬ŒÚj¯õÇ ¦>I6JY‡úù\­¶Å9Øè$ßfêÔÖi7öúúÐQ硇ë*ÇÊCåoÿíüã–ŸóJò®­Îygשä4ðŒË5z$=X“W²ùÕÿþÿ÷ÓI†•}:ƒ»NG§¹¨ä°\K¯Œë‚‡Ê ‹b«Ï¸© ëÂE9p_등^IN½sT’5¬íÀÊU§³{3<ôïþí÷ÇÏäç¼óNòÙVöédw*ÉŠQ[ò¾o {I†_ýŸþÃOŸ×$€~gpêk×ç=9Èç¶T¢>Ccõ4œjÀ{³7*,;£ö¨$§3Iòå•<$› 6zäpú·»µ¨üí¿ýu>É%IÒÛÊg{g÷VÙ€CAÅJ+gI†_ý/ÿ?m=H€^yoäõµgMåûl=wÂõâeU0ΗЛçØX;<Ùy­$+’$Ÿ$yåkšj½e«¼ó‡Þ÷Uµû8ü'ÿ6É/¿d%IÒÙë=v½`ÀÕ§ª“¼qx2’XêŸýÿ~Ú¬!©½2Pu­ŒçY¯$©v'gÉxŸ*¼N*_QÛ¶¶þ£÷  X멚•tç$ÓÉ©ä¤2uÔFÍm®ÉYs“¡§ò·ÿõïóÃÿíI’J²ûý±9@Mm°’äuàY#9ßüðÓ.kT–ƒÝ9<0+§/¿ÎF¯äÚ¾dGåXÉà>9ôFok{`¬i(\—{eÖš•³ª’«2•sêÚÏç•ÍôAm½Ü\ï­ÇzúAÿ'ÿõùW¿¼r:U﬽¾fî/6`l ‘“C½²uràŸþò8×t]5Jíçú &SÙů³7ïÎçºÉîù’ãWÉ€s÷†‘DZác+Ô×ʼæ½N’M^•s¹T’UÍ¥FÈLokȆ«þö¿þ½þoÿJ`v²Zm½±tò•ÞÙs’lô?ÿÁ°’\µ¯k½km|÷ã×!Éz÷YyÏJPäî o·¯Ô© Wv£j×ëeÍ>é“$º·;ýšðtVòÑõRy2€CÝ[Áà×?Ž$Ó@Mu°×;™ºíÌ—“$këwþößnÖIpѯm ¨Êçj:uää$ Šúä®z©}n€3|ÙîF —9.p÷µ.· ¡p'=p]*9yžsWÿäßæª9 †žÇèÝûýZïI>ž+™ìJ^ùìÇ£êøs¸–[çØ—_ÿçóxXÙSÓÛy¬ìúºÝ“å½;ÉÇûìÊN][ÎpnwYc4”u6ªösjNÍêUíÎê¹Êª¯Iröƒÿäÿóûë&QCenïIÖ{_«õ®í^;™÷ÑÙÉþÑÏÙÐ:Ù7¿þ. ¦÷å¶ržÎfM¥gu²RìÛ—íÊé³j‹Çš*nÞ=5ê$û,,j†Ô=Hê+}¼Wr`ü'ÿvìG²¡.\\@%Ù’]·õ\w'¯•½Š«Œþ9{Sõ¡³o×þõà¦Ý>½•»ÓI6m½\«“N’$ê¬N¬ ÐÑ{ô«v_ Î=Oá®ó¿¬ÌË0°Ø¨×øÍ…Ëíu·ëp©>nÇJ¦CmÿøÇÙù$¨c÷˜5$Ó>'µkíì“ÏɶF¿ÇIŸg©ÞÖp_:ùfÃ…×Ù3ÛÊù¢¯ýý;åN’I’$¯iµÍ@ŸõÕšú2¶IÜpÑñ‹A äl?üÁƒ÷¨¡±ÚMõYɶSòãŽI\=€°ò^“$HåÕïäu­dËX!9O‡Z¾P'ßþܨO½f¯ìñ¬÷ôïî­ƒä\ë$ɶžÞužÚ€’áñ% —Ø_ö/°^½P³F½³ýæ.4= *çf% ’Ü\¬û»w{ k. ¸tv2Ž8õI’“ÓÑQ9k÷íªQÑ™ï6¸¹ÃÐÙ›§ÿçÿßýp¸³“$ù$ŸÌC¹Ì ÃÌÓ8¿ã¢À t¶ßü <¬­fåýyºWò¸/¿þñ‡_~¯ ¸(Þ+uÀ©[$I’±WNm’ö@m`WöÚÖÞèÕ[’ÿÙÿw_ˆ:|Mv%g%°nåýÙ_fÀP€`åbߨ:à*kV»sž§“d'1è÷Y¿ûË¿ÙÕCm¡^ý±ºrk¶$I^¬õÙ>{Ep[ûÃÜê}®ZŸ•§w½Ž;?'(a-$™>篾}¡îë0*`åvo€×8kj³Ù+û²ÎµÞù$;PI~÷—½o‡:VP³Ž«Ovu¯I’$9z}ûÚ–~©¸ÎÖƒ:Æî—N½¢òsÎE½>\.’œÞùöÇpQ7¹û0`EÏ\€Á ÷¶>œ«&¹®I¬¯·N0•ÏùÝ_þÇÁ㛤àyîK'<•$YÉaþÉÞº^£XÀ` ஋¨×Ï9¨yP¬$É~}“= ·M sW2ÀæTâ*0ž×¾¸³­t£RV¬ye6¬w²àvøÛ¿ük4èqa’‚ãb%è¬}Vç µf«9zžëƸ7OE£@½÷…û«Ê·9·ªéÎÔHr’™•}pé ðzeû’è.¸@Ëîqƒ±f?•Bg*ÇÚ.ýýXéÜ¿ùåxœ‹Ž‡//@^XÉv)•eŸzg×èÎé÷œ§§×çæÌåâ®Î.îÌzåûÕtM燕$;³CuÐÉ™:K ¸–mè×T…ÍÿxêƒEíT2ú¿™:°/~óËïñÔ‰û( vŒ£ÇóXQçc¶::žçÒ€èovͬ${¥½t~8ùJ'IrÈU@©|¦wïÀÅ“íÐ5UùÚ«ôÔvôÖ{I>*ß蜵Á¾Æo~ù=HèÀ:Ùè„mûÒQ§õ¶¶÷%0¨ Ó¯YIv…ûîQû‡WFU’Ýçkú+Èuè© O 7°5Ü7ë•$/Η]¸Io¹Ö¶Îã?ÍÊ{³’}€• ܬ½òÚD…ש,¯Ué«O2©ìS»¿ö—}ãà•ì{XóÀ­ª>½³ÖäìMŽzÍúó¶¶µu¶“)Ÿ÷k`[ÿì~¥7•Á6(Ùnyç8¯­÷ à²ö®yšur¾$ɦŒô\`{ÐQ›ËRGÙ’]I*_’y½ÝûT’ì OõóÙÏÑy0’íÉqû:äüæÏ?f*ǽxhkœªq’Ÿk$qwÔTÃzþ½»áx{ä£ç±-ç]É;›edˆܸA*¯pUÜÇU™/{$óÊî!ç•dm²éÿ2ûÎÝgexo7z:[çÔxæÖç?þó™ux­µÑÐo·¨éŸ“Î7‰•Y@Žz°^{r”Þúhí¤¾MzsY³zÀzh’$½ÞC¦šë *ä|I®dÞGeSz¾hBø–å=Ø[ùÍŸÌ©Œ:k€­k4ê°ëçÏYÉI’¹× Æ…Ï+±Ž5èÝÖ°>›YïfÖë,³‘$uTÀÖ*ŽJr.XnJtO¿ÎθP³öæÈÑöí>O¥^{Íóçßب#Ûí¹9Oveæ•ú|¨ÿÎK••OrËíºÜ»pCKNmƒZï øl‘4÷ʹ٬ï“xªÎ°v£ae8äXƒe£_VgÖÑÙÙÕ¨kíõÚzìÃÊ®#›ûÏLÓÛ¥×x¼²r®„g%QÌ¥rÓüÕ+k÷$¯$9Ù5¸nIo@ep³æyÇÅʹA–T6÷7ß&ϺëÜÀ€ãjXÙH’èíý:+É:ÝÙ+Õƒ»£ÆµÆ:u¬}g÷î?ÿ¸¤&ãy¸+3Öî$9žÊµrÜeyX‹¼î;ŸäìdÇkW €Î Ô® ðJæfK’7žu¦ß.$“S+ް>=î_†$à†a$žu¸’DOå€ç16¬ €Î~zæàI¦™Þ½rjW’èw,ܽ­×ñKl{Å—L^¡ïZ}ò}ö]¼N²<ì5ñ%»û•óÝOt¬€õ™Û½×Vý'U#¯dC Öœm*§vgHvPÙà¾.Ô;IçlÀųòº°òN>Iò=P¬­ßÛ/Uø÷}Lzë$“ó ’¬v§fàº3™/9ݯ仟Jãrú¶¡`mt O'žþ¼³ÕÒÙç˜Ê™êƒd½:Ÿ$ÉÀ;Ÿ:–u*á«$xæBo›ÞUf¢@MÕX\SÏÖÛJ’¨$Ÿž{«K’³’/Éw?Y›¼qSl¨emt Ó‰$£ÝÓ9Ï3§rt6Ë#ÔfÃMmê¸[ŽÎJ&`>ùxÏâÊã²VÖ¸öƒKgt†C1†z…y|vïJr*‡"I2_õ—ä7Iç‹/Éw?%~*ßÏ€³¶òfXÛÊ'Éz9¾ _çYçÈQ™«3WÅÔ€‡g. |I²;+Ùym°o’ZŸ4µ_›îd• *¸<¦.ÌÃͲÕa:µ;™j[I>³aeXïü¼“IòÝ¿Mbý<ö=øp¯o÷k .°Ž«“W2‘£ŒùœãuôñÕÚ:®p‡K‹•Ýcure68k¬ÔÊé­ß¯½’£µF%¸–žÝ<£,uбW2 2ä}6Ö'[’üæÇ¼sv’ï~J>É1Þ_«NÏ:ûzÖQõí(‚LÇYÓ;Gqg+“¸®d_Éèq—õðïƒ%gßîÞ ä\ žØGï5}ÂÓc»ž7túÜùÊýeÈY묚F펚÷ð½NÎÜ+›œr5ë} n*™ç¹¡ÕùåûO ’½zaWŽþÄz}Ÿ¼SŸÎY™OÍ…>_ëô,Ö Öo7ìƒä¯Û}M2jÞq X9=k$•Í2 7o}X¯M‘ÔÀÕê%¹{÷á{•ý$C1¸ÔÍÕsw Q9î5 üòcÅ$Ébª’>ék%IvšÊûKÒãÔ×®uŸž>5üÕw€dó¬wÜ\*·vUí5„ä¼2­NCåtfÒO~gÎypË™õÞkƒ F2ë³Wm¸¶xz˜o~ùë«=뽟“`nõæ°JñɾÔÿêPXáùòI*©XÝIÄ7üOÿÏ— PÓ¿û‡×õÍo¿Ï³¶G’dý~•­3yíJ'‡Ê|yÕQý0‡5ÈÑÙ_9{ €Ò›õÍÏ?U&ùœ•l @ÁÎ<üô¡‡ä•{ïd%zjÔèwbù!àÿ¿.Ü@a÷ïþa|›äY'‘$ŸÝ8úûñz}òJ¥r]›ª?ŽJXÔ‰Ú¾¼C§§_¬Êä<¨NW«CòÇSùú%{­¼3((À T¾ú.ëkåPä¬Oæ>I^ìâŠäº%kØÿø'«<ÿ› ¿LŸ~'VÎM½¦3ÙïOÎJòþšÖ™‡¤¾ïó® NÔ;“ô ™»ë›?Ùtê®6Ï–äÔé»ïn2Ø@97¨<ë5=ëkåpŸJ*—Dçf¯²é}Õ^Û'ïXcp«¡þ¢þ¾’}­©ÍEÍ é•³’¼&½q“ä¿ü«?µ[ãòÔF'Ø\}¨Ô¹ûõÍŸl ójå¦Û׌$§¦Ÿº(ù °²ÞJ¾V_RI'7Öá<¬]Gor2z[§gž¯Ê—¡þ¢þÞÊ>ø´Ž»’Î9É÷ÙN”$ÿü¯þT. žÚxòµ_Z†>G¥B}óWú¼Õ¦Þë-#ßæ¸úóºÜK¸CÞÀ•dØ*‡•i+9Üëài}$k“½¶:ÒÉî×<@Íê/êïÕ{Ÿ¡ãÀ!É+IòmÎÞÙ@ò9õÏ%p©ñô¸{WçKýÊë“Ýùîç³û]uJ2k$ɹ×罟÷¿úqÀƒ7 BI< à¡sT}‚g j«Ý9x|92ÉÔT °æ.¿¬Ï!³>£÷öz_*™$Iê}°Ü<9Ÿ»ÿúQïÍаzƒ4ŸSÉôîWœœ“öÿ>9Ô«¶@¥weÖ‘ÄÚýIgþü#¨p‘¡’Ýì†:ÊêÜŸ¼Þ§†5¬O©S{=k¯äè¹²o•ÓÉ0Âr·¬Ïv±Žµ¦ÂtŽõúd%IÞ‰†'©C%îý¸ wïÛVy!É©|ÞéyV>ùŸÿ_wÎ3Ög+¨ÉX³ŽÄªä³VüùÇ j{À¨Eõ„ÓØUV¯Þ+9µ§Îy¬Ï–äs®>8'ùzñuíG%¯œ .OΗ­oë@s{r$I’\ÙϪÎ:åºëõU}r'§Þ›]£¦·îÍ$kŸµ;ñt^ùîÿ}fí»àܘ~¬ÿ…µ“$ùúça×V€­³5Ôxº¬½&9ëÔ¨œU™¹’dëi·gU6u¹¬d'GmµÁúö€9×êdܯµ×NÎJÚêKsÖ¨O:É)áàî Ü:ì3Ó'9•ýq­ä=À-{íµU$yÍ/q_¸>Vx~ù—?áÁ]¥ ^ÌÓI¶Îö¥§ÏùüM¿’¼øi%I’œN²{wv’©m :9§³™5d\]‘ƒ‹µ’mpQ§N2:•$ɦáW€ƒNUƬ$I6×JNì²ö:k×ë<®Õɉ_~¼î5€uðüW¬íPõ¶6[+k_½6užg­ŸÎäóéþn%“|óÛ$ge÷^9yr÷¬}Q’|NÞyX÷£Ôa¸.T²q±)•³w¯«×YéqªÕÝÛå.˜QÓY³^¯ÙI’÷¾­dî60Ö^Iæ“£%'—ùãMõp­3ü«ÿúo€š5HÆq ѰRµ¾ç1ýÃß­|Ÿ$ùí÷Ig¯$s.;ç¡ì$S9.Žûuê5ãÉSŸíìôÎÎ)}Qwï kÖ××^I’×FBïT¿Ö+‘UÉ'ñ˸0WÖÁ/¿üè Ö[_ ë5ð8õ“$òÝ¿X¯õÇü6L’$oÉë³»’©Ñµél\HµUypõqS­ÎÓ“œšÛA²¸Ð{$3Ûû^éd¸ç ×:0ܼùïÌ•œUÉNòÛ\P‡ p$ (€ M²²ï2Jÿ,ùéëEk_’•Ü3|æ$G½_Ê"Ùt€ÄúqXk³ö°f§FŸUsÞ¬dn¶×Îéd ã~žl.$ÈWÿñ¬J=É;—µÐ`X@…Žäº©!”þÙúæ§S´›è¹Y5WR¯œäQ¯Ï1+õõU¿úk-çœÖÞêc%Û;‰¥£“|FàWòTÉsjt6æ¬äŸþ½Þ@Foðößûý)Î'Ù– X up«ã¶^›žµ+É×>ÚýÅbFG'uzræ$ùz PÑ™ç\¸2Ö'G’wöSû^I>#õÝŸjWùm*èìA$ÿ£wõÆãcÞ~÷§<§N’íñ=@çxÀªÜ[ïã,j}/c¸¶î ÇEåìó9—:ýÊît¾=¸õ¸ÀÓ{Ï^çv]ð…µs*Ù¯ zeçD†úîOµ_õó©EUö`IþgÿßÕkR®›žÿÁ¿®Í£N’á^P@Ñ96ꌞ­ƒºö\ý`€‡ÕÌCw²§µ;™ët¾Ï1¸5 °©¡²õª}©ñWIîd2PÉî¾ÿÉŸÈ‚ŸuÑÙP;ùŸý»µ6XîÑ~÷¯ÝœNê}p ¨­À:¸{w¾Ž5À¹7ËÉÜÔIÎÂýxŸd†õMbÀÅ j¸}ÕÉa¦þIrfÕä+9¿úÓ±ñÈÜÖÞÀʯþ¾³‰ ךßýÃpú“£•çÐp­Y À]É®éäÜd°Ô4mO®×¦xœuQ™eíµ×TÔ>lÿøïuTã’ä+ýN½·næ„iÖ±>s_a ³_£æNò~ždj¬ž¤ßPóåwÿ°ÙìçÁÊÀÚ.à’CÛ³rj:É&óŒÞÕ)+×¾Øà°©-ûñÍñÅUÎ?þ;¨Ç,Üå&×…§’ÝíÉWÏšÉ'Usqa©Ó§£Ne€Î¾ Nçýœ ÔÛ+ùêEßýÃQéä<0¹@í.èÙ•¬ õ~%ŸY:‡og ÇUÛ:¨>ªu^*Ÿ¯þɱ\•Sü㿃۽kŒ÷Ðy»ïuV²òHŽÌT²f¾X§voÈ‹ÊôùG?ïÚPÇN\›ºîßýÃ{*:Ù•¯R”Ýîâ­²7$Ô¨y'ýêtrÈ<‡ã®­’€Í5*êó~ÿUfõëu®â×û®Þ¬Äµ×Y9+SI¶þÚI8”[Ũpˆ[’œ§6®÷š¼Ï ¿ù=•šú¼¿b?Ô®ë ÎH²t®QI–Ï+O¶Œ‚»Žäpõvkw*¯W5$ŸÎk*{ÿ㿃>°fg$ÙX³^û¡“äô©ä­S$’–d³=· ôוä¨0/qÁo~~U.m îfÆÝÜ<Üêp÷^0.* 𕬽Òë^ɬÑó8•SI«ô¹¯½óe'³­ä-Ïé¯üúOŒå5ô×Óc»Ž/i$+™×'Ù}•âŸA¿_S·—'¿ÚÙ.rè«èS§6Ö¡×Î'ïÁ£Ô5€I¶$O&ùñPg7 äuX@Y s«ñeèWv'“³=÷µ­½†kÀ•¡Ng_`ª§ÞS[h»s:ЬqÝuj„ÒÙxÔä`]pIÔI†îµ;y¨äÀqÞ×}Q»Þ$X¹"ËzÕôäôJ2ì!ä¬ÙÝð¸JÞ‡^#GŸê@eäÞ‡áaEç‡ɦm†>uP7kúÜTgãq¿²ñ«ŸŽz±:Ç·:Ò›©¸ÏºûÖ#[òæõ\+×êŸë˜uº£÷:k©d€ÑÁ³žœró,ܸQIWg$ê¡7ê="‡Ëm1Âã®5òÃïÁJpg<®Îç,œ’áB僮SÙÆ¯~Ú*ãJ’ŠÞÜ`_8½™âÚÕÀ:êÐf$³&xô^»ërfí^áÎîè„ç€Þ.+5p-tvÏ©Ä}]z³’­­£×yª 2µ~ø½AÜkVä%gíÛôÎ€Ý ÊélüêOÈFòUï>>_΃¯½Ù¶ŸMfÍt²3ú¬éúYŽÞ÷z³ŽÎI6€/[ßuä}tNÇ:yÜ›:™UÖÑ+¯ymM«üð{Ü^9Е8ú“í6ìÜÀÊà–Ü5³Ž«?1^¶×^ç¶rà~ Î™Ýz@ÎtòZÔæ³;Þujߨ Sٛ穜ëÐ[÷N¤?*§wéŒ•àæ¶ uîj£úˆ•½âõ•2•Ïk‡{îfå<Öìê|µ·žÚÄ—Áæ¿ÿç ³^É;_ŸþóÆœ§7­<*dͽ>¶>ð«ïñ¬S*€ß~ËÑÉkæbj0w%©yV眇:®“éNr:§÷Tçèäâ ¸nv](›Ê©ør@]µ;UA'˜'ŸìdÖÂ^S›µá²]÷æó—ÿŸ½’lýçÿl¶½Ój.Ô¼òNòb½‡Û_mtNgX/Ÿò£:“$Ü\<+5N­NrèC÷kòIòÊÉÖÉ‘¬® øZ@!TNG€­ ’ +$§µßÇÚØPÿþŸÿ žšYI¶ýçÿÝ×¥4ö~g:É85\ú¯á¾Vö "ƒ¿ùA"ùçdsãÂú ûIpëëêO’M5+åº66ƒ› X¸77¶šZÞ6,®Iú¹sIvb_·µëPô?ôú›CÕØµ“}a’¹*Ù=ôÆõèl°Ö@¹¯§·U#d[yKú“ÿ•ÚÙ™ÏÄfmPGç5íÆ¶V²uØ™ÇzxXl‡ n"{«MSXÉJ¢z_kÛžÊ~Ÿ[á7? ” :ï£ µ;»Ç]gÉ^Ù=°YW%çî²2Pyúõuq»oWíÑgt$§¾9j¿í1¬Ö‘3h–äì©:ÉËíàº/€Vg ê¨ì3ÔÆp»!g%‚Oßzì•N€ßü4\+X¯¯8vV’q>I}öÊn—YXÛJÒI&Tžkܵk\S»8úuXû‚±I¶5:“:$¥öP×q@O…[oîåÔ|) 9/ÞÓçÔÛÊäÉûøõƒÀÚhNí•Ce¯×=•lPÃçè“ãtN^o¨í×°= “ÏknÖ>¨dúoÿ•×è>kôû•ªôvUÍó@öë@0é}.Xûá~/*É»“½LµÑ›¸?ÒŸ½öMb½Öçkes­1*Id?'Ý•SQãoÿŸµ=¬ €EÇáÝsލó™þÛcåõ ç3®ze*ïíÒ³”€6d1 öá$‡¡>Yù¼st¶FE6 c×g¯Ä}ÖgW6×TžTvö—3er*§îçoÿTãf šŽC÷'êu]¨³åóo¬¼>ðÐ>ƒ•©d{¬$8jb³f)G{«ýÉSgS{­wf%Jår£‡K@õóÞ¯OÖÖ’cåµ2pîUG¶œšÓ‘ãößþ=x¼L)@¸×ëÔtïÚW}¨lùáìO¹¡ä3v²ë$9ûÎäQ3äë“M¡†[ªqy£¾É×îMõõmWâ“×i6= õè×*óù$k÷ëýÃÇ:¬QDÞ§“Ir-=+øîï¾\ãê@«øìz·Ì¬Ï‘Ïõþáîí³YcלÞV²ê$Ù•lrS9:®ð$_}6XX[å õÏ~ø1Ù¦wejÙñÔx„Jà+ýÍOŸÝŸ×ÿàÇÚɸèítN­Ó“d­yY‡½æ¾:” 0udç³õ>ýÃ`mjP9×ʬd¬ôxgël¨sÁ× µÝwÏÚ°lXÛ— Ô?ûáÇlS½k9.õš£…ÛžKærÖ^ƒúŸþ”ßýøIrPÛ餞Ó{¥§rЛuuÆx 3§dãf¯WŠ|Ž:ê‡?xÊÐ-[eV2Vö~>ÙVõ¨ëËêX»gí¹iþɶ2Pÿì‡?djªGŸ}˜úÌÖ[m@SÛ-€þÕŸ²ñ¿ýýî^78•ã¬Î'É[®>èM’¼6h9esžÚ÷zsoëu8${jBõ*WæËaßëYgÞvzM)kPŸ™  ¶NvO êPúm}›•oO†>>Åö/ÿóí¾úpɪj{oÏoþ³÷îÑ•äO’XǦ?ù&¿üË_þòK¸•w *»¶>•q‘mßtò²¢“]ÙµˆŽuV0æÚcg¸ 5n7ÔYÀüà ¤ÏwÃÚg»3±üùÇã¹#¨‡‡‡G¡^Û{ó›“Œqß6¼YÉ+9•W’#ôîï~ü—ùå/ÿ!S}CÞ rúèm½t®œÚ7:¯“ŒN&óÙ R@ïœdPzc¸pj@ez&Ù²ÀY+iÿèþÃ+ºÉt4Fëì—l0ïú±–z>Ç2ƒÛlµécó¦ŽæÀ…V›ÑX €Ñ\ÆÂyß,f2ŸÅÅ@¨Ç@-f# 8=ß$»¶~ùת]ÔcÍ$³Í$Iöx€«ÒõÏ~üBÝÏ-9]³ÁàN*›£kÞ~¼7õìeþF!ΚÍÁù®±àPÛQëB+N'ê©Îaà›¬J2“Ãy9ÙàTcq„r£ç»dמP?ÿkŒà¹öLf›ÉÞ#’±q$]ÿìÇÿ÷ˆcöË’,ËBoÏן“=ñ’ûû“qUö3o>Ü lk´É¶€*8ppQM¥’'¸sUjdmcQœŽ×ŸNœÔëßž`¾ÀhUy÷õc‰“zûk®JÌ,æQÏ$éã4óÜŒ=ïþòÿõ‡„Ùƒì‹sŒÞi׬ן?†Ñßÿ˜œ÷ÇÊÛ (¢G›}\µlc7Œ²•¬ À`ô%Õµ¨ñú®Z€ÚÔóí_B© çR ¾þ|GåîÅäVkc6ƒÊJ’çš›Gs%»Ç?ûCžç1Ÿ’8Î5º7<_þ”ƨ<¾ÿ1}R÷3oÒ`rtªGIÐ çc6p¸ Ø “Ýc.£ç1¯J5Ukƒáõ?ÜY›ù|û—Œ®…ÓÆðþëD"qc3ƶ›g%ÙcÍÅ伓¸þѲFÒ;²ç®WFzpðúó·¹qŒ<¾ÿñ_îÔ›4PUiŽCâ¢`Õ®6Ò89 ²°»­Gs'mè¹^ÿ_}©Žzû—à¨U ï?wd›û0š¦6•2šs${5ãš{/#áý!m$¹%áÄH›<>½Û'X^'Që¢Þ~£”J’ô0ÎÔq`îÃpšiâ`,6 IÚJc¤Tu˜}A¨,æ:,rÌE²‘‹­vµÄL‡¹¯5ÓãùÈžúû‘îÊSÞ¥O3­˜²OÐ^g_j/çøêµ3IŒ,#jœÀá88ͱ(£×5÷Øœ(í:dÓŒ6b® wF¨ì“d³v¡±V×YYÌó{¦uŸ3fÒÜ}2î5“­VÏ?ý3Éèä¹aú6ÙÚ›ç²j;çã«ßÌI%YƽÍlh`@aöætˆ™ù0 €Ù.•=³œ¨MÝ¡wC…JNs¬K;öô<“EÝ[ÁrÍôiÜ{¦’ÜiŒmf9’=ÿô÷3IL¾Þ@²…ú”Zp¤Sé}/³ÇÛ}ÐòL’dXj460']7ÉãÑæËè‘ݨ71› •m®à—\20WOcìÚ¸Ìì±’ŽÊµÆVÙì‘äOÿð1ËÓtg[lIò.iðþ×0ïe¬ù<殘«’$›™WÎ]5À æ@¸€zJÒµf(vΑÁÜÞ~àåØ\cŽs,I2+°Œeö|&‰Ê±k¿ôKv2j÷ýøÃÛÝ3žI#sïäš’ÿùo@–Z3#»¶{V²®ù ’>'΃`š à ã–ÜFÎz¾þ°-T×¾Æ+Œ4ØÛW¿u64cg×K%™`l£M™©l•º®¹Ì$ÉËöG?þðþC«%Ù#=ŒŒYã™xÿ/€fmîJÝG%ç7µ³Î@Lpà¬=²ÕÌ®;oV­ƒÙ£¯±X# ‚ZÞ~Ð0ú”%ë±T’‘4£š™È&í44Ú´OI–= ÇЮdvmÌXI?ùßÿîí‡÷­²«³Í$ýÌn#ùçßÿí÷ÿ‘‹ñgÍùÌ®í%9‘€¬¼€rèå’$¯?ÿîÇ¿ÿ ³+J-FpÔ†ÙÔj'0 3‹/?îåºæ>ÁtT3Þg¬ÊÁLA­H?úý\FOÙÕužyÌv%é™ÍHþüÇ¿ýÿ£sQ¿Q÷AéÚ*TòP TS prj‡äÃ~ýùwßÿOªAmFXhæ‚Fã8ÒÇ5³Ç~ý1‘=jÒTSoµ+t×MÝúû¹F›²¡òêõrÍ<×Èb$ÿæû¿ý«ÿÝZ|ùgê~µŒQº¶Ê‚Ø3NÀ ภóÍþòó¿ùñÿXÆf¤qr³8Œ‘=“G^ÿY==3îÙ¨¾øÇ·=²Æªll¢OåOÿIÅUœc›¯ï=³fòd¬¯>zä³ä•±Ç»ÇÜ’ÇAí:8Â*}@ q1vå/ç»7o?£aÜkä¢.ÅžÛy¼4_üÕKÝfîõåoÓÜVm­˜³äC’6¹Œ%Æ?ýü1=Ÿ×K›Ëxÿëñ$É>k¬¯>4ŸÉ2v2ÓsITW–∱ ÐÀ‰,¨ÆF;-ó/gÚWß4¸Æ® €ZPãUo…/þrTÏv`&ëË]öl°P 1ó> ŠÚd4ë?ýJl{.se¼ùu%$[òÕÇæsö\f’GºîÊ3½îs,ZÅØÀ1^8]ªçs `]µŽü¶ÂWß5°ÎZÕ8Á>9©½€/>®êÙà¬ì/;{æ0n˜é™ßf«c`’jÎZ?ÿk¼ŠíÙÛxŽñú›N:’—zu~õ¯›ÏIm3YfW$Ù“±Ê©âåÆì'ÊX0²h Ý Àhp £þ²6_}lsŸ0ÖØ£8&à‹O› .IþŸï–$]@ÕÃI²åó»lŽÚ²ÆËÏÿƪÄÖ­ò|îÙæ]¯ÿ‡O›¿ü_›sŽ${fŒfv3'ïà 0ï÷Z• dÓ}\õ›ËXÇ×=7§}8Tƒ¯>¨ó®2óÜkÍ‘1{#k6Qv6lìSãíw£ÏD̬ìùèR¯?»0~ù?oö¼óa'«Òð’͵ø:޳#fÚvX.œPÏ ä,û‹w1Öf<ÕsÎnðö¿£AeOmôq1“=—Z3Aa|Xi6G²ÁȦmðö»£g"‡9$k¤Ñ_üߪmþòÍeåÌ›}K-õð|³9£ùEzpÌžn&VM8Š{ªبM»*ÝcêJÆ2',ðÕ7ÖÂfÌ4³§“$#F› Š/ß­Ù\Îqg.¶òö›Ka.c‘¾Ö1þíb¾ÿ&{$•$kȾª±xV#Ôû‚mÝ‹±g0›'¨å«oÖ€g«geì 3y,ƒ9³û8Ys!¯4|õ!í˜Â\çx6Ç\œ/ï¶Ñ3y®+ŸôþòSž`¦gòï›.æ / päñ¢Âè143Ù€G“‹‘e¬) Zî$}¡’Ì<ÈLvuÁL“™ piÆ›_c c]•…Ü;3±ÏQyäÙW>ÊþòSxÉJWíM{߀ñTóAŸÚ&N€ù8Í´jÓµ®ñÈ:GS` ¥ãÛe¬K8©VwÆè©º’Wgš;±™Že¦Õ›™8 .ÏtñúDlc,îtò’OûIÒeF|ù) ˜;d×ã±,?Ûp2rTàñÜeÀ FÔ½*YGíÚÆº$¯jÅÉx÷aé)àÀýTæz¹Ÿ{Ž…®Ä`ô\~šÅ×kPàrg1Þ~ÃŒÀÉ›=WRŸ?-c=šósâËßÎ}è±$¥6œ³å‘“Õ¼¨dáh€µµÀ ÜIòfÏæRk}ÌæT£ ^g™o:Ð8ͱ»ò¼·c¤µJVÝ{$é™ìÊÀhÍÅÈš=ÃaÜ»’÷ÖÌΗŸ?5FÀÙµÕ¾ôÜ’WjÃHÿ¢ïô1²Y*=74à0Œ¬qèÑf'IòõoÆâ/ŒÜ- à³üôsÃÂX5“$Ïlc¥uU/ûËÏ“5’e®â"PŽÃXÉšqumΟ}èD¾øüi1Qmü˜ÔB$¹“ml»Úì÷wÒÙ´Š¹†³ÀX#ë¸p˜½§$IÞþwc5¢â2=Ò°pÁøÐþø}£Qg:I’lsÍè—Þ3*_~ý1Y#I2’Ñ.r¡j;땹+FlcV¼äý‡õ:žõùÓ"ÉùcîÑÅèÙI²Õ³ß?“yoµ˜¦ƒZÆšqÌWæ2%_'ùúžYTH-³IÃÇ|™ós£m3k­++ÏdK’6÷1·Ê—ñq •$#‘ÅuL£/õÊ8ÌîˆIVÞÿF>'o÷adcÿß{­9*IR]2½ïÑ©®kd÷L_0¸.s·Ùk¥Í$IÏ$IÌžïÃÜ®<מíë8 š ó^#ï?$$+YµöLÖÈ®ƒÑ*yvžy$ æžc\c;€ªšI㘫‡2Óóý7#Ÿ“{O/Y»x±?·FK’ Œi¾ï¹/ÊÈóšY ŒœjÍe¦ÕJ’$I’¤ÍÀüœÙ“ÙÇL†SNg=ÖÔnãÏèãB^ÜãÛߘIÖy' ­’UÙÙõX\Æ.s?öØç—ž-‚·Ÿ¾ÿfæsb$K;G_Ÿõe•qóuOò¾÷8P#+3)L²úT ¨=W%­’$É»äõ›N¸6î¼ÿÇvI·Ù]H¶ç>GX®“ñçÛu©7Éúé‡ç*rÝÏ<mT_•dsž.#e\•l5€±g¤µÈ+×è2ßWùœTz%ëe3V}î]÷V£÷LjcvÏ÷}iYg@-Tƒ‹èZ£%I’wy“¼{&`Ý÷IÚ\Ò×l —S=V³98ÕÁŸÿМ*¯ß­ñn=Á¸ó¨…ËXŒŒlcq®ÃqŒ$q€ñ.}ÌZFdØ’äÍIŸ#ý’<ÖM}þ‡¬.#I’ÇÞ0îu}àÌvÕxdd̼þ”$¯“÷>$Éæ¾Wá8ÁùÀ3OÛö³ž¸jûÁlŒ¥¬by÷ ³ò|U *÷3wºòàœI–sìZsaÆ5ò_ÿýÇ}`ºTù)½V"´Ì$kæ5Ãx&g/ø7?&M%kf%Ž#{Áñ²¡0spémd噌ܯ?%IÞåý‡7I’¨µ¹êsùYO¶ê>³©Þ\‹WЫÚ9nÔÇW[eÉf&ÂLøéÓa82óöo?î4~ú10îD.\•äNÒ–ùÌÿCÈdvTÅ¥gí5“tµÈN’díäS’|HÞH’d.`Ò°ÙÓÏ~ýÒ¬Zåbôdd×¢-æ¢^ <îÌŒ–U$l#g6Õ3ÔK¨¼ýüßfl<óåÇeÔ3+1«kÆ:Ïv±1’l˜ÇB-“d`=ÍN;ö+#I’÷’$¯ß~Ì›w¹—¹7Œ$Iöš ci N†Êô'ýr·z…3íT‹:Y×h=ïg’í‘^•0{æQÙPK½b>[ýôëY®çšIÌ5ïÖ†®ÍØs#Ù{4c.ØŽ>gW²©6Ö±F'fž*I’Ïß&Éëw_|ý:Y»’ •JfzO…±Œô N€‹jãÙò×ó^jÏv`¼Â5³,àÔ{ õ\k“VYÃ\3Ïd3Y'ÌŒ®1>$«ª1žk$1Ö¸Ù¨l$Ie$éZÔµq•Zf¿$›jcËÊ6rï‘ä_%ï?$I^¿ù˜¯ßeµUÙ3=ãB-fçã™^Fï?ù·y5Õ®0®ùØN úª†ÚÛÚÆ¢²˜ûšfc×"É`ü“;«ed©ž«¢¶\s>ÙÎff&{fÙ­“í¼j$=“]ª_fòìYͬ$=’¼É}¼$I’ìÅ ÔÞ3yetÅì@§ÆÉ«möü“¿žÍËVÛ*Šó8ÇNšÑ6Z%Û±-Æf$¦ÌCå™eöžã¨‘5¶¦Œ´Úo?ìÚ IÔ:/RY¤’edÛTòŽk$Iz&¹›—=’;³¹jl8—×+*šãTï‘´Œu} 0¨g¥Ó¦ôü/~ ãR+j©%Ì=7fƒd¥­u¯Zc%IÆrÌY$#{Ï=k4ŠÃªü³¿ÿ¸F·) ™©##¯ÔöÌ2²jÓÉG®!3é™Ää¹fòHú<×xl à4ðÈ#‰M!ë͉É%k+w2õkp’«GË]k$³Á•̦Fí»I23cÌ<×묙•ÙiÇI«á-ÿÉßLî6톙ôÌfÙF–Vy—¿TWg²’¤n^Ι$ñ\»Û:86‹¦O°ÓI²`×½Fš³ WŸ¦Q[óÎü“_$&—gNkcqsBcVIf²¬¬¼î‘ŒJµëFƒc¶ü£ÿøq½M©ìq‘˜ï’]jŸÇÈÆìäS÷X%鑌Ekn–£¸7ÓAõ:@ÝYµgÖh›‘åáœ\k<²’_ýO8Խ͞8WruíŸýËvqc©d4YÕcŸ#Y3l#o?>7ÏôÊc×%ÿä_øù¿Ç©ÆvXê4ß&¡öu,Ìž÷§Þœæ6’ÇÖëԢÖÜÊìj&À¸ æÊ1ô|&ßÿ//7ÐÃ̽ªÕaq›ï?ôI­G[ޱG3·²Œ¤g2µêõÛïÆ6zôº³éWsÁðŠ™ä—?€Ê–ZœæûìèÊ~>’V©~ùÔ`äN’ÝØcÕÒÐU ë¹ê•ê€Ã9òÈ#aáz<Í,¨'¨½Æ®ù«¿>‘e<ùiîA99çû}6ªYfମžóÕÌšó™óÞòö;Í¡kcÛ# å‘;Éüå¿kØ57ŽùuédeעƮOÀˆ™g²èã4 ž›J¦¡¶ {Á®1’G6;Y3.³m˜«alcU~õo÷:ìŽÍ<(L'òþC ˜ ¬>÷žÉÈñ’ä1Æë·ß¡ÆÚFÒ‡±êë©’_þÐ@^WmæMböxü«ÿf¬Æh0’äÛž“Z,àdbÌ8˜ µfK» öÜs3V/xÞ‹z÷iiLpÍ<÷߸^Ȫܧ Wæžq £á¾øÄñÓÏß=žÙîÇ)I’†åÕ̱0×—¿û»ç¯~hÆ¢z\ëóîŽc_~½Æ>Ô­!É×u,²8G£ÀÜk.ó±#‰©;鱆+P ÿøusÕ‚y4ÖÌ6ÞÿÄp²¸î¥¶k®¹Ìµ§Úzt5|ñ ?}ÿ³‘¬zöe–³’¤90ç,ªú»¿Ë¯~h¨ž‡ÃRIÞ¬}È1^3^QÓ™•;É·£gccl •¤×IyÅ1n—ä˜>ÓœŒæ¿½õ°9Ø »²÷¿vº hu`Œd±åÍš1’ͦõ‰ùø‹ïˆst²Ü3Î’G‹Çì£ñ“ßýÝú“·)ja,äÝ¥ÞìñíÇÙTH53ó:¬ÃA$ÁIW’Vk¦Q{$fŸ}ï´Zþ³ 6ÆÁÿø_TÃá4mÂHÖܹY3æ#¶/›ó‹OÍ|û]ea®ÙFöWß<³’äºÀtm\øòw÷öû*Tòß.3Íø¿øï³fØcŸ³( €:*y:Ö’$µÇÉLÒµ*c&=Úx4åùH’ì‹£²Q#¨´2æèÌä±Y$­Öa$köªÔ§}€Y‡=~±¹Ÿ]iVöp _þò‡ìµ’• ÌêNüäw¿ÿù3»ÛQ7–“Ù|ùÿy÷OÞ~ÌÞl@«]ÿ:¡–ƒpŒm«=JvFžG9¹0w­Ê»ì3Æ/w’¤Ãµ5Tk$®s$»l/Ù¼,çÌëgÖÊ·õi´<>í®,Z2ú¿û!ÉJÖÜ`¤•‚ÿäw¿ÿù37²xy¼þ¸l®^¾øß>Ì¿øï_çpasœÏËÕŸlã¹f+®±\8Töœ÷Ëæš°Ìd›=×5ŠQÉ#Yq¥ú2\[%IÖhŽQéóÞFõì5ß}ìäÝýqÓ°÷§ÿ*½UËyT×>¾úå¿{$»ÓsÀO~÷ûŸÿøÃܳ¤Ï>G²äMŸøâÓžIÙ^: µÏçöè®Qû`9f’Üçb^6—‘½ÆZså¬å¨\#I\yÙ{ŠêBz$IVŸóBÈ6zS;$ÉJòÜQ‹e9TÔ’dãŸÿv$é, ˜ ðåç¿ýÝ?dg€edYï¿Y¨}Œ$ƒ!w#©ŒÌtÝe“œ8Í*J®?ùušWyì±Dåq£ F÷Æ#];ɺ7Tž,ŽiŒÌ\Tz®ãPÝ£] 4j¾ÿÆšw å¤Nj3YJMc¡æó±fö™4u©}0'j`¬~iTv]ΑvÆFeÍä9{Í÷µKüÉ_gQéÔfqhscô1˵¹^þL÷H³g:i÷Ý—æÈÈr6—SÒ[U­ñÌÜוqµ¯ P =²¼kœôp\€ãr€=ï$YÉV(c›ê©v-(ä8Y8×Éšš‘ÅÈc¡‰ºw¾)Õ¿ú·'<’;÷Ú°v‚±ê®¶ðòÎ2窾²mè97ÜÏ'ŽVm©]qÖJö² `TR€±0“%]£/œO³ëBm‹$IÝÙŠuœÚ¤Û'*ƒšËºÇXœsAEeÍêÊûä^êWÿË#yæ5“ÀB^¡jŸ'së™­r©%p*cy\3©ì«Á @­ñŠ9ãÇÒ”ñjÆétqQ]¯*/•GÞ¼ÞŒóÐ'`pÀÜ×X‰Â>¬c<1㤖åÞNÛÈsטï?7ꮼýîç?pȧ}ñÂMhô\•5wîm{Ft­ô3×ASk™ÏdT²60ßìŽÙ3ñcÆãU6 ú0„ÆLÆÌÇmâ €ãç©2S¸p±Œ43Ðs¯ÊrNÎkšñ‹Ï€ùö7¿ü÷Œ£>í“‹f²0²fros‚™ì µ•Q€óT©Œ$Ù@Þí3IüøíX”zìùä^6Ò8+ÉHÞîzõÔ¸.Ê9Û ªenÙ3 hžë”œŒÎ¦–±4—9½ÿ«4ãŸþö—Ã\ãÓ>9@TæLÏ$Yc^0Æ®Æ2Oœê€‘–±’;Ù ’^pœf2âÇìM-ŒvÌ@%4’dͼº^FÀuw¯5Gšëb¦)óÙ³ö 8•þÅ绹o?þòo8U’i3^£³ÆæËY?M’]±ôi­ùHú¥A¡Ã‚1Û,PùúY€±ŒäUÛ#ûÔêLØ`úúݲ1×HÏ÷¨4•µ~šôáæ³Ñ`Þ»:kΖð“ßýýïþ¼ä‘µHÈ©ÍýžŸ}øü9iN÷Z«sþ ¨…lœs‘ ˜ï¿ÿ— * BD6ÔJ,@@úY.Œ§™ü¢+ €z,À‰ƒ#kÍic NÔª¶æb@-×ÛnŸüîïùoTvß0R÷ýþè÷üìÃûÏ›³Oã¼>ûص,ÀÜÔêÅ|¤¤óý÷ÿâ€z·qÍ6ÍÎVÒ{CúëO‡Õfò¶+`¬`U6À¸û8k¿N ÆÑNµ]#LŒjÞ†ÀO~÷÷¿ûweÊB‚‹ñgüÑïùÙ‡÷ŸÓY`ðÓþüg-p¨…­¶Eö¸Ö:/`¾ÿþ7£ñŇ͡Ú4ó ƒ#i•Ìt’ƒÁRÉ»®g탂S`œ• u?Ǫ·õ±¡ÕVÛ邳Ú1³ž»a&€ŸüÕï?¼ºT›æ>IîvJmçO¾c~øEI0ûu ÖA+ÕT¸,æûW§—=ÕÂÈçwcdŸÐnɱ˜i…£’G—y¯™̱¢’«ö8“Vã´a`Ü;cûùÿÍXŽÃe׶̽²P[Íž ¨JºyîÅ1ïÅH/»`äEž¿h.ÏÉÅÔ+Îßÿ†±Oã7pν ÖX4ÇPZŒ,,#IÖ)m&[ÍÇÎI¸,€ÑchPî¹ýüÇ”ÅXG1¥veÏØ]­6³ÇqBõ9F’¦± YŒð²Áµ3ßv8ŒÇáb\µ©WË5•ïÃg4Ì^Õè±r7&Æâ˜ÛYË5>$‹Ùf²9f^òLGm€Ã4ŽࢦmfýüǨÍfìQ”Q«Ö™«8ÒQ0ÖÎÙ7¶q&M…—8Œ¼ëç.G_FcëÚ†_ýšÑ—‘³[;c=¦Í1žóN²ä‘$Iîd.ƪ$ Ž à%Qk€¹œ ²*yûù› T3Œ5²yXÍv¸Œ´žÚý|Ø•8™ûàĪ=;[¶ñüˆ÷ÿ’ê,c)¶JrßýH¶ZÍØ'èÚ©¬–ti˜#™I’Ä®g’7É}μ››ZõHîàT©Ö€sâbî»òX+÷r8™¹»öx.Ɖٕ†3Ö§Ê]MÍôeöL5†Zã±WÞÄÒ“ñ©éÑõÈ_}ÙöØÎ‚l•¿øí=Óeì’uh^Ú±ÆMV3› ×È«ñL’ì½ûœ¼ù=®dXc¤ 0Q 8ƈàb4˜MŸ`c>³áeo F¶3V}ÚôXÚ?ÿ°Osc¬Q8·z|ûa>Ò¨6×r2×1Œ;›¹P– çcÕê$É>/ž¼~—‡•ÌJ²é€ÙŒÀydŒls]S7§Z{à\8hàÂݳTöXcSyÀiÞŸ.c<–öçßÌmîëî5¢òúãKÚ,'µÚ03võ3i£QsýÿªÔD $:MeIEND®B`‚images/w-logo-white.png000066600000012423152330733730011055 0ustar00‰PNG  IHDR  ¼—÷PLTEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÞyxütRNS  !"#$%&'(*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþxDÏIDATxÚÍ]i@UÕ¾( ¢‚b‘99áC‰¥V*iõ”œHˆ/ÅJeHEÔæ|!>¤¹W’6¼R{6)8„Ù³§¦"”9äôT”dáüx÷ì}†=¬½Ï¹poºÝ{Î^g¯{ÖÞk¯õ­µ×u8ÜÑMML[µ~Ãæüýûó7oX¿*-qê @Ç­ÐÚIÈ-¸ €íBAn˜v7‘¹ ˆuEŠe+Zt˜kžq@±Ýd„7þ3¹ó’S*`¥ªJp£4gˆ×ŸÄ^—´_˜ÁÏä& íÙ1Ð×áð ìØ34l|RnÁy¦Û/i]<Ï]ÃÈ]Ô ×D l!êÜb`ÔšƒT÷]‘ =ÊžïŒb´£Ùv¦PDöQ‚¨d†¯ÇØó‹?eŒS»#¦}Ê61;j ÒSñ~a¯i²9§ŠR:»JÞ9ÅTIç“›ºŸ¿q'õÇ_Î ­Û#B³.ëÏ89ÎÍìݽUô¹¤æuLó¤sús¶ÞíN­œZ©ÿò¹Mê÷¨&suIT¦ºMwÒ—nñtá lÔgTô¬‹—§%ÆE »Wl)øN/Öô(·°ç³J{^Ù|oXü“Ò7þ|Ý9.îywé“@ïùeZ§U>õç¯s¡ö°¼¶ÀÝ> Ÿž“mÂ'Þ›Ñ k›§Ý/ì\_þÆj ¯(Œ»Õhôº“v,…³klÀ‡iJçòØúíÚ„^܈½õ@ö%ûÖÌéU¹Ÿ·X[xõØYZïÕG?vYÇS\lÇf³Ê¹Ÿ¶X [ו¿`mõæùÓ×ý“Î*uhW0œøk3±$¸nüõÃÓ¿2޾|ûŠËJ[ÕŒvŽÅb>ׯ.ü »ŠEÓ—–zf¹RVõ*m›õÅSåê0×ù›€Mãï(Szúe¥ží³(mðf|‚«üÅÔ ÂMÔêí¶]qCûy8µš7¡‹51.¾?Ì_6©À|—T*niµ™ä†Þ sèÒ;†å›J)¾CŠÛÚáä“S±”]˜‡ýÐú¨¡–ï¢ZÅ­:…ôMâ¼®Ú^ËÁX¿üù}¨¸¹}ÛŠäk›ú°u 'ßö?*noÅÝ9)—ØÚS|ñþ–MN¿³ŠZé#Äx¥ìµ³/gbýB¬ßiUŠGÚEbá6ÀÚ&Ó†}…õ3¡ÿR<ÁÜ©WÒ¾M#¬±-­¯Îh«8Fìó<À^Å2Þ @»Þe ÖÙÏ•Äþ;ÓüïÝí…òiˆýXóBt­ûù» Àb±Ÿ"õß°ýGly7ÜÏ_­Ð™Ãö¡Ä×kŒ4`±iŸŽ¾î¯Žïl챿ŒÔe¥¹ã„\ó×;HöØJΠ\t{±¹¿ýì ³A6Ç£W$BEþRdjÀ·<¢ž§Èl„¼Ñ­ü Ñ›þïTÏì¤j$ õ±¯¦'éÜãšGø«±À€ÑJ> á‡É1ð ?Î>­8}pû–bâBåέ…Å%ЍüÔï¶g” ÅVÖá6ɾ‹ðÓùæ‚Z”ºâ…•iKçÆL3l@×;ðÜô2wæß»â+þí{Þ?r\tܼE©ËŸW)æLŸ4úáþ]‚ðžÐðeŠÁ2«Ív>Úkx”8©@oë‰)Ì´ á¥Fݽ‘â¹MáãÓmŒ÷…>Ò`»úNŠÁþVݧ#k‡Ý’g ¹iÃ^ô=­k“¿f´/g9Z­31 MnŽõhþo›°š=,=ðcz•ì°¤˜ƒ6±í­çã'ìRôõä¬ÔìÏöU³k[´O>J4i#©›»ÕKI’_•.Qmg@Õ–-ê¾B0D¼¶JR»í¦âƒÈ˜•ÅzÉ”/h ¢™‚u½ÒˆV YKZiê…,éÄ8"aðŸ6´ Ñæ ŒÑRÃÎËR»¥º ÅWås>UÂà5ðÝg‰º_‚ãšs,EoÍøòdÆ›ò4ˆ-€eõ8‰Å@YŸ{«@Ñph<)šâþ/ò½#Ô®[mP6‹–T ~>B¹Æoƒ[‘ŒÁ ˆâ øÑ¶bFSz7Èà\YKa e`VÁOÏA–¤×)1Á\ï…”Ó¼Vý>®S?NÔo`K?bp‘ì>.FRÀv£Û9‘'õoMv™/S“½¢| ×Íeww„àM¶3NÈéã &R;íP~ޱck¿ïNh¼ÿȵHÆ'$­˜ÎÑåý+Êj§kAÙ|_#_1øœì‚î«ƺk…¯~J©ù1Ήê‡(ý'ë&ÈO 6"cp;D1PBpœ6#ï×V›þ=Jý–èü«~ÐãÍ ò>Ðxûd¨ZGˆâ¸„b(ïn:[0ùÛrÑÖëlºô¨Aý 4\’ì.†(^–Ð(ÖçÚÕIÚ÷ê—ç5¿ó<û3œn9dÇË< 1x¯„`'eß^Ñ®¦ëWÎc"P½˜¯_\o’„ÆÛ+ãð>ˆâI<¬9ôK6êWòÕoXUå>öûÐp 2ÿQ¼ !MôK4¢µú´8aÍXñD&ǵfÀp¤±jØÊ¶¢ßm@Nø©˜sÝ Qˆ“ÁKÌð ÞE ÁËA®ú&0ÉÚŽVÆ`D±\ØýwÔÚlRXyŽÍXÛ œÜŽo/‹¸“‚V®=ÝNAz3V‡º'°€~Àjk8’n¯»†šì­}ËôÅ[È~5áB€o€v|¼„ÁAÓDÝ¿}îåúUêÛO3˜nÃŽo'–ñYÐ]uôõD-)/džð!4^¾‹£&ËAM´ˆ1µHØ%Zá/BhÁö€Áeø½_Ï£ÉRÍpáuèjSëš„Ž þDÙ;b_ X=µkSlÙñÛ]”°æqíªèûE“Sw=v]õ­î1[vü,©„¡•¿DªÖ3a@9'¤“!ÎÞ¶ìøÖ5 ÅÙFM^…qÄÞdà36·¹‡$ö­D³÷ÚFMÃ÷†3—o£Í-Ú`-·eÇÇJ$\ t³‰š\oFà»f«ò¢ VÚä?jËŽªJØ©ÆW]Íò¹(™fòRVÈ'|’ dÇ-”°s7?îe5YŠïüEdõhšr;—Ù³ãŸJø秇í¡&ƒi°…ó–5·“vÜÇÚ³ão¿!p0 ýAõe¬š”1×'°Ž;}ÜeÓŽß&0J+¹ÚÄjò’­+ }ÐàÑ%{v|Œ@Â(ôBŠšLÆ×?fÏ(ðHãÆ¨ÖˆW hÇßV JX3¬6¬lªñ¬ògSŸ7qð[{ À„L(÷õKPšûQdšl£S³=Ø4 …k–ÃM%¬;éÏZ£&qD¶Ùú’p¢ù´ÅP ¿ðýë–¨Im[xªœöâAt†Èð-£ÝŒ·ð+Æ÷+Ôd`ÓÌ¢öæË4À½G³áþÆK˜€Ì_´BM’¦åHjÓ ‚BaÀõK@¿åuNÂpEû:ÔrÚ®-kœ_BaL0ñÀ+'Kð1$ü:qe@AœLÖ@@.Ã8‡R´`8ö!€ÁO¡VÂT’í{†ËüàÛP0Ë´'ñz+~¸UŒ„è2?©G=Þ Ám&%`6ð g/ä_Œ„s) (ÚW`LQ‡¹sƒù tJ“Tá_Æ3¸.Š–°½CѾ¹úÍ5pˆ¼¬¥ ©‚IKòIºòÃTRÍD3ï”xÔÃàd¡×Di)LbO' {:x!ŸQf O(Ú·ߺˆMÁìLo/JìaS£rxìø¿’æ O(Ú7›ÏKŠ·Å©QLrô ‡òÃ5¯ $<£è#ô¨ŸÐy˜LÙŽ»déy€²Î^È'„„7qP´¹Ö ÇgÊÒóp‚ã\ã—^á†+2ì'™n^Á#Ð@´®ú LBÕۨÅÎ$8²)¢À)—‰@òg¹!á(`åѾ;nþ»c%KSDÙ$[~;ùØ&cñ0ø@ñÓÞn %@îó¦ÒS¸$[6My8› ‚sq„¡sP´o¦¢|YM•†)HSæ½ùuÂÓ8š–kŽÑšhУžÅ„ΙQ¢7›*ߌÕRÊ€Ä>Ò$ü5È íÛV‹#lïP=wKB˜*Ï6Ì!D=x¢ XÂÄŠöÅb ŠÒåæN*>lÀ×à”Ïó4~% (+@žy‚ܤb0½úMv\ƒ;ðÒð+f¸€ÿ0k+[Fûksƒœ Æ>*=ðÂjÅæ”ˆNwÆvD'r›“Héa³0ˆüÈwèªo¹Eº›oÀ5Ñ!¹H¢Ï™Nfþ€üÐlí Ú¯¾*¨$>Ü{VpþƒÐëeæ ±<¶fyðo2HÕE^| ¤ ôz5‘Ænyð8:9‰R ðì]"aŒö‘qé§KB~tÒáÃ>Brx _x( 'Status', 'Site Health' ), /* translators: Tab heading for Site Health Info page. */ 'debug' => _x( 'Info', 'Site Health' ), ); /** * Filters the extra tabs for the Site Health navigation bar. * * Add a custom page to the Site Health screen, based on a tab slug and label. * The label you provide will also be used as part of the site title. * * @since 5.8.0 * * @param string[] $tabs An associative array of tab labels keyed by their slug. */ $tabs = apply_filters( 'site_health_navigation_tabs', $tabs ); $wrapper_classes = array( 'health-check-tabs-wrapper', 'hide-if-no-js', 'tab-count-' . count( $tabs ), ); $current_tab = $_GET['tab'] ?? ''; $title = sprintf( // translators: %s: The currently displayed tab. __( 'Site Health - %s' ), ( isset( $tabs[ $current_tab ] ) ? esc_html( $tabs[ $current_tab ] ) : esc_html( reset( $tabs ) ) ) ); if ( ! current_user_can( 'view_site_health_checks' ) ) { wp_die( __( 'Sorry, you are not allowed to access site health information.' ), '', 403 ); } wp_enqueue_style( 'site-health' ); wp_enqueue_script( 'site-health' ); if ( ! class_exists( 'WP_Site_Health' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; } if ( 'update_https' === $action ) { check_admin_referer( 'wp_update_https' ); if ( ! current_user_can( 'update_https' ) ) { wp_die( __( 'Sorry, you are not allowed to update this site to HTTPS.' ), 403 ); } if ( ! wp_is_https_supported() ) { wp_die( __( 'It looks like HTTPS is not supported for your website at this point.' ) ); } $result = wp_update_urls_to_https(); wp_redirect( add_query_arg( 'https_updated', (int) $result, wp_get_referer() ) ); exit; } $health_check_site_status = WP_Site_Health::get_instance(); get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.' ) . '

    ' . '

    ' . __( 'In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.' ) . '

    ' . '

    ' . __( 'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Site Health tool' ) . '

    ' ); // Start by checking if this is a special request checking for the existence of certain filters. $health_check_site_status->check_wp_version_check_exists(); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    'success', 'id' => 'message', 'dismissible' => true, ) ); } else { wp_admin_notice( __( 'Site URLs could not be switched to HTTPS.' ), array( 'type' => 'error', 'id' => 'message', 'dismissible' => true, ) ); } } ?>

    'error', 'additional_classes' => array( 'hide-if-js' ), ) ); ?>

    name, get_taxonomies( array( 'show_ui' => true ) ), true ) ) { wp_die( __( 'Sorry, you are not allowed to edit terms in this taxonomy.' ) ); } if ( ! current_user_can( $tax->cap->manage_terms ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to manage terms in this taxonomy.' ) . '

    ', 403 ); } /** * $post_type is set when the WP_Terms_List_Table instance is created. * * @global string $post_type Global post type. */ global $post_type; $wp_list_table = _get_list_table( 'WP_Terms_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); $title = $tax->labels->name; if ( 'post' !== $post_type ) { $parent_file = ( 'attachment' === $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type"; $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type"; } elseif ( 'link_category' === $tax->name ) { $parent_file = 'link-manager.php'; $submenu_file = 'edit-tags.php?taxonomy=link_category'; } else { $parent_file = 'edit.php'; $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; } add_screen_option( 'per_page', array( 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page', ) ); get_current_screen()->set_screen_reader_content( array( 'heading_pagination' => $tax->labels->items_list_navigation, 'heading_list' => $tax->labels->items_list, ) ); $location = false; $referer = wp_get_referer(); if ( ! $referer ) { // For POST requests. $referer = wp_unslash( $_SERVER['REQUEST_URI'] ); } $referer = remove_query_arg( array( '_wp_http_referer', '_wpnonce', 'error', 'message', 'paged' ), $referer ); switch ( $wp_list_table->current_action() ) { case 'add-tag': check_admin_referer( 'add-tag', '_wpnonce_add-tag' ); if ( ! current_user_can( $tax->cap->edit_terms ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to create terms in this taxonomy.' ) . '

    ', 403 ); } $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST ); if ( $ret && ! is_wp_error( $ret ) ) { $location = add_query_arg( 'message', 1, $referer ); } else { $location = add_query_arg( array( 'error' => true, 'message' => 4, ), $referer ); } break; case 'delete': if ( ! isset( $_REQUEST['tag_ID'] ) ) { break; } $tag_ID = (int) $_REQUEST['tag_ID']; check_admin_referer( 'delete-tag_' . $tag_ID ); if ( ! current_user_can( 'delete_term', $tag_ID ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to delete this item.' ) . '

    ', 403 ); } wp_delete_term( $tag_ID, $taxonomy ); $location = add_query_arg( 'message', 2, $referer ); // When deleting a term, prevent the action from redirecting back to a term that no longer exists. $location = remove_query_arg( array( 'tag_ID', 'action' ), $location ); break; case 'bulk-delete': check_admin_referer( 'bulk-tags' ); if ( ! current_user_can( $tax->cap->delete_terms ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to delete these items.' ) . '

    ', 403 ); } $tags = (array) $_REQUEST['delete_tags']; foreach ( $tags as $tag_ID ) { wp_delete_term( $tag_ID, $taxonomy ); } $location = add_query_arg( 'message', 6, $referer ); break; case 'edit': if ( ! isset( $_REQUEST['tag_ID'] ) ) { break; } $term_id = (int) $_REQUEST['tag_ID']; $term = get_term( $term_id ); if ( ! $term instanceof WP_Term ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } wp_redirect( sanitize_url( get_edit_term_link( $term_id, $taxonomy, $post_type ) ) ); exit; case 'editedtag': $tag_ID = (int) $_POST['tag_ID']; check_admin_referer( 'update-tag_' . $tag_ID ); if ( ! current_user_can( 'edit_term', $tag_ID ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to edit this item.' ) . '

    ', 403 ); } $tag = get_term( $tag_ID, $taxonomy ); if ( ! $tag ) { wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); } $ret = wp_update_term( $tag_ID, $taxonomy, $_POST ); if ( $ret && ! is_wp_error( $ret ) ) { $location = add_query_arg( 'message', 3, $referer ); } else { $location = add_query_arg( array( 'error' => true, 'message' => 5, ), $referer ); } break; default: if ( ! $wp_list_table->current_action() || ! isset( $_REQUEST['delete_tags'] ) ) { break; } check_admin_referer( 'bulk-tags' ); $screen = get_current_screen()->id; $tags = (array) $_REQUEST['delete_tags']; /** This action is documented in wp-admin/edit.php */ $location = apply_filters( "handle_bulk_actions-{$screen}", $location, $wp_list_table->current_action(), $tags ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores break; } if ( ! $location && ! empty( $_REQUEST['_wp_http_referer'] ) ) { $location = remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ); } if ( $location ) { if ( $pagenum > 1 ) { $location = add_query_arg( 'paged', $pagenum, $location ); // $pagenum takes care of $total_pages. } if ( 1 === $pagenum ) { $location = remove_query_arg( 'paged', $location ); } /** * Filters the taxonomy redirect destination URL. * * @since 4.6.0 * * @param string $location The destination URL. * @param WP_Taxonomy $tax The taxonomy object. */ wp_redirect( apply_filters( 'redirect_term_location', $location, $tax ) ); exit; } $wp_list_table->prepare_items(); $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); if ( $pagenum > $total_pages && $total_pages > 0 ) { wp_redirect( add_query_arg( 'paged', $total_pages ) ); exit; } wp_enqueue_script( 'admin-tags' ); if ( current_user_can( $tax->cap->edit_terms ) ) { wp_enqueue_script( 'inline-edit-tax' ); } if ( 'category' === $taxonomy || 'link_category' === $taxonomy || 'post_tag' === $taxonomy ) { $help = ''; if ( 'category' === $taxonomy ) { $help = '

    ' . sprintf( /* translators: %s: URL to Writing Settings screen. */ __( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.' ), 'options-writing.php' ) . '

    '; } elseif ( 'link_category' === $taxonomy ) { $help = '

    ' . __( 'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.' ) . '

    '; } else { $help = '

    ' . __( 'You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.' ) . '

    '; } if ( 'link_category' === $taxonomy ) { $help .= '

    ' . __( 'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.' ) . '

    '; } else { $help .= '

    ' . __( 'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.' ) . '

    '; } get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); if ( 'category' === $taxonomy || 'post_tag' === $taxonomy ) { if ( 'category' === $taxonomy ) { $help = '

    ' . __( 'When adding a new category on this screen, you’ll fill in the following fields:' ) . '

    '; } else { $help = '

    ' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '

    '; } $help .= '
      ' . '
    • ' . __( 'Name — The name is how it appears on your site.' ) . '
    • '; $help .= '
    • ' . __( 'Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '
    • '; if ( 'category' === $taxonomy ) { $help .= '
    • ' . __( 'Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '
    • '; } $help .= '
    • ' . __( 'Description — The description is not prominent by default; however, some themes may display it.' ) . '
    • ' . '
    ' . '

    ' . __( 'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'adding-terms', 'title' => 'category' === $taxonomy ? __( 'Adding Categories' ) : __( 'Adding Tags' ), 'content' => $help, ) ); } $help = '

    ' . __( 'For more information:' ) . '

    '; if ( 'category' === $taxonomy ) { $help .= '

    ' . __( 'Documentation on Categories' ) . '

    '; } elseif ( 'link_category' === $taxonomy ) { $help .= '

    ' . __( 'Documentation on Link Categories' ) . '

    '; } else { $help .= '

    ' . __( 'Documentation on Tags' ) . '

    '; } $help .= '

    ' . __( 'Support forums' ) . '

    '; get_current_screen()->set_help_sidebar( $help ); unset( $help ); } require_once ABSPATH . 'wp-admin/admin-header.php'; // Also used by the Edit Tag form. require_once ABSPATH . 'wp-admin/includes/edit-tag-messages.php'; if ( is_plugin_active( 'wpcat2tag-importer/wpcat2tag-importer.php' ) ) { $import_link = admin_url( 'admin.php?import=wpcat2tag' ); } else { $import_link = admin_url( 'import.php' ); } ?>

    '; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '' ); echo ''; } ?>
    'message', 'additional_classes' => array( $class ), 'dismissible' => true, ) ); $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'message', 'error' ), $_SERVER['REQUEST_URI'] ); } ?>
    search_box( $tax->labels->search_items, 'tag' ); ?>
    cap->edit_terms ); if ( $can_edit_terms ) { ?>
    0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires before the link category form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'add_link_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' ); } else { /** * Fires before the Add Tag form. * * @since 2.5.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_pre_add_form'} instead. * * @param string $taxonomy The taxonomy slug. */ do_action_deprecated( 'add_tag_form_pre', array( $taxonomy ), '3.0.0', '{$taxonomy}_pre_add_form' ); } /** * Fires before the Add Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_pre_add_form` * - `post_tag_pre_add_form` * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( "{$taxonomy}_pre_add_form", $taxonomy ); ?>

    labels->add_new_item; ?>

    >

    labels->name_field_description; ?>

    labels->slug_field_description; ?>

    0, 'hide_if_empty' => false, 'taxonomy' => $taxonomy, 'name' => 'parent', 'orderby' => 'name', 'hierarchical' => true, 'show_option_none' => __( 'None' ), ); /** * Filters the taxonomy parent drop-down on the Edit Term page. * * @since 3.7.0 * @since 4.2.0 Added `$context` parameter. * * @param array $dropdown_args { * An array of taxonomy parent drop-down arguments. * * @type int|bool $hide_empty Whether to hide terms not attached to any posts. Default 0. * @type bool $hide_if_empty Whether to hide the drop-down if no terms exist. Default false. * @type string $taxonomy The taxonomy slug. * @type string $name Value of the name attribute to use for the drop-down select element. * Default 'parent'. * @type string $orderby The field to order by. Default 'name'. * @type bool $hierarchical Whether the taxonomy is hierarchical. Default true. * @type string $show_option_none Label to display if there are no terms. Default 'None'. * } * @param string $taxonomy The taxonomy slug. * @param string $context Filter context. Accepts 'new' or 'edit'. */ $dropdown_args = apply_filters( 'taxonomy_parent_dropdown_args', $dropdown_args, $taxonomy, 'new' ); $dropdown_args['aria_describedby'] = 'parent-description'; wp_dropdown_categories( $dropdown_args ); ?>

    labels->parent_field_description; ?>

    labels->desc_field_description; ?>

    labels->add_new_item, 'primary', 'submit', false ); ?>

    0 ) ), '3.0.0', '{$taxonomy}_add_form' ); } elseif ( 'link_category' === $taxonomy ) { /** * Fires at the end of the Edit Link form. * * @since 2.3.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param object $arg Optional arguments cast to an object. */ do_action_deprecated( 'edit_link_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' ); } else { /** * Fires at the end of the Add Tag form. * * @since 2.7.0 * @deprecated 3.0.0 Use {@see '{$taxonomy}_add_form'} instead. * * @param string $taxonomy The taxonomy slug. */ do_action_deprecated( 'add_tag_form', array( $taxonomy ), '3.0.0', '{$taxonomy}_add_form' ); } /** * Fires at the end of the Add Term form for all taxonomies. * * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. * * Possible hook names include: * * - `category_add_form` * - `post_tag_add_form` * * @since 3.0.0 * * @param string $taxonomy The taxonomy slug. */ do_action( "{$taxonomy}_add_form", $taxonomy ); ?>
    views(); ?>
    display(); ?>

    ' . apply_filters( 'the_category', get_cat_name( get_option( 'default_category' ) ), '', '' ) . '' ); ?>

    category to tag converter.' ), esc_url( $import_link ) ); ?>

    tag to category converter.' ), esc_url( $import_link ) ); ?>

    inline_edit(); require_once ABSPATH . 'wp-admin/admin-footer.php'; press-this.php000066600000004646152330733730007402 0ustar00cap->create_posts ) ) { wp_die( __( 'Sorry, you are not allowed to create posts as this user.' ), __( 'You need a higher level of permission.' ), 403 ); } elseif ( is_plugin_active( $plugin_file ) ) { include WP_PLUGIN_DIR . '/press-this/class-wp-press-this-plugin.php'; // @phpstan-ignore include.fileNotFound $wp_press_this = new WP_Press_This_Plugin(); // @phpstan-ignore class.notFound $wp_press_this->html(); } elseif ( current_user_can( 'activate_plugins' ) ) { if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_file ) ) { $url = wp_nonce_url( add_query_arg( array( 'action' => 'activate', 'plugin' => $plugin_file, 'from' => 'press-this', ), admin_url( 'plugins.php' ) ), 'activate-plugin_' . $plugin_file ); $action = sprintf( '%2$s', esc_url( $url ), __( 'Activate Press This' ) ); } else { if ( is_main_site() ) { $url = wp_nonce_url( add_query_arg( array( 'action' => 'install-plugin', 'plugin' => $plugin_slug, 'from' => 'press-this', ), self_admin_url( 'update.php' ) ), 'install-plugin_' . $plugin_slug ); $action = sprintf( '%3$s', esc_url( $url ), esc_attr( $plugin_slug ), _x( 'Install Now', 'plugin' ) ); } else { $action = sprintf( /* translators: %s: URL to Press This bookmarklet on the main site. */ __( 'Press This is not installed. Please install Press This from the main site.' ), get_admin_url( get_current_network_id(), 'press-this.php' ) ); } } wp_die( __( 'The Press This plugin is required.' ) . '
    ' . $action, __( 'Installation Required' ), 200 ); } else { wp_die( __( 'Press This is not available. Please contact your site administrator.' ), __( 'Installation Required' ), 200 ); } } wp_load_press_this(); install.php000066600000043641152330733730006745 0ustar00 Error: PHP is not running

    Error: PHP is not running

    WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.

    > <?php _e( 'WordPress › Installation' ); ?> get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->users ) ) ) !== null ); // Ensure that sites appear in search engines by default. $blog_public = 1; if ( isset( $_POST['weblog_title'] ) ) { $blog_public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : $blog_public; } $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : ''; $user_name = isset( $_POST['user_name'] ) ? trim( wp_unslash( $_POST['user_name'] ) ) : ''; $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : ''; if ( ! is_null( $error ) ) { ?>

    'submit' ) ); ?>

    ' . __( 'Already Installed' ) . '' . '

    ' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '

    ' . '

    ' . __( 'Log In' ) . '

    ' . '' ); } /** * @global string $wp_version The WordPress version string. * @global string $required_php_version The minimum required PHP version string. * @global string[] $required_php_extensions The names of required PHP extensions. * @global string $required_mysql_version The minimum required MySQL version string. * @global wpdb $wpdb WordPress database abstraction object. */ global $wp_version, $required_php_version, $required_php_extensions, $required_mysql_version, $wpdb; $php_version = PHP_VERSION; $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); $php_update_message = '

    ' . sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $php_update_message .= '

    ' . $annotation . ''; } if ( ! $mysql_compat && ! $php_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */ __( 'You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ) . $php_update_message; } elseif ( ! $php_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */ __( 'You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_php_version, $php_version ) . $php_update_message; } elseif ( ! $mysql_compat ) { $compat = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */ __( 'You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_mysql_version, $mysql_version ); } if ( ! $mysql_compat || ! $php_compat ) { display_header(); die( '

    ' . __( 'Requirements Not Met' ) . '

    ' . $compat . '

    ' ); } if ( isset( $required_php_extensions ) && is_array( $required_php_extensions ) ) { $missing_extensions = array(); foreach ( $required_php_extensions as $extension ) { if ( extension_loaded( $extension ) ) { continue; } $missing_extensions[] = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: The PHP extension name needed. */ __( 'You cannot install because WordPress %2$s requires the %3$s PHP extension.' ), $version_url, $wp_version, $extension ); } if ( count( $missing_extensions ) > 0 ) { display_header(); die( '

    ' . __( 'Requirements Not Met' ) . '

    ' . implode( '

    ', $missing_extensions ) . '

    ' ); } } if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) { display_header(); die( '

    ' . __( 'Configuration Error' ) . '

    ' . '

    ' . sprintf( /* translators: %s: wp-config.php */ __( 'Your %s file has an empty database table prefix, which is not supported.' ), 'wp-config.php' ) . '

    ' ); } // Set error message if DO_NOT_UPGRADE_GLOBAL_TABLES isn't set as it will break install. if ( defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) { display_header(); die( '

    ' . __( 'Configuration Error' ) . '

    ' . '

    ' . sprintf( /* translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES */ __( 'The constant %s cannot be defined when installing WordPress.' ), 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) . '

    ' ); } /** * @global string $wp_local_package Locale code of the package. * @global WP_Locale $wp_locale WordPress date and time locale object. * @global wpdb $wpdb WordPress database abstraction object. */ $language = ''; if ( ! empty( $_REQUEST['language'] ) ) { $language = sanitize_locale_name( $_REQUEST['language'] ); } elseif ( isset( $GLOBALS['wp_local_package'] ) ) { $language = $GLOBALS['wp_local_package']; } $scripts_to_print = array( 'jquery' ); switch ( $step ) { case 0: // Step 0. if ( wp_can_install_language_pack() && empty( $language ) ) { $languages = wp_get_available_translations(); if ( $languages ) { $scripts_to_print[] = 'language-chooser'; display_header( 'language-chooser' ); echo '
    '; wp_install_language_form( $languages ); echo '
    '; break; } } // Deliberately fall through if we can't reach the translations API. case 1: // Step 1, direct link or from language chooser. if ( ! empty( $language ) ) { $loaded_language = wp_download_language_pack( $language ); if ( $loaded_language ) { load_default_textdomain( $loaded_language ); $GLOBALS['wp_locale'] = new WP_Locale(); } } $scripts_to_print[] = 'user-profile'; display_header(); ?>

    error ) ) { wp_die( $wpdb->error->get_error_message() ); } $scripts_to_print[] = 'user-profile'; display_header(); // Fill in the data we gathered. $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : ''; $user_name = isset( $_POST['user_name'] ) ? trim( wp_unslash( $_POST['user_name'] ) ) : ''; $admin_password = isset( $_POST['admin_password'] ) ? wp_unslash( $_POST['admin_password'] ) : ''; $admin_password_check = isset( $_POST['admin_password2'] ) ? wp_unslash( $_POST['admin_password2'] ) : ''; $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : ''; $public = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 1; // Check email address. $error = false; if ( empty( $user_name ) ) { // TODO: Poka-yoke. display_setup_form( __( 'Please provide a valid username.' ) ); $error = true; } elseif ( sanitize_user( $user_name, true ) !== $user_name ) { display_setup_form( __( 'The username you provided has invalid characters.' ) ); $error = true; } elseif ( $admin_password !== $admin_password_check ) { // TODO: Poka-yoke. display_setup_form( __( 'Your passwords do not match. Please try again.' ) ); $error = true; } elseif ( empty( $admin_email ) ) { // TODO: Poka-yoke. display_setup_form( __( 'You must provide an email address.' ) ); $error = true; } elseif ( ! is_email( $admin_email ) ) { // TODO: Poka-yoke. display_setup_form( __( 'Sorry, that is not a valid email address. Email addresses look like username@example.com.' ) ); $error = true; } if ( false === $error ) { $wpdb->show_errors(); $result = wp_install( $weblog_title, $user_name, $admin_email, $public, '', wp_slash( $admin_password ), $loaded_language ); ?>


    edit-tag-form.php000066600000024651152330733730007736 0ustar00

    labels->edit_item; ?>

    ' . $message . '

    '; if ( $wp_http_referer ) { $message .= sprintf( '

    %2$s

    ', esc_url( wp_validate_redirect( sanitize_url( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ), esc_html( $tax->labels->back_to_items ) ); } wp_admin_notice( $message, array( 'type' => $class, 'id' => 'message', 'paragraph_wrap' => false, ) ); } ?>
    > name ) ) { $tag_name_value = esc_attr( $tag->name ); } ?> slug ) ? apply_filters( 'editable_slug', $tag->slug, $tag ) : ''; ?>
    add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.' ) . '

    ' . '

    ' . __( 'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Privacy Settings' ) . '

    ' ); if ( ! empty( $action ) ) { check_admin_referer( $action ); if ( 'set-privacy-page' === $action ) { $privacy_policy_page_id = isset( $_POST['page_for_privacy_policy'] ) ? (int) $_POST['page_for_privacy_policy'] : 0; update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); $privacy_page_updated_message = __( 'Privacy Policy page updated successfully.' ); if ( $privacy_policy_page_id ) { /* * Don't always link to the menu customizer: * * - Unpublished pages can't be selected by default. * - `WP_Customize_Nav_Menus::__construct()` checks the user's capabilities. * - Themes might not "officially" support menus. */ if ( 'publish' === get_post_status( $privacy_policy_page_id ) && current_user_can( 'edit_theme_options' ) && current_theme_supports( 'menus' ) ) { $privacy_page_updated_message = sprintf( /* translators: %s: URL to Customizer -> Menus. */ __( 'Privacy Policy page setting updated successfully. Remember to update your menus!' ), esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) ); } } add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', $privacy_page_updated_message, 'success' ); } elseif ( 'create-privacy-page' === $action ) { if ( ! class_exists( 'WP_Privacy_Policy_Content' ) ) { require_once ABSPATH . 'wp-admin/includes/class-wp-privacy-policy-content.php'; } $privacy_policy_page_content = WP_Privacy_Policy_Content::get_default_content(); $privacy_policy_page_id = wp_insert_post( array( 'post_title' => __( 'Privacy Policy' ), 'post_status' => 'draft', 'post_type' => 'page', 'post_content' => $privacy_policy_page_content, ), true ); if ( is_wp_error( $privacy_policy_page_id ) ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', __( 'Unable to create a Privacy Policy page.' ), 'error' ); } else { update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); wp_redirect( admin_url( 'post.php?post=' . $privacy_policy_page_id . '&action=edit' ) ); exit; } } } // If a Privacy Policy page ID is available, make sure the page actually exists. If not, display an error. $privacy_policy_page_exists = false; $privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' ); if ( ! empty( $privacy_policy_page_id ) ) { $privacy_policy_page = get_post( $privacy_policy_page_id ); if ( ! $privacy_policy_page instanceof WP_Post ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', __( 'The currently selected Privacy Policy page does not exist. Please create or select a new page.' ), 'error' ); } else { if ( 'trash' === $privacy_policy_page->post_status ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', sprintf( /* translators: %s: URL to Pages Trash. */ __( 'The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.' ), 'edit.php?post_status=trash&post_type=page' ), 'error' ); } else { $privacy_policy_page_exists = true; } } } $parent_file = 'options-general.php'; wp_enqueue_script( 'privacy-tools' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>
    'error', 'additional_classes' => array( 'hide-if-js' ), ) ); ?>

    $privacy_policy_page_id, 'action' => 'edit', ), admin_url( 'post.php' ) ); $view_href = get_permalink( $privacy_policy_page_id ); ?> Edit or view your Privacy Policy page content.' ), esc_url( $edit_href ), esc_url( $view_href ) ); } else { printf( /* translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy Policy page. */ __( 'Edit or preview your Privacy Policy page content.' ), esc_url( $edit_href ), esc_url( $view_href ) ); } ?> Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), esc_url( admin_url( 'options-privacy.php?tab=policyguide' ) ), '', '' ); ?>


    'page', 'posts_per_page' => 1, 'post_status' => array( 'publish', 'draft', ), ) ); ?>
    db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) ) { $mysql_compat = true; } else { $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ); } $missing_extensions = array(); if ( isset( $required_php_extensions ) && is_array( $required_php_extensions ) ) { foreach ( $required_php_extensions as $extension ) { if ( extension_loaded( $extension ) ) { continue; } $missing_extensions[] = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: The PHP extension name needed. */ __( 'You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.' ), $version_url, $wp_version, $extension ); } } header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); ?> > <?php _e( 'WordPress › Update' ); ?>

    ' . sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $php_update_message .= '

    ' . $annotation . ''; } if ( ! $mysql_compat && ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */ __( 'You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ) . $php_update_message; } elseif ( ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */ __( 'You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_php_version, $php_version ) . $php_update_message; } elseif ( ! $mysql_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */ __( 'You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_mysql_version, $mysql_version ); } echo '

    ' . $message . '

    '; elseif ( count( $missing_extensions ) > 0 ) : echo '

    ' . implode( '

    ', $missing_extensions ) . '

    '; else : switch ( $step ) : case 0: $goback = wp_get_referer(); if ( $goback ) { $goback = sanitize_url( $goback ); $goback = urlencode( $goback ); } ?>

    edit-link-form.php000066600000014322152330733730010112 0ustar00Links / Edit Link' ), 'link-manager.php' ); $submit_text = __( 'Update Link' ); $form_name = 'editlink'; $nonce_action = 'update-bookmark_' . $link_id; } else { /* translators: %s: URL to Links screen. */ $heading = sprintf( __( 'Links / Add Link' ), 'link-manager.php' ); $submit_text = __( 'Add Link' ); $form_name = 'addlink'; $nonce_action = 'add-bookmark'; } require_once ABSPATH . 'wp-admin/includes/meta-boxes.php'; add_meta_box( 'linksubmitdiv', __( 'Save' ), 'link_submit_meta_box', null, 'side', 'core' ); add_meta_box( 'linkcategorydiv', __( 'Categories' ), 'link_categories_meta_box', null, 'normal', 'core' ); add_meta_box( 'linktargetdiv', __( 'Target' ), 'link_target_meta_box', null, 'normal', 'core' ); add_meta_box( 'linkxfndiv', __( 'Link Relationship (XFN)' ), 'link_xfn_meta_box', null, 'normal', 'core' ); add_meta_box( 'linkadvanceddiv', __( 'Advanced' ), 'link_advanced_meta_box', null, 'normal', 'core' ); /** This action is documented in wp-admin/includes/meta-boxes.php */ do_action( 'add_meta_boxes', 'link', $link ); /** * Fires when link-specific meta boxes are added. * * @since 3.0.0 * * @param object $link Link object. */ do_action( 'add_meta_boxes_link', $link ); /** This action is documented in wp-admin/includes/meta-boxes.php */ do_action( 'do_meta_boxes', 'link', 'normal', $link ); /** This action is documented in wp-admin/includes/meta-boxes.php */ do_action( 'do_meta_boxes', 'link', 'advanced', $link ); /** This action is documented in wp-admin/includes/meta-boxes.php */ do_action( 'do_meta_boxes', 'link', 'side', $link ); add_screen_option( 'layout_columns', array( 'max' => 2, 'default' => 2, ) ); get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '

    ' . '

    ' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '

    ' . '

    ' . __( 'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Creating Links' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>


    'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } ?>

    https://wordpress.org/ — do not forget the https://' ); ?>

    load-scripts.php000066600000004026152330733730007675 0ustar00get_etag( $load ); if ( isset( $_SERVER['HTTP_IF_NONE_MATCH'] ) && stripslashes( $_SERVER['HTTP_IF_NONE_MATCH'] ) === $etag ) { header( "$protocol 304 Not Modified" ); exit; } foreach ( $load as $handle ) { if ( ! array_key_exists( $handle, $wp_scripts->registered ) ) { continue; } $path = ABSPATH . $wp_scripts->registered[ $handle ]->src; $out .= get_file( $path ) . "\n"; } header( "Etag: $etag" ); header( 'Content-Type: application/javascript; charset=UTF-8' ); header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' ); header( "Cache-Control: public, max-age=$expires_offset" ); echo $out; exit; nav-menus.php000066600000142113152330733730007202 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

    ' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '

    ', 403 ); } // Used in the HTML title tag. $title = __( 'Menus' ); wp_enqueue_script( 'nav-menu' ); if ( wp_is_mobile() ) { wp_enqueue_script( 'jquery-touch-punch' ); } // Container for any messages displayed to the user. $messages = array(); // Container that stores the name of the active menu. $nav_menu_selected_title = ''; // The menu id of the current menu being edited. $nav_menu_selected_id = isset( $_REQUEST['menu'] ) ? (int) $_REQUEST['menu'] : 0; // Get existing menu locations assignments. $locations = get_registered_nav_menus(); $menu_locations = get_nav_menu_locations(); $num_locations = count( array_keys( $locations ) ); // Allowed actions: add, update, delete. $action = $_REQUEST['action'] ?? 'edit'; /* * If a JSON blob of navigation menu data is found, expand it and inject it * into `$_POST` to avoid PHP `max_input_vars` limitations. See #14134. */ _wp_expand_nav_menu_post_data(); switch ( $action ) { case 'add-menu-item': check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' ); if ( isset( $_REQUEST['nav-menu-locations'] ) ) { set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) ); } elseif ( isset( $_REQUEST['menu-item'] ) ) { wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] ); } break; case 'move-down-menu-item': // Moving down a menu item is the same as moving up the next in order. check_admin_referer( 'move-menu_item' ); $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; if ( is_nav_menu_item( $menu_item_id ) ) { $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { $menu_id = (int) $menus[0]; $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); // Set up the data we need in one pass through the array of menu items. $dbids_to_orders = array(); $orders_to_dbids = array(); foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { if ( isset( $ordered_menu_item_object->ID ) ) { if ( isset( $ordered_menu_item_object->menu_order ) ) { $dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order; $orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID; } } } // Get next in order. if ( isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ] ) ) { $next_item_id = $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ]; $next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) ); // If not siblings of same parent, bubble menu item up but keep order. if ( ! empty( $menu_item_data['menu_item_parent'] ) && ( empty( $next_item_data['menu_item_parent'] ) || (int) $next_item_data['menu_item_parent'] !== (int) $menu_item_data['menu_item_parent'] ) ) { if ( in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { $parent_db_id = (int) $menu_item_data['menu_item_parent']; } else { $parent_db_id = 0; } $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); if ( ! is_wp_error( $parent_object ) ) { $parent_data = (array) $parent_object; $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; // Reset invalid `menu_item_parent`. $menu_item_data = _wp_reset_invalid_menu_item_parent( $menu_item_data ); update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); } // Make menu item a child of its next sibling. } else { $next_item_data['menu_order'] = $next_item_data['menu_order'] - 1; $menu_item_data['menu_order'] = $menu_item_data['menu_order'] + 1; $menu_item_data['menu_item_parent'] = $next_item_data['ID']; // Reset invalid `menu_item_parent`. $menu_item_data = _wp_reset_invalid_menu_item_parent( $menu_item_data ); update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); wp_update_post( $menu_item_data ); wp_update_post( $next_item_data ); } // The item is last but still has a parent, so bubble up. } elseif ( ! empty( $menu_item_data['menu_item_parent'] ) && in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { $menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true ); // Reset invalid `menu_item_parent`. $menu_item_data = _wp_reset_invalid_menu_item_parent( $menu_item_data ); update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); } } } break; case 'move-up-menu-item': check_admin_referer( 'move-menu_item' ); $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; if ( is_nav_menu_item( $menu_item_id ) ) { if ( isset( $_REQUEST['menu'] ) ) { $menus = array( (int) $_REQUEST['menu'] ); } else { $menus = wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); } if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { $menu_id = (int) $menus[0]; $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); // Set up the data we need in one pass through the array of menu items. $dbids_to_orders = array(); $orders_to_dbids = array(); foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { if ( isset( $ordered_menu_item_object->ID ) ) { if ( isset( $ordered_menu_item_object->menu_order ) ) { $dbids_to_orders[ $ordered_menu_item_object->ID ] = $ordered_menu_item_object->menu_order; $orders_to_dbids[ $ordered_menu_item_object->menu_order ] = $ordered_menu_item_object->ID; } } } // If this menu item is not first. if ( ! empty( $dbids_to_orders[ $menu_item_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) { // If this menu item is a child of the previous. if ( ! empty( $menu_item_data['menu_item_parent'] ) && in_array( (int) $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ), true ) && isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) && ( (int) $menu_item_data['menu_item_parent'] === $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) { if ( in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { $parent_db_id = (int) $menu_item_data['menu_item_parent']; } else { $parent_db_id = 0; } $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); if ( ! is_wp_error( $parent_object ) ) { $parent_data = (array) $parent_object; /* * If there is something before the parent and parent a child of it, * make menu item a child also of it. */ if ( ! empty( $dbids_to_orders[ $parent_db_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) && ! empty( $parent_data['menu_item_parent'] ) ) { $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; /* * Else if there is something before parent and parent not a child of it, * make menu item a child of that something's parent */ } elseif ( ! empty( $dbids_to_orders[ $parent_db_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) ) { $_possible_parent_id = (int) get_post_meta( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ], '_menu_item_menu_item_parent', true ); if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ), true ) ) { $menu_item_data['menu_item_parent'] = $_possible_parent_id; } else { $menu_item_data['menu_item_parent'] = 0; } // Else there isn't something before the parent. } else { $menu_item_data['menu_item_parent'] = 0; } // Set former parent's [menu_order] to that of menu-item's. $parent_data['menu_order'] = $parent_data['menu_order'] + 1; // Set menu-item's [menu_order] to that of former parent. $menu_item_data['menu_order'] = $menu_item_data['menu_order'] - 1; // Save changes. update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); wp_update_post( $menu_item_data ); wp_update_post( $parent_data ); } // Else this menu item is not a child of the previous. } elseif ( empty( $menu_item_data['menu_order'] ) || empty( $menu_item_data['menu_item_parent'] ) || ! in_array( (int) $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ), true ) || empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) || $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] !== (int) $menu_item_data['menu_item_parent'] ) { // Just make it a child of the previous; keep the order. $menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ]; // Reset invalid `menu_item_parent`. $menu_item_data = _wp_reset_invalid_menu_item_parent( $menu_item_data ); update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); wp_update_post( $menu_item_data ); } } } } break; case 'delete-menu-item': $menu_item_id = (int) $_REQUEST['menu-item']; check_admin_referer( 'delete-menu_item_' . $menu_item_id ); if ( is_nav_menu_item( $menu_item_id ) && wp_delete_post( $menu_item_id, true ) ) { $messages[] = wp_get_admin_notice( __( 'The menu item has been successfully deleted.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } break; case 'delete': check_admin_referer( 'delete-nav_menu-' . $nav_menu_selected_id ); if ( is_nav_menu( $nav_menu_selected_id ) ) { $deletion = wp_delete_nav_menu( $nav_menu_selected_id ); } else { // Reset the selected menu. $nav_menu_selected_id = 0; unset( $_REQUEST['menu'] ); } if ( ! isset( $deletion ) ) { break; } if ( is_wp_error( $deletion ) ) { $messages[] = wp_get_admin_notice( $deletion->get_error_message(), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); } else { $messages[] = wp_get_admin_notice( __( 'The menu has been successfully deleted.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } break; case 'delete_menus': check_admin_referer( 'nav_menus_bulk_actions' ); foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) { if ( ! is_nav_menu( $menu_id_to_delete ) ) { continue; } $deletion = wp_delete_nav_menu( $menu_id_to_delete ); if ( is_wp_error( $deletion ) ) { $messages[] = wp_get_admin_notice( $deletion->get_error_message(), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); $deletion_error = true; } } if ( empty( $deletion_error ) ) { $messages[] = wp_get_admin_notice( __( 'Selected menus have been successfully deleted.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } break; case 'update': check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' ); // Merge new and existing menu locations if any new ones are set. $new_menu_locations = array(); if ( isset( $_POST['menu-locations'] ) ) { $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); $menu_locations = array_merge( $menu_locations, $new_menu_locations ); } // Add Menu. if ( 0 === $nav_menu_selected_id ) { $new_menu_title = trim( esc_html( $_POST['menu-name'] ) ); if ( $new_menu_title ) { $_nav_menu_selected_id = wp_update_nav_menu_object( 0, array( 'menu-name' => $new_menu_title ) ); if ( is_wp_error( $_nav_menu_selected_id ) ) { $messages[] = wp_get_admin_notice( $_nav_menu_selected_id->get_error_message(), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); } else { $_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); $nav_menu_selected_id = $_nav_menu_selected_id; $nav_menu_selected_title = $_menu_object->name; if ( isset( $_REQUEST['menu-item'] ) ) { wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) ); } if ( isset( $_REQUEST['zero-menu-state'] ) || ! empty( $_POST['auto-add-pages'] ) ) { // If there are menu items, add them. wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ); } if ( isset( $_REQUEST['zero-menu-state'] ) ) { // Auto-save nav_menu_locations. $locations = get_nav_menu_locations(); foreach ( $locations as $location => $menu_id ) { $locations[ $location ] = $nav_menu_selected_id; break; // There should only be 1. } set_theme_mod( 'nav_menu_locations', $locations ); } elseif ( count( $new_menu_locations ) > 0 ) { // If locations have been selected for the new menu, save those. $locations = get_nav_menu_locations(); foreach ( array_keys( $new_menu_locations ) as $location ) { $locations[ $location ] = $nav_menu_selected_id; } set_theme_mod( 'nav_menu_locations', $locations ); } if ( isset( $_REQUEST['use-location'] ) ) { $locations = get_registered_nav_menus(); $menu_locations = get_nav_menu_locations(); if ( isset( $locations[ $_REQUEST['use-location'] ] ) ) { $menu_locations[ $_REQUEST['use-location'] ] = $nav_menu_selected_id; } set_theme_mod( 'nav_menu_locations', $menu_locations ); } wp_redirect( admin_url( 'nav-menus.php?menu=' . $_nav_menu_selected_id ) ); exit; } } else { $messages[] = wp_get_admin_notice( __( 'Please enter a valid menu name.' ), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); } // Update existing menu. } else { // Remove menu locations that have been unchecked. foreach ( $locations as $location => $description ) { if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] === $nav_menu_selected_id ) { unset( $menu_locations[ $location ] ); } } // Set menu locations. set_theme_mod( 'nav_menu_locations', $menu_locations ); $_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); $menu_title = trim( esc_html( $_POST['menu-name'] ) ); if ( ! $menu_title ) { $messages[] = wp_get_admin_notice( __( 'Please enter a valid menu name.' ), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); $menu_title = $_menu_object->name; } if ( ! is_wp_error( $_menu_object ) ) { $_nav_menu_selected_id = wp_update_nav_menu_object( $nav_menu_selected_id, array( 'menu-name' => $menu_title ) ); if ( is_wp_error( $_nav_menu_selected_id ) ) { $_menu_object = $_nav_menu_selected_id; $messages[] = wp_get_admin_notice( $_nav_menu_selected_id->get_error_message(), array( 'id' => 'message', 'additional_classes' => array( 'error' ), 'dismissible' => true, ) ); } else { $_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); $nav_menu_selected_title = $_menu_object->name; } } // Update menu items. if ( ! is_wp_error( $_menu_object ) ) { $messages = array_merge( $messages, wp_nav_menu_update_menu_items( $_nav_menu_selected_id, $nav_menu_selected_title ) ); // If the menu ID changed, redirect to the new URL. if ( $nav_menu_selected_id !== $_nav_menu_selected_id ) { wp_redirect( admin_url( 'nav-menus.php?menu=' . (int) $_nav_menu_selected_id ) ); exit; } } } break; case 'locations': if ( ! $num_locations ) { wp_redirect( admin_url( 'nav-menus.php' ) ); exit; } add_filter( 'screen_options_show_screen', '__return_false' ); if ( isset( $_POST['menu-locations'] ) ) { check_admin_referer( 'save-menu-locations' ); $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); $menu_locations = array_merge( $menu_locations, $new_menu_locations ); // Set menu locations. set_theme_mod( 'nav_menu_locations', $menu_locations ); $messages[] = wp_get_admin_notice( __( 'Menu locations updated.' ), array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } break; } // Get all nav menus. $nav_menus = wp_get_nav_menus(); $menu_count = count( $nav_menus ); // Are we on the add new screen? $add_new_screen = ( isset( $_GET['menu'] ) && 0 === (int) $_GET['menu'] ) ? true : false; $locations_screen = ( isset( $_GET['action'] ) && 'locations' === $_GET['action'] ) ? true : false; $page_count = wp_count_posts( 'page' ); /* * If we have one registered menu location, and zero menus, we take them right * into editing their first menu. */ if ( 1 === count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) { $one_theme_location_no_menus = true; } else { $one_theme_location_no_menus = false; } $nav_menus_l10n = array( 'oneThemeLocationNoMenus' => $one_theme_location_no_menus, 'moveUp' => __( 'Move up one' ), 'moveDown' => __( 'Move down one' ), 'moveToTop' => __( 'Move to the top' ), /* translators: %s: Previous item name. */ 'moveUnder' => __( 'Move under %s' ), /* translators: %s: Previous item name. */ 'moveOutFrom' => __( 'Move out from under %s' ), /* translators: %s: Previous item name. */ 'under' => __( 'Under %s' ), /* translators: %s: Previous item name. */ 'outFrom' => __( 'Out from under %s' ), /* translators: 1: Item name, 2: Item type, 3: Item index, 4: Total items. */ 'menuFocus' => __( 'Edit %1$s (%2$s, %3$d of %4$d)' ), /* translators: 1: Item name, 2: Item type, 3: Item index, 4: Total items, 5: Item parent. */ 'subMenuFocus' => __( 'Edit %1$s (%2$s, sub-item %3$d of %4$d under %5$s)' ), /* translators: 1: Item name, 2: Item type, 3: Item index, 4: Total items, 5: Item parent, 6: Item depth. */ 'subMenuMoreDepthFocus' => __( 'Edit %1$s (%2$s, sub-item %3$d of %4$d under %5$s, level %6$d)' ), /* translators: %s: Item name. */ 'menuItemDeletion' => __( 'item %s' ), /* translators: %s: Item name. */ 'itemsDeleted' => __( 'Deleted menu item: %s.' ), 'itemAdded' => __( 'Menu item added' ), 'itemRemoved' => __( 'Menu item removed' ), 'movedUp' => __( 'Menu item moved up' ), 'movedDown' => __( 'Menu item moved down' ), 'movedTop' => __( 'Menu item moved to the top' ), 'movedLeft' => __( 'Menu item moved out of submenu' ), 'movedRight' => __( 'Menu item is now a sub-item' ), 'parentUpdated' => __( 'Menu parent updated' ), 'orderUpdated' => __( 'Menu order updated' ), ); wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n ); /* * Redirect to add screen if there are no menus and this user has either zero * or more than one registered menu location. */ if ( 0 === $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) { wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) ); } // Get recently edited nav menu. $recently_edited = absint( get_user_option( 'nav_menu_recently_edited' ) ); if ( empty( $recently_edited ) && is_nav_menu( $nav_menu_selected_id ) ) { $recently_edited = $nav_menu_selected_id; } // Use $recently_edited if none are selected. if ( empty( $nav_menu_selected_id ) && ! isset( $_GET['menu'] ) && is_nav_menu( $recently_edited ) ) { $nav_menu_selected_id = $recently_edited; } // On deletion of menu, if another menu exists, show it. if ( ! $add_new_screen && $menu_count > 0 && isset( $_GET['action'] ) && 'delete' === $_GET['action'] ) { $nav_menu_selected_id = $nav_menus[0]->term_id; } // Set $nav_menu_selected_id to 0 if no menus. if ( $one_theme_location_no_menus ) { $nav_menu_selected_id = 0; } elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { // If we have no selection yet, and we have menus, set to the first one in the list. $nav_menu_selected_id = $nav_menus[0]->term_id; } // Update the user's setting. if ( $nav_menu_selected_id !== $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) { update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id ); } // If there's a menu, get its name. if ( ! $nav_menu_selected_title && is_nav_menu( $nav_menu_selected_id ) ) { $_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); $nav_menu_selected_title = ! is_wp_error( $_menu_object ) ? $_menu_object->name : ''; } // Generate truncated menu names. foreach ( (array) $nav_menus as $key => $_nav_menu ) { $nav_menus[ $key ]->truncated_name = wp_html_excerpt( $_nav_menu->name, 40, '…' ); } // Retrieve menu locations. if ( current_theme_supports( 'menus' ) ) { $locations = get_registered_nav_menus(); $menu_locations = get_nav_menu_locations(); } /* * Ensure the user will be able to scroll horizontally * by adding a class for the max menu depth. * * @global int $_wp_nav_menu_max_depth */ global $_wp_nav_menu_max_depth; $_wp_nav_menu_max_depth = 0; // Calling wp_get_nav_menu_to_edit generates $_wp_nav_menu_max_depth. if ( is_nav_menu( $nav_menu_selected_id ) ) { $menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'post_status' => 'any' ) ); $edit_markup = wp_get_nav_menu_to_edit( $nav_menu_selected_id ); } /** * Adds a CSS class to display the max depth of the navigation menu. * * @since 3.0.0 * * @global int $_wp_nav_menu_max_depth Maximum depth of the navigation menu. * * @param string $classes Existing CSS classes for the body tag. * @return string Modified CSS classes including the menu max depth class. */ function wp_nav_menu_max_depth( $classes ) { global $_wp_nav_menu_max_depth; return "$classes menu-max-depth-$_wp_nav_menu_max_depth"; } add_filter( 'admin_body_class', 'wp_nav_menu_max_depth' ); wp_nav_menu_setup(); wp_initial_nav_menu_meta_boxes(); if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) { $message_no_theme_support = sprintf( /* translators: %s: URL to Widgets screen. */ __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.' ), admin_url( 'widgets.php' ) ); $messages[] = wp_get_admin_notice( $message_no_theme_support, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } if ( ! $locations_screen ) : // Main tab. $overview = '

    ' . __( 'This screen is used for managing your navigation menus.' ) . '

    '; $overview .= '

    ' . sprintf( /* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */ __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.' ), admin_url( 'widgets.php' ), 'Twenty Twenty', 'Twenty Twenty-One' ) . '

    '; $overview .= '

    ' . __( 'From this screen you can:' ) . '

    '; $overview .= '
    • ' . __( 'Create, edit, and delete menus' ) . '
    • '; $overview .= '
    • ' . __( 'Add, organize, and modify individual menu items' ) . '
    '; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $overview, ) ); $menu_management = '

    ' . __( 'The menu management box at the top of the screen is used to control which menu is opened in the editor below.' ) . '

    '; $menu_management .= '
    • ' . __( 'To edit an existing menu, choose a menu from the dropdown and click Select' ) . '
    • '; $menu_management .= '
    • ' . __( 'If you have not yet created any menus, click the ’create a new menu’ link to get started' ) . '
    '; $menu_management .= '

    ' . __( 'You can assign individual menus to the theme’s menu locations by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme menu locations at once, visit the Manage Locations tab at the top of the screen.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'menu-management', 'title' => __( 'Menu Management' ), 'content' => $menu_management, ) ); $editing_menus = '

    ' . __( 'Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.' ) . '

    '; $editing_menus .= '

    ' . __( 'Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.' ) . '

    '; $editing_menus .= '
    • ' . __( 'Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu' ) . '
    • '; $editing_menus .= '
    • ' . __( 'To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu' ) . '
    • '; $editing_menus .= '
    • ' . __( 'To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu' ) . '
    • '; $editing_menus .= '
    • ' . __( 'Delete a menu item by expanding it and clicking the Remove link' ) . '
    '; get_current_screen()->add_help_tab( array( 'id' => 'editing-menus', 'title' => __( 'Editing Menus' ), 'content' => $editing_menus, ) ); else : // Locations tab. $locations_overview = '

    ' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '

    '; $locations_overview .= '
    • ' . __( 'To assign menus to one or more theme menu locations, select a menu from each location’s dropdown. When you are finished, click Save Changes' ) . '
    • '; $locations_overview .= '
    • ' . __( 'To edit a menu currently assigned to a theme menu location, click the adjacent ’Edit’ link' ) . '
    • '; $locations_overview .= '
    • ' . __( 'To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that location in the theme.' ) . '
    '; get_current_screen()->add_help_tab( array( 'id' => 'locations-overview', 'title' => __( 'Overview' ), 'content' => $locations_overview, ) ); endif; get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Menus' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); // Get the admin header. require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    'menu_locations' ) : array( 'panel' => 'nav_menus' ); printf( ' %2$s', esc_url( add_query_arg( array( array( 'autofocus' => $focus ), 'return' => urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), ), admin_url( 'customize.php' ) ) ), __( 'Manage with Live Preview' ) ); endif; $nav_tab_active_class = ''; $nav_aria_current = ''; if ( ! isset( $_GET['action'] ) || isset( $_GET['action'] ) && 'locations' !== $_GET['action'] ) { $nav_tab_active_class = ' nav-tab-active'; $nav_aria_current = ' aria-current="page"'; } ?>
    ' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '

    '; } else { echo '

    ' . sprintf( /* translators: %s: Number of menus. */ _n( 'Your theme supports %s menu. Select which menu appears in each location.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n( $num_locations ) ) . '

    '; } ?>
    create a new menu. Do not forget to save your changes!' ), esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0, ), admin_url( 'nav-menus.php' ) ) ) ); ?>
    create a new menu. Do not forget to save your changes!' ), esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0, ), admin_url( 'nav-menus.php' ) ) ) ); ?>
    theme-install.php000066600000057236152330733730010052 0ustar00 $theme_data ) { // Ignore child themes. if ( str_contains( $theme_slug, '/' ) ) { unset( $installed_themes[ $theme_slug ] ); } } wp_localize_script( 'theme', '_wpThemeSettings', array( 'themes' => false, 'settings' => array( 'isInstall' => true, 'canInstall' => current_user_can( 'install_themes' ), 'installURI' => current_user_can( 'install_themes' ) ? self_admin_url( 'theme-install.php' ) : null, 'adminUrl' => parse_url( self_admin_url(), PHP_URL_PATH ), ), 'l10n' => array( 'addNew' => __( 'Add Theme' ), 'search' => __( 'Search Themes' ), 'upload' => __( 'Upload Theme' ), 'back' => __( 'Back' ), 'error' => sprintf( /* translators: %s: Support forums URL. */ __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.' ), __( 'https://wordpress.org/support/forums/' ) ), 'tryAgain' => __( 'Try Again' ), /* translators: %d: Number of themes. */ 'themesFound' => __( 'Number of Themes found: %d' ), 'noThemesFound' => __( 'No themes found. Try a different search.' ), 'collapseSidebar' => __( 'Collapse Sidebar' ), 'expandSidebar' => __( 'Expand Sidebar' ), /* translators: Hidden accessibility text. */ 'selectFeatureFilter' => __( 'Select one or more Theme features to filter by' ), ), 'installedThemes' => array_keys( $installed_themes ), 'activeTheme' => get_stylesheet(), ) ); wp_enqueue_script( 'theme' ); wp_enqueue_script( 'updates' ); if ( $tab ) { /** * Fires before each of the tabs are rendered on the Install Themes page. * * The dynamic portion of the hook name, `$tab`, refers to the current * theme installation tab. * * Possible hook names include: * * - `install_themes_pre_block-themes` * - `install_themes_pre_dashboard` * - `install_themes_pre_featured` * - `install_themes_pre_new` * - `install_themes_pre_search` * - `install_themes_pre_updated` * - `install_themes_pre_upload` * * @since 2.8.0 * @since 6.1.0 Added the `install_themes_pre_block-themes` hook name. */ do_action( "install_themes_pre_{$tab}" ); } $help_overview = '

    ' . sprintf( /* translators: %s: Theme Directory URL. */ __( 'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/themes/' ) ) . '

    ' . '

    ' . __( 'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.' ) . ' ' . __( 'The search results will be updated as you type.' ) . '

    ' . '

    ' . __( 'Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.' ) . '

    ' . '

    ' . sprintf( /* translators: %s: /wp-content/themes */ __( 'You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.' ), '/wp-content/themes' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help_overview, ) ); $help_installing = '

    ' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '

    ' . '

    ' . __( 'To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'installing', 'title' => __( 'Previewing and Installing' ), 'content' => $help_installing, ) ); // Help tab: Block themes. $help_block_themes = '

    ' . __( 'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.' ) . '

    ' . '

    ' . __( 'With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'block_themes', 'title' => __( 'Block themes' ), 'content' => $help_block_themes, ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Adding New Themes' ) . '

    ' . '

    ' . __( 'Documentation on Block Themes' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    __( 'Upload Theme' ) ) ); if ( ! empty( $tabs['upload'] ) && current_user_can( 'upload_themes' ) ) { echo ' '; } ?>
    array( 'error', 'hide-if-js' ), ) ); ?>

    $features ) { echo '
    '; echo '' . esc_html( $feature_group ) . ''; echo '
    '; foreach ( $features as $feature => $feature_name ) { $feature = esc_attr( $feature ); echo ' '; echo ''; } echo '
    '; echo '
    '; } ?>

    add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'This screen contains the settings that affect the display of your content.' ) . '

    ' . '

    ' . sprintf( /* translators: %s: URL to create a new page. */ __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.' ), 'post-new.php?post_type=page' ) . '

    ' . '

    ' . sprintf( /* translators: %s: Documentation URL. */ __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.' ), __( 'https://developer.wordpress.org/advanced-administration/wordpress/feeds/' ) ) . '

    ' . '

    ' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '

    ', ) ); get_current_screen()->add_help_tab( array( 'id' => 'site-visibility', 'title' => has_action( 'blog_privacy_selector' ) ? __( 'Site visibility' ) : __( 'Search engine visibility' ), 'content' => '

    ' . __( 'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.' ) . '

    ' . '

    ' . __( 'Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.' ) . '

    ' . '

    ' . __( 'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Reading Settings' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    'blog_charset' ) ); } ?>
    css/deprecated-media.css000066600000014727152330733730011250 0ustar00/* Styles for the media library iframe (not used on the Library screen) */ div#media-upload-header { margin: 0; padding: 5px 5px 0; font-weight: 600; position: relative; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #sidemenu { overflow: hidden; float: none; position: relative; left: 0; bottom: -1px; margin: 0 5px; padding-left: 10px; list-style: none; font-size: 12px; font-weight: 400; } #sidemenu a { padding: 0 7px; display: block; float: left; line-height: 28px; border-top: 1px solid #f6f7f7; border-bottom: 1px solid #dcdcde; background-color: #f6f7f7; text-decoration: none; transition: none; } #sidemenu li { display: inline; line-height: 200%; list-style: none; text-align: center; white-space: nowrap; margin: 0; padding: 0; } #sidemenu a.current { font-weight: 400; padding-left: 6px; padding-right: 6px; border: 1px solid #dcdcde; border-bottom-color: #f0f0f1; background-color: #f0f0f1; color: #000; } #media-upload:after { /* clearfix */ content: ""; display: table; clear: both; } #media-upload .slidetoggle { border-top-color: #dcdcde; } #media-upload input[type="radio"] { padding: 0; } .media-upload-form label.form-help, td.help { color: #646970; } form { margin: 1em; } #search-filter { text-align: right; } th { position: relative; } .media-upload-form label.form-help, td.help { font-family: sans-serif; font-style: italic; font-weight: 400; } .media-upload-form p.help { margin: 0; padding: 0; } .media-upload-form fieldset { width: 100%; border: none; text-align: justify; margin: 0 0 1em; padding: 0; } /* specific to the image upload form */ .image-align-none-label { background: url(../images/align-none.png) no-repeat center left; } .image-align-left-label { background: url(../images/align-left.png) no-repeat center left; } .image-align-center-label { background: url(../images/align-center.png) no-repeat center left; } .image-align-right-label { background: url(../images/align-right.png) no-repeat center left; } tr.image-size td { width: 460px; } tr.image-size div.image-size-item { margin: 0 0 5px; } #library-form .progress, #gallery-form .progress, .insert-gallery, .describe.startopen, .describe.startclosed { display: none; } .media-item .thumbnail { max-width: 128px; max-height: 128px; } thead.media-item-info tr { background-color: transparent; } .form-table thead.media-item-info { border: 8px solid #fff; } abbr.required, span.required { text-decoration: none; border: none; } .describe label { display: inline; } .describe td.error { padding: 2px 8px; } .describe td.A1 { width: 132px; } .describe input[type="text"], .describe textarea { width: 460px; border-width: 1px; border-style: solid; } /* Specific to Uploader */ #media-upload p.ml-submit { padding: 1em 0; } #media-upload p.help, #media-upload label.help { font-family: sans-serif; font-style: italic; font-weight: 400; } #media-upload .ui-sortable .media-item { cursor: move; } #media-upload tr.image-size { margin-bottom: 1em; height: 3em; } #media-upload #filter { width: 623px; } #media-upload #filter .subsubsub { margin: 8px 0; } #media-upload .tablenav-pages a, #media-upload .tablenav-pages .current { display: inline-block; padding: 4px 5px 6px; font-size: 16px; line-height: 1; text-align: center; text-decoration: none; } #media-upload .tablenav-pages a { min-width: 17px; border: 1px solid #c3c4c7; background: #f6f7f7; } #filter .tablenav select { border-style: solid; border-width: 1px; padding: 2px; vertical-align: top; width: auto; } #media-upload .del-attachment { display: none; margin: 5px 0; } .menu_order { float: right; font-size: 11px; margin: 8px 10px 0; } .menu_order_input { border: 1px solid #dcdcde; font-size: 10px; padding: 1px; width: 23px; } .ui-sortable-helper { background-color: #fff; border: 1px solid #a7aaad; opacity: 0.6; filter: alpha(opacity=60); } #media-upload th.order-head { width: 20%; text-align: center; } #media-upload th.actions-head { width: 25%; text-align: center; } #media-upload a.wp-post-thumbnail { margin: 0 20px; } #media-upload .widefat { border-style: solid solid none; } .sorthelper { height: 37px; width: 623px; display: block; } #gallery-settings th.label { width: 160px; } #gallery-settings #basic th.label { padding: 5px 5px 5px 0; } #gallery-settings .title { clear: both; padding: 0 0 3px; font-size: 1.6em; border-bottom: 1px solid #dcdcde; } h3.media-title { font-size: 1.6em; } h4.media-sub-title { border-bottom: 1px solid #dcdcde; font-size: 1.3em; margin: 12px; padding: 0 0 3px; } #gallery-settings .title, h3.media-title, h4.media-sub-title { font-family: Georgia,"Times New Roman",Times,serif; font-weight: 400; color: #50575e; } #gallery-settings .describe td { vertical-align: middle; height: 3em; } #gallery-settings .describe th.label { padding-top: .5em; text-align: left; } #gallery-settings .describe { padding: 5px; width: 100%; clear: both; cursor: default; background: #fff; } #gallery-settings .describe select { width: 15em; } #gallery-settings .describe select option, #gallery-settings .describe td { padding: 0; } #gallery-settings label, #gallery-settings legend { font-size: 13px; color: #3c434a; margin-right: 15px; } #gallery-settings .align .field label { margin: 0 1em 0 3px; } #gallery-settings p.ml-submit { border-top: 1px solid #dcdcde; } #gallery-settings select#columns { width: 6em; } #sort-buttons { font-size: 0.8em; margin: 3px 25px -8px 0; text-align: right; max-width: 625px; } #sort-buttons a { text-decoration: none; } #sort-buttons #asc, #sort-buttons #showall { padding-left: 5px; } #sort-buttons span { margin-right: 25px; } p.media-types { margin: 0; padding: 1em; } p.media-types-required-info { padding-top: 0; } tr.not-image { display: none; } table.not-image tr.not-image { display: table-row; } table.not-image tr.image-only { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .image-align-none-label { background-image: url(../images/align-none-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-left-label { background-image: url(../images/align-left-2x.png?ver=20120916); background-size: 22px 15px; } .image-align-center-label { background-image: url(../images/align-center-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-right-label { background-image: url(../images/align-right-2x.png?ver=20120916); background-size: 22px 15px; } } css/deprecated-media.min.css000066600000012565152330733730012030 0ustar00/*! This file is auto-generated */ div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:600;position:relative;border-bottom:1px solid #dcdcde;background:#f6f7f7}#sidemenu{overflow:hidden;float:none;position:relative;left:0;bottom:-1px;margin:0 5px;padding-left:10px;list-style:none;font-size:12px;font-weight:400}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top:1px solid #f6f7f7;border-bottom:1px solid #dcdcde;background-color:#f6f7f7;text-decoration:none;transition:none}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-left:6px;padding-right:6px;border:1px solid #dcdcde;border-bottom-color:#f0f0f1;background-color:#f0f0f1;color:#000}#media-upload:after{content:"";display:table;clear:both}#media-upload .slidetoggle{border-top-color:#dcdcde}#media-upload input[type=radio]{padding:0}.media-upload-form label.form-help,td.help{color:#646970}form{margin:1em}#search-filter{text-align:right}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:none;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center left}.image-align-left-label{background:url(../images/align-left.png) no-repeat center left}.image-align-center-label{background:url(../images/align-center.png) no-repeat center left}.image-align-right-label{background:url(../images/align-right.png) no-repeat center left}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#gallery-form .progress,#library-form .progress,.describe.startclosed,.describe.startopen,.insert-gallery{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required,span.required{text-decoration:none;border:none}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload label.help,#media-upload p.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#media-upload .tablenav-pages .current,#media-upload .tablenav-pages a{display:inline-block;padding:4px 5px 6px;font-size:16px;line-height:1;text-align:center;text-decoration:none}#media-upload .tablenav-pages a{min-width:17px;border:1px solid #c3c4c7;background:#f6f7f7}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:right;font-size:11px;margin:8px 10px 0}.menu_order_input{border:1px solid #dcdcde;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #a7aaad;opacity:.6}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 5px 5px 0}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #dcdcde}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #dcdcde;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#50575e}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:left}#gallery-settings .describe{padding:5px;width:100%;clear:both;cursor:default;background:#fff}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#3c434a;margin-right:15px}#gallery-settings .align .field label{margin:0 1em 0 3px}#gallery-settings p.ml-submit{border-top:1px solid #dcdcde}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 25px -8px 0;text-align:right;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-left:5px}#sort-buttons span{margin-right:25px}p.media-types{margin:0;padding:1em}p.media-types-required-info{padding-top:0}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}css/common-rtl.css000066600000236026152330733730010160 0ustar00/*! This file is auto-generated */ /* 2 column liquid layout */ #wpwrap { height: auto; min-height: 100%; width: 100%; position: relative; -webkit-font-smoothing: subpixel-antialiased; } #wpcontent { height: 100%; padding-right: 20px; } #wpcontent, #wpfooter { margin-right: 160px; } .folded #wpcontent, .folded #wpfooter { margin-right: 36px; } #wpbody-content { padding-bottom: 65px; float: right; width: 100%; overflow: visible; } /* inner 2 column liquid layout */ .inner-sidebar { float: left; clear: left; display: none; width: 281px; position: relative; } .columns-2 .inner-sidebar { margin-left: auto; width: 286px; display: block; } .inner-sidebar #side-sortables, .columns-2 .inner-sidebar #side-sortables { min-height: 300px; width: 280px; padding: 0; } .has-right-sidebar .inner-sidebar { display: block; } .has-right-sidebar #post-body { float: right; clear: right; width: 100%; margin-left: -2000px; } .has-right-sidebar #post-body-content { margin-left: 300px; float: none; width: auto; } /* 2 columns main area */ #col-left { float: right; width: 35%; } #col-right { float: left; width: 65%; } #col-left .col-wrap { padding: 0 0 0 6px; } #col-right .col-wrap { padding: 0 6px 0 0; } /* utility classes */ .alignleft { float: right; } .alignright { float: left; } .textleft { text-align: right; } .textright { text-align: left; } .clear { clear: both; } /* modern clearfix */ .wp-clearfix:after { content: ""; display: table; clear: both; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .button .screen-reader-text { height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ } .screen-reader-text + .dashicons-external { margin-top: -1px; margin-right: 2px; text-decoration: none; } .screen-reader-shortcut { position: absolute; top: -1000em; right: 6px; height: auto; width: auto; display: block; font-size: 14px; font-weight: 600; padding: 15px 23px 14px; /* Background and color set to prevent false positives in automated accessibility tests. */ background: #ffffff; color: var(--wp-admin-theme-color, #3858e9); z-index: 100000; line-height: normal; } .screen-reader-shortcut:focus { top: -25px; /* Overrides a:focus in the admin. See ticket #56789. */ color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); text-decoration: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .hidden, .js .closed .inside, .js .hide-if-js, .no-js .hide-if-no-js, .js.wp-core-ui .hide-if-js, .js .wp-core-ui .hide-if-js, .no-js.wp-core-ui .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js { display: none; } /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */ .widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .comment-ays { border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } table.widefat, .wp-editor-container, .stuffbox, p.popular-tags, .widgets-holder-wrap, .popular-tags, .feature-filter, .comment-ays { background: #fff; } /* general */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4em; min-width: 600px; } body.iframe { min-width: 0; padding-top: 1px; } body.modal-open { overflow: hidden; } body.mobile.modal-open #wpwrap { overflow: hidden; position: fixed; height: 100%; } iframe, img { border: 0; } td { font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; } /* Any change to the default link style must be applied to button-link too. */ a { color: #2271b1; transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a, div { outline: 0; } a:hover, a:active { color: #135e96; } a:focus, a:focus .media-icon img, a:focus .plugin-icon, .wp-person a:focus .gravatar { color: #043959; border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #adminmenu a:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } .screen-reader-text:focus { box-shadow: none; outline: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } p, .wp-die-message { font-size: 13px; line-height: 1.5; margin: 1em 0; } blockquote { margin: 1em; } li, dd { margin-bottom: 6px; } h1, h2, h3, h4, h5, h6 { display: block; font-weight: 600; } h1 { color: #1d2327; font-size: 2em; margin: .67em 0; } h2, h3 { color: #1d2327; font-size: 1.3em; margin: 1em 0; } .update-core-php h2 { margin-top: 4em; } .update-php h2, .update-messages h2, h4 { font-size: 1em; margin: 1.33em 0; } h5 { font-size: 0.83em; margin: 1.67em 0; } h6 { font-size: 0.67em; margin: 2.33em 0; } ul, ol { padding: 0; } ul { list-style: none; } ol { list-style-type: decimal; margin-right: 2em; } ul.ul-disc { list-style: disc outside; } ul.ul-square { list-style: square outside; } ol.ol-decimal { list-style: decimal outside; } ul.ul-disc, ul.ul-square, ol.ol-decimal { margin-right: 1.8em; } ul.ul-disc > li, ul.ul-square > li, ol.ol-decimal > li { margin: 0 0 0.5em; } /* rtl:ignore */ .ltr { direction: ltr; } /* rtl:ignore */ .code, code { font-family: Consolas, Monaco, monospace; direction: ltr; unicode-bidi: embed; } kbd, code { padding: 3px 5px 2px; margin: 0 1px; background: #f0f0f1; background: rgba(0, 0, 0, 0.07); font-size: 13px; } .subsubsub { list-style: none; margin: 8px 0 0; padding: 0; font-size: 13px; float: right; color: #646970; } .subsubsub a { line-height: 2; padding: .2em; text-decoration: none; } .subsubsub a .count, .subsubsub a.current .count { color: #50575e; /* #f1f1f1 background */ font-weight: 400; } .subsubsub a.current { font-weight: 600; border: none; } .subsubsub li { display: inline-block; margin: 0; padding: 0; white-space: nowrap; } /* .widefat - main style for tables */ .widefat { border-spacing: 0; width: 100%; clear: both; margin: 0; } .widefat * { word-wrap: break-word; } .widefat a, .widefat button.button-link { text-decoration: none; } .widefat td, .widefat th { padding: 8px 10px; } .widefat thead th, .widefat thead td { border-bottom: 1px solid #c3c4c7; } .widefat tfoot th, .widefat tfoot td { border-top: 1px solid #c3c4c7; border-bottom: none; } .widefat .no-items td { border-bottom-width: 0; } .widefat td { vertical-align: top; } .widefat td, .widefat td p, .widefat td ol, .widefat td ul { font-size: 13px; line-height: 1.5em; } .widefat th, .widefat thead td, .widefat tfoot td { text-align: right; line-height: 1.3em; font-size: 14px; } .widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input { margin: 0 8px 0 0; padding: 0; vertical-align: text-top; } .widefat .check-column { width: 2.2em; padding: 6px 0 25px; vertical-align: top; } .widefat tbody th.check-column { padding: 9px 0 22px; } .widefat thead td.check-column, .widefat tbody th.check-column, .updates-table tbody td.check-column, .widefat tfoot td.check-column { padding: 11px 3px 0 0; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 4px; vertical-align: middle; } .update-php div.updated, .update-php div.error { margin-right: 0; } .js-update-details-toggle .dashicons { text-decoration: none; } .js-update-details-toggle[aria-expanded="true"] .dashicons::before { content: "\f142"; content: "\f142" / ''; } .no-js .widefat thead .check-column input, .no-js .widefat tfoot .check-column input { display: none; } .widefat .num, .column-comments, .column-links, .column-posts { text-align: center; } .widefat th#comments { vertical-align: middle; } .wrap { margin: 10px 2px 0 20px; } .wrap > h2:first-child, /* Back-compat for pre-4.4 */ .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ .postbox .inside h2, /* Back-compat for pre-4.4 */ .wrap h1 { font-size: 23px; font-weight: 400; margin: 0; padding: 9px 0 4px; line-height: 1.3; } .wrap h1.wp-heading-inline { display: inline-block; margin-left: 5px; } .wp-header-end { visibility: hidden; margin: -2px 0 0; } .subtitle { margin: 0; padding-right: 25px; color: #50575e; font-size: 14px; font-weight: 400; line-height: 1; } .subtitle strong { word-break: break-all; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { display: inline-block; position: relative; box-sizing: border-box; cursor: pointer; white-space: nowrap; text-decoration: none; text-shadow: none; top: -3px; margin-right: 4px; border: 1px solid #2271b1; border-radius: 2px; background: transparent; font-size: 13px; font-weight: 500; min-height: 32px; line-height: 2.30769231; /* 30px for 32px height */ color: #2271b1; /* use the standard color used for buttons */ padding: 0 12px; -webkit-appearance: none; } .wrap .wp-heading-inline + .page-title-action { margin-right: 0; } .wrap .add-new-h2:hover, /* deprecated */ .wrap .page-title-action:hover { border-color: #0a4b78; color: #0a4b78; } /* lower specificity: color needs to be overridden by :hover and :active */ .page-title-action:focus { color: #0a4b78; } /* Dashicon for language options on General Settings and Profile screens */ .form-table th label[for="locale"] .dashicons, .form-table th label[for="WPLANG"] .dashicons { margin-right: 5px; } .wrap .page-title-action:focus { border-color: #3582c4; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wrap h1.long-header { padding-left: 0; } .wp-dialog { background-color: #fff; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .sorthelper { background-color: #c5d9ed; } .ac_match, .subsubsub a.current { color: #000; } .striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate { background-color: #f6f7f7; } .bar { background-color: #f0f0f1; border-left-color: var(--wp-admin-theme-color); } /* Helper classes for plugins to leverage the active WordPress color scheme */ .highlight { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); color: #3c434a; } .wp-ui-primary { color: #fff; background-color: #2c3338; } .wp-ui-text-primary { color: #2c3338; } .wp-ui-highlight { color: #fff; background-color: #2271b1; } .wp-ui-text-highlight { color: #2271b1; } .wp-ui-notification { color: #fff; background-color: #d63638; } .wp-ui-text-notification { color: #d63638; } .wp-ui-text-icon { color: #8c8f94; /* same as new icons */ } /* For emoji replacement images */ img.emoji { display: inline !important; border: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; box-shadow: none !important; } /*------------------------------------------------------------------------------ 1.0 - Text Styles ------------------------------------------------------------------------------*/ .widget .widget-top, .postbox .hndle, .stuffbox .hndle, .control-section .accordion-section-title, .sidebar-name, #nav-menu-header, #nav-menu-footer, .menu-item-handle, .checkbox, .side-info, #your-profile #rich_editing, .widefat thead th, .widefat thead td, .widefat tfoot th, .widefat tfoot td { line-height: 1.4em; } .widget .widget-top, .menu-item-handle { background: #f6f7f7; color: #1d2327; } .stuffbox .hndle { border-bottom: 1px solid #c3c4c7; } .quicktags { background-color: #c3c4c7; color: #000; font-size: 12px; } .icon32 { display: none; } /* @todo can we combine these into a class or use an existing dashicon one? */ .welcome-panel .welcome-panel-close:before, .tagchecklist .ntdelbutton .remove-tag-icon:before, #bulk-titles .ntdelbutton:before, .notice-dismiss:before { background: none; color: #1e1e1e; content: "\f335"; content: "\f335" / ''; display: block; font: normal 20px/1 dashicons; height: 1em; text-align: center; width: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .welcome-panel .welcome-panel-close:before { margin: 0; } .tagchecklist .ntdelbutton .remove-tag-icon:before { margin-right: 2px; border-radius: 50%; color: var(--wp-admin-theme-color, #3858e9); /* vertically center the icon cross browsers */ line-height: 1.1; } .tagchecklist .ntdelbutton:focus { outline: 0; } .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, #bulk-titles .ntdelbutton:hover:before, #bulk-titles .ntdelbutton:focus:before { color: #d63638; } .tagchecklist .ntdelbutton:focus .remove-tag-icon:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .key-labels label { line-height: 24px; } strong, b { font-weight: 600; } .pre { /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* IE 5.5 - 7 */ } .howto { color: #646970; display: block; } p.install-help { margin: 8px 0; font-style: italic; } .no-break { white-space: nowrap; } hr { border: 0; border-top: 1px solid #dcdcde; border-bottom: 1px solid #f6f7f7; } .row-actions span.delete a, .row-actions span.trash a, .row-actions span.spam a, .plugins a.delete, #all-plugins-table .plugins a.delete, #search-plugins-table .plugins a.delete, .submitbox .submitdelete, #media-items a.delete, #media-items a.delete-permanently, #nav-menu-footer .menu-delete, #delete-link a.delete, a#remove-post-thumbnail, .privacy_requests .remove-personal-data .remove-personal-data-handle { color: #b32d2e; } abbr.required, span.required, .file-error, .row-actions .delete a:hover, .row-actions .trash a:hover, .row-actions .spam a:hover, .plugins a.delete:hover, #all-plugins-table .plugins a.delete:hover, #search-plugins-table .plugins a.delete:hover, .submitbox .submitdelete:hover, #media-items a.delete:hover, #media-items a.delete-permanently:hover, #nav-menu-footer .menu-delete:hover, #delete-link a.delete:hover, a#remove-post-thumbnail:hover, .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { color: #b32d2e; border: none; } .application-password-display .success { color: #007017; margin-right: 0.5rem; } /*------------------------------------------------------------------------------ 3.0 - Actions ------------------------------------------------------------------------------*/ #major-publishing-actions { padding: 10px; clear: both; border-top: 1px solid #dcdcde; background: #f6f7f7; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; } #delete-action { line-height: 2.30769231; /* 30px */ } #delete-link a { text-decoration: none; } #publishing-action { text-align: left; margin-right: auto; line-height: 1.9; } #publishing-action .spinner { float: none; } #misc-publishing-actions { padding: 6px 0 0; } .misc-pub-section { padding: 6px 10px 8px; } .word-wrap-break-word, .misc-pub-filename { word-wrap: break-word; } #minor-publishing-actions { padding: 10px 10px 0; text-align: left; } #save-post { float: right; } .preview { float: left; } #sticky-span { margin-right: 18px; } .approve, .unapproved .unapprove { display: none; } .unapproved .approve, .spam .approve, .trash .approve { display: inline; } td.action-links, th.action-links { text-align: left; } #misc-publishing-actions .notice { margin-right: 10px; margin-left: 10px; } /* Filter bar */ .wp-filter { display: inline-block; position: relative; box-sizing: border-box; margin: 12px 0 25px; padding: 0 10px; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border: 1px solid #c3c4c7; background: #fff; color: #50575e; font-size: 13px; } .wp-filter a { text-decoration: none; } .filter-count { display: inline-block; vertical-align: middle; min-width: 4em; } .title-count, .filter-count .count { display: inline-block; position: relative; top: -1px; padding: 4px 10px; border-radius: 30px; background: #646970; color: #fff; font-size: 14px; font-weight: 600; } /* not a part of filter bar, but derived from it, so here for now */ .title-count { display: inline; top: -3px; margin-right: 5px; margin-left: 20px; } .filter-items { float: right; } .filter-links { display: inline-block; margin: 0; } .filter-links li { display: inline-block; margin: 0; } .filter-links li > a { display: inline-block; margin: 0 10px; padding: 15px 0; border-bottom: 4px solid #fff; color: #646970; cursor: pointer; } .filter-links .current { box-shadow: none; border-bottom: 4px solid var(--wp-admin-theme-color); color: #1d2327; } .filter-links li > a:hover, .filter-links li > a:focus, .show-filters .filter-links a.current:hover, .show-filters .filter-links a.current:focus { color: var(--wp-admin-theme-color); } .wp-filter .search-form { float: left; display: flex; align-items: center; column-gap: .5rem; } .wp-filter .search-form input[type="search"] { width: 280px; max-width: 100%; } .wp-filter .search-form select { margin: 0; } .wp-filter .search-form input[type="search"] { min-height: 32px; padding: 0 8px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 8px 0 24px; } .wp-filter .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } /* Use flexbox only on the plugins install page and upload page. The `filter-links` and search form children will become flex items. */ .plugin-install-php .wp-filter, .upload-php .wp-filter { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .wp-filter .search-form.search-plugins select, .wp-filter .search-form.search-plugins .wp-filter-search, .no-js .wp-filter .search-form.search-plugins .button { display: inline-block; vertical-align: top; } .wp-filter .button.drawer-toggle { margin: 10px 9px 0; padding: 0 6px 0 10px; border-color: transparent; background-color: transparent; color: #646970; vertical-align: baseline; box-shadow: none; } .wp-filter .drawer-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 0 0 5px; color: #646970; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-filter .button.drawer-toggle:hover, .wp-filter .drawer-toggle:hover:before, .wp-filter .button.drawer-toggle:focus, .wp-filter .drawer-toggle:focus:before { background-color: transparent; color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:hover, .wp-filter .button.drawer-toggle:focus:active { border-color: transparent; } .wp-filter .button.drawer-toggle:focus { border-color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:active { background: transparent; box-shadow: none; transform: none; } .wp-filter .drawer-toggle.current:before { color: #fff; } .filter-drawer, .wp-filter .favorites-form { display: none; margin: 0 -20px 0 -10px; padding: 20px; border-top: 1px solid #f0f0f1; background: #f6f7f7; overflow: hidden; } .wp-filter .favorites-form .favorites-username { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; } .wp-filter .favorites-form .favorites-username input { margin: 0; } .show-filters .filter-drawer, .show-favorites-form .favorites-form { display: block; } .show-filters .filter-links a.current { border-bottom: none; } .show-filters .wp-filter .button.drawer-toggle { border-radius: 2px; background: #646970; color: #fff; } .show-filters .wp-filter .drawer-toggle:hover, .show-filters .wp-filter .drawer-toggle:focus { background: var(--wp-admin-theme-color); } .show-filters .wp-filter .drawer-toggle:before { color: #fff; } .filter-group { box-sizing: border-box; position: relative; float: right; margin: 0 0 0 1%; padding: 20px 10px 10px; width: 24%; background: #fff; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .filter-group legend { position: absolute; top: 10px; display: block; margin: 0; padding: 0; font-size: 1em; font-weight: 600; } .filter-drawer .filter-group-feature { margin: 28px 0 0; list-style-type: none; font-size: 12px; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 1.4; } .filter-drawer .filter-group-feature input { position: absolute; margin: 0; } .filter-group .filter-group-feature label { display: block; margin: 14px 23px 14px 0; } .filter-drawer .buttons { clear: both; margin-bottom: 20px; } .filter-drawer .filter-group + .buttons { margin-bottom: 0; padding-top: 20px; } .filter-drawer .buttons .button span { display: inline-block; opacity: 0.8; font-size: 12px; text-indent: 10px; } .wp-filter .button.clear-filters { display: none; margin-right: 10px; } .wp-filter .button-link.edit-filters { padding: 0 5px; line-height: 2.2; } .filtered-by { display: none; margin: 0; } .filtered-by > span { font-weight: 600; } .filtered-by a { margin-right: 10px; } .filtered-by .tags { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; } .filtered-by .tag { padding: 4px 8px; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; font-size: 11px; } .filters-applied .filter-group, .filters-applied .filter-drawer .buttons, .filters-applied .filter-drawer br { display: none; } .filters-applied .filtered-by { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; } .filters-applied .filter-drawer { padding: 20px; } .show-filters .favorites-form, .show-filters .content-filterable, .show-filters.filters-applied.loading-content .content-filterable, .loading-content .content-filterable, .error .content-filterable { display: none; } .show-filters.filters-applied .content-filterable { display: block; } .loading-content .spinner { display: block; margin: 40px auto 0; float: none; } @media only screen and (max-width: 1138px) { .wp-filter .search-form { margin: 11px 0; } } @media only screen and (max-width: 1250px) { .wp-filter:has(.plugin-install-search) .search-form { margin: 11px 0; } } @media only screen and (max-width: 1120px) { .filter-drawer { border-bottom: 1px solid #f0f0f1; } .filter-group { margin-bottom: 0; margin-top: 5px; width: 100%; } .filter-group li { margin: 10px 0; } } @media only screen and (max-width: 1000px) { .filter-items { float: none; } .wp-filter .media-toolbar-primary, .wp-filter .media-toolbar-secondary, .wp-filter .search-form { float: none; /* Remove float from media-views.css */ position: relative; max-width: 100%; } .wp-filter .search-form { margin: 11px 0; flex-wrap: wrap; row-gap: 10px; } } @media only screen and (max-width: 782px) { .filter-group li { padding: 0; width: 50%; } .wp-filter .search-form input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 40px; padding: 0 12px 0 24px; } } @media only screen and (max-width: 320px) { .filter-count { display: none; } .wp-filter .drawer-toggle { margin: 10px 0; } .filter-group li, .wp-filter .search-form input[type="search"] { width: 100%; } } /*------------------------------------------------------------------------------ 4.0 - Notifications ------------------------------------------------------------------------------*/ .notice, div.updated, div.error { background: #fff; border: none; border-right: 4px solid #c3c4c7; box-shadow: none; margin: 5px 15px 2px; padding: 8px 12px; } div[class="update-message"] { /* back-compat for pre-4.6 */ padding: 0.5em 0 0.5em 12px; } .notice p, .notice-title, div.updated p, div.error p, .form-table td .notice p { margin: 0.5em 0; padding: 0; font-size: 13px; line-height: 1.54; color: #1e1e1e; } div.notice a, div.error a, div.updated a { color: var(--wp-admin-theme-color-darker-10); text-decoration: underline; } div.notice a:hover, div.error a:hover, div.updated a:hover { color: var(--wp-admin-theme-color-darker-20); } div.notice a:focus, div.error a:focus, div.updated a:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); outline: 2px solid transparent; border-radius: 2px; } .notice-alt { box-shadow: none; } .notice-large { padding: 10px 20px; } .notice-title { display: inline-block; color: #1d2327; font-size: 18px; } .wp-core-ui .notice.is-dismissible { padding-left: 48px; position: relative; } .notice-dismiss { position: absolute; top: 12px; left: 12px; border: none; margin: 0; padding: 0; background: none; color: #1e1e1e; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 2px; } .notice-dismiss:hover:before, .notice-dismiss:active:before { color: #1e1e1e; opacity: 0.7; } .notice-dismiss:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .notice-dismiss:focus:before { color: #1e1e1e; } .notice-success, div.updated { border-right-color: #4ab866; background-color: #eff9f1; } .notice-success.notice-alt, div.updated.notice-alt { background-color: #eff9f1; } .notice-warning { border-right-color: #f0b849; background-color: #fef8ee; } .notice-warning.notice-alt { background-color: #fef8ee; } .notice-error, div.error { border-right-color: #cc1818; background-color: #fcf0f0; } .notice-error.notice-alt, div.error.notice-alt { background-color: #fcf0f0; } .notice-info { border-right-color: #3858e9; background-color: #fff; } .notice-info.notice-alt { background-color: #fff; } #plugin-information-footer .update-now:not(.button-disabled):before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 20px/1 dashicons; margin: -3px -2px 0 5px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: middle; } #plugin-information-footer .notice { margin-top: -5px; } .update-message p:before, .updating-message p:before, .updated-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activating-message:before, .button.activated-message:before { display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error { margin: 5px 0 15px; } .wrap #templateside .notice { display: block; margin: 0; padding: 5px 8px; font-weight: 600; text-decoration: none; } .wrap #templateside span.notice { margin-right: -12px; } #templateside li.notice a { padding: 0; } /* Update icon. */ .update-message p:before, .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before { color: #d63638; content: "\f463"; content: "\f463" / ''; } /* Spins the update icon. */ .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: rotation 2s infinite linear; } @media (prefers-reduced-motion: reduce) { .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: none; } } .theme-overlay .theme-autoupdate .dashicons-update.spin { margin-left: 3px; } /* Updated icon (check mark). */ .updated-message p:before, .installed p:before, .button.updated-message:before, .button.activated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } /* Error icon. */ .update-message.notice-error p:before { color: #d63638; content: "\f534"; content: "\f534" / ''; } .wrap .notice p:before, .import-php .updating-message:before { margin-left: 6px; } .import-php .updating-message:before { vertical-align: bottom; } #update-nag, .update-nag { display: inline-block; line-height: 1.4; padding: 11px 15px; font-size: 14px; margin: 25px 2px 0 20px; } ul#dismissed-updates { display: none; } #dismissed-updates li > p { margin-top: 0; } #dismiss, #undismiss { margin-right: 0.5em; } form.upgrade { margin-top: 8px; } form.upgrade .hint { font-style: italic; font-size: 85%; margin: -0.5em 0 2em; } .update-php .spinner { float: none; margin: -4px 0; } h2.wp-current-version { margin-bottom: .3em; } p.update-last-checked { margin-top: 0; } p.auto-update-status { margin-top: 2em; line-height: 1.8; } #ajax-loading, .ajax-loading, .ajax-feedback, .imgedit-wait-spin, .list-ajax-loading { /* deprecated */ visibility: hidden; } #ajax-response.alignleft { margin-right: 2em; } .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activated-message:before, .button.activating-message:before { margin: 0 -2px 0 5px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button { padding: 0 14px; line-height: 2.71428571; /* 38px */ font-size: 14px; vertical-align: middle; min-height: 40px; margin-bottom: 4px; } #plugin-information-footer .button.installed:before, #plugin-information-footer .button.installing:before, #plugin-information-footer .button.updating-message:before, #plugin-information-footer .button.updated-message:before, #plugin-information-footer .button.activated-message:before, #plugin-information-footer .button.activating-message:before { margin: 0 -2px 0 5px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button.update-now.updating-message:before { margin: 0 -2px 0 5px; } .button-primary.updating-message:before, .button-primary.activating-message:before { color: #fff; } .button-primary.updated-message:before, .button-primary.activated-message:before { color: #9ec2e6; } .button.updated-message, .button.activated-message { transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } /* @todo: this does not need its own section anymore */ /*------------------------------------------------------------------------------ 6.0 - Admin Header ------------------------------------------------------------------------------*/ #adminmenu a, #taglist a, #catlist a { text-decoration: none; } /*------------------------------------------------------------------------------ 6.1 - Screen Options Tabs ------------------------------------------------------------------------------*/ #screen-options-wrap, #contextual-help-wrap { margin: 0; padding: 8px 20px 12px; position: relative; } #contextual-help-wrap { overflow: auto; margin-right: 0; } #screen-meta-links { float: left; margin: 0 0 0 20px; } /* screen options and help tabs revert */ #screen-meta { display: none; margin: 0 0 -1px 20px; position: relative; background-color: #fff; border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 0 0 transparent; } #screen-options-link-wrap, #contextual-help-link-wrap { float: right; margin: 0 6px 0 0; } #screen-meta-links .screen-meta-toggle { position: relative; top: 0; } #screen-meta-links .show-settings { border: 1px solid #c3c4c7; border-top: none; height: auto; margin-bottom: 0; padding: 0 16px 0 6px; background: #fff; border-radius: 0 0 4px 4px; color: #646970; box-shadow: 0 0 0 transparent; transition: box-shadow 0.1s linear; } #screen-meta-links .show-settings:hover, #screen-meta-links .show-settings:active, #screen-meta-links .show-settings:focus { color: #2c3338; } #screen-meta-links .show-settings:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #screen-meta-links .show-settings:active { transform: none; } #screen-meta-links .show-settings:after { left: 0; content: "\f140"; content: "\f140" / ''; font: normal 20px/1.5 dashicons; /* line-height 1.5 = 30px to match compact button */ display: inline-block; padding: 0 0 0 5px; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } #screen-meta-links .screen-meta-active:after { content: "\f142"; content: "\f142" / ''; } /* end screen options and help tabs */ .toggle-arrow { background-repeat: no-repeat; background-position: top right; background-color: transparent; height: 22px; line-height: 22px; display: block; } .toggle-arrow-active { background-position: bottom right; } #screen-options-wrap h5, /* Back-compat for old plugins */ #screen-options-wrap legend, #contextual-help-wrap h5 { margin: 0; padding: 8px 0; font-size: 13px; font-weight: 600; } .metabox-prefs label { display: inline-block; padding-left: 15px; line-height: 2.35; } #number-of-columns { display: inline-block; vertical-align: middle; line-height: 30px; } .metabox-prefs input[type=checkbox] { margin-top: 0; margin-left: 6px; } .metabox-prefs label input, .metabox-prefs label input[type=checkbox] { margin: -4px 0 0 5px; } .metabox-prefs .columns-prefs label input { margin: -1px 0 0 2px; } .metabox-prefs label a { display: none; } .metabox-prefs .screen-options input, .metabox-prefs .screen-options label { margin-top: 0; margin-bottom: 0; vertical-align: middle; } .metabox-prefs .screen-options .screen-per-page { margin-left: 15px; padding-left: 0; } .metabox-prefs .screen-options label { line-height: 2.2; padding-left: 0; } .screen-options + .screen-options { margin-top: 10px; } .metabox-prefs .submit { margin-top: 1em; padding: 0; } /*------------------------------------------------------------------------------ 6.2 - Help Menu ------------------------------------------------------------------------------*/ #contextual-help-wrap { padding: 0; } #contextual-help-columns { position: relative; } #contextual-help-back { position: absolute; top: 0; bottom: 0; right: 150px; left: 170px; border: 1px solid #c3c4c7; border-top: none; border-bottom: none; background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } #contextual-help-wrap.no-sidebar #contextual-help-back { left: 0; border-left-width: 0; border-bottom-left-radius: 2px; } .contextual-help-tabs { float: right; width: 150px; margin: 0; } .contextual-help-tabs ul { margin: 1em 0; } .contextual-help-tabs li { margin-bottom: 0; list-style-type: none; border-style: solid; border-width: 0 2px 0 0; border-color: transparent; } .contextual-help-tabs a { display: block; padding: 5px 12px 5px 5px; line-height: 1.4; text-decoration: none; border: 1px solid transparent; border-left: none; border-right: none; } .contextual-help-tabs a:hover { color: #2c3338; } .contextual-help-tabs .active { padding: 0; margin: 0 0 0 -1px; border-right: 2px solid var(--wp-admin-theme-color); background: color-mix(in srgb, var(--wp-admin-theme-color) 8%, white); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02); } .contextual-help-tabs .active a { border-color: #c3c4c7; color: #2c3338; } .contextual-help-tabs-wrap { padding: 0 20px; overflow: auto; } .help-tab-content { display: none; margin: 0 0 12px 22px; line-height: 1.6; } .help-tab-content.active { display: block; } .help-tab-content ul li { list-style-type: disc; margin-right: 18px; } .contextual-help-sidebar { width: 150px; float: left; padding: 0 12px 0 8px; overflow: auto; } /*------------------------------------------------------------------------------ 8.0 - Layout Blocks ------------------------------------------------------------------------------*/ html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); box-sizing: border-box; -ms-overflow-style: scrollbar; /* See ticket #48545 */ } .widefat th, .widefat td { color: #50575e; } .widefat th, .widefat thead td, .widefat tfoot td { font-weight: 400; } .widefat thead tr th, .widefat thead tr td, .widefat tfoot tr th, .widefat tfoot tr td { color: #2c3338; } .widefat td p { margin: 2px 0 0.8em; } .widefat p, .widefat ol, .widefat ul { color: #2c3338; } .widefat .column-comment p { margin: 0.6em 0; } .widefat .column-comment ul { list-style: initial; margin-right: 2em; } /* Screens with postboxes */ .postbox-container { float: right; } .postbox-container .meta-box-sortables { box-sizing: border-box; } #wpbody-content .metabox-holder { padding-top: 10px; } .metabox-holder .postbox-container .meta-box-sortables { /* The jQuery UI Sortables need some initial height to work properly. */ min-height: 1px; position: relative; } #post-body-content { width: 100%; min-width: 463px; float: right; } #post-body.columns-2 #postbox-container-1 { float: left; margin-left: -300px; width: 280px; } #post-body.columns-2 #side-sortables { min-height: 250px; } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content .metabox-holder .postbox-container .empty-container { outline: none; height: 0; min-height: 0; } } .js .widget .widget-top, .js .postbox .hndle { cursor: move; } .js .widget .widget-top.is-non-sortable, .js .postbox .hndle.is-non-sortable { cursor: auto; } /* Configurable dashboard widgets "Configure" edit-box link. */ .hndle a { font-size: 12px; font-weight: 400; } .postbox-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #c3c4c7; } .postbox-header .hndle { flex-grow: 1; /* Handle the alignment for the configurable dashboard widgets "Configure" edit-box link. */ display: flex; justify-content: space-between; align-items: center; } .postbox-header .handle-actions { flex-shrink: 0; } /* Post box order and toggle buttons. */ .postbox .handle-order-higher, .postbox .handle-order-lower, .postbox .handlediv { width: 1.62rem; height: 1.62rem; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; } .postbox .handle-order-higher, .postbox .handle-order-lower { color: #646970; width: 1.62rem; } /* Post box order buttons in the block editor meta boxes area. */ .edit-post-meta-boxes-area .postbox .handle-order-higher, .edit-post-meta-boxes-area .postbox .handle-order-lower { width: 44px; height: 44px; color: #1d2327 } .postbox .handle-order-higher[aria-disabled="true"], .postbox .handle-order-lower[aria-disabled="true"] { cursor: default; color: #a7aaad; } .sortable-placeholder:not(.empty-container .sortable-placeholder) { border: 1px dashed #c3c4c7; border-radius: 8px; margin-bottom: 20px; } .postbox, .stuffbox { margin-bottom: 20px; padding: 0; line-height: 1; } .postbox.closed .postbox-header { border-bottom: 0; } /* user-select is not a part of the CSS standard - may change behavior in the future */ .postbox .hndle, .stuffbox .hndle { -webkit-user-select: none; user-select: none; } .postbox .inside { padding: 0 12px 12px; line-height: 1.4; font-size: 13px; } .stuffbox .inside { padding: 0; line-height: 1.4; font-size: 13px; margin-top: 0; } .postbox .inside { margin: 11px 0; position: relative; } .postbox .inside > p:last-child, .rss-widget ul li:last-child { margin-bottom: 1px !important; } .postbox.closed h3 { border: none; box-shadow: none; } .postbox table.form-table { margin-bottom: 0; } .postbox table.widefat { box-shadow: none; } .temp-border { border: 1px dotted #c3c4c7; } .columns-prefs label { padding: 0 0 0 10px; } /* @todo: what is this doing here */ #dashboard_right_now .versions .b, #post-status-display, #post-visibility-display, #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, .media-item .percent, .plugins .name, #pass-strength-result.strong, #pass-strength-result.short, #ed_reply_toolbar #ed_reply_strong, .item-controls .item-order a, .feature-filter .feature-name, #comment-status-display { font-weight: 600; } /*------------------------------------------------------------------------------ 21.0 - Admin Footer ------------------------------------------------------------------------------*/ #wpfooter { position: absolute; bottom: 0; right: 0; left: 0; padding: 10px 20px; color: #50575e; } #wpfooter p { font-size: 13px; margin: 0; line-height: 1.55; } #footer-thankyou { font-style: italic; } /*------------------------------------------------------------------------------ 25.0 - Tabbed Admin Screen Interface (Experimental) ------------------------------------------------------------------------------*/ .nav-tab { float: right; border: 1px solid #c3c4c7; border-bottom: none; margin-right: 0.5em; /* half the font size so set the font size properly */ padding: 5px 10px; font-size: 14px; line-height: 1.71428571; font-weight: 600; background: #dcdcde; color: #50575e; text-decoration: none; white-space: nowrap; } h3 .nav-tab, /* Back-compat for pre-4.4 */ .nav-tab-small .nav-tab { padding: 5px 14px; font-size: 12px; line-height: 1.33; } .nav-tab:hover, .nav-tab:focus { background-color: #fff; color: #3c434a; } .nav-tab-active, .nav-tab:focus:active { box-shadow: none; } .nav-tab-active { margin-bottom: -1px; color: #3c434a; } .nav-tab-active, .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #f0f0f1; background: #f0f0f1; color: #000; } h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */ .nav-tab-wrapper { border-bottom: 1px solid #c3c4c7; margin: 0; padding-top: 9px; padding-bottom: 0; line-height: inherit; } /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */ .nav-tab-wrapper:not(.wp-clearfix):after { content: ""; display: table; clear: both; } /*------------------------------------------------------------------------------ 26.0 - Misc ------------------------------------------------------------------------------*/ .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; display: inline-block; visibility: hidden; float: left; vertical-align: middle; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 10px 10px 0; } .spinner.is-active, .loading-content .spinner { visibility: visible; } #template > div { margin-left: 16em; } #template .notice { margin-top: 1em; margin-left: 3%; } #template .notice p { width: auto; } #template .submit .spinner { float: none; vertical-align: top; } .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder h2.hndle { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } /* Back-compat for nav-menus screen */ .nav-menus-php .metabox-holder h3 { padding: 0; } .accordion-container h3.accordion-section-title { padding: 0 !important; } .accordion-section-title button.accordion-trigger, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger { background: inherit; color: #1d2327; display: block; position: relative; text-align: right; width: 100%; outline: none; border: 0; padding: 10px 14px 11px 10px; line-height: 1.5; cursor: pointer; } .accordion-section-title button.accordion-trigger:focus, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down { position: absolute; left: 10px; right: auto; color: #787c82; border-radius: 50px; top: 50%; transform: translateY(-50%); } .accordion-section-title:hover span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down { color: #1d2327; } .accordion-section-title span.dashicons.dashicons-arrow-down::before, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before { position: relative; right: -1px; } .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down { transform: rotate(-180deg) translate(0, 50%); } #templateside ul li a { text-decoration: none; } .plugin-install #description, .plugin-install-network #description { width: 60%; } table .vers, table .column-visible, table .column-rating { text-align: right; } .attention, .error-message { color: #d63638; font-weight: 600; } /* Scrollbar fix for bulk upgrade iframe */ body.iframe { height: 98%; } /* Upgrader styles, Specific to Language Packs */ .lp-show-latest p { display: none; } .lp-show-latest p:last-child, .lp-show-latest .lp-error p { display: block; } /* - Only used once or twice in all of WP - deprecate for global style ------------------------------------------------------------------------------*/ .media-icon { width: 62px; /* icon + border */ text-align: center; } .media-icon img { border: 1px solid #dcdcde; border: 1px solid rgba(0, 0, 0, 0.07); } #howto { font-size: 11px; margin: 0 5px; display: block; } .importers { font-size: 16px; width: auto; } .importers td { padding-left: 14px; line-height: 1.4; } .importers .import-system { max-width: 250px; } .importers td.desc { max-width: 500px; } .importer-title, .importer-desc, .importer-action { display: block; } .importer-title { color: #000; font-size: 14px; font-weight: 400; margin-bottom: .2em; } .importer-action { line-height: 1.55; /* Same as with .updating-message */ color: #50575e; margin-bottom: 1em; } #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */ #post-body #post-body-content #namediv h2 { margin-top: 0; } .edit-comment-author { color: #1d2327; border-bottom: 1px solid #f0f0f1; } #namediv h3 label, /* Back-compat for pre-4.4 */ #namediv h2 label { vertical-align: baseline; } #namediv table { width: 100%; } #namediv td.first { width: 10px; white-space: nowrap; } #namediv input { width: 100%; } #namediv p { margin: 10px 0; } /* - Used - but could/should be deprecated with a CSS reset ------------------------------------------------------------------------------*/ .zerosize { height: 0; width: 0; margin: 0; border: 0; padding: 0; overflow: hidden; position: absolute; } br.clear { height: 2px; line-height: 0.15; } .checkbox { border: none; margin: 0; padding: 0; } fieldset { border: 0; padding: 0; margin: 0; } .post-categories { display: inline; margin: 0; padding: 0; } .post-categories li { display: inline; } /* Star Ratings - Back-compat for pre-3.8 */ div.star-holder { position: relative; height: 17px; width: 100px; background: url(../images/stars.png?ver=20121108) repeat-x bottom right; } div.star-holder .star-rating { background: url(../images/stars.png?ver=20121108) repeat-x top right; height: 17px; float: right; } /* Star Ratings */ .star-rating { white-space: nowrap; } .star-rating .star { display: inline-block; width: 20px; height: 20px; -webkit-font-smoothing: antialiased; font-size: 20px; line-height: 1; font-family: dashicons; text-decoration: inherit; font-weight: 400; font-style: normal; vertical-align: top; transition: color .1s ease-in; text-align: center; color: #dba617; } .star-rating .star-full:before { content: "\f155"; content: "\f155" / ''; } .star-rating .star-half:before { content: "\f459"; content: "\f459" / ''; } .rtl .star-rating .star-half { transform: rotateY(-180deg); } .star-rating .star-empty:before { content: "\f154"; content: "\f154" / ''; } div.action-links { font-weight: 400; margin: 6px 0 0; } /* Plugin install thickbox */ #plugin-information { background: #fff; position: fixed; top: 0; left: 0; bottom: 0; right: 0; height: 100%; padding: 0; } #plugin-information-scrollable { overflow: auto; -webkit-overflow-scrolling: touch; height: 100%; } #plugin-information-title { padding: 0 26px; background: #f6f7f7; font-size: 22px; font-weight: 600; line-height: 2.4; position: relative; height: 56px; } #plugin-information-title.with-banner { margin-left: 0; height: 250px; background-size: cover; } #plugin-information-title h2 { font-size: 1em; font-weight: 600; padding: 0; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #plugin-information-title.with-banner h2 { position: relative; font-family: "Helvetica Neue", sans-serif; display: inline-block; font-size: 30px; line-height: 1.68; box-sizing: border-box; max-width: 100%; padding: 0 15px; margin-top: 174px; color: #fff; background: rgba(29, 35, 39, 0.9); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); border-radius: 8px; } #plugin-information-title div.vignette { display: none; } #plugin-information-title.with-banner div.vignette { position: absolute; display: block; top: 0; right: 0; height: 250px; width: 100%; background: transparent; box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #plugin-information-tabs { padding: 0 16px; position: relative; left: 0; right: 0; min-height: 36px; font-size: 0; z-index: 1; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #plugin-information-tabs a { position: relative; display: inline-block; padding: 9px 10px; margin: 0; height: 18px; line-height: 1.3; font-size: 14px; text-decoration: none; transition: none; } #plugin-information-tabs a.current { margin: 0 -1px -1px; background: #fff; border: 1px solid #dcdcde; border-bottom-color: #fff; padding-top: 8px; color: #2c3338; } #plugin-information-tabs.with-banner a.current { border-top: none; padding-top: 9px; } #plugin-information-tabs a:active, #plugin-information-tabs a:focus { outline: none; } #plugin-information-content { overflow: hidden; /* equal height column trick */ background: #fff; position: relative; top: 0; left: 0; right: 0; min-height: 100%; /* Height of title + tabs + install now */ min-height: calc( 100% - 152px ); } #plugin-information-content.with-banner { /* Height of banner + tabs + install now */ min-height: calc( 100% - 346px ); } #section-holder { position: relative; top: 0; left: 250px; bottom: 0; right: 0; margin-top: 10px; margin-left: 250px; /* FYI box */ padding: 10px 26px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ } #section-holder .notice { margin: 5px 0 15px; } #section-holder .updated { margin: 16px 0; } #plugin-information .fyi { float: left; position: relative; top: 0; left: 0; padding: 16px 16px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ width: 217px; border-right: 1px solid #dcdcde; background: #f6f7f7; color: #646970; } #plugin-information .fyi strong { color: #3c434a; } #plugin-information .fyi h3 { font-weight: 600; text-transform: uppercase; font-size: 12px; color: #646970; margin: 24px 0 8px; } #plugin-information .fyi h2 { font-size: 0.9em; margin-bottom: 0; margin-left: 0; } #plugin-information .fyi ul { padding: 0; margin: 0; list-style: none; } #plugin-information .fyi li { margin: 0 0 10px; } #plugin-information .fyi-description { margin-top: 0; } #plugin-information .counter-container { margin: 3px 0; } #plugin-information .counter-label { float: right; margin-left: 5px; min-width: 55px; } #plugin-information .counter-back { height: 17px; width: 92px; background-color: #dcdcde; float: right; } #plugin-information .counter-bar { height: 17px; background-color: #f0c33c; /* slightly lighter than stars due to larger expanse */ float: right; } #plugin-information .counter-count { margin-right: 5px; } #plugin-information .fyi ul.contributors { margin-top: 10px; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-left: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-left: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li img { vertical-align: middle; margin-left: 4px; } #plugin-information-footer { padding: 13px 16px; position: absolute; left: 0; bottom: 0; right: 0; height: 40px; /* actual height: 40+13+13+1=67 */ border-top: 1px solid #dcdcde; background: #f6f7f7; } /* rtl:ignore */ #plugin-information .section { direction: ltr; } /* rtl:ignore */ #plugin-information .section ul, #plugin-information .section ol { list-style-type: disc; margin-left: 24px; } #plugin-information .section, #plugin-information .section p { font-size: 14px; line-height: 1.7; } #plugin-information #section-screenshots ol { list-style: none; margin: 0; } #plugin-information #section-screenshots li img { vertical-align: text-top; margin-top: 16px; max-width: 100%; width: auto; height: auto; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* rtl:ignore */ #plugin-information #section-screenshots li p { font-style: italic; padding-left: 20px; } #plugin-information pre { padding: 7px; overflow: auto; border: 1px solid #c3c4c7; } #plugin-information blockquote { border-right: 2px solid #dcdcde; color: #646970; font-style: italic; margin: 1em 0; padding: 0 1em 0 0; } /* rtl:ignore */ #plugin-information .review { overflow: hidden; /* clearfix */ width: 100%; margin-bottom: 20px; border-bottom: 1px solid #dcdcde; } #plugin-information .review-title-section { overflow: hidden; /* clearfix */ } /* rtl:ignore */ #plugin-information .review-title-section h4 { display: inline-block; float: left; margin: 0 6px 0 0; } #plugin-information .reviewer-info p { clear: both; margin: 0; padding-top: 2px; } /* rtl:ignore */ #plugin-information .reviewer-info .avatar { float: left; margin: 4px 6px 0 0; } /* rtl:ignore */ #plugin-information .reviewer-info .star-rating { float: left; } /* rtl:ignore */ #plugin-information .review-meta { float: left; margin-left: 0.75em; } /* rtl:ignore */ #plugin-information .review-body { float: left; width: 100%; } .plugin-version-author-uri { font-size: 13px; } /* For non-js plugin installation screen ticket #36430. */ .update-php .button.button-primary { margin-left: 1em; } @media screen and (max-width: 771px) { #plugin-information-title.with-banner { height: 100px; } #plugin-information-title.with-banner h2 { margin-top: 30px; font-size: 20px; line-height: 2; max-width: 85%; } #plugin-information-title.with-banner div.vignette { height: 100px; } #plugin-information-tabs { overflow: hidden; /* clearfix */ padding: 0; height: auto; /* let tabs wrap */ } #plugin-information-tabs a.current { margin-bottom: 0; border-bottom: none; } #plugin-information .fyi { float: none; border: 1px solid #dcdcde; position: static; width: auto; margin: 26px 26px 0; padding-bottom: 0; /* reset from the two column height fix */ } #section-holder { position: static; margin: 0; padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */ } #plugin-information .fyi h3, #plugin-information .fyi small { display: none; } #plugin-information-footer { padding: 12px 16px 0; height: 46px; } } /* Thickbox for the Plugin details modal. */ #TB_window.plugin-details-modal { background: #fff; } #TB_window.plugin-details-modal.thickbox-loading:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; right: 50%; top: 50%; z-index: -1; margin: -10px -10px 0 0; background: #fff url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } @media print, (min-resolution: 120dpi) { #TB_window.plugin-details-modal.thickbox-loading:before { background-image: url(../images/spinner-2x.gif); } } .plugin-details-modal #TB_title { float: right; height: 1px; } .plugin-details-modal #TB_ajaxWindowTitle { display: none; } .plugin-details-modal #TB_closeWindowButton { right: auto; left: -30px; color: #f0f0f1; } .plugin-details-modal #TB_closeWindowButton:hover, .plugin-details-modal #TB_closeWindowButton:focus { outline: none; box-shadow: none; } .plugin-details-modal #TB_closeWindowButton:hover::after, .plugin-details-modal #TB_closeWindowButton:focus::after { outline: 2px solid; outline-offset: -4px; border-radius: 4px; } .plugin-details-modal .tb-close-icon { display: none; } .plugin-details-modal #TB_closeWindowButton:after { content: "\f335"; content: "\f335" / ''; font: normal 32px/29px 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* move plugin install close icon to top on narrow screens */ @media screen and (max-width: 830px) { .plugin-details-modal #TB_closeWindowButton { left: 0; top: -30px; } } /* @todo: move this. */ img { border: none; } /* Metabox collapse arrow indicators */ .sidebar-name .toggle-indicator::before, .meta-box-sortables .postbox .toggle-indicator::before, .meta-box-sortables .postbox .order-higher-indicator::before, .meta-box-sortables .postbox .order-lower-indicator::before, .bulk-action-notice .toggle-indicator::before, .privacy-text-box .toggle-indicator::before { content: "\f142"; content: "\f142" / ''; display: inline-block; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .js .widgets-holder-wrap.closed .toggle-indicator::before, .meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before, .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before, .privacy-text-box.closed .toggle-indicator::before { content: "\f140"; content: "\f140" / ''; } .postbox .handle-order-higher .order-higher-indicator::before { content: "\f343"; content: "\f343" / ''; color: inherit; } .postbox .handle-order-lower .order-lower-indicator::before { content: "\f347"; content: "\f347" / ''; color: inherit; } .postbox .handle-order-higher .order-higher-indicator::before, .postbox .handle-order-lower .order-lower-indicator::before { position: relative; top: 0.11rem; width: 20px; height: 20px; } .postbox .handlediv .toggle-indicator::before { width: 20px; border-radius: 50%; } .postbox .handlediv .toggle-indicator::before { position: relative; top: 0.05rem; text-indent: -1px; /* account for the dashicon glyph uneven horizontal alignment */ } .rtl .postbox .handlediv .toggle-indicator::before { text-indent: 1px; /* account for the dashicon glyph uneven horizontal alignment */ } .bulk-action-notice .toggle-indicator::before { line-height: 16px; vertical-align: top; color: #787c82; } .postbox .handle-order-higher:focus, .postbox .handle-order-lower:focus, .postbox .handlediv:focus { box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); border-radius: 50%; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .postbox .handle-order-higher:focus .order-higher-indicator::before, .postbox .handle-order-lower:focus .order-lower-indicator::before, .postbox .handlediv:focus .toggle-indicator::before { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } /* @todo: appears to be Press This only and overridden */ #photo-add-url-div input[type="text"] { width: 300px; } /* Theme/Plugin file editor */ .alignleft h2 { margin: 0; } #template textarea { font-family: Consolas, Monaco, monospace; font-size: 13px; background: #f6f7f7; tab-size: 4; } #template textarea, #template .CodeMirror { width: 100%; min-height: 60vh; height: calc( 100vh - 295px ); border: 1px solid #dcdcde; box-sizing: border-box; } #templateside > h2 { padding-top: 6px; padding-bottom: 7px; margin: 0; } #templateside ol, #templateside ul { margin: 0; padding: 0; } #templateside > ul { box-sizing: border-box; margin-top: 0; overflow: auto; padding: 0; min-height: 60vh; height: calc(100vh - 295px); background-color: #f6f7f7; border: 1px solid #dcdcde; border-right: none; } #templateside ul ul { padding-right: 12px; } #templateside > ul > li > ul[role=group] { padding-right: 0; } /* * Styles for Theme and Plugin file editors. */ /* Hide collapsed items. */ [role="treeitem"][aria-expanded="false"] > ul { display: none; } /* Use arrow dashicons for folder states, but hide from screen readers. */ [role="treeitem"] span[aria-hidden] { display: inline; font-family: dashicons; font-size: 20px; position: absolute; pointer-events: none; } [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after { content: "\f141"; content: "\f139" / ''; } [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after { content: "\f140"; content: "\f140" / ''; } [role="treeitem"] .folder-label { display: block; padding: 3px 12px 3px 3px; cursor: pointer; } /* Remove outline, and create our own focus and hover styles */ [role="treeitem"] { outline: 0; } [role="treeitem"] a:focus, [role="treeitem"] .folder-label.focus { color: #043959; /* Reset default focus style. */ box-shadow: none; /* Use an inset outline instead, so it's visible also over the current file item. */ outline: 2px solid var(--wp-admin-theme-color, #3858e9); outline-offset: -2px; } [role="treeitem"].hover, [role="treeitem"] .folder-label.hover { background-color: #f0f0f1; } .tree-folder { margin: 0; position: relative; } [role="treeitem"] li { position: relative; } /* Styles for folder indicators/depth */ .tree-folder .tree-folder::after { content: ""; display: block; position: absolute; right: 2px; border-right: 1px solid #c3c4c7; top: -13px; bottom: 10px; } .tree-folder > li::before { content: ""; position: absolute; display: block; border-right: 1px solid #c3c4c7; right: 2px; top: -5px; height: 18px; width: 7px; border-bottom: 1px solid #c3c4c7; } .tree-folder > li::after { content: ""; position: absolute; display: block; border-right: 1px solid #c3c4c7; right: 2px; bottom: -7px; top: 0; } /* current-file needs to adjustment for .notice styles */ #templateside .current-file { margin: -4px 0 -2px; } .tree-folder > .current-file::before { right: 4px; height: 15px; width: 0; border-right: none; top: 3px; } .tree-folder > .current-file::after { bottom: -4px; height: 7px; right: 2px; top: auto; } /* Lines shouldn't continue on last item */ .tree-folder > li:last-child::after, .tree-folder li:last-child > .tree-folder::after { display: none; } #theme-plugin-editor-selector, #theme-plugin-editor-label, #documentation label { font-weight: 600; } #theme-plugin-editor-label { display: inline-block; margin-bottom: 1em; } /* rtl:ignore */ #template textarea, #docs-list { direction: ltr; } .fileedit-sub #theme, .fileedit-sub #plugin { max-width: 40%; } .fileedit-sub .alignright { text-align: left; } #template p { width: 97%; } #file-editor-linting-error { margin-top: 1em; margin-bottom: 1em; } #file-editor-linting-error > .notice { margin: 0; display: inline-block; } #file-editor-linting-error > .notice > p { width: auto; } #template .submit { margin-top: 1em; padding: 0; } #template .submit input[type=submit][disabled] { cursor: not-allowed; } #templateside { float: left; width: 16em; word-wrap: break-word; } #postcustomstuff p.submit { margin: 0; } #templateside h4 { margin: 1em 0 0; } #templateside li { margin: 4px 0; } #templateside li:not(.howto) a, .theme-editor-php .highlight { display: block; padding: 3px 12px 3px 0; text-decoration: none; } #templateside li.current-file > a { padding-bottom: 0; } #templateside li:not(.howto) > a:first-of-type { padding-top: 0; } #templateside li.howto { padding: 6px 12px 12px; } .theme-editor-php .highlight { margin: -3px -12px -3px 3px; } #templateside .highlight { border: none; font-weight: 600; } .nonessential { color: #646970; font-size: 11px; font-style: italic; padding-right: 12px; } #documentation { margin-top: 10px; } #documentation label { line-height: 1.8; vertical-align: baseline; } .fileedit-sub { padding: 10px 0 8px; line-height: 180%; } #file-editor-warning .file-editor-warning-content { margin: 25px; } /* @todo: can we use a common class for these? */ .nav-menus-php .item-edit:before, .wp-customizer .control-section .accordion-section-title:after, .wp-customizer .accordion-section-title:after, .widget-top .widget-action .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .widget-top .widget-action .toggle-indicator:before { padding: 1px 0 1px 2px; border-radius: 50%; } .handlediv, .postbox .handlediv.button-link, .item-edit, .toggle-indicator { color: #646970; } .widget-action { color: #50575e; /* #fafafa background in the Widgets screen */ } .widget-top:hover .widget-action, .widget-action:focus, .handlediv:hover, .handlediv:focus, .postbox .handlediv.button-link:hover, .postbox .handlediv.button-link:focus, .item-edit:hover, .item-edit:focus, .sidebar-name:hover .toggle-indicator { color: #1d2327; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .widget-top .widget-action:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #customize-info.open .accordion-section-title:after, .nav-menus-php .menu-item-edit-active .item-edit:before, .widget.open .widget-top .widget-action .toggle-indicator:before, .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } /*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ .ui-draggable-handle, .ui-sortable-handle { touch-action: none; } /* Accordion */ .accordion-section { border-bottom: 1px solid #dcdcde; margin: 0; } .accordion-section.open .accordion-section-content, .no-js .accordion-section .accordion-section-content { display: block; } .accordion-section.open:hover { border-bottom-color: #dcdcde; } .accordion-section-content { display: none; padding: 10px 20px 15px; overflow: hidden; background: #fff; } .accordion-section-title { margin: 0; position: relative; border-right: 1px solid #dcdcde; border-left: 1px solid #dcdcde; -webkit-user-select: none; user-select: none; } .js .accordion-section-title { cursor: pointer; } .js .accordion-section-title:after { position: absolute; top: 12px; left: 10px; z-index: 1; } .accordion-section-title:focus { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .accordion-section-title:hover:after, .accordion-section-title:focus:after { border-color: #a7aaad transparent; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .cannot-expand .accordion-section-title { cursor: auto; } .cannot-expand .accordion-section-title:after { display: none; } .control-section .accordion-section-title, .customize-pane-child .accordion-section-title { border-right: none; border-left: none; padding: 10px 14px 11px 10px; line-height: 1.55; background: #fff; } .control-section .accordion-section-title:after, .customize-pane-child .accordion-section-title:after { top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */ } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { color: #1d2327; background: #f6f7f7; } .control-section.open .accordion-section-title { /* When expanded */ border-bottom: 1px solid #dcdcde; } /* Edit Site */ .network-admin .edit-site-actions { margin-top: 0; } /* My Sites */ .my-sites { display: block; overflow: auto; zoom: 1; } .my-sites li { display: block; padding: 8px 3%; min-height: 130px; margin: 0; } @media only screen and (max-width: 599px) { .my-sites li { min-height: 0; } } @media only screen and (min-width: 600px) { .my-sites.striped li { background-color: #fff; position: relative; } .my-sites.striped li:after { content: ""; width: 1px; height: 100%; position: absolute; top: 0; left: 0; background: #c3c4c7; } } @media only screen and (min-width: 600px) and (max-width: 699px) { .my-sites li{ float: right; width: 44%; } .my-sites.striped li { background-color: #fff; } .my-sites.striped li:nth-of-type(2n+1) { clear: right; } .my-sites.striped li:nth-of-type(2n+2):after { content: none; } .my-sites li:nth-of-type(4n+1), .my-sites li:nth-of-type(4n+2) { background-color: #f6f7f7; } } @media only screen and (min-width: 700px) and (max-width: 1199px) { .my-sites li { float: right; width: 27.333333%; background-color: #fff; } .my-sites.striped li:nth-of-type(3n+3):after { content: none; } .my-sites li:nth-of-type(6n+1), .my-sites li:nth-of-type(6n+2), .my-sites li:nth-of-type(6n+3) { background-color: #f6f7f7; } } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .my-sites li { float: right; width: 21%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(4n+1) { clear: right; } .my-sites.striped li:nth-of-type(4n+4):after { content: none; } .my-sites li:nth-of-type(8n+1), .my-sites li:nth-of-type(8n+2), .my-sites li:nth-of-type(8n+3), .my-sites li:nth-of-type(8n+4) { background-color: #f6f7f7; } } @media only screen and (min-width: 1400px) and (max-width: 1599px) { .my-sites li { float: right; width: 16%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(5n+1) { clear: right; } .my-sites.striped li:nth-of-type(5n+5):after { content: none; } .my-sites li:nth-of-type(10n+1), .my-sites li:nth-of-type(10n+2), .my-sites li:nth-of-type(10n+3), .my-sites li:nth-of-type(10n+4), .my-sites li:nth-of-type(10n+5) { background-color: #f6f7f7; } } @media only screen and (min-width: 1600px) { .my-sites li { float: right; width: 12.666666%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(6n+1) { clear: right; } .my-sites.striped li:nth-of-type(6n+6):after { content: none; } .my-sites li:nth-of-type(12n+1), .my-sites li:nth-of-type(12n+2), .my-sites li:nth-of-type(12n+3), .my-sites li:nth-of-type(12n+4), .my-sites li:nth-of-type(12n+5), .my-sites li:nth-of-type(12n+6) { background-color: #f6f7f7; } } .my-sites li a { text-decoration: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { /* Back-compat for pre-3.8 */ div.star-holder, div.star-holder .star-rating { background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom right; background-size: 21px 37px; } .spinner { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); } .screen-reader-shortcut:focus { top: -39px; } .block-editor-page .screen-reader-shortcut:focus { top: 7px; } .screen-reader-shortcut[href="#wp-toolbar"] { display: none; } body { min-width: 240px; overflow-x: hidden; } body * { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; } #wpcontent { position: relative; margin-right: 0; padding-right: 10px; } #wpbody-content { padding-bottom: 100px; } .wrap { clear: both; margin-left: 12px; margin-right: 0; } /* categories */ #col-left, #col-right { float: none; width: auto; } #col-left .col-wrap, #col-right .col-wrap { padding: 0; } /* Hidden Elements */ #collapse-menu, .post-format-select { display: none !important; } .wrap h1.wp-heading-inline { margin-bottom: 0.5em; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { padding: 0 14px; font-size: 14px; white-space: nowrap; min-height: 40px; line-height: 2.71428571; vertical-align: middle; } /* Feedback Messages */ .notice, .wrap div.updated, .wrap div.error, .media-upload-form div.error { margin: 20px 0 10px; padding: 5px 10px; font-size: 14px; line-height: 175%; } .wp-core-ui .notice.is-dismissible { padding-left: 46px; } .notice-dismiss { padding: 13px; } .wrap .icon32 + h2 { margin-top: -2px; } .wp-responsive-open #wpbody { left: -16em; } code { word-wrap: break-word; word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */ word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */ } /* General Metabox */ .postbox { font-size: 14px; } .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h2 { padding: 12px; } .nav-menus-php .metabox-holder h3 { padding: 0; } .postbox .handlediv { margin-top: 3px; } /* Subsubsub Nav */ .subsubsub { font-size: 16px; text-align: center; margin-bottom: 15px; } /* Theme/Plugin File Editor */ #template textarea, #template .CodeMirror { box-sizing: border-box; } #templateside { float: none; width: auto; } #templateside > ul { border-right: 1px solid #dcdcde; } #templateside li { margin: 0; } #templateside li:not(.howto) a { display: block; padding: 5px; } #templateside li.howto { padding: 12px; } #templateside .highlight { padding: 5px; margin-right: -5px; margin-top: -5px; } #template > div, #template .notice { float: none; margin: 1em 0; width: auto; } #template .CodeMirror, #template textarea { width: 100%; } #templateside ul ul { padding-right: 1.5em; } [role="treeitem"] .folder-label { display: block; padding: 5px; } .tree-folder > li::before, .tree-folder > li::after, .tree-folder .tree-folder::after { right: -8px; } .tree-folder > li::before { top: 0; height: 13px; } .tree-folder > .current-file::before { right: -5px; top: 7px; width: 4px; } .tree-folder > .current-file::after { height: 9px; right: -8px; } .wrap #templateside span.notice { margin-right: -5px; width: 100%; } .fileedit-sub .alignright { float: right; margin-top: 15px; width: 100%; text-align: right; } .fileedit-sub .alignright label { display: block; } .fileedit-sub #theme, .fileedit-sub #plugin { margin-right: 0; max-width: 70%; } .fileedit-sub input[type="submit"] { margin-bottom: 0; } #documentation label[for="docs-list"] { display: block; } #documentation select[name="docs-list"] { margin-right: 0; max-width: 60%; } #documentation input[type="button"] { margin-bottom: 0; } #wpfooter { display: none; } #comments-form .checkforspam { display: none; } .edit-comment-author { margin: 2px 0 0; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 2.1; } .filter-drawer .filter-group-feature label { margin-right: 32px; } .wp-filter .button.drawer-toggle { font-size: 13px; line-height: 2; height: 28px; } /* Fix help tab columns for smaller screens */ #screen-meta #contextual-help-wrap { overflow: visible; } #screen-meta #contextual-help-back, #screen-meta .contextual-help-sidebar { display: none; } #screen-meta .contextual-help-tabs { clear: both; width: 100%; float: none; } #screen-meta .contextual-help-tabs ul { margin: 0 0 1em; padding: 1em 0 0; } #screen-meta .contextual-help-tabs .active { margin: 0; } #screen-meta .contextual-help-tabs-wrap { clear: both; max-width: 100%; float: none; } #screen-meta, #screen-meta-links { margin-left: 10px; } #screen-meta-links { margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */ } #screen-meta-links .show-settings:after { line-height: 1.9; } .wp-filter .search-form input[type="search"] { font-size: 1rem; } .wp-filter .search-form.search-plugins { /* This element is a flex item. */ min-width: 100%; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Disable horizontal scroll when responsive menu is open since we push the main content off to the right. */ #wpwrap.wp-responsive-open { overflow-x: hidden; } html.wp-toolbar { padding-top: 0; } .screen-reader-shortcut:focus { top: 7px; } #wpbody { padding-top: 46px; } /* Keep full-width boxes on Edit Post page from causing horizontal scroll */ div#post-body.metabox-holder.columns-1 { overflow-x: hidden; } h1.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, .nav-tab-wrapper { border-bottom: 0; } h1 .nav-tab, h2 .nav-tab, h3 .nav-tab, nav .nav-tab { margin: 10px 0 0 10px; border-bottom: 1px solid #c3c4c7; } .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #c3c4c7; } .wp-filter .search-form.search-plugins label { width: 100%; } } @media screen and (max-width: 480px) { .metabox-prefs-container { display: grid; } .metabox-prefs-container > * { display: inline-block; padding: 2px; } } @media screen and (max-width: 320px) { /* Prevent default center alignment and larger font for the Right Now widget when the network dashboard is viewed on a small mobile device. */ #network_dashboard_right_now .subsubsub { font-size: 14px; text-align: right; } } css/customize-nav-menus.css000066600000054130152330733730012014 0ustar00#customize-theme-controls #accordion-section-menu_locations { position: relative; margin-top: 30px; } #customize-theme-controls #accordion-section-menu_locations > .accordion-section-title { border-bottom-color: #dcdcde; margin-top: 15px; } #customize-theme-controls .customize-section-title-nav_menus-heading, #customize-theme-controls .customize-section-title-menu_locations-heading, #customize-theme-controls .customize-section-title-menu_locations-description { padding: 0 12px; } #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { /* Override the default italic style for control descriptions */ font-style: normal; } .menu-in-location, .menu-in-locations { display: block; font-weight: 600; font-size: 10px; } #customize-controls .theme-location-set, #customize-controls .control-section .accordion-section-title:focus .menu-in-location, #customize-controls .control-section .accordion-section-title:hover .menu-in-location { color: #50575e; } /* The `edit-menu` and `create-menu` buttons also use the `button-link` class. */ .customize-control-nav_menu_location .edit-menu, .customize-control-nav_menu_location .create-menu { margin-left: 6px; vertical-align: middle; line-height: 2.2; } #customize-controls .customize-control-nav_menu_name { margin-bottom: 12px; } .customize-control-nav_menu_name p:last-of-type { margin-bottom: 0; } #customize-new-menu-submit { float: right; min-width: 85px; } .wp-customizer .menu-item-bar .menu-item-handle, .wp-customizer .menu-item-settings, .wp-customizer .menu-item-settings .description-thin { box-sizing: border-box; } .wp-customizer .menu-item-bar { margin: 0; } .wp-customizer .menu-item-bar .menu-item-handle { width: 100%; max-width: 100%; background: #fff; } .wp-customizer .menu-item-handle .item-title { margin-right: 0; } .wp-customizer .menu-item-handle .item-type { padding: 1px 21px 0 5px; float: right; text-align: right; } .wp-customizer .menu-item-handle:hover { z-index: 8; } .customize-control-nav_menu_item.has-notifications .menu-item-handle { border-left: 4px solid #72aee6; } .wp-customizer .menu-item-settings { max-width: 100%; overflow: hidden; z-index: 8; padding: 10px; background: #f0f0f1; border: 1px solid #8c8f94; border-top: none; } .wp-customizer .menu-item-settings .description-thin { width: 100%; height: auto; margin: 0 0 8px; } .wp-customizer .menu-item-settings input[type="text"] { width: 100%; } .wp-customizer .menu-item-settings .submitbox { margin: 0; padding: 0; } .wp-customizer .menu-item-settings .link-to-original { padding: 5px 0; border: none; font-style: normal; margin: 0; width: 100%; } .wp-customizer .menu-item .submitbox .submitdelete { float: left; margin: 6px 0 0; padding: 0; cursor: pointer; } /** * Menu items reordering styles */ .menu-item-reorder-nav { display: none; background-color: #fff; position: absolute; top: 0; right: 0; } .menus-move-left:before { content: "\f341"; content: "\f341" / ''; } .menus-move-right:before { content: "\f345"; content: "\f345" / ''; } .reordering .menu-item .item-controls, .reordering .menu-item .item-type { display: none; } .reordering .menu-item-reorder-nav { display: block; } .customize-control input.menu-name-field { width: 100%; /* Override the 98% default for customizer inputs, to align with the size of menu items. */ } .wp-customizer .menu-item .item-edit { position: absolute; right: -19px; top: 2px; display: block; width: 30px; height: 38px; margin-right: 0 !important; box-shadow: none; outline: none; overflow: hidden; cursor: pointer; text-align: center; } .wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } .wp-customizer .menu-item-settings p.description { font-style: normal; } .wp-customizer .menu-settings dl { margin: 12px 0 0; padding: 0; } .wp-customizer .menu-settings .checkbox-input { margin-top: 8px; } .wp-customizer .menu-settings .menu-theme-locations { border-top: 1px solid #c3c4c7; } .wp-customizer .menu-settings { margin-top: 36px; border-top: none; } .wp-customizer .menu-location-settings { margin-top: 12px; border-top: none; } .wp-customizer .control-section-nav_menu .menu-location-settings { margin-top: 24px; border-top: 1px solid #dcdcde; } .wp-customizer .control-section-nav_menu .menu-location-settings, .customize-control-nav_menu_auto_add { padding-top: 12px; } .menu-location-settings .customize-control-checkbox .theme-location-set { line-height: 1; } .customize-control-nav_menu_auto_add label { vertical-align: top; } .menu-location-settings .new-menu-locations-widget-note { display: block; } .customize-control-menu { margin-top: 4px; } #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle { color: #50575e; } /* Screen Options */ .customize-screen-options-toggle { background: none; border: none; color: #50575e; cursor: pointer; margin: 0; padding: 20px; position: absolute; right: 0; top: 30px; } #customize-controls .customize-info .customize-help-toggle { padding: 20px; } #customize-controls .customize-info .customize-help-toggle:before { padding: 4px; } .customize-screen-options-toggle:hover, .customize-screen-options-toggle:active, .customize-screen-options-toggle:focus, .active-menu-screen-options .customize-screen-options-toggle, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: var(--wp-admin-theme-color); } .customize-screen-options-toggle:focus, #customize-controls .customize-info .customize-help-toggle:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-screen-options-toggle:before { -moz-osx-font-smoothing: grayscale; border: none; content: "\f111"; content: "\f111" / ''; display: block; font: 18px/1 dashicons; padding: 5px; text-align: center; text-decoration: none !important; text-indent: 0; left: 6px; position: absolute; top: 6px; } .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before { border-radius: 100%; } .wp-customizer #screen-options-wrap { display: none; background: #fff; border-top: 1px solid #dcdcde; padding: 4px 15px 15px; } .wp-customizer .metabox-prefs label { display: block; padding-right: 0; line-height: 30px; } /* rework the arrow indicator implementation for NVDA bug same as #32715 */ .wp-customizer .toggle-indicator { display: inline-block; font-size: 20px; line-height: 1; } .rtl .wp-customizer .toggle-indicator { text-indent: 1px; /* account for the dashicon alignment */ } .wp-customizer .menu-item .item-edit .toggle-indicator:before, #available-menu-items .accordion-section-title .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; display: block; padding: 1px 2px 1px 0; border-radius: 50%; color: #787c82; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } .control-section-nav_menu .field-link-target, .control-section-nav_menu .field-title-attribute, .control-section-nav_menu .field-css-classes, .control-section-nav_menu .field-xfn, .control-section-nav_menu .field-description { display: none; } .control-section-nav_menu.field-link-target-active .field-link-target, .control-section-nav_menu.field-title-attribute-active .field-title-attribute, .control-section-nav_menu.field-css-classes-active .field-css-classes, .control-section-nav_menu.field-xfn-active .field-xfn, .control-section-nav_menu.field-description-active .field-description { display: block; } /* WARNING: The 20px factor is hard-coded in JS. */ .menu-item-depth-0 { margin-left: 0; } .menu-item-depth-1 { margin-left: 20px; } .menu-item-depth-2 { margin-left: 40px; } .menu-item-depth-3 { margin-left: 60px; } .menu-item-depth-4 { margin-left: 80px; } .menu-item-depth-5 { margin-left: 100px; } .menu-item-depth-6 { margin-left: 120px; } .menu-item-depth-7 { margin-left: 140px; } .menu-item-depth-8 { margin-left: 160px; } /* Not likely to be used or useful beyond this depth */ .menu-item-depth-9 { margin-left: 180px; } .menu-item-depth-10 { margin-left: 200px; } .menu-item-depth-11 { margin-left: 220px; } /* @todo handle .menu-item-settings width */ .menu-item-depth-0 > .menu-item-bar { margin-right: 0; } .menu-item-depth-1 > .menu-item-bar { margin-right: 20px; } .menu-item-depth-2 > .menu-item-bar { margin-right: 40px; } .menu-item-depth-3 > .menu-item-bar { margin-right: 60px; } .menu-item-depth-4 > .menu-item-bar { margin-right: 80px; } .menu-item-depth-5 > .menu-item-bar { margin-right: 100px; } .menu-item-depth-6 > .menu-item-bar { margin-right: 120px; } .menu-item-depth-7 > .menu-item-bar { margin-right: 140px; } .menu-item-depth-8 > .menu-item-bar { margin-right: 160px; } .menu-item-depth-9 > .menu-item-bar { margin-right: 180px; } .menu-item-depth-10 > .menu-item-bar { margin-right: 200px; } .menu-item-depth-11 > .menu-item-bar { margin-right: 220px; } /* Submenu left margin. */ .menu-item-depth-0 .menu-item-transport { margin-left: 0; } .menu-item-depth-1 .menu-item-transport { margin-left: -20px; } .menu-item-depth-3 .menu-item-transport { margin-left: -60px; } .menu-item-depth-4 .menu-item-transport { margin-left: -80px; } .menu-item-depth-2 .menu-item-transport { margin-left: -40px; } .menu-item-depth-5 .menu-item-transport { margin-left: -100px; } .menu-item-depth-6 .menu-item-transport { margin-left: -120px; } .menu-item-depth-7 .menu-item-transport { margin-left: -140px; } .menu-item-depth-8 .menu-item-transport { margin-left: -160px; } .menu-item-depth-9 .menu-item-transport { margin-left: -180px; } .menu-item-depth-10 .menu-item-transport { margin-left: -200px; } .menu-item-depth-11 .menu-item-transport { margin-left: -220px; } /* WARNING: The 20px factor is hard-coded in JS. */ .reordering .menu-item-depth-0 { margin-left: 0; } .reordering .menu-item-depth-1 { margin-left: 15px; } .reordering .menu-item-depth-2 { margin-left: 30px; } .reordering .menu-item-depth-3 { margin-left: 45px; } .reordering .menu-item-depth-4 { margin-left: 60px; } .reordering .menu-item-depth-5 { margin-left: 75px; } .reordering .menu-item-depth-6 { margin-left: 90px; } .reordering .menu-item-depth-7 { margin-left: 105px; } .reordering .menu-item-depth-8 { margin-left: 120px; } /* Not likely to be used or useful beyond this depth */ .reordering .menu-item-depth-9 { margin-left: 135px; } .reordering .menu-item-depth-10 { margin-left: 150px; } .reordering .menu-item-depth-11 { margin-left: 165px; } .reordering .menu-item-depth-0 > .menu-item-bar { margin-right: 0; } .reordering .menu-item-depth-1 > .menu-item-bar { margin-right: 15px; } .reordering .menu-item-depth-2 > .menu-item-bar { margin-right: 30px; } .reordering .menu-item-depth-3 > .menu-item-bar { margin-right: 45px; } .reordering .menu-item-depth-4 > .menu-item-bar { margin-right: 60px; } .reordering .menu-item-depth-5 > .menu-item-bar { margin-right: 75px; } .reordering .menu-item-depth-6 > .menu-item-bar { margin-right: 90px; } .reordering .menu-item-depth-7 > .menu-item-bar { margin-right: 105px; } .reordering .menu-item-depth-8 > .menu-item-bar { margin-right: 120px; } .reordering .menu-item-depth-9 > .menu-item-bar { margin-right: 135px; } .reordering .menu-item-depth-10 > .menu-item-bar { margin-right: 150px; } .reordering .menu-item-depth-11 > .menu-item-bar { margin-right: 165px; } .control-section-nav_menu.menu .menu-item-edit-active { margin-left: 0; } .control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar { margin-right: 0; } .control-section-nav_menu.menu .sortable-placeholder { margin-top: 0; margin-bottom: 1px; max-width: calc(100% - 2px); float: left; display: list-item; border-color: #a7aaad; } .menu-item-transport li.customize-control { float: none; } .control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar { margin-top: 0; } /** * Add-menu-items mode */ .adding-menu-items .control-section { opacity: .4; } .adding-menu-items .control-panel.control-section, .adding-menu-items .control-section.open { opacity: 1; } .menu-item-bar .item-delete { color: #d63638; position: absolute; top: 2px; right: -19px; width: 30px; height: 38px; cursor: pointer; display: none; } .menu-item-bar .item-delete:before { content: "\f335"; content: "\f335" / ''; position: absolute; top: 9px; left: 5px; border-radius: 50%; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .menu-item-bar .item-delete:hover, .menu-item-bar .item-delete:focus { box-shadow: none; outline: none; color: #d63638; } .adding-menu-items .menu-item-bar .item-edit { display: none; } .adding-menu-items .menu-item-bar .item-delete { display: block; } /** * Styles for menu-item addition panel */ #available-menu-items.opening { overflow-y: hidden; /* avoid scrollbar jitter with animating heights */ } #available-menu-items #available-menu-items-search.open { height: 100%; border-bottom: none; } #available-menu-items .accordion-section-title { border-left: none; border-right: none; background: #fff; transition: background-color 0.15s; /* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */ -webkit-user-select: auto; user-select: auto; } #available-menu-items .open .accordion-section-title, #available-menu-items #available-menu-items-search .accordion-section-title { background: #f0f0f1; } /* rework the arrow indicator implementation for NVDA bug see #32715 */ #available-menu-items .accordion-section-title:after { content: none !important; } #available-menu-items .accordion-section-title:hover .toggle-indicator:before, #available-menu-items .button-link:hover .toggle-indicator:before, #available-menu-items .button-link:focus .toggle-indicator:before { color: #1d2327; } #available-menu-items .open .accordion-section-title .toggle-indicator:before { content: "\f142"; color: #1d2327; } #available-menu-items .available-menu-items-list { overflow-y: auto; max-height: 200px; /* This gets set in JS to fit the screen size, and based on # of sections. */ background: transparent; } #available-menu-items .accordion-section-title button .toggle-indicator { display: flex; align-items: center; width: 28px; height: 35px; position: absolute; top: 5px; right: 5px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .accordion-section-title .no-items, #available-menu-items .cannot-expand .accordion-section-title .spinner, #available-menu-items .cannot-expand .accordion-section-title > button:not(#available-menu-items-search button.is-visible) { display: none; } #available-menu-items-search.cannot-expand .accordion-section-title .spinner { display: block; } #available-menu-items .cannot-expand .accordion-section-title .no-items { float: right; color: #50575e; font-weight: 400; margin-left: 5px; } #available-menu-items .accordion-section-content { max-height: 290px; margin: 0; padding: 0; position: relative; background: transparent; } #available-menu-items .accordion-section-content .available-menu-items-list { margin: 0 0 64px; padding: 1px 15px 15px; } #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ margin-bottom: 0; } #new-custom-menu-item .accordion-section-content { padding: 0 15px 15px; } #available-menu-items .menu-item-tpl { margin: 0; } #custom-menu-item-name.invalid, #custom-menu-item-url.invalid, .edit-menu-item-url.invalid, .menu-name-field.invalid, .menu-name-field.invalid:focus, #available-menu-items .new-content-item .create-item-input.invalid, #available-menu-items .new-content-item .create-item-input.invalid:focus { border: 1px solid #d63638; } #available-menu-items .menu-item-handle .item-type { padding-right: 0; } #available-menu-items .menu-item-handle .item-title { padding-left: 20px; } #available-menu-items .menu-item-handle { cursor: pointer; } #available-menu-items .menu-item-handle { box-shadow: none; margin-top: -1px; } #available-menu-items .menu-item-handle:hover { z-index: 1; } #available-menu-items .item-title h4 { padding: 0 0 5px; font-size: 14px; } #available-menu-items .item-add { position: absolute; top: 1px; left: 1px; color: #8c8f94; width: 30px; height: 38px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .menu-item-handle .item-add:focus { color: #1d2327; } #available-menu-items .item-add:before { content: "\f543"; content: "\f543" / ''; position: relative; left: 2px; top: 3px; display: inline-block; height: 20px; border-radius: 50%; font: normal 20px/1.05 dashicons; /* line height is to account for the dashicon's vertical alignment */ } #available-menu-items .menu-item-handle.item-added .item-type, #available-menu-items .menu-item-handle.item-added .item-title, #available-menu-items .menu-item-handle.item-added:hover .item-add, #available-menu-items .menu-item-handle.item-added .item-add:focus { color: #646970; } #available-menu-items .menu-item-handle.item-added .item-add:before { content: "\f147"; content: "\f147" / ''; } #available-menu-items .accordion-section-title.loading .spinner, #available-menu-items-search.loading .accordion-section-title .spinner { visibility: visible; margin: 0 20px; } #available-menu-items-search .spinner { position: absolute; bottom: 24px; /* 13 container padding +1 input margin +10 ( ( 40 input height - 20 spinner height ) / 2 ) */ right: 21px; margin: 0 !important; } /* search results list */ #available-menu-items #available-menu-items-search .accordion-section-content { position: absolute; left: 0; top: 83px; /* below title div / search input (75 + 8 for 40px input) */ bottom: 0; /* 100% height that still triggers lazy load */ max-height: none; width: 100%; padding: 1px 15px 15px; box-sizing: border-box; } #available-menu-items-search .nothing-found { /* Compensate the 1px top padding of the container. */ margin-top: -1px; } #available-menu-items-search .accordion-section-title:after { display: none; } #available-menu-items-search .accordion-section-content:empty { min-height: 0; padding: 0; } #available-menu-items-search.loading .accordion-section-content div { opacity: .5; } #available-menu-items-search.loading.loading-more .accordion-section-content div { opacity: 1; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-menu-items #available-menu-items { left: 0; visibility: visible; } body.adding-menu-items .wp-full-overlay-main { left: 300px; } body.adding-menu-items #customize-preview { opacity: 0.4; } body.adding-menu-items #customize-preview iframe { pointer-events: none; } .menu-item-handle .spinner { display: none; float: left; margin: 0 8px 0 0; } .nav-menu-inserted-item-loading .spinner { display: block; } .nav-menu-inserted-item-loading .menu-item-handle .item-type { padding: 0 0 0 8px; } .nav-menu-inserted-item-loading .menu-item-handle, .added-menu-item .menu-item-handle.loading { padding: 10px 15px 10px 8px; cursor: default; opacity: .5; background: #fff; color: #787c82; } .added-menu-item .menu-item-handle { transition-property: opacity, background, color; transition-duration: 1.25s; transition-timing-function: cubic-bezier( .25, -2.5, .75, 8 ); /* Replacement for .hide().fadeIn('slow') in JS to add emphasis when it's loaded. */ } /* Add/delete Menus */ #customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title { border-bottom-color: #dcdcde; } /* @todo update selector */ #accordion-section-add_menu { margin: 15px 12px; } #accordion-section-add_menu h3 { text-align: right; } #accordion-section-add_menu h3, #accordion-section-add_menu .customize-add-menu-button { margin: 0; } #accordion-section-add_menu .customize-add-menu-button { font-weight: 400; } #create-new-menu-submit { float: right; margin: 0 0 12px; } .menu-delete-item { float: left; padding: 1em 0; width: 100%; } .assigned-menu-locations-title p { margin: 0 0 8px; } li.assigned-to-menu-location .menu-delete-item { display: none; } li.assigned-to-menu-location .add-new-menu-item { margin-bottom: 1em; } .menu-item-handle { margin-top: -1px; } .ui-sortable-disabled .menu-item-handle { cursor: default; } .menu-item-handle:hover { position: relative; z-index: 10; color: var(--wp-admin-theme-color); } .menu-item-handle:hover .item-type, .menu-item-handle:hover .item-edit, #available-menu-items .menu-item-handle:hover .item-add { color: var(--wp-admin-theme-color); } .menu-item-edit-active .menu-item-handle { border-color: #8c8f94; border-bottom: none; } .customize-control-nav_menu_item { margin-bottom: 0; } .customize-control-nav_menu .new-menu-item-invitation { margin-top: 0; margin-bottom: 0; } .customize-control-nav_menu .customize-control-nav_menu-buttons { display: flex; flex-direction: row-reverse; align-items: center; gap: 8px; margin-top: 12px; } /** * box-shadows */ .wp-customizer .menu-item .submitbox .submitdelete:focus, .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-customizer button:focus .toggle-indicator:before, .menu-delete:focus, .menu-item-bar .item-delete:focus:before, #available-menu-items .item-add:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } @media screen and (max-width: 782px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 71px; /* 63 + 8 for 40px input */ } } @media screen and (max-width: 640px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 154px; /* 146 + 8 for 40px input */ } } css/customize-widgets-rtl.min.css000066600000024220152330733730013127 0ustar00/*! This file is auto-generated */ .wp-full-overlay-sidebar{overflow:visible}.control-section.control-section-sidebar,.customize-control-sidebar_widgets .hide-if-js,.customize-control-sidebar_widgets label{display:none}.control-section.control-section-sidebar .accordion-section-content.ui-sortable{overflow:visible}.customize-control-widget_form .widget-top{background:#fff;transition:opacity .5s}.customize-control .widget-action{color:#787c82}.customize-control .widget-action:focus,.customize-control .widget-top:hover .widget-action{color:#1d2327}.customize-control-widget_form:not(.widget-rendered) .widget-top{opacity:.5}.customize-control-widget_form .widget-control-save{display:none}.customize-control-widget_form .spinner{visibility:hidden;margin-top:0}.customize-control-widget_form.previewer-loading .spinner{visibility:visible}.customize-control-widget_form.widget-form-disabled .widget-content{opacity:.7;pointer-events:none;-webkit-user-select:none;user-select:none}.customize-control-widget_form .widget{margin-bottom:0}.customize-control-widget_form.wide-widget-control .widget-inside{position:fixed;right:299px;top:25%;border:1px solid #dcdcde;overflow:auto}.customize-control-widget_form.wide-widget-control .widget-inside>.form{padding:20px}.customize-control-widget_form.wide-widget-control .widget-top{transition:background-color .4s}.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top,.customize-control-widget_form.wide-widget-control.expanding .widget-top{background-color:#dcdcde}.widget-inside{padding:1px 10px 10px;border-top:none;line-height:1.23076923}.customize-control-widget_form.expanded .widget-action .toggle-indicator:before{content:"\f142"}.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before{content:"\f141"}.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before{content:"\f139"}.widget-title-action{cursor:pointer}.customize-control-widget_form .widget .customize-control-title,.widget-top{cursor:move}.control-section.accordion-section.highlighted>.accordion-section-title,.customize-control-widget_form.highlighted{outline:0;box-shadow:0 0 2px rgba(79,148,212,.8);position:relative;z-index:1}#widget-customizer-control-templates{display:none}#customize-theme-controls .widget-reorder-nav{display:none;float:left;background-color:#f6f7f7}.move-widget:before{content:"\f504";content:"\f504"/''}#customize-theme-controls .move-widget-area{display:none;background:#fff;border:1px solid #c3c4c7;border-top:none;cursor:auto}#customize-theme-controls .reordering .move-widget-area.active{display:block}#customize-theme-controls .move-widget-area .description{margin:0;padding:15px 20px;font-weight:400}#customize-theme-controls .widget-area-select{margin:0;padding:0;list-style:none}#customize-theme-controls .widget-area-select li{position:relative;margin:0;padding:13px 42px 15px 15px;color:#50575e;border-top:1px solid #c3c4c7;cursor:pointer;-webkit-user-select:none;user-select:none}#customize-theme-controls .widget-area-select li:before{display:none;content:"\f147";content:"\f147"/'';position:absolute;top:12px;right:10px;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#customize-theme-controls .widget-area-select li:last-child{border-bottom:1px solid #c3c4c7}#customize-theme-controls .widget-area-select .selected{color:#fff;background:var(--wp-admin-theme-color)}#customize-theme-controls .widget-area-select .selected:before{display:block}#customize-theme-controls .move-widget-actions{text-align:left;padding:12px}#customize-theme-controls .reordering .widget-title-action{display:none}#customize-theme-controls .reordering .widget-reorder-nav{display:block}.wp-customizer div.mce-inline-toolbar-grp,.wp-customizer div.mce-tooltip{z-index:500100!important}.wp-customizer .ui-autocomplete.wplink-autocomplete{z-index:500110}.wp-customizer #wp-link-backdrop{z-index:500100}.wp-customizer #wp-link-wrap{z-index:500105}#widgets-left #available-widgets .widget{float:none!important;width:auto!important}#available-widgets .widget-action{display:none}.ios #available-widgets{transition:right 0s}#available-widgets .widget-tpl.selected,#available-widgets .widget-tpl:hover{background:#f6f7f7;border-bottom-color:#c3c4c7;color:var(--wp-admin-theme-color);border-right:4px solid var(--wp-admin-theme-color)}#customize-controls .widget-title h3{font-size:1em}#available-widgets .widget-title h3{padding:0 0 5px;font-size:14px}#available-widgets .widget .widget-description{padding:0;color:#646970}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-widget #available-widgets{right:0;visibility:visible}body.adding-widget .wp-full-overlay-main{right:300px}body.adding-widget #customize-preview{opacity:.4}#available-widgets .widget-title{position:relative}#available-widgets .widget-title:before{content:"\f132";content:"\f132"/'';position:absolute;top:-3px;left:100%;margin-left:20px;width:20px;height:20px;color:#2c3338;font:normal 20px/1 dashicons;text-align:center;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-widgets [class*=easy] .widget-title:before{content:"\f328";content:"\f328"/'';top:-4px}#available-widgets [class*=like] .widget-title:before,#available-widgets [class*=super] .widget-title:before{content:"\f155";content:"\f155"/'';top:-4px}#available-widgets [class*=meta] .widget-title:before{content:"\f120";content:"\f120"/''}#available-widgets [class*=archives] .widget-title:before{content:"\f480";content:"\f480"/'';top:-4px}#available-widgets [class*=categor] .widget-title:before{content:"\f318";content:"\f318"/'';top:-4px}#available-widgets [class*=chat] .widget-title:before,#available-widgets [class*=comment] .widget-title:before,#available-widgets [class*=testimonial] .widget-title:before{content:"\f101";content:"\f101"/''}#available-widgets [class*=post] .widget-title:before{content:"\f109";content:"\f109"/''}#available-widgets [class*=page] .widget-title:before{content:"\f105";content:"\f105"/''}#available-widgets [class*=text] .widget-title:before{content:"\f478";content:"\f478"/''}#available-widgets [class*=link] .widget-title:before{content:"\f103";content:"\f103"/''}#available-widgets [class*=search] .widget-title:before{content:"\f179";content:"\f179"/''}#available-widgets [class*=menu] .widget-title:before,#available-widgets [class*=nav] .widget-title:before{content:"\f333";content:"\f333"/''}#available-widgets [class*=tag] .widget-title:before{content:"\f479";content:"\f479"/''}#available-widgets [class*=rss] .widget-title:before{content:"\f303";content:"\f303"/'';top:-6px}#available-widgets [class*=calendar] .widget-title:before,#available-widgets [class*=event] .widget-title:before{content:"\f145";content:"\f145"/'';top:-4px}#available-widgets [class*=image] .widget-title:before,#available-widgets [class*=instagram] .widget-title:before,#available-widgets [class*=photo] .widget-title:before,#available-widgets [class*=slide] .widget-title:before{content:"\f128";content:"\f128"/''}#available-widgets [class*=album] .widget-title:before,#available-widgets [class*=galler] .widget-title:before{content:"\f161";content:"\f161"/''}#available-widgets [class*=tube] .widget-title:before,#available-widgets [class*=video] .widget-title:before{content:"\f126";content:"\f126"/''}#available-widgets [class*=audio] .widget-title:before,#available-widgets [class*=music] .widget-title:before,#available-widgets [class*=radio] .widget-title:before{content:"\f127";content:"\f127"/''}#available-widgets [class*=avatar] .widget-title:before,#available-widgets [class*=grofile] .widget-title:before,#available-widgets [class*=login] .widget-title:before,#available-widgets [class*=member] .widget-title:before,#available-widgets [class*=profile] .widget-title:before,#available-widgets [class*=subscriber] .widget-title:before,#available-widgets [class*=user] .widget-title:before{content:"\f110";content:"\f110"/''}#available-widgets [class*=cart] .widget-title:before,#available-widgets [class*=commerce] .widget-title:before,#available-widgets [class*=shop] .widget-title:before{content:"\f174";content:"\f174"/'';top:-4px}#available-widgets [class*=firewall] .widget-title:before,#available-widgets [class*=secur] .widget-title:before{content:"\f332";content:"\f332"/''}#available-widgets [class*=analytic] .widget-title:before,#available-widgets [class*=poll] .widget-title:before,#available-widgets [class*=stat] .widget-title:before{content:"\f185";content:"\f185"/''}#available-widgets [class*=form] .widget-title:before{content:"\f175";content:"\f175"/''}#available-widgets [class*=contact] .widget-title:before,#available-widgets [class*=mail] .widget-title:before,#available-widgets [class*=news] .widget-title:before,#available-widgets [class*=subscribe] .widget-title:before{content:"\f466";content:"\f466"/''}#available-widgets [class*=share] .widget-title:before,#available-widgets [class*=socia] .widget-title:before{content:"\f237";content:"\f237"/''}#available-widgets [class*=lang] .widget-title:before,#available-widgets [class*=translat] .widget-title:before{content:"\f326";content:"\f326"/''}#available-widgets [class*=locat] .widget-title:before,#available-widgets [class*=map] .widget-title:before{content:"\f231";content:"\f231"/''}#available-widgets [class*=download] .widget-title:before{content:"\f316";content:"\f316"/''}#available-widgets [class*=weather] .widget-title:before{content:"\f176";content:"\f176"/'';top:-4px}#available-widgets [class*=facebook] .widget-title:before{content:"\f304";content:"\f304"/''}#available-widgets [class*=tweet] .widget-title:before,#available-widgets [class*=twitter] .widget-title:before{content:"\f301";content:"\f301"/''}@media screen and (max-height:700px) and (min-width:981px){.customize-control-widget_form{margin-bottom:0}.widget-top{box-shadow:none;margin-top:-1px}.widget-top:hover{position:relative;z-index:1}.last-widget{margin-bottom:15px}.widget-title h3{padding:13px 15px}.widget-top .widget-action{padding:8px 10px}.widget-reorder-nav span{height:39px}.widget-reorder-nav span:before{line-height:39px}#customize-theme-controls .widget-area-select li{padding:9px 42px 11px 15px}#customize-theme-controls .widget-area-select li:before{top:8px}}css/deprecated-media-rtl.css000066600000014776152330733730012053 0ustar00/*! This file is auto-generated */ /* Styles for the media library iframe (not used on the Library screen) */ div#media-upload-header { margin: 0; padding: 5px 5px 0; font-weight: 600; position: relative; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #sidemenu { overflow: hidden; float: none; position: relative; right: 0; bottom: -1px; margin: 0 5px; padding-right: 10px; list-style: none; font-size: 12px; font-weight: 400; } #sidemenu a { padding: 0 7px; display: block; float: right; line-height: 28px; border-top: 1px solid #f6f7f7; border-bottom: 1px solid #dcdcde; background-color: #f6f7f7; text-decoration: none; transition: none; } #sidemenu li { display: inline; line-height: 200%; list-style: none; text-align: center; white-space: nowrap; margin: 0; padding: 0; } #sidemenu a.current { font-weight: 400; padding-right: 6px; padding-left: 6px; border: 1px solid #dcdcde; border-bottom-color: #f0f0f1; background-color: #f0f0f1; color: #000; } #media-upload:after { /* clearfix */ content: ""; display: table; clear: both; } #media-upload .slidetoggle { border-top-color: #dcdcde; } #media-upload input[type="radio"] { padding: 0; } .media-upload-form label.form-help, td.help { color: #646970; } form { margin: 1em; } #search-filter { text-align: left; } th { position: relative; } .media-upload-form label.form-help, td.help { font-family: sans-serif; font-style: italic; font-weight: 400; } .media-upload-form p.help { margin: 0; padding: 0; } .media-upload-form fieldset { width: 100%; border: none; text-align: justify; margin: 0 0 1em; padding: 0; } /* specific to the image upload form */ .image-align-none-label { background: url(../images/align-none.png) no-repeat center right; } .image-align-left-label { background: url(../images/align-left.png) no-repeat center right; } .image-align-center-label { background: url(../images/align-center.png) no-repeat center right; } .image-align-right-label { background: url(../images/align-right.png) no-repeat center right; } tr.image-size td { width: 460px; } tr.image-size div.image-size-item { margin: 0 0 5px; } #library-form .progress, #gallery-form .progress, .insert-gallery, .describe.startopen, .describe.startclosed { display: none; } .media-item .thumbnail { max-width: 128px; max-height: 128px; } thead.media-item-info tr { background-color: transparent; } .form-table thead.media-item-info { border: 8px solid #fff; } abbr.required, span.required { text-decoration: none; border: none; } .describe label { display: inline; } .describe td.error { padding: 2px 8px; } .describe td.A1 { width: 132px; } .describe input[type="text"], .describe textarea { width: 460px; border-width: 1px; border-style: solid; } /* Specific to Uploader */ #media-upload p.ml-submit { padding: 1em 0; } #media-upload p.help, #media-upload label.help { font-family: sans-serif; font-style: italic; font-weight: 400; } #media-upload .ui-sortable .media-item { cursor: move; } #media-upload tr.image-size { margin-bottom: 1em; height: 3em; } #media-upload #filter { width: 623px; } #media-upload #filter .subsubsub { margin: 8px 0; } #media-upload .tablenav-pages a, #media-upload .tablenav-pages .current { display: inline-block; padding: 4px 5px 6px; font-size: 16px; line-height: 1; text-align: center; text-decoration: none; } #media-upload .tablenav-pages a { min-width: 17px; border: 1px solid #c3c4c7; background: #f6f7f7; } #filter .tablenav select { border-style: solid; border-width: 1px; padding: 2px; vertical-align: top; width: auto; } #media-upload .del-attachment { display: none; margin: 5px 0; } .menu_order { float: left; font-size: 11px; margin: 8px 10px 0; } .menu_order_input { border: 1px solid #dcdcde; font-size: 10px; padding: 1px; width: 23px; } .ui-sortable-helper { background-color: #fff; border: 1px solid #a7aaad; opacity: 0.6; filter: alpha(opacity=60); } #media-upload th.order-head { width: 20%; text-align: center; } #media-upload th.actions-head { width: 25%; text-align: center; } #media-upload a.wp-post-thumbnail { margin: 0 20px; } #media-upload .widefat { border-style: solid solid none; } .sorthelper { height: 37px; width: 623px; display: block; } #gallery-settings th.label { width: 160px; } #gallery-settings #basic th.label { padding: 5px 0 5px 5px; } #gallery-settings .title { clear: both; padding: 0 0 3px; font-size: 1.6em; border-bottom: 1px solid #dcdcde; } h3.media-title { font-size: 1.6em; } h4.media-sub-title { border-bottom: 1px solid #dcdcde; font-size: 1.3em; margin: 12px; padding: 0 0 3px; } #gallery-settings .title, h3.media-title, h4.media-sub-title { font-family: Georgia,"Times New Roman",Times,serif; font-weight: 400; color: #50575e; } #gallery-settings .describe td { vertical-align: middle; height: 3em; } #gallery-settings .describe th.label { padding-top: .5em; text-align: right; } #gallery-settings .describe { padding: 5px; width: 100%; clear: both; cursor: default; background: #fff; } #gallery-settings .describe select { width: 15em; } #gallery-settings .describe select option, #gallery-settings .describe td { padding: 0; } #gallery-settings label, #gallery-settings legend { font-size: 13px; color: #3c434a; margin-left: 15px; } #gallery-settings .align .field label { margin: 0 3px 0 1em; } #gallery-settings p.ml-submit { border-top: 1px solid #dcdcde; } #gallery-settings select#columns { width: 6em; } #sort-buttons { font-size: 0.8em; margin: 3px 0 -8px 25px; text-align: left; max-width: 625px; } #sort-buttons a { text-decoration: none; } #sort-buttons #asc, #sort-buttons #showall { padding-right: 5px; } #sort-buttons span { margin-left: 25px; } p.media-types { margin: 0; padding: 1em; } p.media-types-required-info { padding-top: 0; } tr.not-image { display: none; } table.not-image tr.not-image { display: table-row; } table.not-image tr.image-only { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .image-align-none-label { background-image: url(../images/align-none-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-left-label { background-image: url(../images/align-left-2x.png?ver=20120916); background-size: 22px 15px; } .image-align-center-label { background-image: url(../images/align-center-2x.png?ver=20120916); background-size: 21px 15px; } .image-align-right-label { background-image: url(../images/align-right-2x.png?ver=20120916); background-size: 22px 15px; } } css/revisions.min.css000066600000021140152330733730010661 0ustar00/*! This file is auto-generated */ .revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-diff-frame{top:10px}.revisions-controls{padding-top:40px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;height:82px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-tickmarks{position:relative;margin:0 auto;height:.7em;top:7px;max-width:70%;box-sizing:border-box;background-color:#fff}.revisions-tickmarks>div{position:absolute;height:100%;border-left:1px solid #a7aaad;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.comparing-two-revisions.pinned .revisions-controls{height:124px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:absolute;vertical-align:middle;opacity:0;width:100%;width:calc(100% - 30px);top:50%;top:calc(50% - 10px);transition:opacity .5s}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1}.revisions .diff{transition:opacity .5s}.revisions.loading .diff{opacity:.5}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:20px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1);overflow:hidden}.revisions.pinned .revisions-meta{box-shadow:none}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-next,.comparing-two-revisions .revisions-previous,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#646970}.revisions-controls .author-card.autosave{color:#d63638}.revisions-controls .author-card .author-name{font-weight:600}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions.pinned .revisions-buttons{padding:0 11px}.revisions-next,.revisions-previous{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-diff{padding:15px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-diff h3:first-child{margin-top:0}#revisions-meta-restored img,.post-revisions li img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.57142857;padding:.5em .5em .5em 2em;vertical-align:top;word-wrap:break-word}table.diff td h1,table.diff td h2,table.diff td h3,table.diff td h4,table.diff td h5,table.diff td h6{margin:0}table.diff .diff-addedline ins,table.diff .diff-deletedline del{text-decoration:none}table.diff .diff-deletedline{position:relative;background-color:#fcf0f1}table.diff .diff-deletedline del{background-color:#ffabaf}table.diff .diff-addedline{position:relative;background-color:#edfaef}table.diff .diff-addedline .dashicons,table.diff .diff-deletedline .dashicons{position:absolute;top:.85714286em;left:.5em;width:1em;height:1em;font-size:1em;line-height:1}table.diff .diff-addedline .dashicons{top:.92857143em}table.diff .diff-addedline ins{background-color:#68de7c}.diff-meta{padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:2.46153846;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .author-info{font-size:12px;line-height:1.33333333}.revisions-controls .author-card .author-info,.revisions-controls .author-card .avatar{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;transform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.revisions-tooltip,.revisions-tooltip-arrow>span{border:1px solid #dcdcde;background-color:#fff}.revisions-tooltip{display:none}.arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:0;margin-left:-35px;bottom:90px;z-index:10000}.arrow:after{z-index:9999;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.arrow.top{top:-16px;bottom:auto}.arrow.left{left:20%}.arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;transform:rotate(45deg)}.revisions-tooltip,.revisions-tooltip-arrow:after{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.rtl div.revisions-controls>.wp-slider>.ui-slider-handle{margin-right:-10px}.wp-slider.ui-slider{position:relative;border:1px solid #dcdcde;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{border-radius:50%;height:18px;margin-top:-5px;outline:0;padding:2px;position:absolute;width:18px;z-index:2;touch-action:none}.wp-slider .ui-slider-handle{background:#f6f7f7;border:1px solid #c3c4c7;box-shadow:0 1px 0 #c3c4c7}.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle:hover{background:#f6f7f7;border-color:#8c8f94}.wp-slider .ui-slider-handle.ui-state-active,.wp-slider .ui-slider-handle:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.wp-slider .ui-slider-handle.ui-state-focus,.wp-slider .ui-slider-handle:focus{background:#f0f0f1;border-color:#8c8f94;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-slider .ui-slider-handle:before{background:0 0;position:absolute;top:2px;left:2px;color:#50575e;content:"\f229";content:"\f229"/'';font:normal 18px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-slider .ui-slider-handle.ui-state-hover:before,.wp-slider .ui-slider-handle:hover:before{color:#1d2327}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{font-size:20px!important;margin:-1px 0 0 -1px}.wp-slider .ui-slider-handle.from-handle:before{content:"\f139";content:"\f139"/''}.wp-slider .ui-slider-handle.to-handle:before{content:"\f141";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.from-handle:before{content:"\f141";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.to-handle:before{content:"\f139";content:"\f139"/'';right:-1px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.7em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}@media print,(min-resolution:120dpi){.revision-tick.completed-false{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:600px){.revisions-meta .author-card:not(.comparing-two-revisions .author-card){display:flex;flex-direction:column;width:fit-content;gap:16px}.comparing-two-revisions .revisions-meta .restore-revision{margin-top:16px}.revisions-controls{padding-top:0}.revision-toggle-compare-mode{position:relative;padding:1rem 0}}@media screen and (max-width:782px){#diff-next-revision,#diff-previous-revision{margin-top:-1em}.revisions-buttons{overflow:hidden;margin-bottom:15px}.comparing-two-revisions .revisions-controls,.revisions-controls{height:fit-content}.revisions-tooltip{bottom:155px;z-index:2}.comparing-two-revisions .revisions-tooltip{bottom:200px}.diff-meta{overflow:hidden}table.diff{-ms-word-break:break-all;word-break:break-all;word-wrap:break-word}}css/customize-nav-menus-rtl.css000066600000054206152330733730012617 0ustar00/*! This file is auto-generated */ #customize-theme-controls #accordion-section-menu_locations { position: relative; margin-top: 30px; } #customize-theme-controls #accordion-section-menu_locations > .accordion-section-title { border-bottom-color: #dcdcde; margin-top: 15px; } #customize-theme-controls .customize-section-title-nav_menus-heading, #customize-theme-controls .customize-section-title-menu_locations-heading, #customize-theme-controls .customize-section-title-menu_locations-description { padding: 0 12px; } #customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description { /* Override the default italic style for control descriptions */ font-style: normal; } .menu-in-location, .menu-in-locations { display: block; font-weight: 600; font-size: 10px; } #customize-controls .theme-location-set, #customize-controls .control-section .accordion-section-title:focus .menu-in-location, #customize-controls .control-section .accordion-section-title:hover .menu-in-location { color: #50575e; } /* The `edit-menu` and `create-menu` buttons also use the `button-link` class. */ .customize-control-nav_menu_location .edit-menu, .customize-control-nav_menu_location .create-menu { margin-right: 6px; vertical-align: middle; line-height: 2.2; } #customize-controls .customize-control-nav_menu_name { margin-bottom: 12px; } .customize-control-nav_menu_name p:last-of-type { margin-bottom: 0; } #customize-new-menu-submit { float: left; min-width: 85px; } .wp-customizer .menu-item-bar .menu-item-handle, .wp-customizer .menu-item-settings, .wp-customizer .menu-item-settings .description-thin { box-sizing: border-box; } .wp-customizer .menu-item-bar { margin: 0; } .wp-customizer .menu-item-bar .menu-item-handle { width: 100%; max-width: 100%; background: #fff; } .wp-customizer .menu-item-handle .item-title { margin-left: 0; } .wp-customizer .menu-item-handle .item-type { padding: 1px 5px 0 21px; float: left; text-align: left; } .wp-customizer .menu-item-handle:hover { z-index: 8; } .customize-control-nav_menu_item.has-notifications .menu-item-handle { border-right: 4px solid #72aee6; } .wp-customizer .menu-item-settings { max-width: 100%; overflow: hidden; z-index: 8; padding: 10px; background: #f0f0f1; border: 1px solid #8c8f94; border-top: none; } .wp-customizer .menu-item-settings .description-thin { width: 100%; height: auto; margin: 0 0 8px; } .wp-customizer .menu-item-settings input[type="text"] { width: 100%; } .wp-customizer .menu-item-settings .submitbox { margin: 0; padding: 0; } .wp-customizer .menu-item-settings .link-to-original { padding: 5px 0; border: none; font-style: normal; margin: 0; width: 100%; } .wp-customizer .menu-item .submitbox .submitdelete { float: right; margin: 6px 0 0; padding: 0; cursor: pointer; } /** * Menu items reordering styles */ .menu-item-reorder-nav { display: none; background-color: #fff; position: absolute; top: 0; left: 0; } .menus-move-left:before { content: "\f345"; content: "\f341" / ''; } .menus-move-right:before { content: "\f341"; content: "\f345" / ''; } .reordering .menu-item .item-controls, .reordering .menu-item .item-type { display: none; } .reordering .menu-item-reorder-nav { display: block; } .customize-control input.menu-name-field { width: 100%; /* Override the 98% default for customizer inputs, to align with the size of menu items. */ } .wp-customizer .menu-item .item-edit { position: absolute; left: -19px; top: 2px; display: block; width: 30px; height: 38px; margin-left: 0 !important; box-shadow: none; outline: none; overflow: hidden; cursor: pointer; text-align: center; } .wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } .wp-customizer .menu-item-settings p.description { font-style: normal; } .wp-customizer .menu-settings dl { margin: 12px 0 0; padding: 0; } .wp-customizer .menu-settings .checkbox-input { margin-top: 8px; } .wp-customizer .menu-settings .menu-theme-locations { border-top: 1px solid #c3c4c7; } .wp-customizer .menu-settings { margin-top: 36px; border-top: none; } .wp-customizer .menu-location-settings { margin-top: 12px; border-top: none; } .wp-customizer .control-section-nav_menu .menu-location-settings { margin-top: 24px; border-top: 1px solid #dcdcde; } .wp-customizer .control-section-nav_menu .menu-location-settings, .customize-control-nav_menu_auto_add { padding-top: 12px; } .menu-location-settings .customize-control-checkbox .theme-location-set { line-height: 1; } .customize-control-nav_menu_auto_add label { vertical-align: top; } .menu-location-settings .new-menu-locations-widget-note { display: block; } .customize-control-menu { margin-top: 4px; } #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle { color: #50575e; } /* Screen Options */ .customize-screen-options-toggle { background: none; border: none; color: #50575e; cursor: pointer; margin: 0; padding: 20px; position: absolute; left: 0; top: 30px; } #customize-controls .customize-info .customize-help-toggle { padding: 20px; } #customize-controls .customize-info .customize-help-toggle:before { padding: 4px; } .customize-screen-options-toggle:hover, .customize-screen-options-toggle:active, .customize-screen-options-toggle:focus, .active-menu-screen-options .customize-screen-options-toggle, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: var(--wp-admin-theme-color); } .customize-screen-options-toggle:focus, #customize-controls .customize-info .customize-help-toggle:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-screen-options-toggle:before { -moz-osx-font-smoothing: grayscale; border: none; content: "\f111"; content: "\f111" / ''; display: block; font: 18px/1 dashicons; padding: 5px; text-align: center; text-decoration: none !important; text-indent: 0; right: 6px; position: absolute; top: 6px; } .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before { border-radius: 100%; } .wp-customizer #screen-options-wrap { display: none; background: #fff; border-top: 1px solid #dcdcde; padding: 4px 15px 15px; } .wp-customizer .metabox-prefs label { display: block; padding-left: 0; line-height: 30px; } /* rework the arrow indicator implementation for NVDA bug same as #32715 */ .wp-customizer .toggle-indicator { display: inline-block; font-size: 20px; line-height: 1; } .rtl .wp-customizer .toggle-indicator { text-indent: 1px; /* account for the dashicon alignment */ } .wp-customizer .menu-item .item-edit .toggle-indicator:before, #available-menu-items .accordion-section-title .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; display: block; padding: 1px 0 1px 2px; border-radius: 50%; color: #787c82; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } .control-section-nav_menu .field-link-target, .control-section-nav_menu .field-title-attribute, .control-section-nav_menu .field-css-classes, .control-section-nav_menu .field-xfn, .control-section-nav_menu .field-description { display: none; } .control-section-nav_menu.field-link-target-active .field-link-target, .control-section-nav_menu.field-title-attribute-active .field-title-attribute, .control-section-nav_menu.field-css-classes-active .field-css-classes, .control-section-nav_menu.field-xfn-active .field-xfn, .control-section-nav_menu.field-description-active .field-description { display: block; } /* WARNING: The 20px factor is hard-coded in JS. */ .menu-item-depth-0 { margin-right: 0; } .menu-item-depth-1 { margin-right: 20px; } .menu-item-depth-2 { margin-right: 40px; } .menu-item-depth-3 { margin-right: 60px; } .menu-item-depth-4 { margin-right: 80px; } .menu-item-depth-5 { margin-right: 100px; } .menu-item-depth-6 { margin-right: 120px; } .menu-item-depth-7 { margin-right: 140px; } .menu-item-depth-8 { margin-right: 160px; } /* Not likely to be used or useful beyond this depth */ .menu-item-depth-9 { margin-right: 180px; } .menu-item-depth-10 { margin-right: 200px; } .menu-item-depth-11 { margin-right: 220px; } /* @todo handle .menu-item-settings width */ .menu-item-depth-0 > .menu-item-bar { margin-left: 0; } .menu-item-depth-1 > .menu-item-bar { margin-left: 20px; } .menu-item-depth-2 > .menu-item-bar { margin-left: 40px; } .menu-item-depth-3 > .menu-item-bar { margin-left: 60px; } .menu-item-depth-4 > .menu-item-bar { margin-left: 80px; } .menu-item-depth-5 > .menu-item-bar { margin-left: 100px; } .menu-item-depth-6 > .menu-item-bar { margin-left: 120px; } .menu-item-depth-7 > .menu-item-bar { margin-left: 140px; } .menu-item-depth-8 > .menu-item-bar { margin-left: 160px; } .menu-item-depth-9 > .menu-item-bar { margin-left: 180px; } .menu-item-depth-10 > .menu-item-bar { margin-left: 200px; } .menu-item-depth-11 > .menu-item-bar { margin-left: 220px; } /* Submenu left margin. */ .menu-item-depth-0 .menu-item-transport { margin-right: 0; } .menu-item-depth-1 .menu-item-transport { margin-right: -20px; } .menu-item-depth-3 .menu-item-transport { margin-right: -60px; } .menu-item-depth-4 .menu-item-transport { margin-right: -80px; } .menu-item-depth-2 .menu-item-transport { margin-right: -40px; } .menu-item-depth-5 .menu-item-transport { margin-right: -100px; } .menu-item-depth-6 .menu-item-transport { margin-right: -120px; } .menu-item-depth-7 .menu-item-transport { margin-right: -140px; } .menu-item-depth-8 .menu-item-transport { margin-right: -160px; } .menu-item-depth-9 .menu-item-transport { margin-right: -180px; } .menu-item-depth-10 .menu-item-transport { margin-right: -200px; } .menu-item-depth-11 .menu-item-transport { margin-right: -220px; } /* WARNING: The 20px factor is hard-coded in JS. */ .reordering .menu-item-depth-0 { margin-right: 0; } .reordering .menu-item-depth-1 { margin-right: 15px; } .reordering .menu-item-depth-2 { margin-right: 30px; } .reordering .menu-item-depth-3 { margin-right: 45px; } .reordering .menu-item-depth-4 { margin-right: 60px; } .reordering .menu-item-depth-5 { margin-right: 75px; } .reordering .menu-item-depth-6 { margin-right: 90px; } .reordering .menu-item-depth-7 { margin-right: 105px; } .reordering .menu-item-depth-8 { margin-right: 120px; } /* Not likely to be used or useful beyond this depth */ .reordering .menu-item-depth-9 { margin-right: 135px; } .reordering .menu-item-depth-10 { margin-right: 150px; } .reordering .menu-item-depth-11 { margin-right: 165px; } .reordering .menu-item-depth-0 > .menu-item-bar { margin-left: 0; } .reordering .menu-item-depth-1 > .menu-item-bar { margin-left: 15px; } .reordering .menu-item-depth-2 > .menu-item-bar { margin-left: 30px; } .reordering .menu-item-depth-3 > .menu-item-bar { margin-left: 45px; } .reordering .menu-item-depth-4 > .menu-item-bar { margin-left: 60px; } .reordering .menu-item-depth-5 > .menu-item-bar { margin-left: 75px; } .reordering .menu-item-depth-6 > .menu-item-bar { margin-left: 90px; } .reordering .menu-item-depth-7 > .menu-item-bar { margin-left: 105px; } .reordering .menu-item-depth-8 > .menu-item-bar { margin-left: 120px; } .reordering .menu-item-depth-9 > .menu-item-bar { margin-left: 135px; } .reordering .menu-item-depth-10 > .menu-item-bar { margin-left: 150px; } .reordering .menu-item-depth-11 > .menu-item-bar { margin-left: 165px; } .control-section-nav_menu.menu .menu-item-edit-active { margin-right: 0; } .control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar { margin-left: 0; } .control-section-nav_menu.menu .sortable-placeholder { margin-top: 0; margin-bottom: 1px; max-width: calc(100% - 2px); float: right; display: list-item; border-color: #a7aaad; } .menu-item-transport li.customize-control { float: none; } .control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar { margin-top: 0; } /** * Add-menu-items mode */ .adding-menu-items .control-section { opacity: .4; } .adding-menu-items .control-panel.control-section, .adding-menu-items .control-section.open { opacity: 1; } .menu-item-bar .item-delete { color: #d63638; position: absolute; top: 2px; left: -19px; width: 30px; height: 38px; cursor: pointer; display: none; } .menu-item-bar .item-delete:before { content: "\f335"; content: "\f335" / ''; position: absolute; top: 9px; right: 5px; border-radius: 50%; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .menu-item-bar .item-delete:hover, .menu-item-bar .item-delete:focus { box-shadow: none; outline: none; color: #d63638; } .adding-menu-items .menu-item-bar .item-edit { display: none; } .adding-menu-items .menu-item-bar .item-delete { display: block; } /** * Styles for menu-item addition panel */ #available-menu-items.opening { overflow-y: hidden; /* avoid scrollbar jitter with animating heights */ } #available-menu-items #available-menu-items-search.open { height: 100%; border-bottom: none; } #available-menu-items .accordion-section-title { border-right: none; border-left: none; background: #fff; transition: background-color 0.15s; /* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */ -webkit-user-select: auto; user-select: auto; } #available-menu-items .open .accordion-section-title, #available-menu-items #available-menu-items-search .accordion-section-title { background: #f0f0f1; } /* rework the arrow indicator implementation for NVDA bug see #32715 */ #available-menu-items .accordion-section-title:after { content: none !important; } #available-menu-items .accordion-section-title:hover .toggle-indicator:before, #available-menu-items .button-link:hover .toggle-indicator:before, #available-menu-items .button-link:focus .toggle-indicator:before { color: #1d2327; } #available-menu-items .open .accordion-section-title .toggle-indicator:before { content: "\f142"; color: #1d2327; } #available-menu-items .available-menu-items-list { overflow-y: auto; max-height: 200px; /* This gets set in JS to fit the screen size, and based on # of sections. */ background: transparent; } #available-menu-items .accordion-section-title button .toggle-indicator { display: flex; align-items: center; width: 28px; height: 35px; position: absolute; top: 5px; left: 5px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .accordion-section-title .no-items, #available-menu-items .cannot-expand .accordion-section-title .spinner, #available-menu-items .cannot-expand .accordion-section-title > button:not(#available-menu-items-search button.is-visible) { display: none; } #available-menu-items-search.cannot-expand .accordion-section-title .spinner { display: block; } #available-menu-items .cannot-expand .accordion-section-title .no-items { float: left; color: #50575e; font-weight: 400; margin-right: 5px; } #available-menu-items .accordion-section-content { max-height: 290px; margin: 0; padding: 0; position: relative; background: transparent; } #available-menu-items .accordion-section-content .available-menu-items-list { margin: 0 0 64px; padding: 1px 15px 15px; } #available-menu-items .accordion-section-content .available-menu-items-list:only-child { /* Types that do not support new items for the current user */ margin-bottom: 0; } #new-custom-menu-item .accordion-section-content { padding: 0 15px 15px; } #available-menu-items .menu-item-tpl { margin: 0; } #custom-menu-item-name.invalid, #custom-menu-item-url.invalid, .edit-menu-item-url.invalid, .menu-name-field.invalid, .menu-name-field.invalid:focus, #available-menu-items .new-content-item .create-item-input.invalid, #available-menu-items .new-content-item .create-item-input.invalid:focus { border: 1px solid #d63638; } #available-menu-items .menu-item-handle .item-type { padding-left: 0; } #available-menu-items .menu-item-handle .item-title { padding-right: 20px; } #available-menu-items .menu-item-handle { cursor: pointer; } #available-menu-items .menu-item-handle { box-shadow: none; margin-top: -1px; } #available-menu-items .menu-item-handle:hover { z-index: 1; } #available-menu-items .item-title h4 { padding: 0 0 5px; font-size: 14px; } #available-menu-items .item-add { position: absolute; top: 1px; right: 1px; color: #8c8f94; width: 30px; height: 38px; box-shadow: none; outline: none; cursor: pointer; text-align: center; } #available-menu-items .menu-item-handle .item-add:focus { color: #1d2327; } #available-menu-items .item-add:before { content: "\f543"; content: "\f543" / ''; position: relative; right: 2px; top: 3px; display: inline-block; height: 20px; border-radius: 50%; font: normal 20px/1.05 dashicons; /* line height is to account for the dashicon's vertical alignment */ } #available-menu-items .menu-item-handle.item-added .item-type, #available-menu-items .menu-item-handle.item-added .item-title, #available-menu-items .menu-item-handle.item-added:hover .item-add, #available-menu-items .menu-item-handle.item-added .item-add:focus { color: #646970; } #available-menu-items .menu-item-handle.item-added .item-add:before { content: "\f147"; content: "\f147" / ''; } #available-menu-items .accordion-section-title.loading .spinner, #available-menu-items-search.loading .accordion-section-title .spinner { visibility: visible; margin: 0 20px; } #available-menu-items-search .spinner { position: absolute; bottom: 24px; /* 13 container padding +1 input margin +10 ( ( 40 input height - 20 spinner height ) / 2 ) */ left: 21px; margin: 0 !important; } /* search results list */ #available-menu-items #available-menu-items-search .accordion-section-content { position: absolute; right: 0; top: 83px; /* below title div / search input (75 + 8 for 40px input) */ bottom: 0; /* 100% height that still triggers lazy load */ max-height: none; width: 100%; padding: 1px 15px 15px; box-sizing: border-box; } #available-menu-items-search .nothing-found { /* Compensate the 1px top padding of the container. */ margin-top: -1px; } #available-menu-items-search .accordion-section-title:after { display: none; } #available-menu-items-search .accordion-section-content:empty { min-height: 0; padding: 0; } #available-menu-items-search.loading .accordion-section-content div { opacity: .5; } #available-menu-items-search.loading.loading-more .accordion-section-content div { opacity: 1; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-menu-items #available-menu-items { right: 0; visibility: visible; } body.adding-menu-items .wp-full-overlay-main { right: 300px; } body.adding-menu-items #customize-preview { opacity: 0.4; } body.adding-menu-items #customize-preview iframe { pointer-events: none; } .menu-item-handle .spinner { display: none; float: right; margin: 0 0 0 8px; } .nav-menu-inserted-item-loading .spinner { display: block; } .nav-menu-inserted-item-loading .menu-item-handle .item-type { padding: 0 8px 0 0; } .nav-menu-inserted-item-loading .menu-item-handle, .added-menu-item .menu-item-handle.loading { padding: 10px 8px 10px 15px; cursor: default; opacity: .5; background: #fff; color: #787c82; } .added-menu-item .menu-item-handle { transition-property: opacity, background, color; transition-duration: 1.25s; transition-timing-function: cubic-bezier( .25, -2.5, .75, 8 ); /* Replacement for .hide().fadeIn('slow') in JS to add emphasis when it's loaded. */ } /* Add/delete Menus */ #customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title { border-bottom-color: #dcdcde; } /* @todo update selector */ #accordion-section-add_menu { margin: 15px 12px; } #accordion-section-add_menu h3 { text-align: left; } #accordion-section-add_menu h3, #accordion-section-add_menu .customize-add-menu-button { margin: 0; } #accordion-section-add_menu .customize-add-menu-button { font-weight: 400; } #create-new-menu-submit { float: left; margin: 0 0 12px; } .menu-delete-item { float: right; padding: 1em 0; width: 100%; } .assigned-menu-locations-title p { margin: 0 0 8px; } li.assigned-to-menu-location .menu-delete-item { display: none; } li.assigned-to-menu-location .add-new-menu-item { margin-bottom: 1em; } .menu-item-handle { margin-top: -1px; } .ui-sortable-disabled .menu-item-handle { cursor: default; } .menu-item-handle:hover { position: relative; z-index: 10; color: var(--wp-admin-theme-color); } .menu-item-handle:hover .item-type, .menu-item-handle:hover .item-edit, #available-menu-items .menu-item-handle:hover .item-add { color: var(--wp-admin-theme-color); } .menu-item-edit-active .menu-item-handle { border-color: #8c8f94; border-bottom: none; } .customize-control-nav_menu_item { margin-bottom: 0; } .customize-control-nav_menu .new-menu-item-invitation { margin-top: 0; margin-bottom: 0; } .customize-control-nav_menu .customize-control-nav_menu-buttons { display: flex; flex-direction: row-reverse; align-items: center; gap: 8px; margin-top: 12px; } /** * box-shadows */ .wp-customizer .menu-item .submitbox .submitdelete:focus, .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-customizer button:focus .toggle-indicator:before, .menu-delete:focus, .menu-item-bar .item-delete:focus:before, #available-menu-items .item-add:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } @media screen and (max-width: 782px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 71px; /* 63 + 8 for 40px input */ } } @media screen and (max-width: 640px) { #available-menu-items #available-menu-items-search .accordion-section-content { top: 154px; /* 146 + 8 for 40px input */ } } css/login.min.css000066600000014757152330733730007770 0ustar00/*! This file is auto-generated */ body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;min-width:0;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4}a{color:var(--wp-admin-theme-color-darker-10);transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a{outline:0}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:#043959;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}p{line-height:1.5}.login .message,.login .notice,.login .success{border-left:4px solid #3858e9;padding:8px 12px;margin-top:0;margin-left:0;margin-bottom:20px;background-color:#fff;word-wrap:break-word}.login .message p,.login .notice p,.login .success p{font-size:13px;line-height:1.54;margin:.5em 0}.login .success{border-left-color:#4ab866;background-color:#eff9f1}.login .notice-error{border-left-color:#cc1818;background-color:#fcf0f0}.login .login-error-list{list-style:none}.login .login-error-list li+li{margin-top:4px}#loginform p.submit,.login-action-lostpassword p.submit{border:none;margin:-10px 0 20px}.login *{margin:0;padding:0}.login .input::-ms-clear{display:none}.login .pw-weak{margin-bottom:15px}.login .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:normal;width:2.5rem;height:2.5rem;min-width:40px;min-height:40px;margin:0;padding:5px 9px;position:absolute;right:0;top:0}.login .button.wp-hide-pw:hover{background:0 0}.login .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.login .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}.login .button.wp-hide-pw .dashicons{width:1.25rem;height:1.25rem}.login .wp-pwd{position:relative}.no-js .hide-if-no-js{display:none}.login form{margin:24px 0;padding:26px 24px;font-weight:400;overflow:hidden;background:#fff;border:1px solid #c3c4c7;box-shadow:0 1px 3px rgba(0,0,0,.04)}.login form.shake{animation:shake .2s cubic-bezier(.19,.49,.38,.79) both;animation-iteration-count:3;transform:translateX(0)}@keyframes shake{25%{transform:translateX(-20px)}75%{transform:translateX(20px)}100%{transform:translateX(0)}}@media (prefers-reduced-motion:reduce){.login form.shake{animation:none;transform:none}}.login-action-confirm_admin_email #login{width:60vw;max-width:650px;margin-top:-2vh}@media screen and (max-width:782px){.login-action-confirm_admin_email #login{box-sizing:border-box;margin-top:0;padding-left:4vw;padding-right:4vw;width:100vw}}.login form .forgetmenot{font-weight:400;float:left;margin-bottom:0}.login .button-primary{float:right}.login .reset-pass-submit{display:flex;flex-flow:row wrap;justify-content:space-between}.login .reset-pass-submit .button{display:inline-block;float:none;margin-bottom:6px}.login .admin-email-confirm-form .submit{text-align:center}.admin-email__later{text-align:left}.login form p.admin-email__details{margin:1.1em 0}.login .admin-email__heading{border-bottom:1px #f0f0f1 solid;color:#50575e;font-weight:400;padding-bottom:.5em;text-align:left}.admin-email__actions div{padding-top:1.5em}.login .admin-email__actions .button-primary{float:none;margin-left:.25em;margin-right:.25em}#login form p{margin-bottom:0}#login #reg_passmail,#login form .indicator-hint{margin-bottom:16px}#login form p.submit{margin:0;padding:0}.login label{font-size:14px;line-height:1.5;display:inline-block;margin-bottom:3px}.login .forgetmenot label,.login .pw-weak label{line-height:1.5;vertical-align:baseline}.login h1{text-align:center}.login h1 a{background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;height:84px;font-size:20px;font-weight:400;line-height:1.3;margin:0 auto 24px;padding:0;text-decoration:none;width:84px;text-indent:-9999px;outline:0;overflow:hidden;display:block}#login{width:320px;padding:5% 0 0;margin:auto}.login #backtoblog,.login #nav{font-size:13px;padding:0 24px}.login #nav{margin:24px 0 0}#backtoblog{margin:16px 0;word-wrap:break-word}.login #backtoblog a,.login #nav a{text-decoration:none;color:#50575e}.login #backtoblog a:hover,.login #nav a:hover,.login h1 a:hover{color:var(--wp-admin-theme-color-darker-20)}.login #backtoblog a:focus,.login #nav a:focus,.login h1 a:focus{color:#043959}.login .privacy-policy-page-link{text-align:center;width:100%;margin:3em 0 2em}.login form .input,.login input[type=password],.login input[type=text]{font-size:24px;line-height:1.33333333;width:100%;border-width:.0625rem;padding:.1875rem .3125rem;margin:0 6px 16px 0;min-height:40px;max-height:none}.login input.password-input{font-family:Consolas,Monaco,monospace}.js.login input.password-input{padding-right:2.5rem}.js.login-action-resetpass input[type=password],.js.login-action-resetpass input[type=text],.js.login-action-rp input[type=password],.js.login-action-rp input[type=text]{margin-bottom:0}.login #pass-strength-result{font-weight:600;margin:-1px 5px 16px 0;padding:6px 5px;text-align:center;width:100%}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.screen-reader-text,.screen-reader-text span{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}input::-ms-reveal{display:none}#language-switcher{padding:0;overflow:visible;background:0 0;border:none;box-shadow:none}#language-switcher select{margin-right:.25em}.language-switcher{margin:0 auto;padding:0 0 24px;text-align:center}.language-switcher label{margin-right:.25em}.language-switcher label .dashicons{width:auto;height:auto}.login .language-switcher .button{margin-bottom:0}@media screen and (max-height:550px){#login{padding:20px 0}#language-switcher{margin-top:0}}@media screen and (max-width:782px){.interim-login input[type=checkbox]{width:1rem;height:1rem}.interim-login input[type=checkbox]:checked:before{width:1.3125rem;height:1.3125rem;margin:-.1875rem 0 0 -.25rem}#language-switcher label,#language-switcher select{margin-right:0}}@media screen and (max-width:400px){.login .language-switcher .button{display:block;margin:5px auto 0}}css/edit.min.css000066600000073562152330733730007604 0ustar00/*! This file is auto-generated */ #poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a{float:left}#show-comments .spinner{float:none;margin-top:0}#lost-connection-notice .spinner{visibility:visible;float:left;margin:0 5px 0 0}#titlediv{position:relative}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0 0 3px;background-color:#fff}#titlediv #title-prompt-text{color:#646970;position:absolute;font-size:1.7em;padding:10px;pointer-events:none}#titlewrap .skiplink{background:#fff;line-height:2.30769231;min-height:32px;right:4px}#titlewrap .skiplink:focus{clip:inherit;clip-path:inherit;top:4px;width:auto}input#link_description,input#link_url{width:100%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#comment-link-box,#edit-slug-box{line-height:1.84615384;min-height:25px;margin-top:5px;padding:0 10px;color:#646970}#sample-permalink{display:inline-block;max-width:100%;word-wrap:break-word}#edit-slug-box .cancel{margin-right:10px;padding:0}#comment-link-box{margin:5px 0;padding:0 5px}#editable-post-name-full{display:none}#editable-post-name{font-weight:600}#editable-post-name input{font-size:13px;font-weight:400;min-height:32px;margin:0;width:16em}.postarea h3 label{float:left}body.post-new-php .submitbox .submitdelete{display:none}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}#post-status-select{margin-top:3px}body.post-type-wp_navigation .inline-edit-status,body.post-type-wp_navigation div#minor-publishing{display:none}.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:60px;margin-bottom:20px}.postbox{position:relative;min-width:255px;border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#2c3338}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:0}.taxonomy-add-new{display:inline-block;margin:10px 0;font-weight:600}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:5px 7px 10px;overflow:hidden}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dcdcde;border-bottom-color:#fff;background-color:#fff}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 6px}#set-post-thumbnail{display:inline-block;max-width:100%}#postimagediv .inside img{max-width:100%;height:auto;vertical-align:top;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}form#tags-filter{position:relative}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-right:0;flex:1;min-width:0}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{flex:1;min-width:0}#post-status-info{width:100%;border-spacing:0;border:1px solid #c3c4c7;border-top:none;background-color:#f6f7f7;box-shadow:0 1px 1px rgba(0,0,0,.04);z-index:999}#post-status-info td{font-size:12px}.autosave-info{padding:2px 10px;text-align:right}#editorcontent #post-status-info{border:none}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background-image:url(../images/resize-rtl.gif);background-position:left bottom}.wp-editor-expand #content-resize-handle{display:none}#postdivrich #content{resize:none}#wp-word-count{padding:2px 10px}#wp-content-editor-container{position:relative}.wp-editor-expand #wp-content-editor-tools{z-index:1000;border-bottom:1px solid #c3c4c7}.wp-editor-expand #wp-content-editor-container{box-shadow:none;margin-top:-1px}.wp-editor-expand #wp-content-editor-container{border-bottom:0 none}.wp-editor-expand div.mce-statusbar{z-index:1}.wp-editor-expand #post-status-info{border-top:1px solid #c3c4c7}.wp-editor-expand div.mce-toolbar-grp{z-index:999}.mce-fullscreen #wp-content-wrap .mce-edit-area,.mce-fullscreen #wp-content-wrap .mce-menubar,.mce-fullscreen #wp-content-wrap .mce-statusbar,.mce-fullscreen #wp-content-wrap .mce-toolbar-grp{position:static!important;width:auto!important;padding:0!important}.mce-fullscreen #wp-content-wrap .mce-statusbar{visibility:visible!important}.mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw{display:none}.mce-fullscreen #wp-content-wrap .mce-wp-dfw,.post-php.mce-fullscreen #wpadminbar{display:none}#wp-content-editor-tools{background-color:#f0f0f1;padding-top:20px}#poststuff #post-body.columns-2 #side-sortables{width:280px}#timestampdiv select{vertical-align:top;font-size:12px;line-height:2.33333333}#aa,#hh,#jj,#mn{padding:6px 1px;font-size:12px;line-height:1.16666666}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{color:#8c8f94}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{font:normal 20px/1 dashicons;display:inline-block;margin-left:-1px;padding-right:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before{content:"\f173";content:"\f173"/''}#post-body #visibility:before{content:"\f177";content:"\f177"/''}.curtime #timestamp:before{content:"\f145";content:"\f145"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedby:before{content:"\f110";content:"\f110"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedto:before{content:"\f318";content:"\f318"/'';position:relative;top:-1px}#post-body .misc-pub-revisions:before{content:"\f321";content:"\f321"/''}#post-body .misc-pub-response-to:before{content:"\f101";content:"\f101"/''}#timestampdiv{padding-top:5px;line-height:1.76923076}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{text-align:center}.notification-dialog{position:fixed;top:30%;max-height:70%;left:50%;width:450px;margin-left:-225px;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005;overflow-y:auto}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#file-editor-warning .button,#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt{display:block;margin:12px 0 0;height:4em;width:100%}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist>li{float:left;margin-right:25px;font-size:13px;line-height:1.8;cursor:default;max-width:100%;overflow:hidden;text-overflow:ellipsis}.tagchecklist .ntdelbutton{position:absolute;width:24px;height:24px;border:none;margin:0 0 0 -19px;padding:0;background:0 0;cursor:pointer;text-indent:0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .stuffbox h2{padding:8px 10px}#poststuff .stuffbox>h2{border-bottom:1px solid #f0f0f1}#poststuff .inside{margin:6px 0 0}.link-add-php #poststuff .inside,.link-php #poststuff .inside{margin-top:12px}#poststuff .stuffbox .inside{margin:0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}.post-attributes-label-wrapper{margin-bottom:.5em}.post-attributes-label{vertical-align:baseline;font-weight:600}#comment-status-radio,#post-visibility-select{line-height:1.5;margin-top:3px}#linksubmitdiv .inside,#poststuff #submitdiv .inside{margin:0;padding:0}#post-body-content,.edit-form-section{margin-bottom:20px}.wp_attachment_details .attachment-content-description{margin-top:.5385em;display:inline-block;min-height:1.6923em}.privacy-settings #wpcontent,.privacy-settings.auto-fold #wpcontent,.site-health #wpcontent,.site-health.auto-fold #wpcontent{padding-left:0}.privacy-settings .notice,.site-health .notice{margin:25px 20px 15px 22px}.privacy-settings .notice~.notice,.site-health .notice~.notice{margin-top:5px}.health-check-header h1,.privacy-settings-header h1{display:inline-block;font-weight:600;margin:0 .8rem 1rem;font-size:23px;padding:9px 0 4px;line-height:1.3}.health-check-header,.privacy-settings-header{text-align:center;margin:0 0 1rem;background:#fff;border-bottom:1px solid #dcdcde}.health-check-title-section,.privacy-settings-title-section{display:flex;align-items:center;justify-content:center;clear:both;padding-top:8px}.privacy-settings-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr}.privacy-settings-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-tab:first-child,.privacy-settings-tab:first-child{-ms-grid-column:1}.health-check-tab:nth-child(2),.privacy-settings-tab:nth-child(2){-ms-grid-column:2}.health-check-tab:focus,.privacy-settings-tab:focus{color:#1d2327;outline:1px solid #787c82;box-shadow:none}.health-check-tab.active,.privacy-settings-tab.active{box-shadow:inset 0 -3px var(--wp-admin-theme-color);font-weight:600}.health-check-body,.privacy-settings-body{max-width:800px;margin:0 auto}.tools-privacy-policy-page th{min-width:230px}.hr-separator{margin-top:20px;margin-bottom:15px}.health-check-accordion,.privacy-settings-accordion{border:1px solid #c3c4c7}.health-check-accordion-heading,.privacy-settings-accordion-heading{margin:0;border-top:1px solid #c3c4c7;font-size:inherit;line-height:inherit;font-weight:600;color:inherit}.health-check-accordion-heading:first-child,.privacy-settings-accordion-heading:first-child{border-top:none}.health-check-accordion-trigger,.privacy-settings-accordion-trigger{background:#fff;border:0;color:#2c3338;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1em 3.5em 1em 1.5em;min-height:46px;position:relative;text-align:left;width:100%;align-items:center;justify-content:space-between;-webkit-user-select:auto;user-select:auto}.health-check-accordion-trigger:active,.health-check-accordion-trigger:hover,.privacy-settings-accordion-trigger:active,.privacy-settings-accordion-trigger:hover{background:#f6f7f7}.health-check-accordion-trigger:focus,.privacy-settings-accordion-trigger:focus{color:#1d2327;border:none;box-shadow:none;outline-offset:-1px;outline:2px solid var(--wp-admin-theme-color);background-color:#f6f7f7}.health-check-accordion-trigger .title,.privacy-settings-accordion-trigger .title{pointer-events:none;font-weight:600;flex-grow:1}.health-check-accordion-trigger .icon,.privacy-settings-accordion-trigger .icon,.privacy-settings-view-read .icon,.site-health-view-passed .icon{border:solid #50575e;border-width:0 2px 2px 0;height:.5rem;pointer-events:none;position:absolute;right:1.5em;top:50%;transform:translateY(-70%) rotate(45deg);width:.5rem}.health-check-accordion-trigger .badge,.privacy-settings-accordion-trigger .badge{padding:.1rem .5rem .15rem;color:#2c3338;font-weight:600}.privacy-settings-accordion-trigger .badge{margin-left:.5rem}.health-check-accordion-trigger .badge.blue,.privacy-settings-accordion-trigger .badge.blue{border:1px solid var(--wp-admin-theme-color)}.health-check-accordion-trigger .badge.orange,.privacy-settings-accordion-trigger .badge.orange{border:1px solid #dba617}.health-check-accordion-trigger .badge.red,.privacy-settings-accordion-trigger .badge.red{border:1px solid #e65054}.health-check-accordion-trigger .badge.green,.privacy-settings-accordion-trigger .badge.green{border:1px solid #00ba37}.health-check-accordion-trigger .badge.purple,.privacy-settings-accordion-trigger .badge.purple{border:1px solid #2271b1}.health-check-accordion-trigger .badge.gray,.privacy-settings-accordion-trigger .badge.gray{border:1px solid #c3c4c7}.health-check-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-view-passed[aria-expanded=true] .icon,.site-health-view-passed[aria-expanded=true] .icon{transform:translateY(-30%) rotate(-135deg)}.health-check-accordion-panel,.privacy-settings-accordion-panel{margin:0;padding:1em 1.5em;background:#fff}.health-check-accordion-panel[hidden],.privacy-settings-accordion-panel[hidden]{display:none}.health-check-accordion-panel a .dashicons,.privacy-settings-accordion-panel a .dashicons{text-decoration:none}.privacy-settings-accordion-actions{justify-content:right;display:flex;align-items:center;flex-wrap:wrap;gap:1em}.privacy-settings-accordion-actions .success{display:none;color:#007017}.privacy-settings-accordion-actions .success.visible{display:inline-block}.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help{display:none}.privacy-settings-accordion-panel strong.privacy-policy-tutorial,.privacy-settings-accordion-panel strong.wp-policy-help{display:block;margin:0 0 1em}.privacy-text-copy span{pointer-events:none}.privacy-settings-accordion-panel .wp-suggested-text div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel .wp-suggested-text>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p){margin:0;padding:1em;border-left:2px solid #787c82}@media screen and (max-width:782px){.health-check-body,.privacy-settings-body{margin:0 12px;width:auto}.privacy-settings .notice,.site-health .notice{margin:5px 10px 15px}.privacy-settings .update-nag,.site-health .update-nag{margin-right:10px;margin-left:10px}input#create-page{margin-top:10px}.wp-core-ui button.privacy-text-copy{white-space:normal;line-height:1.8}#edit-slug-box{padding:0}#editable-post-name input{min-height:40px}}@media only screen and (max-width:1004px){.health-check-body,.privacy-settings-body{margin:0 22px;width:auto}}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f0f0f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#postcustom #postcustomstuff .add-custom-field{padding:12px 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dcdcde;border-spacing:0;background-color:#f6f7f7}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmeta-button,#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-format-icon::before{display:inline-block;vertical-align:middle;height:20px;width:20px;margin-top:-4px;margin-right:7px;color:#dcdcde;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.post-format-icon:hover:before{color:#135e96}#post-formats-select{line-height:2}#post-formats-select .post-format-icon::before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-left:0;padding:2px 0}.post-format-icon.post-format-standard::before{content:"\f109";content:"\f109"/''}.post-format-icon.post-format-image::before{content:"\f128";content:"\f128"/''}.post-format-icon.post-format-gallery::before{content:"\f161";content:"\f161"/''}.post-format-icon.post-format-audio::before{content:"\f127";content:"\f127"/''}.post-format-icon.post-format-video::before{content:"\f126";content:"\f126"/''}.post-format-icon.post-format-chat::before{content:"\f125";content:"\f125"/''}.post-format-icon.post-format-status::before{content:"\f130";content:"\f130"/''}.post-format-icon.post-format-aside::before{content:"\f123";content:"\f123"/''}.post-format-icon.post-format-quote::before{content:"\f122";content:"\f122"/''}.post-format-icon.post-format-link::before{content:"\f103";content:"\f103"/''}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dcdcde;background-color:#fff}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}div.tabs-panel-active:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.options-discussion-php .indent-children ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:1.69230769;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px 0}.form-field input[type=email],.form-field input[type=number],.form-field input[type=password],.form-field input[type=search],.form-field input[type=tel],.form-field input[type=text],.form-field input[type=url],.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-field p,.form-field select{max-width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#646970}.form-wrap p,p.description,p.help,span.description{font-size:13px}p.description code{font-style:normal}.form-wrap p code,p.description code{color:#50575e}.form-wrap .form-field{margin:1em 0;padding:0}.col-wrap h2{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.edit-term-notes{margin-top:2em}#poststuff .tagsdiv .ajaxtag{margin-top:1em;display:flex;gap:8px;align-items:center}#poststuff .tagsdiv .howto{margin:1em 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{flex:1;min-width:0}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{border:none;line-height:2em;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h2{margin:2px 0 12px}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #dcdcde;line-height:1.2;word-spacing:3px}.the-tagcloud ul{margin:0}.the-tagcloud ul li{display:inline-block}.ac_results{display:none;margin:-1px 0 0;padding:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{margin:0;padding:5px 10px;white-space:nowrap;text-align:left}.ac_over .ac_match,.ac_results .ac_over{background-color:#2271b1;color:#fff;cursor:pointer}.ac_match{text-decoration:underline}#addtag .spinner{float:none;vertical-align:top}#edittag{max-width:800px}.edit-tag-actions{display:flex;align-items:center;gap:8px;margin-top:20px}.comment-php .wp-editor-area{height:200px}.comment-ays td,.comment-ays th{padding:10px 15px}.comment-ays .comment-content ul{list-style:initial;margin-left:2em}.comment-ays .comment-content a[href]:after{content:"(" attr(href) ")";display:inline-block;padding:0 4px;color:#646970;font-size:13px;word-break:break-all}.comment-ays .comment-content p.edit-comment{margin-top:10px}.comment-ays .comment-content p.edit-comment a[href]:after{content:"";padding:0}.comment-ays-submit .button-cancel{margin-left:1em}.spam-undo-inside,.trash-undo-inside{margin:1px 8px 1px 0;line-height:1.23076923}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none;margin-top:0}#namediv.stuffbox .editcomment input{width:100%}#namediv.stuffbox .editcomment.form-table td{padding:10px}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}#qt_content_dfw{display:none}.wp-editor-expand #qt_content_dfw{display:inline-block}.focus-on #screen-meta,.focus-on #screen-meta-links,.focus-on #wp-toolbar,.focus-on #wpfooter,.focus-on .page-title-action,.focus-on .postbox-container>*,.focus-on .update-nag,.focus-on .wrap>h1,.focus-on div.error,.focus-on div.notice,.focus-on div.updated{opacity:0;transition-duration:.6s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-on #wp-toolbar{opacity:.3}.focus-off #screen-meta,.focus-off #screen-meta-links,.focus-off #wp-toolbar,.focus-off #wpfooter,.focus-off .page-title-action,.focus-off .postbox-container>*,.focus-off .update-nag,.focus-off .wrap>h1,.focus-off div.error,.focus-off div.notice,.focus-off div.updated{opacity:1;transition-duration:.2s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-off #wp-toolbar{-webkit-transform:translate(0,0)}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transition-duration:.6s;transition-property:transform;transition-timing-function:ease-in-out}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transform:translateX(-100%)}.focus-off #adminmenuback,.focus-off #adminmenuwrap{transform:translateX(0);transition-duration:.2s;transition-property:transform;transition-timing-function:ease-in-out}@media print,(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background-image:url(../images/resize-rtl-2x.gif);background-position:left bottom}}@media only screen and (max-width:1200px){.post-type-attachment #poststuff{min-width:0}.post-type-attachment #wpbody-content #poststuff #post-body{margin:0}.post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}.post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty,.post-type-attachment #poststuff #postbox-container-1 .empty-container{outline:0;height:0;min-height:0}.post-type-attachment #poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables{border:none;background:0 0;min-height:0;margin-bottom:0}.post-type-attachment .columns-prefs,.post-type-attachment .screen-layout{display:none}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables,.is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables,.is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty,.is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container{height:auto;min-height:60px}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){.wp-core-ui .edit-tag-actions .button-primary{margin-bottom:0}#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff .stuffbox .inside{padding:0 2px 4px 0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{padding:12px}#namediv.stuffbox .editcomment.form-table td{padding:5px 10px}.post-format-options{padding-right:0}.post-format-options a{margin-right:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-right:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{flex:1;min-width:0;height:auto;margin-bottom:0}.tagchecklist{margin:25px 10px}.tagchecklist>li{font-size:16px;line-height:1.4}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:left!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-left:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding:6px 3px 6px 6px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}button.wp-switch-editor{font-size:16px;line-height:1;margin:7px 0 0 7px;padding:8px 12px}#wp-content-media-buttons a{font-size:14px;padding:6px 10px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-left:-2px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:12px 10px}#delete-action,#publishing-action{line-height:3.61538461}#publishing-action .spinner{float:none;margin-top:-2px}.comment-ays td,.comment-ays th{padding-bottom:0}.comment-ays td{padding-top:6px}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}.edit-term-notes{display:none}.privacy-text-box{width:auto}.privacy-text-box-toc{float:none;width:auto;height:100%;display:flex;flex-direction:column}.privacy-text-section .return-to-top{margin:2em 0 0}}css/edit-rtl.min.css000066600000073574152330733730010406 0ustar00/*! This file is auto-generated */ #poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-left:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a{float:right}#show-comments .spinner{float:none;margin-top:0}#lost-connection-notice .spinner{visibility:visible;float:right;margin:0 0 0 5px}#titlediv{position:relative}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0 0 3px;background-color:#fff}#titlediv #title-prompt-text{color:#646970;position:absolute;font-size:1.7em;padding:10px;pointer-events:none}#titlewrap .skiplink{background:#fff;line-height:2.30769231;min-height:32px;left:4px}#titlewrap .skiplink:focus{clip:inherit;clip-path:inherit;top:4px;width:auto}input#link_description,input#link_url{width:100%}#pending{background:100% none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#comment-link-box,#edit-slug-box{line-height:1.84615384;min-height:25px;margin-top:5px;padding:0 10px;color:#646970}#sample-permalink{display:inline-block;max-width:100%;word-wrap:break-word}#edit-slug-box .cancel{margin-left:10px;padding:0}#comment-link-box{margin:5px 0;padding:0 5px}#editable-post-name-full{display:none}#editable-post-name{font-weight:600}#editable-post-name input{font-size:13px;font-weight:400;min-height:32px;margin:0;width:16em}.postarea h3 label{float:right}body.post-new-php .submitbox .submitdelete{display:none}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-left:4px;padding:6px}#post-status-select{margin-top:3px}body.post-type-wp_navigation .inline-edit-status,body.post-type-wp_navigation div#minor-publishing{display:none}.is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:60px;margin-bottom:20px}.postbox{position:relative;min-width:255px;border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:left;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#2c3338}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:0}.taxonomy-add-new{display:inline-block;margin:10px 0;font-weight:600}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:5px 7px 10px;overflow:hidden}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dcdcde;border-bottom-color:#fff;background-color:#fff}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 6px}#set-post-thumbnail{display:inline-block;max-width:100%}#postimagediv .inside img{max-width:100%;height:auto;vertical-align:top;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}form#tags-filter{position:relative}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-left:0;flex:1;min-width:0}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{flex:1;min-width:0}#post-status-info{width:100%;border-spacing:0;border:1px solid #c3c4c7;border-top:none;background-color:#f6f7f7;box-shadow:0 1px 1px rgba(0,0,0,.04);z-index:999}#post-status-info td{font-size:12px}.autosave-info{padding:2px 10px;text-align:left}#editorcontent #post-status-info{border:none}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll left bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background-image:url(../images/resize-rtl.gif);background-position:left bottom}.wp-editor-expand #content-resize-handle{display:none}#postdivrich #content{resize:none}#wp-word-count{padding:2px 10px}#wp-content-editor-container{position:relative}.wp-editor-expand #wp-content-editor-tools{z-index:1000;border-bottom:1px solid #c3c4c7}.wp-editor-expand #wp-content-editor-container{box-shadow:none;margin-top:-1px}.wp-editor-expand #wp-content-editor-container{border-bottom:0 none}.wp-editor-expand div.mce-statusbar{z-index:1}.wp-editor-expand #post-status-info{border-top:1px solid #c3c4c7}.wp-editor-expand div.mce-toolbar-grp{z-index:999}.mce-fullscreen #wp-content-wrap .mce-edit-area,.mce-fullscreen #wp-content-wrap .mce-menubar,.mce-fullscreen #wp-content-wrap .mce-statusbar,.mce-fullscreen #wp-content-wrap .mce-toolbar-grp{position:static!important;width:auto!important;padding:0!important}.mce-fullscreen #wp-content-wrap .mce-statusbar{visibility:visible!important}.mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw{display:none}.mce-fullscreen #wp-content-wrap .mce-wp-dfw,.post-php.mce-fullscreen #wpadminbar{display:none}#wp-content-editor-tools{background-color:#f0f0f1;padding-top:20px}#poststuff #post-body.columns-2 #side-sortables{width:280px}#timestampdiv select{vertical-align:top;font-size:12px;line-height:2.33333333}#aa,#hh,#jj,#mn{padding:6px 1px;font-size:12px;line-height:1.16666666}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{color:#8c8f94}#post-body #visibility:before,#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-response-to:before,#post-body .misc-pub-revisions:before,#post-body .misc-pub-uploadedby:before,#post-body .misc-pub-uploadedto:before,.curtime #timestamp:before{font:normal 20px/1 dashicons;display:inline-block;margin-right:-1px;padding-left:3px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#post-body .misc-pub-comment-status:before,#post-body .misc-pub-post-status:before{content:"\f173";content:"\f173"/''}#post-body #visibility:before{content:"\f177";content:"\f177"/''}.curtime #timestamp:before{content:"\f145";content:"\f145"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedby:before{content:"\f110";content:"\f110"/'';position:relative;top:-1px}#post-body .misc-pub-uploadedto:before{content:"\f318";content:"\f318"/'';position:relative;top:-1px}#post-body .misc-pub-revisions:before{content:"\f321";content:"\f321"/''}#post-body .misc-pub-response-to:before{content:"\f101";content:"\f101"/''}#timestampdiv{padding-top:5px;line-height:1.76923076}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{text-align:center}.notification-dialog{position:fixed;top:30%;max-height:70%;right:50%;width:450px;margin-right:-225px;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005;overflow-y:auto}.notification-dialog-background{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#file-editor-warning .button,#post-lock-dialog .post-locked-message a.button{margin-left:10px}#post-lock-dialog .post-locked-avatar{float:right;margin:0 0 20px 20px}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:right;margin-left:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt{display:block;margin:12px 0 0;height:4em;width:100%}.tagchecklist{margin-right:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-right:-8px;position:absolute}.tagchecklist>li{float:right;margin-left:25px;font-size:13px;line-height:1.8;cursor:default;max-width:100%;overflow:hidden;text-overflow:ellipsis}.tagchecklist .ntdelbutton{position:absolute;width:24px;height:24px;border:none;margin:0 -19px 0 0;padding:0;background:0 0;cursor:pointer;text-indent:0}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .stuffbox h2{padding:8px 10px}#poststuff .stuffbox>h2{border-bottom:1px solid #f0f0f1}#poststuff .inside{margin:6px 0 0}.link-add-php #poststuff .inside,.link-php #poststuff .inside{margin-top:12px}#poststuff .stuffbox .inside{margin:0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}.post-attributes-label-wrapper{margin-bottom:.5em}.post-attributes-label{vertical-align:baseline;font-weight:600}#comment-status-radio,#post-visibility-select{line-height:1.5;margin-top:3px}#linksubmitdiv .inside,#poststuff #submitdiv .inside{margin:0;padding:0}#post-body-content,.edit-form-section{margin-bottom:20px}.wp_attachment_details .attachment-content-description{margin-top:.5385em;display:inline-block;min-height:1.6923em}.privacy-settings #wpcontent,.privacy-settings.auto-fold #wpcontent,.site-health #wpcontent,.site-health.auto-fold #wpcontent{padding-right:0}.privacy-settings .notice,.site-health .notice{margin:25px 22px 15px 20px}.privacy-settings .notice~.notice,.site-health .notice~.notice{margin-top:5px}.health-check-header h1,.privacy-settings-header h1{display:inline-block;font-weight:600;margin:0 .8rem 1rem;font-size:23px;padding:9px 0 4px;line-height:1.3}.health-check-header,.privacy-settings-header{text-align:center;margin:0 0 1rem;background:#fff;border-bottom:1px solid #dcdcde}.health-check-title-section,.privacy-settings-title-section{display:flex;align-items:center;justify-content:center;clear:both;padding-top:8px}.privacy-settings-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr}.privacy-settings-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-tab:first-child,.privacy-settings-tab:first-child{-ms-grid-column:1}.health-check-tab:nth-child(2),.privacy-settings-tab:nth-child(2){-ms-grid-column:2}.health-check-tab:focus,.privacy-settings-tab:focus{color:#1d2327;outline:1px solid #787c82;box-shadow:none}.health-check-tab.active,.privacy-settings-tab.active{box-shadow:inset 0 -3px var(--wp-admin-theme-color);font-weight:600}.health-check-body,.privacy-settings-body{max-width:800px;margin:0 auto}.tools-privacy-policy-page th{min-width:230px}.hr-separator{margin-top:20px;margin-bottom:15px}.health-check-accordion,.privacy-settings-accordion{border:1px solid #c3c4c7}.health-check-accordion-heading,.privacy-settings-accordion-heading{margin:0;border-top:1px solid #c3c4c7;font-size:inherit;line-height:inherit;font-weight:600;color:inherit}.health-check-accordion-heading:first-child,.privacy-settings-accordion-heading:first-child{border-top:none}.health-check-accordion-trigger,.privacy-settings-accordion-trigger{background:#fff;border:0;color:#2c3338;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1em 1.5em 1em 3.5em;min-height:46px;position:relative;text-align:right;width:100%;align-items:center;justify-content:space-between;-webkit-user-select:auto;user-select:auto}.health-check-accordion-trigger:active,.health-check-accordion-trigger:hover,.privacy-settings-accordion-trigger:active,.privacy-settings-accordion-trigger:hover{background:#f6f7f7}.health-check-accordion-trigger:focus,.privacy-settings-accordion-trigger:focus{color:#1d2327;border:none;box-shadow:none;outline-offset:-1px;outline:2px solid var(--wp-admin-theme-color);background-color:#f6f7f7}.health-check-accordion-trigger .title,.privacy-settings-accordion-trigger .title{pointer-events:none;font-weight:600;flex-grow:1}.health-check-accordion-trigger .icon,.privacy-settings-accordion-trigger .icon,.privacy-settings-view-read .icon,.site-health-view-passed .icon{border:solid #50575e;border-width:0 0 2px 2px;height:.5rem;pointer-events:none;position:absolute;left:1.5em;top:50%;transform:translateY(-70%) rotate(-45deg);width:.5rem}.health-check-accordion-trigger .badge,.privacy-settings-accordion-trigger .badge{padding:.1rem .5rem .15rem;color:#2c3338;font-weight:600}.privacy-settings-accordion-trigger .badge{margin-right:.5rem}.health-check-accordion-trigger .badge.blue,.privacy-settings-accordion-trigger .badge.blue{border:1px solid var(--wp-admin-theme-color)}.health-check-accordion-trigger .badge.orange,.privacy-settings-accordion-trigger .badge.orange{border:1px solid #dba617}.health-check-accordion-trigger .badge.red,.privacy-settings-accordion-trigger .badge.red{border:1px solid #e65054}.health-check-accordion-trigger .badge.green,.privacy-settings-accordion-trigger .badge.green{border:1px solid #00ba37}.health-check-accordion-trigger .badge.purple,.privacy-settings-accordion-trigger .badge.purple{border:1px solid #2271b1}.health-check-accordion-trigger .badge.gray,.privacy-settings-accordion-trigger .badge.gray{border:1px solid #c3c4c7}.health-check-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-accordion-trigger[aria-expanded=true] .icon,.privacy-settings-view-passed[aria-expanded=true] .icon,.site-health-view-passed[aria-expanded=true] .icon{transform:translateY(-30%) rotate(135deg)}.health-check-accordion-panel,.privacy-settings-accordion-panel{margin:0;padding:1em 1.5em;background:#fff}.health-check-accordion-panel[hidden],.privacy-settings-accordion-panel[hidden]{display:none}.health-check-accordion-panel a .dashicons,.privacy-settings-accordion-panel a .dashicons{text-decoration:none}.privacy-settings-accordion-actions{justify-content:right;display:flex;align-items:center;flex-wrap:wrap;gap:1em}.privacy-settings-accordion-actions .success{display:none;color:#007017}.privacy-settings-accordion-actions .success.visible{display:inline-block}.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy,.privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help{display:none}.privacy-settings-accordion-panel strong.privacy-policy-tutorial,.privacy-settings-accordion-panel strong.wp-policy-help{display:block;margin:0 0 1em}.privacy-text-copy span{pointer-events:none}.privacy-settings-accordion-panel .wp-suggested-text div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel .wp-suggested-text>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel div>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),.privacy-settings-accordion-panel>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p){margin:0;padding:1em;border-right:2px solid #787c82}@media screen and (max-width:782px){.health-check-body,.privacy-settings-body{margin:0 12px;width:auto}.privacy-settings .notice,.site-health .notice{margin:5px 10px 15px}.privacy-settings .update-nag,.site-health .update-nag{margin-left:10px;margin-right:10px}input#create-page{margin-top:10px}.wp-core-ui button.privacy-text-copy{white-space:normal;line-height:1.8}#edit-slug-box{padding:0}#editable-post-name input{min-height:40px}}@media only screen and (max-width:1004px){.health-check-body,.privacy-settings-body{margin:0 22px;width:auto}}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f0f0f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#postcustom #postcustomstuff .add-custom-field{padding:12px 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dcdcde;border-spacing:0;background-color:#f6f7f7}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmeta-button,#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-left:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:right;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-format-icon::before{display:inline-block;vertical-align:middle;height:20px;width:20px;margin-top:-4px;margin-left:7px;color:#dcdcde;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a.post-format-icon:hover:before{color:#135e96}#post-formats-select{line-height:2}#post-formats-select .post-format-icon::before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-right:0;padding:2px 0}.post-format-icon.post-format-standard::before{content:"\f109";content:"\f109"/''}.post-format-icon.post-format-image::before{content:"\f128";content:"\f128"/''}.post-format-icon.post-format-gallery::before{content:"\f161";content:"\f161"/''}.post-format-icon.post-format-audio::before{content:"\f127";content:"\f127"/''}.post-format-icon.post-format-video::before{content:"\f126";content:"\f126"/''}.post-format-icon.post-format-chat::before{content:"\f125";content:"\f125"/''}.post-format-icon.post-format-status::before{content:"\f130";content:"\f130"/''}.post-format-icon.post-format-aside::before{content:"\f123";content:"\f123"/''}.post-format-icon.post-format-quote::before{content:"\f122";content:"\f122"/''}.post-format-icon.post-format-link::before{content:"\f103";content:"\f103"/''}.category-adder{margin-right:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dcdcde;background-color:#fff}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}div.tabs-panel-active:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.options-discussion-php .indent-children ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-right:18px}ul.categorychecklist li{margin:0;padding:0;line-height:1.69230769;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px 0}.form-field input[type=email],.form-field input[type=number],.form-field input[type=password],.form-field input[type=search],.form-field input[type=tel],.form-field input[type=text],.form-field input[type=url],.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-field p,.form-field select{max-width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#646970}.form-wrap p,p.description,p.help,span.description{font-size:13px}p.description code{font-style:normal}.form-wrap p code,p.description code{color:#50575e}.form-wrap .form-field{margin:1em 0;padding:0}.col-wrap h2{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.edit-term-notes{margin-top:2em}#poststuff .tagsdiv .ajaxtag{margin-top:1em;display:flex;gap:8px;align-items:center}#poststuff .tagsdiv .howto{margin:1em 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{flex:1;min-width:0}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{border:none;line-height:2em;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h2{margin:2px 0 12px}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #dcdcde;line-height:1.2;word-spacing:3px}.the-tagcloud ul{margin:0}.the-tagcloud ul li{display:inline-block}.ac_results{display:none;margin:-1px 0 0;padding:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{margin:0;padding:5px 10px;white-space:nowrap;text-align:right}.ac_over .ac_match,.ac_results .ac_over{background-color:#2271b1;color:#fff;cursor:pointer}.ac_match{text-decoration:underline}#addtag .spinner{float:none;vertical-align:top}#edittag{max-width:800px}.edit-tag-actions{display:flex;align-items:center;gap:8px;margin-top:20px}.comment-php .wp-editor-area{height:200px}.comment-ays td,.comment-ays th{padding:10px 15px}.comment-ays .comment-content ul{list-style:initial;margin-right:2em}.comment-ays .comment-content a[href]:after{content:"(" attr(href) ")";display:inline-block;padding:0 4px;color:#646970;font-size:13px;word-break:break-all}.comment-ays .comment-content p.edit-comment{margin-top:10px}.comment-ays .comment-content p.edit-comment a[href]:after{content:"";padding:0}.comment-ays-submit .button-cancel{margin-right:1em}.spam-undo-inside,.trash-undo-inside{margin:1px 0 1px 8px;line-height:1.23076923}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-left:8px;vertical-align:middle}.stuffbox .editcomment{clear:none;margin-top:0}#namediv.stuffbox .editcomment input{width:100%}#namediv.stuffbox .editcomment.form-table td{padding:10px}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 0 5px 3px;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:right;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-left:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}#qt_content_dfw{display:none}.wp-editor-expand #qt_content_dfw{display:inline-block}.focus-on #screen-meta,.focus-on #screen-meta-links,.focus-on #wp-toolbar,.focus-on #wpfooter,.focus-on .page-title-action,.focus-on .postbox-container>*,.focus-on .update-nag,.focus-on .wrap>h1,.focus-on div.error,.focus-on div.notice,.focus-on div.updated{opacity:0;transition-duration:.6s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-on #wp-toolbar{opacity:.3}.focus-off #screen-meta,.focus-off #screen-meta-links,.focus-off #wp-toolbar,.focus-off #wpfooter,.focus-off .page-title-action,.focus-off .postbox-container>*,.focus-off .update-nag,.focus-off .wrap>h1,.focus-off div.error,.focus-off div.notice,.focus-off div.updated{opacity:1;transition-duration:.2s;transition-property:opacity;transition-timing-function:ease-in-out}.focus-off #wp-toolbar{-webkit-transform:translate(0,0)}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transition-duration:.6s;transition-property:transform;transition-timing-function:ease-in-out}.focus-on #adminmenuback,.focus-on #adminmenuwrap{transform:translateX(100%)}.focus-off #adminmenuback,.focus-off #adminmenuwrap{transform:translateX(0);transition-duration:.2s;transition-property:transform;transition-timing-function:ease-in-out}@media print,(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll left bottom;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background-image:url(../images/resize-rtl-2x.gif);background-position:left bottom}}@media only screen and (max-width:1200px){.post-type-attachment #poststuff{min-width:0}.post-type-attachment #wpbody-content #poststuff #post-body{margin:0}.post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0;width:100%}.post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty,.post-type-attachment #poststuff #postbox-container-1 .empty-container{outline:0;height:0;min-height:0}.post-type-attachment #poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables{border:none;background:0 0;min-height:0;margin-bottom:0}.post-type-attachment .columns-prefs,.post-type-attachment .screen-layout{display:none}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0;width:auto}.is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables,.is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables,.is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty,.is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container{height:auto;min-height:60px}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){.wp-core-ui .edit-tag-actions .button-primary{margin-bottom:0}#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff .stuffbox .inside{padding:0 0 4px 2px}#poststuff .stuffbox>h3,#poststuff h2,#poststuff h3.hndle{padding:12px}#namediv.stuffbox .editcomment.form-table td{padding:5px 10px}.post-format-options{padding-left:0}.post-format-options a{margin-left:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-left:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{flex:1;min-width:0;height:auto;margin-bottom:0}.tagchecklist{margin:25px 10px}.tagchecklist>li{font-size:16px;line-height:1.4}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:right!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-right:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding:6px 6px 6px 3px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}button.wp-switch-editor{font-size:16px;line-height:1;margin:7px 7px 0 0;padding:8px 12px}#wp-content-media-buttons a{font-size:14px;padding:6px 10px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-right:-2px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:12px 10px}#delete-action,#publishing-action{line-height:3.61538461}#publishing-action .spinner{float:none;margin-top:-2px}.comment-ays td,.comment-ays th{padding-bottom:0}.comment-ays td{padding-top:6px}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}.edit-term-notes{display:none}.privacy-text-box{width:auto}.privacy-text-box-toc{float:none;width:auto;height:100%;display:flex;flex-direction:column}.privacy-text-section .return-to-top{margin:2em 0 0}}css/admin-menu-rtl.min.css000066600000035475152330733730011511 0ustar00/*! This file is auto-generated */ #adminmenu,#adminmenu .wp-submenu,#adminmenuback,#adminmenuwrap{width:160px;background-color:#1d2327}#adminmenuback{position:fixed;top:0;bottom:-120px;z-index:1;outline:1px solid transparent}.php-error #adminmenuback{position:absolute}.php-error #adminmenuback,.php-error #adminmenuwrap{margin-top:2em}#adminmenu{clear:right;margin:12px 0;padding:0;list-style:none}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:36px}.menu-icon-appearance div.wp-menu-image,.menu-icon-comments div.wp-menu-image,.menu-icon-dashboard div.wp-menu-image,.menu-icon-generic div.wp-menu-image,.menu-icon-links div.wp-menu-image,.menu-icon-media div.wp-menu-image,.menu-icon-page div.wp-menu-image,.menu-icon-plugins div.wp-menu-image,.menu-icon-post div.wp-menu-image,.menu-icon-settings div.wp-menu-image,.menu-icon-site div.wp-menu-image,.menu-icon-tools div.wp-menu-image,.menu-icon-users div.wp-menu-image{background-image:none!important}#adminmenuwrap{position:relative;float:right;z-index:9990}#adminmenu *{-webkit-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0}#adminmenu a{display:block;line-height:1.3;padding:2px 5px;color:#f0f0f1}#adminmenu .wp-submenu a{color:#c3c4c7;color:rgba(240,246,252,.7);font-size:13px;line-height:1.4;margin:0;padding:5px 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover{background:0 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a:hover,#adminmenu li.menu-top>a:focus{color:#72aee6}#adminmenu a:focus,#adminmenu a:hover,.folded #adminmenu .wp-submenu-head:hover{box-shadow:inset -4px 0 0 0 currentColor;transition:box-shadow .1s linear;border-radius:0}#adminmenu li.menu-top{border:none;min-height:34px;position:relative}#adminmenu .wp-submenu{list-style:none;position:absolute;top:-1000em;right:160px;overflow:visible;word-wrap:break-word;padding:6px 0;z-index:9999;background-color:#2c3338;box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu a.menu-top:focus+.wp-submenu,.js #adminmenu .opensub .wp-submenu,.js #adminmenu .sub-open,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{top:0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu{position:relative;z-index:3;top:auto;right:auto;left:auto;bottom:auto;border:0 none;margin-top:0;box-shadow:none}.folded #adminmenu .wp-has-current-submenu .wp-submenu{box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{position:relative;background-color:#1d2327;color:#72aee6}.folded #adminmenu li.menu-top:hover,.folded #adminmenu li.opensub>a.menu-top,.folded #adminmenu li>a.menu-top:focus{z-index:10000}#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu{background:#2271b1;color:#fff}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:0;right:36px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-right-width:5px}#adminmenu .opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-not-current-submenu li>a,.folded #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px;transition:all .1s ease-in-out,outline 0s}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding:5px 12px}#adminmenu .wp-submenu-head,#adminmenu a.menu-top{font-size:14px;font-weight:400;line-height:1.3;padding:0}#adminmenu .wp-submenu-head{display:none}.folded #adminmenu .wp-menu-name{position:absolute;right:-999px}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0}#adminmenu .wp-menu-image img{padding:9px 0 0;opacity:.6}#adminmenu div.wp-menu-name{padding:8px 36px 8px 8px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#adminmenu div.wp-menu-image{float:right;width:36px;height:34px;margin:0;text-align:center}#adminmenu div.wp-menu-image.svg{background-repeat:no-repeat;background-position:center;background-size:20px auto}div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6);padding:7px 0;transition:all .1s ease-in-out}#adminmenu div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6)}#adminmenu .current div.wp-menu-image:before,#adminmenu .wp-has-current-submenu div.wp-menu-image:before,#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before{color:#fff}#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#72aee6}.folded #adminmenu div.wp-menu-image{width:35px;height:30px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:34px}.sticky-menu #adminmenuwrap{position:fixed}ul#adminmenu a.wp-has-current-submenu{position:relative}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{left:0;border:solid 8px transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-left-color:#f0f0f1;top:50%;margin-top:-8px}.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after,.folded ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.folded ul#adminmenu a.wp-has-current-submenu:after,.folded ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{left:0;border:8px solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;top:10px;z-index:10000}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:18px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:#2c3338}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1}#adminmenu li.wp-menu-separator{height:5px;padding:0;margin:0 0 6px;cursor:inherit}#adminmenu div.separator{height:2px;padding:0}#adminmenu .wp-submenu .wp-submenu-head{color:#fff;font-weight:400;font-size:14px;padding:5px 11px 5px 4px;margin:-8px -5px 4px -1px;border-width:3px 5px 3px 1px;border-style:solid;border-color:transparent}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{display:inline-block;vertical-align:top;box-sizing:border-box;margin:1px 2px -1px 0;padding:0 5px;min-width:18px;height:18px;border-radius:9px;background-color:#d63638;color:#fff;font-size:11px;line-height:1.6;text-align:center;z-index:26}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod{background-color:#d63638;color:#fff}#adminmenu li span.count-0{display:none}#collapse-button{display:block;width:100%;height:34px;margin:0;border:none;padding:0;position:relative;overflow:visible;background:0 0;color:#a7aaad;cursor:pointer}#collapse-button:hover{color:#72aee6}#collapse-button:focus{color:#72aee6;outline:1px solid transparent;outline-offset:-1px}#collapse-button .collapse-button-icon,#collapse-button .collapse-button-label{display:block;position:absolute;top:0;right:0}#collapse-button .collapse-button-label{top:8px}#collapse-button .collapse-button-icon{width:36px;height:34px}#collapse-button .collapse-button-label{padding:0 36px 0 0}.folded #collapse-button .collapse-button-label{display:none}#collapse-button .collapse-button-icon:after{content:"\f148";content:"\f148"/'';display:block;position:relative;top:7px;text-align:center;font:normal 20px/1 dashicons!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.folded #collapse-button .collapse-button-icon:after,.rtl #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.folded #collapse-button .collapse-button-icon:after{transform:none}#collapse-button .collapse-button-icon:after,#collapse-button .collapse-button-label{transition:all .1s ease-in-out}li#wp-admin-bar-menu-toggle{display:none}.customize-support #menu-appearance a[href="themes.php?page=custom-background"],.customize-support #menu-appearance a[href="themes.php?page=custom-header"]{display:none}@media only screen and (max-width:960px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-right:36px}.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{width:36px}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{top:0;right:36px}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em;margin-left:-1px;padding:6px 0;z-index:9999}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-right-width:5px}.auto-fold #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-right:12px}.auto-fold #adminmenu .wp-menu-name{position:absolute;right:-999px}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{height:30px;width:34px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{min-height:34px}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:16px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}.auto-fold #adminmenu li.menu-top:hover,.auto-fold #adminmenu li.opensub>a.menu-top,.auto-fold #adminmenu li>a.menu-top:focus{z-index:10000}.auto-fold #collapse-menu .collapse-button-label{display:none}.auto-fold #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.auto-fold #collapse-button .collapse-button-icon:after{transform:none}}@media screen and (max-width:782px){.auto-fold #wpcontent{position:relative;margin-right:0;padding-right:10px}.sticky-menu #adminmenuwrap{position:relative;z-index:auto;top:0}.auto-fold #adminmenu,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{position:absolute;width:190px;z-index:100}.auto-fold #adminmenuback{position:fixed}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{display:none}.auto-fold .wp-responsive-open #adminmenuback,.auto-fold .wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu li.menu-top{width:100%}.auto-fold #adminmenu li a{font-size:16px;padding:5px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding:10px 20px 10px 10px}.auto-fold #adminmenu .wp-menu-name{position:static}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li.current>a.current:after{border-width:8px;margin-top:-8px}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{display:none}#adminmenu .wp-submenu{position:relative;display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold #adminmenu .wp-menu-open .wp-submenu{position:relative;display:block;top:0;right:-1px;box-shadow:none}.auto-fold #adminmenu .selected .wp-submenu:after,.auto-fold #adminmenu .wp-menu-open .wp-submenu:after{display:none}.auto-fold #adminmenu .opensub .wp-submenu{display:none}.auto-fold #adminmenu .selected .wp-submenu{display:block}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:block}.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{position:relative;right:-1px;left:0;top:0}#adminmenu .wp-not-current-submenu .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border:none}#adminmenu .wp-submenu .wp-submenu-head{display:none}#wp-responsive-toggle{position:fixed;top:5px;right:4px;padding-left:10px;z-index:99999;border:none;box-sizing:border-box}#wpadminbar #wp-admin-bar-menu-toggle a{display:block;padding:0;overflow:hidden;outline:0;text-decoration:none;border:1px solid transparent;background:0 0;height:44px;margin-right:-1px}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#2c3338}li#wp-admin-bar-menu-toggle{display:block}#wpadminbar #wp-admin-bar-menu-toggle a:hover{border:1px solid transparent}#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{content:"\f228";display:inline-block;float:right;font:normal 40px/45px dashicons;vertical-align:middle;outline:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:44px;width:50px;padding:0;border:none;text-align:center;text-decoration:none;box-sizing:border-box}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#72aee6}}@media screen and (max-width:600px){#adminmenuback,#adminmenuwrap{display:none}.wp-responsive-open #adminmenuback,.wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu{top:46px}}css/site-health.css000066600000014476152330733730010303 0ustar00/* Note: Any Site Health selectors that use duplicate styling from the Privacy settings screen are styled in the Privacy section of edit.css */ .health-check-body h2 { line-height: 1.4; } .health-check-body h3 { padding: 0; font-weight: 400; } .site-health-progress-wrapper { margin-bottom: 1rem; } .site-health-progress { display: inline-block; height: 20px; width: 20px; margin: 0; border-radius: 100%; position: relative; font-weight: 600; font-size: 0.4rem; } .site-health-progress-count { position: absolute; display: block; height: 80px; width: 80px; left: 50%; top: 50%; margin-top: -40px; margin-left: -40px; border-radius: 100%; line-height: 6.3; font-size: 2em; } .loading .site-health-progress svg #bar { stroke-dashoffset: 0; stroke: #c3c4c7; animation: loadingPulse 3s infinite ease-in-out; } .site-health-progress svg circle { stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; stroke: #c3c4c7; stroke-width: 2em; } .site-health-progress svg #bar { stroke-dashoffset: 565; stroke: #d63638; } .green .site-health-progress #bar { stroke: #00a32a; } .green .site-health-progress .site-health-progress-label { color: #00a32a; } .orange .site-health-progress #bar { stroke: #dba617; } .orange .site-health-progress .site-health-progress-label { color: #dba617; } .site-health-progress-label { font-weight: 600; line-height: 20px; margin-left: 0.3rem; } @keyframes loadingPulse { 0% { stroke: #c3c4c7; } 50% { stroke: var(--wp-admin-theme-color); } 100% { stroke: #c3c4c7; } } .health-check-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr 1fr 1fr; } .health-check-tabs-wrapper.tab-count-1 { grid-template-columns: 1fr; } .health-check-tabs-wrapper.tab-count-2 { grid-template-columns: 1fr 1fr; } .health-check-tabs-wrapper.tab-count-3 { grid-template-columns: 1fr 1fr 1fr; } .health-check-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .health-check-offscreen-nav-wrapper { position: relative; background: transparent; border: none; } .health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav { left: initial; } .health-check-offscreen-nav { display: none; position: absolute; padding-top: 10px; right: 0; top: 100%; width: 13rem; } .health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav { display: inline-block; } .health-check-offscreen-nav:before { position: absolute; content: ""; width: 0; height: 0; border-style: solid; border-width: 0 10px 5px; border-color: transparent transparent #ffffff; right: 20px; top: 5px; } .health-check-offscreen-nav .health-check-tab { background: #fff; box-shadow: 0 2px 5px 0 rgba( 0, 0, 0, 0.75 ); } .health-check-offscreen-nav .health-check-tab.active { box-shadow: inset 3px 0 #3582c4; font-weight: 600; } .health-check-body { max-width: 800px; margin: 0 auto; } .widefat.health-check-table th { font-size: 13px; } .health-check-table td:first-child { width: 30%; } .health-check-table td { width: 70%; } .health-check-table ul, .health-check-table ol { margin: 0; } .health-check-body li { line-height: 1.5; } .health-check-body .pass::before, .health-check-body .good::before { content: "\f147"; content: "\f147" / ''; color: #00a32a; } .health-check-body .warning::before { content: "\f460"; content: "\f460" / ''; color: #dba617; } .health-check-body .info::before { content: "\f348"; content: "\f348" / ''; color: #72aee6; } .health-check-body .fail::before, .health-check-body .error::before { content: "\f335"; content: "\f335" / ''; color: #d63638; } .site-health-copy-buttons { margin: 1rem 0; } .site-health-copy-buttons .copy-button-wrapper { display: inline-flex; align-items: center; margin: 0.5rem 0 1rem; } .site-health-copy-buttons .success { color: #007017; margin-left: 0.5rem; } .site-status-has-issues.hide { display: none; } .site-health-view-more { text-align: center; } .site-health-issues-wrapper:first-of-type { margin-top: 3rem; } .site-health-issues-wrapper { margin-bottom: 3rem; margin-top: 2rem; } .site-status-all-clear { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; width: 100%; margin: 0 0 3rem; } @media all and (min-width: 784px) { .site-status-all-clear { margin: 2rem 0 5rem; } } .site-status-all-clear.hide { display: none; } .site-status-all-clear .dashicons { font-size: 150px; height: 150px; margin-bottom: 2rem; width: 150px; } .site-status-all-clear .encouragement { font-size: 1.5rem; font-weight: 600; } .site-status-all-clear p { margin: 0; } .wp-core-ui .button.site-health-view-passed { position: relative; padding-right: 40px; padding-left: 20px; } .health-check-wp-paths-sizes.spinner { visibility: visible; float: none; margin: 0 4px; flex-shrink: 0; } /* Styling unique to the dashboard widget. */ #dashboard_site_health .site-health-details { padding-left: 16px; } #dashboard_site_health .site-health-details p:first-child { margin-top: 0; } #dashboard_site_health .site-health-details p:last-child { margin-bottom: 0; } #dashboard_site_health .health-check-widget { display: grid; grid-template-columns: 1fr 2fr; grid-auto-rows: minmax(64px, auto); column-gap: 16px; align-items: center; } #dashboard_site_health .site-health-progress-label { margin-left: 0; } .health-check-widget-title-section { margin-bottom: 0; text-align: center; } @media screen and (max-width: 480px) { #dashboard_site_health .health-check-widget { grid-template-columns: 100%; } } @media screen and (max-width: 782px) { .site-health-issues-wrapper .health-check-accordion-trigger { flex-direction: column; align-items: flex-start; } .health-check-accordion-trigger .badge { margin: 1em 0 0; } .health-check-table { table-layout: fixed; } .health-check-table th, .health-check-table td { box-sizing: border-box; display: block; width: 100%; word-wrap: break-word; } .widefat.health-check-table th, .health-check-table td:first-child { width: 100%; padding-bottom: 0; font-weight: 600; } .wp-core-ui .site-health-copy-buttons .copy-button { margin-bottom: 0; } } css/dashboard-rtl.min.css000066600000055507152330733730011404 0ustar00/*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:left;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:left}#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:none!important}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox{border-radius:8px}#dashboard-widgets .postbox-header .hndle{padding:12px 16px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{display:flow-root;min-height:0;margin:0 8px 20px}#dashboard-widgets .meta-box-sortables:not(:empty){margin-bottom:16px}#dashboard-widgets .postbox-container .empty-container{outline:2px dashed rgb(0,0,0,.15);outline-offset:-2px;border-radius:8px;height:250px;margin:4px}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:100px}.is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container{background:rgb(0,0,0,.01)}#dashboard-widgets .postbox-container .empty-container:after{content:attr(data-emptystring);margin:auto;position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);padding:0 2em;text-align:center;color:#646970;font-size:16px;line-height:1.5;display:none}#the-comment-list td.comment p.comment-author{margin-top:0;margin-right:0}#the-comment-list p.comment-author img{float:right;margin-left:8px}#the-comment-list p.comment-author strong a{border:none}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.index-php #screen-meta-links{margin:0 0 8px 20px}.welcome-panel{position:relative;overflow:auto;margin:16px 0;border-radius:8px;font-size:14px;line-height:1.3;clear:both}.welcome-panel h2{margin:0;font-size:48px;font-weight:600;line-height:1.25}.welcome-panel h3{margin:0;font-size:20px;font-weight:400;line-height:1.4}.welcome-panel p{font-size:inherit;line-height:inherit}.welcome-panel-header{position:relative;color:#fff}.welcome-panel-header-image{position:absolute!important;top:0;left:0;bottom:0;right:0;z-index:0!important;overflow:hidden}.welcome-panel-header-image svg{display:block;margin:auto;width:100%;height:100%}.rtl .welcome-panel-header-image svg{transform:scaleX(-1)}.welcome-panel-header *{color:inherit;position:relative;z-index:1}.welcome-panel-header a:focus,.welcome-panel-header a:hover{color:inherit;text-decoration:none}.welcome-panel .welcome-panel-close:focus,.welcome-panel-header a:focus{outline-color:currentColor;outline-offset:1px;box-shadow:none}.welcome-panel-header p{margin:.5em 0 0;font-size:20px;line-height:1.4}.welcome-panel .welcome-panel-close{display:flex;align-items:center;position:absolute;top:10px;left:10px;padding:10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none;z-index:1}.welcome-panel .welcome-panel-close:before{transition:all .1s ease-in-out;content:'\f335';font-size:24px;color:#fff}.welcome-panel .welcome-panel-close{color:#fff}.welcome-panel .welcome-panel-close:focus,.welcome-panel .welcome-panel-close:focus::before,.welcome-panel .welcome-panel-close:hover,.welcome-panel .welcome-panel-close:hover::before{color:#fff972}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px 13px;padding:12px 36px;height:auto;line-height:1.4285714;white-space:normal}.welcome-panel-content{min-height:400px;display:flex;flex-direction:column;justify-content:space-between}.welcome-panel-header-wrap{background-color:#151515}.welcome-panel-header{box-sizing:border-box;margin-right:auto;margin-left:auto;max-width:1500px;width:100%;padding:48px 48px 80px 0}.welcome-panel .welcome-panel-column-container{box-sizing:border-box;width:100%;clear:both;display:grid;z-index:1;padding:24px;grid-template-columns:repeat(3,1fr);gap:32px;align-self:flex-end;background:#fff;border:1px solid #c3c4c7;border-top:0;border-radius:0 0 8px 8px}[class*=welcome-panel-icon]{height:60px;width:60px;background-position:center;background-size:24px 24px;background-repeat:no-repeat;border-radius:100%}.welcome-panel-column>svg{margin-top:4px}.welcome-panel-column{display:grid;grid-template-columns:min-content 1fr;gap:24px}.welcome-panel-icon-pages{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E")}.welcome-panel-icon-layout{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E")}.welcome-panel-icon-styles{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E")}.welcome-panel .welcome-widgets-menus{line-height:1.14285714}.welcome-panel .welcome-panel-column ul{margin:.8em 0 1em 1em}.welcome-panel li{font-size:14px}.welcome-panel li a{text-decoration:none}.welcome-panel .welcome-panel-column li{line-height:1.14285714;list-style-type:none;padding:0 0 8px}.welcome-panel .welcome-icon{background:0 0!important}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li span:before,.welcome-panel .welcome-icon:before{color:#646970;font:normal 20px/1 dashicons;display:inline-block;padding:0 0 0 10px;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:"\f119";content:"\f119"/'';top:-3px}.welcome-panel .welcome-add-page:before{content:"\f132";content:"\f132"/'';top:-1px}.welcome-panel .welcome-setup-home:before{content:"\f102";content:"\f102"/'';top:-1px}.welcome-panel .welcome-view-site:before{content:"\f115";content:"\f115"/'';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:"\f116";content:"\f116"/'';top:-2px}.welcome-panel .welcome-widgets:before{content:"\f538";content:"\f538"/'';top:-2px}.welcome-panel .welcome-menus:before{content:"\f163";content:"\f163"/'';top:-2px}.welcome-panel .welcome-comments:before{content:"\f117";content:"\f117"/'';top:-1px}.welcome-panel .welcome-learn-more:before{content:"\f118";content:"\f118"/'';top:-1px}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li>span:before{padding:0 0 0 5px;content:"\f159";content:"\f159"/''}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:"\f105";content:"\f105"/''}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:"\f109";content:"\f109"/''}#dashboard_right_now .comment-count a:before{content:"\f101";content:"\f101"/''}#dashboard_right_now .comment-mod-count a:before{content:"\f125";content:"\f125"/''}#dashboard_right_now .storage-count a:before{content:"\f104";content:"\f104"/''}#dashboard_right_now .storage-count.warning a:before{content:"\f153";content:"\f153"/''}#dashboard_right_now .search-engines-info:before{content:"\f348";content:"\f348"/'';color:#d63638}.community-events-errors{margin:0}.community-events-loading{padding:10px 12px 8px}.community-events{margin-bottom:6px;padding:0 12px}.community-events .spinner{margin:0 2px 0}.community-events form[aria-hidden=true],.community-events-errors [aria-hidden=true],.community-events-errors[aria-hidden=true],.community-events-loading[aria-hidden=true],.community-events[aria-hidden=true]{display:none}.community-events .activity-block:first-child,.community-events h2{padding-top:12px;padding-bottom:10px}.community-events-form{margin:15px 0 5px;display:flex;gap:5px;align-items:center;flex-wrap:wrap}.community-events-form .regular-text{width:40%;margin:0;min-height:32px;padding:0 8px}#dashboard-widgets .community-events-form .button{min-height:32px;line-height:2.30769231;padding:0 12px}.community-events li.event-none{border-right:4px solid var(--wp-admin-theme-color,#3858e9)}#dashboard-widgets .community-events li.event-none a{text-decoration:underline}.community-events-form label{line-height:2.14285714}.community-events .activity-block>p{margin-bottom:0;display:inline}.community-events-toggle-location{vertical-align:middle}#dashboard-widgets .community-events-cancel.button-link{text-decoration:underline}.community-events ul{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);padding-right:0;padding-left:0;padding-bottom:0}.community-events li{margin:0;padding:8px 12px;color:#2c3338}.community-events li:first-child{border-top:1px solid #e9e9ed}.community-events li~li{border-top:1px solid #e9e9ed}.community-events .activity-block.last{border-bottom:1px solid #e9e9ed;padding-top:0;margin-top:-1px}.community-events .event-info{display:block}.community-events .ce-separator::before{content:"\2022";content:"\2022"/''}.event-icon{height:18px;padding-left:10px;width:18px;display:none}.event-icon:before{color:#646970;font-size:18px}.event-meetup .event-icon:before{content:"\f484";content:"\f484"/''}.event-wordcamp .event-icon:before{content:"\f486";content:"\f486"/''}.community-events .event-title{font-weight:600;display:block}.community-events .event-date,.community-events .event-time{display:block}.community-events-footer{margin-top:0;margin-bottom:0;padding:12px;border-top:1px solid #f0f0f1;color:#646970}.community-events-footer .screen-reader-text{height:inherit;white-space:nowrap}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .widget-loading{padding:12px 12px 0;margin-bottom:1em!important}#dashboard_primary .inside .notice{margin:0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form p{margin-top:0}.rssSummary{color:#646970;margin-top:4px}#dashboard_primary .rss-widget{font-size:13px;padding:0 12px}#dashboard_primary .rss-widget:last-child{border-bottom:none;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#646970}#dashboard_primary .rss-widget span.rss-date{margin-right:12px}#dashboard_primary .rss-widget ul li{padding:4px 0;margin:0}#dashboard_right_now ul{margin:0;display:inline-block;width:100%}#dashboard_right_now li{width:50%;float:right;margin-bottom:10px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{float:left;position:relative;top:-5px;margin-right:5px}#dashboard_right_now p.search-engines-info{margin:1em 0}.mu-storage{overflow:hidden}#dashboard-widgets h3.mu-storage{margin:0 0 10px;padding:0;font-size:14px;font-weight:400}#network_dashboard_right_now p input{margin:2px 1px;vertical-align:middle}#dashboard_right_now .sub{color:#50575e;background:#f6f7f7;border-top:1px solid #f0f0f1;padding:10px 12px 6px}#dashboard_right_now .sub h3{color:#50575e}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d63638}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #f0f0f1;border-width:1px 0 1px 1px}#dashboard_quick_press form{margin:12px}#dashboard_quick_press .drafts{padding:10px 0 0}#dashboard_quick_press label{display:inline-block;margin-bottom:4px}#dashboard_quick_press input,#dashboard_quick_press textarea{box-sizing:border-box;margin:0}#dashboard-widgets .postbox form .submit{margin:-39px 0;float:left}#description-wrap{margin-top:12px}#quick-press textarea#content{min-height:90px;max-height:1300px;margin:0 0 8px;padding:8px 12px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #f0f0f1}#dashboard_quick_press .drafts abbr{border:none}#dashboard_quick_press .drafts .view-all{float:left;margin:0 0 0 12px}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#646970}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{word-wrap:break-word}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{margin:0 0 0 5px}#dashboard-widgets h3,#dashboard-widgets h4,#dashboard_quick_press .drafts h2{margin:0 12px 8px;padding:0;font-size:14px;font-weight:400;color:#1d2327}#dashboard_quick_press .drafts h2{line-height:inherit}#dashboard-widgets .inside h3,#dashboard-widgets .inside h4{margin-right:0;margin-left:0}#dashboard_activity .comment-meta span.approve:before{content:"\f227";content:"\f227"/'';font:20px/.5 dashicons;margin-right:5px;vertical-align:middle;position:relative;top:-1px;margin-left:2px}#dashboard_activity .inside{margin:0;padding:0 12px}#dashboard_activity .no-activity{overflow:hidden;padding:12px 0;text-align:center}#dashboard_activity .no-activity p{color:#646970;font-size:16px}#dashboard_activity .subsubsub{float:none;border-top:1px solid #f0f0f1;margin:0 -12px;padding:8px 12px 4px}#dashboard_activity .subsubsub a .count,#dashboard_activity .subsubsub a.current .count{color:#646970}#future-posts ul,#published-posts ul{margin:8px -12px 0 -12px}#future-posts li,#published-posts li{display:grid;grid-template-columns:clamp(160px,calc(2vw + 140px),200px) auto;column-gap:10px;color:#646970;padding:4px 12px}#future-posts li:nth-child(odd),#published-posts li:nth-child(odd){background-color:#f6f7f7}.activity-block{border-bottom:1px solid #f0f0f1;margin:0 -12px 6px -12px;padding:8px 12px 4px}.activity-block:last-child{border-bottom:none;margin-bottom:0}.activity-block .subsubsub li{color:#646970}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0;margin-right:12px}#activity-widget #the-comment-list .comment-item{background:#f6f7f7;padding:12px;position:relative}#activity-widget #the-comment-list .avatar{position:absolute;top:12px}#activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar{padding-right:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #f0f0f1}#activity-widget #the-comment-list .unapproved{background-color:#fcf9e8}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;right:0;top:0;bottom:0;background:#d63638;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.postbox .button-link .edit-box{display:none}.edit-box{opacity:0}.edit-box:focus,.hndle:hover .edit-box{opacity:1}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:none}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets .button-link,#dashboard-widgets li a,.community-events-footer a{text-decoration:none}#dashboard-widgets h2 a{text-decoration:underline}#dashboard-widgets .hndle .postbox-title-action{float:left;line-height:1.2}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative;margin:0 -12px}#activity-widget #the-comment-list .comment,#activity-widget #the-comment-list .pingback{box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{min-height:50px;margin:0;padding:12px}#latest-comments #the-comment-list .pingback{padding-right:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:none}#latest-comments #the-comment-list .comment-meta{line-height:1.5;margin:0;color:#646970}#latest-comments #the-comment-list .comment-meta cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;font-weight:600;line-height:1.4}.rss-widget ul li{line-height:1.5;margin-bottom:12px}.rss-widget span.rss-date{color:#646970;font-size:13px;margin-right:3px}.rss-widget cite{display:block;text-align:left;margin:0 0 1em;padding:0}.rss-widget cite:before{content:"\2014";content:"\2014"/''}.dashboard-comment-wrap{word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-left:128px}#dashboard_browser_nag .browser-icon{margin-top:-32px}#dashboard_browser_nag.postbox{background-color:#b32d2e;background-image:none;border-color:#b32d2e;color:#fff;box-shadow:none}#dashboard_browser_nag.postbox h2{border-bottom-color:transparent;background:transparent none;color:#fff;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.postbox .postbox-header{border-color:transparent}#dashboard_browser_nag h2.hndle{border:none;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}#dashboard_php_nag .dashicons-warning{color:#dba617;padding-left:6px}#dashboard_php_nag.php-no-security-updates .dashicons-warning,#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning{color:#d63638}#dashboard_php_nag h2{display:inline-block}#dashboard_php_nag p{margin:12px 0}.bigger-bolder-text{font-weight:600;font-size:14px}@media only screen and (min-width:1600px){.welcome-panel .welcome-panel-column-container{display:flex;justify-content:center}.welcome-panel-column{width:100%;max-width:460px}}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#dashboard-widgets .meta-box-sortables{min-height:0}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{min-height:100px}#dashboard-widgets .meta-box-sortables.empty-container{margin-bottom:0}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-3 .empty-container:after,#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container{border:none;height:0;min-height:0;margin-bottom:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left}#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1801px){#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column li{display:inline-block;margin-left:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:1180px) and (min-width:783px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (max-width:782px){.welcome-panel .welcome-panel-column-container{grid-template-columns:1fr;box-sizing:border-box;padding:32px;width:100%}.welcome-panel .welcome-panel-column-content{max-width:520px}.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:40px;white-space:nowrap;width:20px;height:20px;padding:5px;top:5px;left:5px}.welcome-panel .welcome-panel-close::before{position:absolute;top:5px;right:-35px}#dashboard-widgets h2{padding:12px}#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 0 5px 10px}.community-events-toggle-location{height:38px;vertical-align:baseline}#community-events-submit{margin-bottom:0}#dashboard-widgets .community-events-cancel.button-link,.community-events-form label{font-size:14px;line-height:normal;padding:6px 0;border:1px solid transparent}}@media screen and (max-width:600px){.welcome-panel-header{padding:32px 32px 64px}.welcome-panel-header-image{display:none}}@media screen and (max-width:480px){.welcome-panel-column{gap:16px}}@media screen and (max-width:360px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (min-width:355px){.community-events .event-info{display:table-row;float:right;max-width:59%}.event-icon,.event-icon[aria-hidden=true]{display:table-cell}.event-info-inner{display:table-cell}.community-events .event-date-time{float:left;max-width:39%}.community-events .event-date,.community-events .event-time{text-align:left}}css/media.min.css000066600000054555152330733730007737 0ustar00/*! This file is auto-generated */ .media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dcdcde;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-list-subtitle{display:block}.media-list-title{display:block}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:600}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.describe-toggle-off,.describe-toggle-on{display:block;line-height:2.76923076;float:right;margin-right:10px}.media-item .attachment-tools{display:flex;align-items:center}.media-item .edit-attachment{padding:14px 0;display:block;margin-right:10px}.media-item .edit-attachment.copy-to-clipboard-container{display:flex;margin-top:0}.media-item-copy-container .success{line-height:0}.media-item button .copy-attachment-url{margin-top:14px}.media-item .copy-to-clipboard-container{margin-top:7px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}.media-upload-form .media-item{min-height:70px;margin-bottom:1px;position:relative;width:100%;background:#fff}.media-upload-form .media-item,.media-upload-form .media-item .error{box-shadow:0 1px 0 #dcdcde}#media-items:empty{border:0 none}.media-item .filename{padding:14px 2px;overflow:hidden;margin-left:4px}.media-item .pinkynail{float:left;margin:14px;max-height:70px;max-width:70px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .progress{display:inline-block;height:22px;margin:0 6px 7px;width:200px;line-height:2em;padding:0;overflow:hidden;border-radius:22px;background:#dcdcde;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;border-radius:22px;background-color:#2271b1;box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}#html-upload-ui #async-upload{font-size:1em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{width:auto;margin:0 0 1px}.media-upload-form .media-item .error{padding:10px 0 10px 14px;min-height:50px}.media-item .error-div button.dismiss{float:right;margin:0 10px 0 15px}.find-box{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-left:-300px;position:fixed;top:30px;bottom:30px;left:50%;z-index:100105}.find-box-head{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 36px 0 16px;position:absolute;top:0;left:0;right:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;left:105px;position:absolute}#find-posts-response,.find-box-search{position:relative}#find-posts-input,#find-posts-search{float:left}#find-posts-input{width:140px;height:28px;margin:0 4px 0 0}.widefat .found-radio{padding-right:0;width:16px}#find-posts-close{width:36px;height:36px;border:none;padding:0;position:absolute;top:0;right:0;cursor:pointer;text-align:center;background:0 0;color:#646970}#find-posts-close:focus,#find-posts-close:hover{color:var(--wp-admin-theme-color-darker-20,#183ad6)}#find-posts-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}#find-posts-close:before{font:normal 20px/36px dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f158";content:"\f158"/''}.find-box-buttons{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;left:0;right:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}#delete_all{margin-bottom:0}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;left:0;right:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;z-index:100100}.drag-drop #drag-drop-area{border:4px dashed #c3c4c7;height:200px}.drag-drop .drag-drop-inside{margin:60px auto 0;width:250px}.drag-drop-inside p{font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#9ec2e6}#plupload-upload-ui{position:relative}.post-type-attachment .wp-filter select{margin:0 6px 0 0}.media-frame.mode-grid,.media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper,.media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments,.media-frame.mode-grid .media-frame-content,.media-frame.mode-grid .uploader-inline-content{position:static}.media-frame.mode-grid .media-frame-menu,.media-frame.mode-grid .media-frame-router,.media-frame.mode-grid .media-frame-title{display:none}.media-frame.mode-grid .media-frame-content{background-color:transparent;border:none}.upload-php .mode-grid .media-sidebar{position:relative;width:auto;margin-top:12px;padding:0 16px;border-left:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);background-color:#fff}.upload-php .mode-grid .hide-sidebar .media-sidebar{display:none}.upload-php .mode-grid .media-sidebar .media-uploader-status{border-bottom:none;padding-bottom:0;max-width:100%}.upload-php .mode-grid .media-sidebar .upload-error{margin:12px 0;padding:4px 0 0;border:none;box-shadow:none;background:0 0}.upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2{display:none}.media-frame.mode-grid .uploader-inline{position:relative;top:auto;right:auto;left:auto;bottom:auto;padding-top:0;margin-top:20px;border:4px dashed #c3c4c7}.media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments,.media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper{position:relative;top:94px;padding-bottom:94px}.media-frame.mode-grid .attachment.details:focus,.media-frame.mode-grid .attachment:focus,.media-frame.mode-grid .selected.attachment:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-6px}.media-frame.mode-grid .selected.attachment{box-shadow:inset 0 0 0 5px #f0f0f1,inset 0 0 0 7px #c3c4c7}.media-frame.mode-grid .attachment.details{box-shadow:inset 0 0 0 3px #f0f0f1,inset 0 0 0 7px var(--wp-admin-theme-color,#3858e9)}.media-frame.mode-grid.mode-select .attachment .thumbnail{opacity:.65}.media-frame.mode-select .attachment.selected .thumbnail{opacity:1}.media-frame.mode-grid .media-toolbar{margin-bottom:15px;height:auto}.media-frame.mode-grid .media-toolbar label:not(.media-search-input-label){border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.media-frame.mode-grid .media-toolbar select{margin:0 10px 0 0;min-height:32px;line-height:2.14285714;padding:0 24px 0 8px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:32px;padding:0 8px}.media-frame.mode-grid .media-toolbar-secondary{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.media-frame.mode-grid.mode-edit .media-toolbar-secondary>.select-mode-toggle-button{margin:0 8px 0 0;height:100%}.media-frame.mode-grid .attachments-browser .bulk-select{display:inline-block;margin:0 10px 0 0}.media-frame.mode-grid .search{margin-top:0}.media-frame-content .media-search-input-label{vertical-align:baseline}.attachments-browser .media-toolbar-secondary>.media-button{margin-right:10px}.media-frame.mode-select .attachments-browser.fixed .media-toolbar{position:fixed;top:32px;left:auto;right:20px;margin-top:0}.media-frame.mode-grid .attachments-browser{padding:0}.media-frame.mode-grid .attachments-browser .attachments{padding:2px}.media-frame.mode-grid .attachments-browser .no-media{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;text-align:center}.edit-attachment-frame{display:block;height:100%;width:100%}.edit-attachment-frame .edit-media-header{overflow:hidden}.upload-php .media-modal-close .media-modal-icon:before{content:"\f335";content:"\f335"/'';font-size:22px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{cursor:pointer;color:#787c82;background-color:transparent;height:50px;width:50px;padding:0;position:absolute;text-align:center;border:0;border-left:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.upload-php .media-modal-close{top:0;right:0}.edit-attachment-frame .edit-media-header .left{right:102px}.edit-attachment-frame .edit-media-header .right{right:51px}.edit-attachment-frame .media-frame-title{left:0;right:150px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .left:hover,.edit-attachment-frame .edit-media-header .right:focus,.edit-attachment-frame .edit-media-header .right:hover,.upload-php .media-modal-close:focus,.upload-php .media-modal-close:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .right:focus,.upload-php .media-modal-close:focus{outline:2px solid transparent;outline-offset:-2px}.upload-php .media-modal-close:focus .media-modal-icon:before,.upload-php .media-modal-close:hover .media-modal-icon:before{color:#000}.edit-attachment-frame .edit-media-header .left:before{content:"\f341";content:"\f341"/''}.edit-attachment-frame .edit-media-header .right:before{content:"\f345";content:"\f345"/''}.edit-attachment-frame .edit-media-header [disabled],.edit-attachment-frame .edit-media-header [disabled]:hover{color:#c3c4c7;background:inherit;cursor:default}.edit-attachment-frame .media-frame-content,.edit-attachment-frame .media-frame-router{left:0}.edit-attachment-frame .media-frame-content{border-bottom:none;bottom:0;top:50px}.edit-attachment-frame .attachment-details{position:absolute;overflow:auto;top:0;bottom:0;right:0;left:0;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1)}.edit-attachment-frame .attachment-media-view{float:left;width:65%;height:100%}.edit-attachment-frame .attachment-media-view .thumbnail{box-sizing:border-box;padding:16px;height:100%}.edit-attachment-frame .attachment-media-view .details-image{display:block;margin:0 auto 16px;max-width:100%;max-height:90%;max-height:calc(100% - 56px);background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.edit-attachment-frame .attachment-media-view .details-image.icon{background:0 0}.edit-attachment-frame .attachment-media-view .attachment-actions{text-align:center}.edit-attachment-frame .wp-media-wrapper{margin-bottom:12px}.edit-attachment-frame input,.edit-attachment-frame textarea{padding:4px 8px;line-height:1.42857143}.edit-attachment-frame .attachment-info{overflow:auto;box-sizing:border-box;margin-bottom:0;padding:12px 16px 0;width:35%;height:100%;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1);border-bottom:0;border-left:1px solid #dcdcde;background:#f6f7f7}.edit-attachment-frame .attachment-info .details,.edit-attachment-frame .attachment-info .settings{position:relative;overflow:hidden;float:none;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #dcdcde}.edit-attachment-frame .attachment-info .filename{font-weight:400;color:#646970}.edit-attachment-frame .attachment-info .thumbnail{margin-bottom:12px}.attachment-info .actions{margin-bottom:16px}.attachment-info .actions a{display:inline;text-decoration:none}.copy-to-clipboard-container{display:flex;align-items:center;margin-top:8px;clear:both}.copy-to-clipboard-container .copy-attachment-url{white-space:normal}.copy-to-clipboard-container .success{color:#007017;margin-left:8px}.wp_attachment_details .attachment-alt-text{margin-bottom:5px}.wp_attachment_details #attachment_alt{max-width:500px;height:3.28571428em}.wp_attachment_details .attachment-alt-text-description{margin-top:5px}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative;padding-top:10px}.image-editor fieldset,.image-editor p{margin:8px 0}.image-editor legend{margin-bottom:5px}.describe .imgedit-wrap .image-editor{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto}.imgedit-panel-content{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:20px}.imgedit-settings{max-width:240px}.imgedit-group-controls>*{display:none}.imgedit-panel-active .imgedit-group-controls>*{display:block}.imgedit-panel-active .imgedit-group-controls>.imgedit-crop-apply{display:flex}.imgedit-crop-apply{gap:4px;flex-wrap:wrap}.wp_attachment_holder .imgedit-wrap .image-editor{float:right;width:250px}.image-editor input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;bottom:0;width:100%;background:#fff;opacity:.7;display:none}.imgedit-wait:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;margin:-10px 0 0 -10px;background:transparent url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}.no-float{float:none}.image-editor .disabled,.media-disabled{color:#a7aaad}.A1B1{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:left}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:left}.imgedit-menu .note-no-rotate{clear:both;margin:0;padding:1em 0 0}.imgedit-menu .button:after,.imgedit-menu .button:before{font:normal 16px/1 dashicons;margin-right:8px;vertical-align:middle;position:relative;top:-2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.imgedit-menu .imgedit-rotate.button:after{content:'\f140';margin-left:2px;margin-right:0}.imgedit-menu .imgedit-rotate.button[aria-expanded=true]:after{content:'\f142'}.imgedit-menu .button.disabled{color:#a7aaad;border-color:#dcdcde;background:#f6f7f7;box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.imgedit-crop:before{content:"\f165";content:"\f165"/''}.imgedit-scale:before{content:"\f211";content:"\f211"/''}.imgedit-rotate:before{content:"\f167";content:"\f167"/''}.imgedit-undo:before{content:"\f171";content:"\f171"/''}.imgedit-redo:before{content:"\f172";content:"\f172"/''}.imgedit-crop-wrap{position:relative}.imgedit-crop-wrap img{background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.imgedit-crop-wrap{padding:20px;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.imgedit-crop{margin:0 8px 0 0}.imgedit-rotate{margin:0 8px 0 3px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 8px 0 3px}.imgedit-thumbnail-preview-group{display:flex;flex-wrap:wrap;column-gap:10px}.imgedit-thumbnail-preview{margin:10px 8px 0 0}.imgedit-thumbnail-preview-caption{display:block}#poststuff .imgedit-group-top h2{display:inline-block;margin:0;padding:0;font-size:14px;line-height:1.4}#poststuff .imgedit-group-top .button-link{text-decoration:none;color:#1d2327}.imgedit-applyto .imgedit-label{display:block;padding:.5em 0 0}.imgedit-help,.imgedit-popup-menu{display:none;padding-bottom:8px}.imgedit-panel-tools>.imgedit-menu{display:flex;column-gap:4px;align-items:flex-start;flex-wrap:wrap}.imgedit-popup-menu{width:calc(100% - 20px);position:absolute;background:#fff;padding:10px;box-shadow:0 3px 6px rgba(0,0,0,.3)}.image-editor .imgedit-menu .imgedit-popup-menu button{display:block;margin:2px 0;width:100%;white-space:break-spaces;line-height:1.5;padding-top:3px;padding-bottom:2px}.imgedit-rotate-menu-container{position:relative}.imgedit-help.imgedit-restore{padding-bottom:0}.image-editor .imgedit-settings .imgedit-help-toggle,.image-editor .imgedit-settings .imgedit-help-toggle:active,.image-editor .imgedit-settings .imgedit-help-toggle:hover{border:1px solid transparent;margin:-1px 0 0 -1px;padding:0;background:0 0;color:var(--wp-admin-theme-color);font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.image-editor .imgedit-settings .imgedit-help-toggle:focus{color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.form-table td.imgedit-response{padding:0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap;font-size:12px;line-height:inherit}span.imgedit-scale-warn{display:flex;align-items:center;margin:4px;gap:4px;color:#b32d2e;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-save-target{margin:8px 0}.imgedit-save-target legend{font-weight:600}.imgedit-group{margin-bottom:20px}.image-editor .imgedit-original-dimensions{display:inline-block}.image-editor .imgedit-crop-ratio input[type=number],.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=number],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale-controls input[type=number],.image-editor .imgedit-scale-controls input[type=text]{width:80px;font-size:14px;padding:0 8px}.imgedit-separator{display:inline-block;width:7px;text-align:center;font-size:13px;color:#3c434a}.image-editor .imgedit-scale-button-wrapper{margin-top:.3077em;display:block}.image-editor .imgedit-scale-controls .button{margin-bottom:0}audio,video{display:inline-block;max-width:100%}.wp-core-ui .mejs-container{width:100%;max-width:100%}.wp-core-ui .mejs-container *{box-sizing:border-box}.wp-core-ui .mejs-time{box-sizing:content-box}@media print,(min-resolution:120dpi){.imgedit-wait:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.edit-attachment-frame input,.edit-attachment-frame textarea{line-height:1.5}.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5}.wp_attachment_details textarea{line-height:1.5}.wp_attachment_details #attachment_alt{height:3.375em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{font-size:13px;line-height:1.5}.media-upload-form .media-item.error{padding:1px 10px}.media-upload-form .media-item .error{padding:10px 0 10px 12px}.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale input[type=text]{font-size:16px;padding:6px 10px}.wp_attachment_holder .imgedit-wrap .image-editor,.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{float:none;width:auto;max-width:none;padding-bottom:16px}.copy-to-clipboard-container .success{font-size:14px}.imgedit-crop-wrap img{width:100%}.media-modal .imgedit-wrap .image-editor,.media-modal .imgedit-wrap .imgedit-panel-content{position:initial!important}.media-modal .imgedit-wrap .image-editor{box-sizing:border-box;width:100%!important}.image-editor .imgedit-scale-button-wrapper{display:inline-block}}@media only screen and (max-width:600px){.media-item-wrapper{grid-template-columns:1fr}}@media only screen and (max-width:1120px){#wp-media-grid .wp-filter .attachment-filters{max-width:100%}}@media only screen and (max-width:1000px){.wp-filter p.search-box{float:none;width:100%;display:flex;flex-wrap:nowrap;column-gap:0}.wp-filter p.search-box #media-search-input{width:100%}}@media only screen and (max-width:782px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:46px;right:10px}.media-frame.mode-grid .media-toolbar select{min-height:40px;padding:0 24px 0 12px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:40px;padding:0 12px}.wp-filter p.search-box{margin-bottom:0}}@media only screen and (max-width:600px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:0}}@media only screen and (max-width:480px){.edit-attachment-frame .media-frame-title{right:110px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{width:40px;height:40px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{line-height:40px!important}.edit-attachment-frame .edit-media-header .left{right:82px}.edit-attachment-frame .edit-media-header .right{right:41px}.edit-attachment-frame .media-frame-content{top:40px}.edit-attachment-frame .attachment-media-view{float:none;height:auto;width:100%}.edit-attachment-frame .attachment-info{height:auto;width:100%}}@media only screen and (max-width:640px),screen and (max-height:400px){.upload-php .mode-grid .media-sidebar{max-width:100%}}@media only screen and (max-width:375px){.media-item .attachment-tools{align-items:baseline}.media-item .edit-attachment.copy-to-clipboard-container{flex-direction:column}.copy-to-clipboard-container .success{line-height:normal;margin-top:10px}}css/code-editor.min.css000066600000002633152330733730011044 0ustar00/*! This file is auto-generated */ .wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;left:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 12px 3px 28px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-left:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-left:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:ltr}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:left}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}css/list-tables-rtl.css000066600000131313152330733730011104 0ustar00/*! This file is auto-generated */ .response-links { display: block; margin-bottom: 1em; } .response-links a { display: block; } .response-links a.comments-edit-item-link { font-weight: 600; } .response-links a.comments-view-item-link { font-size: 12px; } .post-com-count-wrapper strong { font-weight: 400; } .comments-view-item-link { display: inline-block; clear: both; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: nowrap; word-wrap: normal; } /* comments bubble common */ .column-response .post-com-count, .column-comments .post-com-count { display: inline-block; vertical-align: top; } /* comments bubble approved */ .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 5px; } .column-response .comment-count-no-comments, .column-response .comment-count-approved, .column-comments .comment-count-no-comments, .column-comments .comment-count-approved { box-sizing: border-box; display: block; padding: 0 8px; min-width: 24px; height: 2em; border-radius: 5px; background-color: #646970; color: #fff; font-size: 11px; line-height: 1.90909090; text-align: center; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: ""; display: block; margin-right: 8px; width: 0; height: 0; border-top: 5px solid #646970; border-left: 5px solid transparent; } .column-response a.post-com-count-approved:hover .comment-count-approved, .column-response a.post-com-count-approved:focus .comment-count-approved, .column-comments a.post-com-count-approved:hover .comment-count-approved, .column-comments a.post-com-count-approved:focus .comment-count-approved { background: #3858e9; } .column-response a.post-com-count-approved:hover:after, .column-response a.post-com-count-approved:focus:after, .column-comments a.post-com-count-approved:hover:after, .column-comments a.post-com-count-approved:focus:after { border-top-color: #3858e9; } /* @todo: consider to use a single rule for these counters and the admin menu counters. */ .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: relative; right: -3px; padding: 0 5px; min-width: 7px; height: 17px; border: 2px solid #fff; border-radius: 11px; background: #d63638; color: #fff; font-size: 9px; line-height: 1.88888888; text-align: center; } .column-response .post-com-count-no-pending, .column-comments .post-com-count-no-pending { display: none; } /* comments */ .commentlist li { padding: 1em 1em .2em; margin: 0; border-bottom: 1px solid #c3c4c7; } .commentlist li li { border-bottom: 0; padding: 0; } .commentlist p { padding: 0; margin: 0 0 .8em; } #submitted-on, .submitted-on { color: #50575e; } /* reply to comments */ #replyrow td { padding: 2px; } #replysubmit { margin: 0; padding: 5px 7px 10px; overflow: hidden; } #replysubmit .reply-submit-buttons { margin-bottom: 0; } #replysubmit .button { margin-left: 5px; } #replysubmit .spinner { float: none; margin: -4px 0 0; } #replyrow.inline-edit-row fieldset.comment-reply { font-size: inherit; line-height: inherit; } #replyrow legend { margin: 0; padding: .2em 5px 0; font-size: 13px; line-height: 1.4; font-weight: 600; } #replyrow.inline-edit-row label { display: inline; vertical-align: baseline; line-height: inherit; } #edithead .inside, #commentsdiv #edithead .inside { float: right; padding: 3px 5px 2px 0; margin: 0; text-align: center; } #edithead .inside input { width: 180px; } #edithead label { padding: 2px 0; } #replycontainer { padding: 5px; } #replycontent { height: 120px; box-shadow: none; } #replyerror { border-color: #dcdcde; background-color: #f6f7f7; } /* @todo: is this used? */ .commentlist .avatar { vertical-align: text-top; } #the-comment-list tr.undo, #the-comment-list div.undo { background-color: #f6f7f7; } #the-comment-list .unapproved th, #the-comment-list .unapproved td { background-color: #fcf9e8; } #the-comment-list .unapproved th.check-column { border-right: 4px solid #d63638; } #the-comment-list .unapproved th.check-column input { margin-right: 4px; } #the-comment-list .approve a { color: #007017; } #the-comment-list .unapprove a { color: #996800; } #the-comment-list th, #the-comment-list td { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #the-comment-list tr:last-child th, #the-comment-list tr:last-child td { box-shadow: none; } #the-comment-list tr.unapproved + tr.approved th, #the-comment-list tr.unapproved + tr.approved td { border-top: 1px solid rgba(0, 0, 0, 0.03); } /* table vim shortcuts */ .vim-current, .vim-current th, .vim-current td { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important; } th .comment-grey-bubble { width: 16px; /* Make sure the link clickable area fills the entire table header. */ position: relative; top: 2px; } th .comment-grey-bubble:before { content: "\f101"; content: "\f101" / ''; font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; right: -4px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } /*------------------------------------------------------------------------------ 10.0 - List Posts (/Pages/etc) ------------------------------------------------------------------------------*/ table.fixed { table-layout: fixed; } .fixed .column-rating, .fixed .column-visible { width: 8%; } .fixed .column-posts, .fixed .column-parent, .fixed .column-links, .fixed .column-author, .fixed .column-format { width: 10%; } .fixed .column-date { width: 14%; } .column-date span[title] { -webkit-text-decoration: dotted underline; text-decoration: dotted underline; } .fixed .column-posts { width: 74px; } .fixed .column-role, .fixed .column-posts { hyphens: auto; } .fixed .column-comment .comment-author { display: none; } .fixed .column-response, .fixed .column-categories, .fixed .column-tags, .fixed .column-rel, .fixed .column-role { width: 15%; } .fixed .column-slug { width: 25%; } .fixed .column-locations { width: 35%; } .fixed .column-comments { width: 5.5em; text-align: right; } .fixed .column-comments .vers { padding-right: 3px; } td.column-title strong, td.plugin-title strong { display: block; margin-bottom: .2em; font-size: 14px; } td.column-title p, td.plugin-title p { margin: 6px 0; } /* Media file column */ table.media .column-title .media-icon { float: right; min-height: 60px; margin: 0 0 0 9px; } table.media .column-title .media-icon img { max-width: 60px; height: auto; vertical-align: top; /* Remove descender white-space. */ } table.media .column-title .has-media-icon ~ .row-actions { margin-right: 70px; /* 60px image + margin */ } table.media .column-title .filename { margin-bottom: 0.2em; } /* Media Copy to clipboard row action */ .media .row-actions .copy-to-clipboard-container { display: inline; position: relative; } .media .row-actions .copy-to-clipboard-container .success { position: absolute; right: 50%; transform: translate(50%, -100%); background: #000; color: #fff; border-radius: 5px; margin: 0; padding: 2px 5px; } /* @todo: pick a consistent list table selector */ .wp-list-table a { transition: none; } #the-list tr:last-child td, #the-list tr:last-child th { border-bottom: none !important; box-shadow: none; } #comments-form .fixed .column-author { width: 20%; } #commentsdiv.postbox .inside { margin: 0; padding: 0; } #commentsdiv .inside .row-actions { line-height: 1.38461538; } #commentsdiv .inside .column-author { width: 25%; } #commentsdiv .column-comment p { margin: 0.6em 0; padding: 0; } #commentsdiv #replyrow td { padding: 0; } #commentsdiv p { padding: 8px 10px; margin: 0; } #commentsdiv .comments-box { border: 0 none; } #commentsdiv .comments-box thead th, #commentsdiv .comments-box thead td { background: transparent; padding: 0 7px 4px; } #commentsdiv .comments-box tr:last-child td { border-bottom: 0 none; } #commentsdiv #edithead .inside input { width: 160px; } .sorting-indicators { display: grid; } .sorting-indicator { display: block; width: 10px; height: 4px; margin-top: 4px; margin-right: 7px; } .sorting-indicator:before { font: normal 20px/1 dashicons; display: inline-block; padding: 0; top: -4px; right: -8px; line-height: 0.5; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #a7aaad; } .sorting-indicator.asc:before { content: "\f142"; content: "\f142" / ''; } .sorting-indicator.desc:before { content: "\f140"; content: "\f140" / ''; } th.sorted.desc .sorting-indicator.desc:before { color: #1d2327; } th.sorted.asc .sorting-indicator.asc:before { color: #1d2327; } th.sorted.asc a:focus .sorting-indicator.asc:before, th.sorted.asc:hover .sorting-indicator.asc:before, th.sorted.desc a:focus .sorting-indicator.desc:before, th.sorted.desc:hover .sorting-indicator.desc:before { color: #a7aaad; } th.sorted.asc a:focus .sorting-indicator.desc:before, th.sorted.asc:hover .sorting-indicator.desc:before, th.sorted.desc a:focus .sorting-indicator.asc:before, th.sorted.desc:hover .sorting-indicator.asc:before { color: #1d2327; } .wp-list-table .toggle-row { position: absolute; left: 8px; top: 10px; display: none; padding: 0; width: 40px; height: 40px; border: none; outline: none; background: transparent; } .wp-list-table .toggle-row:hover { cursor: pointer; } .wp-list-table .toggle-row:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-list-table .toggle-row:active { box-shadow: none; } .wp-list-table .toggle-row:before { position: absolute; top: -5px; right: 10px; border-radius: 50%; display: block; padding: 1px 0 1px 2px; color: #3c434a; /* same as table headers sort arrows */ content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-list-table .is-expanded .toggle-row:before { content: "\f142"; content: "\f142" / ''; } .check-column { position: relative; } .check-column label { box-sizing: border-box; width: 100%; height: 100%; display: block; position: absolute; top: 0; right: 0; } .check-column input { position: relative; z-index: 1; } .check-column .label-covers-full-cell:hover + input:not(:disabled) { box-shadow: 0 0 0 1px #2271b1; } .check-column label:hover, .check-column input:hover + label { background: rgba(0, 0, 0, 0.05); } .locked-indicator { display: none; margin-right: 6px; height: 20px; width: 16px; } .locked-indicator-icon:before { color: #8c8f94; content: "\f160"; content: "\f160" / ''; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .locked-info { display: none; margin-top: 4px; } .locked-text { vertical-align: top; } .wp-locked .locked-indicator, .wp-locked .locked-info { display: block; } tr.wp-locked .check-column label, tr.wp-locked .check-column input[type="checkbox"], tr.wp-locked .row-actions .inline, tr.wp-locked .row-actions .trash { display: none; } #menu-locations-wrap .widefat { width: 60%; } .widefat th.sortable, .widefat th.sorted { padding: 0; } th.sortable a, th.sorted a { display: block; overflow: hidden; padding: 8px; } th.sortable a:focus, th.sorted a:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } th.sortable a span, th.sorted a span { float: right; cursor: pointer; } .tablenav-pages .current-page { vertical-align: top; margin: 0 0 0 2px; font-size: 13px; text-align: center; min-height: 32px; padding: 0 8px; } .tablenav .total-pages { margin-left: 2px; } .tablenav #table-paging { margin-right: 2px; } .tablenav { clear: both; height: 32px; margin: 6px 0 4px; vertical-align: middle; } .tablenav.themes { max-width: 98%; } .tablenav .tablenav-pages { float: left; margin: 0 0 9px; } .tablenav .no-pages, .tablenav .one-page .pagination-links { display: none; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { display: inline-block; vertical-align: baseline; min-width: 32px; min-height: 32px; margin: 0; padding: 0 4px; font-size: 16px; line-height: 1.875; /* 30px for 32px height */ text-align: center; } .tablenav .displaying-num { margin-left: 7px; } .tablenav .one-page .displaying-num { display: inline-block; margin: 5px 0; } .tablenav .actions { padding: 0 0 0 8px; } .wp-filter .actions { display: inline-block; vertical-align: middle; } .tablenav .delete { margin-left: 20px; } /* This view-switcher is still used on multisite. */ .tablenav .view-switch { float: left; margin: 0 5px; padding-top: 3px; } .wp-filter .view-switch { display: inline-block; vertical-align: middle; padding: 12px 0; margin: 0 2px 0 8px; } .media-toolbar.wp-filter .view-switch { margin: 0 2px 0 12px; } .view-switch a { float: right; width: 28px; height: 28px; text-align: center; line-height: 1.84615384; text-decoration: none; } .view-switch a:before { color: #c3c4c7; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .view-switch a:hover:before, .view-switch a:focus:before { color: #787c82; } .view-switch a.current:before { color: #2271b1; } .view-switch .view-list:before { content: "\f163"; content: "\f163" / ''; } .view-switch .view-excerpt:before { content: "\f164"; content: "\f164" / ''; } .view-switch .view-grid:before { content: "\f509"; content: "\f509" / ''; } .filter { float: right; margin: -5px 10px 0 0; } .filter .subsubsub { margin-right: -10px; margin-top: 13px; } .screen-per-page { width: 4em; } #posts-filter .wp-filter { margin-bottom: 0; } #posts-filter fieldset { float: right; margin: 0 0 1em 1.5ex; padding: 0; } #posts-filter fieldset legend { padding: 0 1px .2em 0; } p.pagenav { margin: 0; display: inline; } .pagenav span { font-weight: 600; margin: 0 6px; } .row-title { font-size: 14px !important; font-weight: 600; } .column-comment .comment-author { margin-bottom: 0.6em; } .column-author img, .column-username img, .column-comment .comment-author img { float: right; margin-left: 10px; margin-top: 1px; } .row-actions { color: #646970; font-size: 13px; padding: 2px 0 0; position: relative; right: -9999em; } /* ticket #34150 */ .rtl .row-actions a { display: inline-block; } .row-actions .network_only, .row-actions .network_active { color: #000; } .no-js .row-actions, tr:hover .row-actions, .mobile .row-actions, .row-actions.visible, .comment-item:hover .row-actions { position: static; } /* deprecated */ .row-actions-visible { padding: 2px 0 0; } /*------------------------------------------------------------------------------ 10.1 - Inline Editing ------------------------------------------------------------------------------*/ /* .quick-edit* is for Quick Edit .bulk-edit* is for Bulk Edit .inline-edit* is for everything */ /* Layout */ #wpbody-content .inline-edit-row fieldset { float: right; margin: 0; padding: 0 0 0 12px; width: 100%; box-sizing: border-box; } #wpbody-content .inline-edit-row td fieldset:last-of-type { padding-left: 0; } tr.inline-edit-row td { padding: 0; /* Prevents the focus style on .inline-edit-wrapper from being cut-off */ position: relative; } .inline-edit-wrapper { display: flow-root; padding: 0 12px; border: 1px solid transparent; border-radius: 4px; } .inline-edit-wrapper:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #wpbody-content .quick-edit-row-post .inline-edit-col-left { width: 40%; } #wpbody-content .quick-edit-row-post .inline-edit-col-right { width: 39%; } #wpbody-content .inline-edit-row-post .inline-edit-col-center { width: 20%; } #wpbody-content .quick-edit-row-page .inline-edit-col-left { width: 50%; } #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right { width: 50%; } #wpbody-content .bulk-edit-row .inline-edit-col-left { width: 30%; } #wpbody-content .bulk-edit-row-page .inline-edit-col-right { width: 69%; } #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: left; width: 69%; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 27px; } .inline-edit-row fieldset .inline-edit-group { clear: both; line-height: 2.5; } .inline-edit-row .submit { display: flex; flex-wrap: wrap; align-items: center; clear: both; margin: 0; padding: 0.5em 0 1em; } .inline-edit-save.submit .button { margin-left: 8px; } .inline-edit-save .spinner { float: none; margin: 0; } .inline-edit-row .notice-error { box-sizing: border-box; min-width: 100%; margin-top: 1em; } .inline-edit-row .notice-error .error { margin: 0.5em 0; padding: 2px; } /* Positioning */ /* Needs higher specificity for the padding */ #the-list .inline-edit-row .inline-edit-legend { margin: 0; padding: 0.2em 0; line-height: 2.5; font-weight: 600; } .inline-edit-row fieldset span.title, .inline-edit-row fieldset span.checkbox-title { margin: 0; padding: 0; } .inline-edit-row fieldset label, .inline-edit-row fieldset span.inline-edit-categories-label { display: block; margin: .2em 0; line-height: 2.5; } .inline-edit-row fieldset.inline-edit-date label { display: inline-block; margin: 0; vertical-align: baseline; line-height: 2; } .inline-edit-row fieldset label.inline-edit-tags { margin-top: 0; } .inline-edit-row fieldset label.inline-edit-tags span.title { margin: .2em 0; width: auto; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { display: block; float: right; width: 6em; line-height: 2.5; } #posts-filter fieldset.inline-edit-date legend { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { display: block; margin-right: 6em; } .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; padding-left: 0.5em; } .inline-edit-row .inline-edit-or { margin: .2em 0 .2em 6px; line-height: 2.5; } .inline-edit-row .input-text-wrap input[type=text] { width: 100%; } .inline-edit-row fieldset label input[type=checkbox] { vertical-align: middle; } .inline-edit-row fieldset label textarea { width: 100%; height: 4em; vertical-align: top; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 32px; padding: 0 8px 0 8px; } .inline-edit-row select { line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding-left: 24px; } #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: 50%; } #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { margin-left: 0.5em } .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { width: 6em; } /* Styling */ .inline-edit-row .inline-edit-legend { text-transform: uppercase; } /* Specific Elements */ .inline-edit-row fieldset .inline-edit-date { float: right; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { vertical-align: middle; text-align: center; padding: 0 4px; } .inline-edit-row fieldset label input.inline-edit-password-input { width: 8em; } #bulk-titles-list, #bulk-titles-list li, .inline-edit-row fieldset ul.cat-checklist li, .inline-edit-row fieldset ul.cat-checklist input { margin: 0; position: relative; /* RTL fix, #WP27629 */ } .inline-edit-row fieldset ul.cat-checklist input { margin-top: -1px; margin-right: 3px; } .inline-edit-row fieldset label input.inline-edit-menu-order-input { width: 3em; } .inline-edit-row fieldset label input.inline-edit-slug-input { width: 75%; } .inline-edit-row select[name="post_parent"], .inline-edit-row select[name="page_template"] { max-width: 80%; } .quick-edit-row-post fieldset label.inline-edit-status { float: right; } #bulk-titles, ul.cat-checklist { height: 14em; border: 1px solid #ddd; margin: 0 0 5px; padding: 0.2em 5px; overflow-y: scroll; } ul.cat-checklist input[name="post_category[]"]:indeterminate::before { content: ''; border-top: 2px solid grey; width: 65%; height: 2px; position: absolute; top: calc( 50% + 1px ); right: 50%; transform: translate( 50%, -50% ); } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { display: inline-block; margin: 0; padding: 3px 0; line-height: 20px; vertical-align: top; } #bulk-titles .ntdelitem { padding-right: 23px; } #bulk-titles .ntdelbutton { width: 26px; height: 26px; margin: 0 -26px 0 0; text-align: center; border-radius: 3px; } #bulk-titles .ntdelbutton:before { display: inline-block; vertical-align: top; } #bulk-titles .ntdelbutton:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; /* Reset inherited offset from Gutenberg */ outline-offset: 0; } /*------------------------------------------------------------------------------ 17.0 - Plugins ------------------------------------------------------------------------------*/ .plugins tbody th.check-column, .plugins tbody { padding: 8px 2px 0 0; } .plugins tbody th.check-column input[type=checkbox] { margin-top: 4px; } .updates-table .plugin-title p { margin-top: 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-right: 6px; } .plugins, .plugins th, .plugins td { color: #000; } .plugins tr { background: #fff; } .plugins p { margin: 0 4px; padding: 0; } .plugins .desc p { margin: 0 0 8px; } .plugins td.desc { line-height: 1.5; } .plugins .desc ul, .plugins .desc ol { margin: 0 2em 0 0; } .plugins .desc ul { list-style-type: disc; } .plugins .row-actions { font-size: 13px; padding: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th { padding: 10px 9px; } .plugins .active td, .plugins .active th { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .plugins .update th, .plugins .update td { border-bottom: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th, .plugin-install #the-list td, .upgrade .plugins td, .upgrade .plugins th { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive td { border-top: 1px solid rgba(0, 0, 0, 0.03); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #dcdcde; } .plugins .update td, .plugins .update th, .upgrade .plugins tr:last-of-type td, .upgrade .plugins tr:last-of-type th, .plugins tr.active + tr.inactive.update th, .plugins tr.active + tr.inactive.update td, .plugins .updated td, .plugins .updated th, .plugins tr.active + tr.inactive.updated th, .plugins tr.active + tr.inactive.updated td { box-shadow: none; } .plugins .active th.check-column, .plugin-update-tr.active td { border-right: 4px solid var(--wp-admin-theme-color); } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-left: 12px; white-space: nowrap; } .plugins .plugin-title .dashicons, .plugins .plugin-title img.plugin-icon, .plugins .plugin-title img.updates-table-screenshot { float: right; padding: 0 0 0 10px; width: 64px; height: 64px; } .plugins .plugin-title .dashicons:before { padding: 2px; background-color: #f0f0f1; box-shadow: inset 0 0 10px rgba(167, 170, 173, 0.15); font-size: 60px; color: #c3c4c7; } #update-themes-table .plugin-title img.updates-table-screenshot, #update-themes-table .plugin-title .dashicons { width: 85px; } .plugins .column-auto-updates { width: 14.2em; } .plugins .inactive .plugin-title strong { font-weight: 400; } .plugins .second, .plugins .row-actions { padding: 0 0 5px; } .plugins .row-actions { white-space: normal; min-width: 12em; } .plugins .update .second, .plugins .update .row-actions, .plugins .updated .second, .plugins .updated .row-actions { padding-bottom: 0; } .plugins-php .widefat tfoot th, .plugins-php .widefat tfoot td { border-top-style: solid; border-top-width: 1px; } .plugins .plugin-update-tr .plugin-update { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); overflow: hidden; /* clearfix */ padding: 0; } .plugins .plugin-update-tr .notice, .plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */ margin: 5px 40px 15px 20px; } .plugins .notice p { margin: 0.5em 0; } .plugins .plugin-description a, .plugins .plugin-update a, .updates-table .plugin-title a { text-decoration: underline; } .plugins tr.paused th.check-column { border-right: 4px solid #b32d2e; } .plugins tr.paused th, .plugins tr.paused td { background-color: #f6f7f7; } .plugins tr.paused .plugin-title, .plugins .paused .dashicons-warning { color: #b32d2e; } .plugins .paused .error-display p, .plugins .paused .error-display code { font-size: 90%; color: rgba(0, 0, 0, 0.7); } .plugins .resume-link { color: #b32d2e; } .plugin-card .update-now:before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 16px/1.875 dashicons; /* line-height 1.875 = 30px to match button */ margin: 0 -2px 0 5px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .plugin-card .updating-message:before { content: "\f463"; content: "\f463" / ''; animation: rotation 2s infinite linear; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(-359deg); } } .plugin-card .updated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } .plugin-card .updated-message:before, .plugin-card .updating-message:before { line-height: 1; position: relative; top: -2px; vertical-align: middle; } .plugin-install-php #the-list { display: flex; flex-wrap: wrap; } .plugin-install-php .plugin-card { display: flex; flex-direction: column; justify-content: space-between; } .plugin-install-php h2 { clear: both; } .plugin-install-php h3 { margin: 2.5em 0 8px; } .plugin-install-php .wp-filter { margin-bottom: 0; } /* Plugin card table view */ .plugin-group { overflow: hidden; /* clearfix */ margin-top: 1.5em; } .plugin-group h3 { margin-top: 0; } .plugin-card { float: right; margin: 0 8px 16px; width: 48.5%; width: calc( 50% - 8px ); background-color: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .plugin-card:nth-child(odd) { clear: both; margin-right: 0; } .plugin-card:nth-child(even) { margin-left: 0; } @media screen and (min-width: 1600px) and ( max-width: 2299px ) { .plugin-card { width: 30%; width: calc( 33.1% - 8px ); } .plugin-card:nth-child(odd) { clear: none; margin-right: 8px; } .plugin-card:nth-child(even) { margin-left: 8px; } .plugin-card:nth-child(3n+1) { clear: both; margin-right: 0; } .plugin-card:nth-child(3n) { margin-left: 0; } } @media screen and (min-width: 2300px) { .plugin-card { width: 25%; width: calc( 25% - 12px ); } .plugin-card:nth-child(odd) { clear: none; margin-right: 8px; } .plugin-card:nth-child(even) { margin-left: 8px; } .plugin-card:nth-child(4n+1) { clear: both; margin-right: 0; } .plugin-card:nth-child(4n) { margin-left: 0; } } .plugin-card-top { position: relative; padding: 16px; min-height: 135px; } div.action-links, .plugin-action-buttons { margin: 0; /* Override existing margins */ } .plugin-card h3 { margin: 0 0 16px 12px; font-size: 18px; line-height: 1.3; } .plugin-card .desc { margin-inline: 0; } .plugin-card .name, .plugin-card .desc > p { margin-right: 148px; } @media (min-width: 1101px) { .plugin-card .name, .plugin-card .desc > p { margin-left: 128px; } } @media (min-width: 481px) and (max-width: 781px) { .plugin-card .name, .plugin-card .desc > p { margin-left: 128px; } } .plugin-card .column-description { display: flex; flex-direction: column; justify-content: flex-start; } .plugin-card .column-description > p { margin-top: 0; } .plugin-card .column-description p:empty { display: none; } .plugin-card .notice.plugin-dependencies { margin: auto 20px 20px; padding: 15px; } .plugin-card .plugin-dependencies-explainer-text { margin-block: 0; } .plugin-card .plugin-dependency { align-items: center; display: flex; flex-wrap: wrap; margin-top: .5em; column-gap: 1%; row-gap: .5em; } .plugin-card .plugin-dependency:nth-child(2), .plugin-card .plugin-dependency:last-child { margin-top: 1em; } .plugin-card .plugin-dependency-name { flex-basis: 74%; } .plugin-card .plugin-dependency .more-details-link { margin-right: auto; } .rtl .plugin-card .plugin-dependency .more-details-link { margin-left: auto; } @media (max-width: 939px) { .plugin-card .plugin-dependency-name { flex-basis: 69%; } } .plugins #the-list .required-by, .plugins #the-list .requires { margin-top: 1em; } .plugin-card .action-links { position: absolute; top: 20px; left: 20px; width: 120px; } .plugin-action-buttons { clear: left; float: left; margin-bottom: 1em; text-align: left; } .plugin-action-buttons li { margin-bottom: 10px; } .plugin-card-bottom { clear: both; padding: 16px; background-color: #f6f7f7; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; } .plugin-card-bottom .star-rating { display: inline; } .plugin-card-update-failed .update-now { font-weight: 600; } .plugin-card-update-failed .notice-error { margin: 0; padding-right: 16px; box-shadow: 0 -1px 0 #dcdcde; } .plugin-card-update-failed .plugin-card-bottom { display: none; } .plugin-card .column-rating { line-height: 1.76923076; } .plugin-card .column-rating, .plugin-card .column-updated { margin-bottom: 4px; } .plugin-card .column-rating, .plugin-card .column-downloaded { float: right; clear: right; max-width: 180px; } .plugin-card .column-updated, .plugin-card .column-compatibility { text-align: left; float: left; clear: left; width: 65%; width: calc( 100% - 180px ); } .plugin-card .column-compatibility span:before { font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; right: -2px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } .plugin-card .column-compatibility .compatibility-incompatible:before { content: "\f158"; content: "\f158" / ''; color: #d63638; } .plugin-card .column-compatibility .compatibility-compatible:before { content: "\f147"; content: "\f147" / ''; color: #007017; } .plugin-card .notice { margin: 20px 20px 0; } .plugin-card .plugin-icon { position: absolute; top: 20px; right: 20px; width: 128px; height: 128px; margin: 0 0 20px 20px; } .no-plugin-results { color: #646970; /* same as no themes and no media */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; width: 100%; text-align: center; } /* ms */ /* Background Color for Site Status */ .wp-list-table .site-deleted, .wp-list-table tr.site-deleted, .wp-list-table .site-archived, .wp-list-table tr.site-archived { background: #fcf0f1; } .wp-list-table .site-spammed, .wp-list-table tr.site-spammed, .wp-list-table .site-mature, .wp-list-table tr.site-mature { background: #fcf9e8; } .sites.fixed .column-lastupdated, .sites.fixed .column-registered { width: 20%; } .sites.fixed .column-users { width: 80px; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { .plugin-card .action-links { position: static; margin-right: 148px; width: auto; } .plugin-action-buttons { float: none; margin: 1em 0 0; text-align: right; } .plugin-action-buttons li { display: inline-block; vertical-align: middle; } .plugin-action-buttons li .button { margin-left: 20px; } .plugin-card h3 { margin-left: 24px; } .plugin-card .name, .plugin-card .desc { margin-left: 0; } .plugin-card .desc p:first-of-type { margin-top: 0; } } @media screen and (max-width: 782px) { /* WP List Table Options & Filters */ .tablenav { height: auto; } .tablenav.top { margin: 20px 0 5px; } .tablenav.bottom { position: relative; margin-top: 15px; } .tablenav br { display: none; } .tablenav br.clear { display: block; } .tablenav.top .actions, .tablenav .view-switch { display: none; } .view-switch a { width: 36px; height: 36px; line-height: 2.53846153; } /* Pagination */ .tablenav.top .displaying-num { display: none; } .tablenav.bottom .displaying-num { position: absolute; left: 0; top: 11px; margin: 0; font-size: 14px; } .tablenav .tablenav-pages { width: 100%; text-align: center; margin: 0 0 25px; } .tablenav.bottom .tablenav-pages { margin-top: 25px; } .tablenav.top .tablenav-pages.one-page { display: none; } .tablenav.bottom .actions select { margin-bottom: 5px; } .tablenav.bottom .actions.alignleft + .actions.alignleft { clear: right; margin-top: 10px; } .tablenav.bottom .tablenav-pages.one-page { margin-top: 15px; height: 0; } .tablenav-pages .pagination-links { font-size: 16px; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { min-width: 40px; min-height: 40px; padding: 10px 8px; font-size: 18px; line-height: 1; } .tablenav-pages .pagination-links .current-page { min-width: 40px; padding: 10px 6px; font-size: 16px; line-height: 1.125; } /* WP List Table Adjustments: General */ .form-wrap > p { display: none; } .wp-list-table th.column-primary ~ th, .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { display: none; } .wp-list-table thead th.column-primary { width: 100%; } /* Checkboxes need to show */ .wp-list-table tr th.check-column { display: table-cell; } .wp-list-table .check-column { width: 2.5em; } .wp-list-table .column-primary .toggle-row { display: block; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { position: relative; clear: both; width: auto !important; /* needs to override some columns that are more specifically targeted */ } .wp-list-table td.column-primary { padding-left: 50px; /* space for toggle button */ } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { padding: 3px 35% 3px 8px; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { position: absolute; right: 10px; /* match padding of regular table cell */ display: block; overflow: hidden; width: 32%; /* leave a little space for a gutter */ content: attr(data-colname); white-space: nowrap; text-overflow: ellipsis; } .wp-list-table .is-expanded td:not(.hidden) { display: block !important; overflow: hidden; /* clearfix */ } /* Special cases */ .widefat .num, .column-posts { text-align: right; } #comments-form .fixed .column-author, #commentsdiv .fixed .column-author { display: none !important; } .fixed .column-comment .comment-author { display: block; } /* Comment author hidden via Screen Options */ .fixed .column-author.hidden ~ .column-comment .comment-author { display: none; } #the-comment-list .is-expanded td { box-shadow: none; } #the-comment-list .is-expanded td:last-child { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } /* Show comment bubble as text instead */ .post-com-count .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: none; } .column-response .post-com-count [aria-hidden="true"], .column-comments .post-com-count [aria-hidden="true"] { display: none; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: normal; } .column-response .post-com-count-wrapper > a, .column-comments .post-com-count-wrapper > a { display: block; } .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 0; margin-left: 0.5em; } .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: static; height: auto; min-width: 0; padding: 0; border: none; border-radius: 0; background: none; color: #b32d2e; font-size: inherit; line-height: inherit; text-align: right; } .column-response .post-com-count-pending:hover, .column-comments .post-com-count-pending:hover { color: #d63638; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 10px; } .row-actions { margin-left: -8px; padding-top: 4px; } /* Make row actions more easy to select on mobile */ body:not(.plugins-php) .row-actions { display: flex; flex-wrap: wrap; gap: 8px; color: transparent; } .row-actions span { font-size: 0; } .row-actions span a, .row-actions span .button-link { display: inline-block; padding: 4px 0 4px 16px; font-size: 13px; line-height: 1.5; } .row-actions span.approve:before, .row-actions span.unapprove:before { content: "| "; } /* Quick Edit and Bulk Edit */ #wpbody-content .quick-edit-row-post .inline-edit-col-left, #wpbody-content .quick-edit-row-post .inline-edit-col-right, #wpbody-content .inline-edit-row-post .inline-edit-col-center, #wpbody-content .quick-edit-row-page .inline-edit-col-left, #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-left, #wpbody-content .bulk-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: none; width: 100%; padding: 0; } #the-list .inline-edit-row .inline-edit-legend, .inline-edit-row span.title { font-size: 16px; } .inline-edit-row p.howto { font-size: 14px; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 0; } #wpbody-content .quick-edit-row fieldset .inline-edit-col label, #wpbody-content .quick-edit-row fieldset .inline-edit-group label, #wpbody-content .bulk-edit-row fieldset .inline-edit-col label, #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: none; float: none; margin-bottom: 5px; } #wpbody .bulk-edit-row fieldset select { display: block; width: 100%; max-width: none; box-sizing: border-box; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 40px; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { font-size: 16px; line-height: 2; padding: 3px 4px; } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { padding: 6px 0; font-size: 16px; line-height: 28px; } #bulk-titles .ntdelitem { padding-right: 37px; } #bulk-titles .ntdelbutton { width: 40px; height: 40px; margin: 0 -40px 0 0; overflow: hidden; } #bulk-titles .ntdelbutton:before { font-size: 20px; line-height: 28px; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { float: none; } .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { margin-right: 0; } .inline-edit-row .inline-edit-or { margin: 0 0 0 6px; } #edithead .inside, #commentsdiv #edithead .inside { float: none; text-align: right; padding: 3px 5px; } #commentsdiv #edithead .inside input, #edithead .inside input { width: 100%; } #edithead label { display: block; } /* Updates */ #wpbody-content .updates-table .plugin-title { width: auto; white-space: normal; } /* Links */ .link-manager-php #posts-filter { margin-top: 25px; } .link-manager-php .tablenav.bottom { overflow: hidden; } /* List tables that don't toggle rows */ .comments-box .toggle-row, .wp-list-table.plugins .toggle-row { display: none; } /* Plugin/Theme Management */ #wpbody-content .wp-list-table.plugins td { display: block; width: auto; padding: 10px 9px; /* reset from other list tables that have a label at this width */ } #wpbody-content .wp-list-table.plugins .plugin-deleted-tr td, #wpbody-content .wp-list-table.plugins .no-items td { display: table-cell; } /* Plugin description hidden via Screen Options */ #wpbody-content .wp-list-table.plugins .desc.hidden { display: none; } #wpbody-content .wp-list-table.plugins .column-description { padding-top: 2px; } #wpbody-content .wp-list-table.plugins .plugin-title, #wpbody-content .wp-list-table.plugins .theme-title { padding-left: 12px; white-space: normal; } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-top: 13px; padding-bottom: 4px; } .plugins #the-list tr > td:not(:last-child), .plugins #the-list .update th, .plugins #the-list .update td, .wp-list-table.plugins #the-list .theme-title { box-shadow: none; border-top: none; } .plugins #the-list tr td { border-top: none; } .plugins tbody { padding: 1px 0 0; } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td.column-description, .plugins .plugin-update-tr:before { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td { border-top: none; } /* mimic the checkbox th */ .plugins .plugin-update-tr:before { content: ""; display: table-cell; } .plugins #the-list .plugin-update-tr .plugin-update { border-right: none; } .plugin-update-tr .update-message { margin-right: 0; } .plugins .active.update + .plugin-update-tr:before, .plugins .active.updated + .plugin-update-tr:before { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-right: 4px solid var(--wp-admin-theme-color); } .plugins .plugin-update-tr .update-message { margin-right: 0; } .wp-list-table.plugins .plugin-title strong, .wp-list-table.plugins .theme-title strong { font-size: 1.4em; line-height: 1.5; } .plugins tbody th.check-column { padding: 8px 5px 0 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-right: 9px; } /* Add New plugins page */ table.plugin-install .column-name, table.plugin-install .column-version, table.plugin-install .column-rating, table.plugin-install .column-description { display: block; width: auto; } table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description { display: none; } table.plugin-install td.column-name strong { font-size: 1.4em; line-height: 1.6em; } table.plugin-install #the-list td { box-shadow: none; } table.plugin-install #the-list tr { display: block; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugin-card { margin-right: 0; margin-left: 0; width: 100%; } table.media .column-title .has-media-icon ~ .row-actions { margin-right: 0; clear: both; } } @media screen and (max-width: 480px) { .tablenav-pages .current-page { margin: 0; } .tablenav.bottom .displaying-num { position: relative; top: 0; display: block; text-align: left; padding-bottom: 0.5em; } .tablenav.bottom .tablenav-pages.one-page { height: auto; } .tablenav-pages .tablenav-paging-text { float: right; width: 100%; padding-top: 0.5em; } } css/common-rtl.min.css000066600000170207152330733730010740 0ustar00/*! This file is auto-generated */ #wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%;padding-right:20px}#wpcontent,#wpfooter{margin-right:160px}.folded #wpcontent,.folded #wpfooter{margin-right:36px}#wpbody-content{padding-bottom:65px;float:right;width:100%;overflow:visible}.inner-sidebar{float:left;clear:left;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-left:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:right;clear:right;width:100%;margin-left:-2000px}.has-right-sidebar #post-body-content{margin-left:300px;float:none;width:auto}#col-left{float:right;width:35%}#col-right{float:left;width:65%}#col-left .col-wrap{padding:0 0 0 6px}#col-right .col-wrap{padding:0 6px 0 0}.alignleft{float:right}.alignright{float:left}.textleft{text-align:right}.textright{text-align:left}.clear{clear:both}.wp-clearfix:after{content:"";display:table;clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.button .screen-reader-text{height:auto}.screen-reader-text+.dashicons-external{margin-top:-1px;margin-right:2px;text-decoration:none}.screen-reader-shortcut{position:absolute;top:-1000em;right:6px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#fff;color:var(--wp-admin-theme-color,#3858e9);z-index:100000;line-height:normal}.screen-reader-shortcut:focus{top:-25px;color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);text-decoration:none;outline:2px solid transparent;outline-offset:-2px}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.comment-ays,.feature-filter,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04)}.comment-ays,.feature-filter,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.modal-open{overflow:hidden}body.mobile.modal-open #wpwrap{overflow:hidden;position:fixed;height:100%}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#2271b1;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#135e96}.wp-person a:focus .gravatar,a:focus,a:focus .media-icon img,a:focus .plugin-icon{color:#043959;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#adminmenu a:focus{box-shadow:none;outline:1px solid transparent;outline-offset:-1px}.screen-reader-text:focus{box-shadow:none;outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}.wp-die-message,p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{color:#1d2327;font-size:2em;margin:.67em 0}h2,h3{color:#1d2327;font-size:1.3em;margin:1em 0}.update-core-php h2{margin-top:4em}.update-messages h2,.update-php h2,h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-right:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-right:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr;unicode-bidi:embed}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#f0f0f1;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:right;color:#646970}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#50575e;font-weight:400}.subsubsub a.current{font-weight:600;border:none}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a,.widefat button.button-link{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead td,.widefat thead th{border-bottom:1px solid #c3c4c7}.widefat tfoot td,.widefat tfoot th{border-top:1px solid #c3c4c7;border-bottom:none}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat tfoot td,.widefat th,.widefat thead td{text-align:right;line-height:1.3em;font-size:14px}.updates-table td input,.widefat tfoot td input,.widefat th input,.widefat thead td input{margin:0 8px 0 0;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.updates-table tbody td.check-column,.widefat tbody th.check-column,.widefat tfoot td.check-column,.widefat thead td.check-column{padding:11px 3px 0 0}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:4px;vertical-align:middle}.update-php div.error,.update-php div.updated{margin-right:0}.js-update-details-toggle .dashicons{text-decoration:none}.js-update-details-toggle[aria-expanded=true] .dashicons::before{content:"\f142";content:"\f142"/''}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 2px 0 20px}.postbox .inside h2,.wrap [class$=icon32]+h2,.wrap h1,.wrap>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px;line-height:1.3}.wrap h1.wp-heading-inline{display:inline-block;margin-left:5px}.wp-header-end{visibility:hidden;margin:-2px 0 0}.subtitle{margin:0;padding-right:25px;color:#50575e;font-size:14px;font-weight:400;line-height:1}.subtitle strong{word-break:break-all}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{display:inline-block;position:relative;box-sizing:border-box;cursor:pointer;white-space:nowrap;text-decoration:none;text-shadow:none;top:-3px;margin-right:4px;border:1px solid #2271b1;border-radius:2px;background:0 0;font-size:13px;font-weight:500;min-height:32px;line-height:2.30769231;color:#2271b1;padding:0 12px;-webkit-appearance:none}.wrap .wp-heading-inline+.page-title-action{margin-right:0}.wrap .add-new-h2:hover,.wrap .page-title-action:hover{border-color:#0a4b78;color:#0a4b78}.page-title-action:focus{color:#0a4b78}.form-table th label[for=WPLANG] .dashicons,.form-table th label[for=locale] .dashicons{margin-right:5px}.wrap .page-title-action:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.wrap h1.long-header{padding-left:0}.wp-dialog{background-color:#fff}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.sorthelper{background-color:#c5d9ed}.ac_match,.subsubsub a.current{color:#000}.alternate,.striped>tbody>:nth-child(odd),ul.striped>:nth-child(odd){background-color:#f6f7f7}.bar{background-color:#f0f0f1;border-left-color:var(--wp-admin-theme-color)}.highlight{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);color:#3c434a}.wp-ui-primary{color:#fff;background-color:#2c3338}.wp-ui-text-primary{color:#2c3338}.wp-ui-highlight{color:#fff;background-color:#2271b1}.wp-ui-text-highlight{color:#2271b1}.wp-ui-notification{color:#fff;background-color:#d63638}.wp-ui-text-notification{color:#d63638}.wp-ui-text-icon{color:#8c8f94}img.emoji{display:inline!important;border:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important;box-shadow:none!important}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox .hndle,.side-info,.sidebar-name,.stuffbox .hndle,.widefat tfoot td,.widefat tfoot th,.widefat thead td,.widefat thead th,.widget .widget-top{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#f6f7f7;color:#1d2327}.stuffbox .hndle{border-bottom:1px solid #c3c4c7}.quicktags{background-color:#c3c4c7;color:#000;font-size:12px}.icon32{display:none}#bulk-titles .ntdelbutton:before,.notice-dismiss:before,.tagchecklist .ntdelbutton .remove-tag-icon:before,.welcome-panel .welcome-panel-close:before{background:0 0;color:#1e1e1e;content:"\f335";content:"\f335"/'';display:block;font:normal 20px/1 dashicons;height:1em;text-align:center;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.welcome-panel .welcome-panel-close:before{margin:0}.tagchecklist .ntdelbutton .remove-tag-icon:before{margin-right:2px;border-radius:50%;color:var(--wp-admin-theme-color,#3858e9);line-height:1.1}.tagchecklist .ntdelbutton:focus{outline:0}#bulk-titles .ntdelbutton:focus:before,#bulk-titles .ntdelbutton:hover:before,.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,.tagchecklist .ntdelbutton:hover .remove-tag-icon:before{color:#d63638}.tagchecklist .ntdelbutton:focus .remove-tag-icon:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#646970;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}#all-plugins-table .plugins a.delete,#delete-link a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.privacy_requests .remove-personal-data .remove-personal-data-handle,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete,a#remove-post-thumbnail{color:#b32d2e}#all-plugins-table .plugins a.delete:hover,#delete-link a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.privacy_requests .remove-personal-data .remove-personal-data-handle:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,a#remove-post-thumbnail:hover,abbr.required,span.required{color:#b32d2e;border:none}.application-password-display .success{color:#007017;margin-right:.5rem}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #dcdcde;background:#f6f7f7;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}#delete-action{line-height:2.30769231}#delete-link a{text-decoration:none}#publishing-action{text-align:left;margin-right:auto;line-height:1.9}#publishing-action .spinner{float:none}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}.misc-pub-filename,.word-wrap-break-word{word-wrap:break-word}#minor-publishing-actions{padding:10px 10px 0;text-align:left}#save-post{float:right}.preview{float:left}#sticky-span{margin-right:18px}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:left}#misc-publishing-actions .notice{margin-right:10px;margin-left:10px}.wp-filter{display:inline-block;position:relative;box-sizing:border-box;margin:12px 0 25px;padding:0 10px;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #c3c4c7;background:#fff;color:#50575e;font-size:13px}.wp-filter a{text-decoration:none}.filter-count{display:inline-block;vertical-align:middle;min-width:4em}.filter-count .count,.title-count{display:inline-block;position:relative;top:-1px;padding:4px 10px;border-radius:30px;background:#646970;color:#fff;font-size:14px;font-weight:600}.title-count{display:inline;top:-3px;margin-right:5px;margin-left:20px}.filter-items{float:right}.filter-links{display:inline-block;margin:0}.filter-links li{display:inline-block;margin:0}.filter-links li>a{display:inline-block;margin:0 10px;padding:15px 0;border-bottom:4px solid #fff;color:#646970;cursor:pointer}.filter-links .current{box-shadow:none;border-bottom:4px solid var(--wp-admin-theme-color);color:#1d2327}.filter-links li>a:focus,.filter-links li>a:hover,.show-filters .filter-links a.current:focus,.show-filters .filter-links a.current:hover{color:var(--wp-admin-theme-color)}.wp-filter .search-form{float:left;display:flex;align-items:center;column-gap:.5rem}.wp-filter .search-form input[type=search]{width:280px;max-width:100%}.wp-filter .search-form select{margin:0}.wp-filter .search-form input[type=search]{min-height:32px;padding:0 8px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:32px;line-height:2.14285714;padding:0 8px 0 24px}.wp-filter .button{min-height:32px;line-height:2.30769231;padding:0 12px}.plugin-install-php .wp-filter,.upload-php .wp-filter{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.no-js .wp-filter .search-form.search-plugins .button,.wp-filter .search-form.search-plugins .wp-filter-search,.wp-filter .search-form.search-plugins select{display:inline-block;vertical-align:top}.wp-filter .button.drawer-toggle{margin:10px 9px 0;padding:0 6px 0 10px;border-color:transparent;background-color:transparent;color:#646970;vertical-align:baseline;box-shadow:none}.wp-filter .drawer-toggle:before{content:"\f111";content:"\f111"/'';margin:0 0 0 5px;color:#646970;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-filter .button.drawer-toggle:focus,.wp-filter .button.drawer-toggle:hover,.wp-filter .drawer-toggle:focus:before,.wp-filter .drawer-toggle:hover:before{background-color:transparent;color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:focus:active,.wp-filter .button.drawer-toggle:hover{border-color:transparent}.wp-filter .button.drawer-toggle:focus{border-color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:active{background:0 0;box-shadow:none;transform:none}.wp-filter .drawer-toggle.current:before{color:#fff}.filter-drawer,.wp-filter .favorites-form{display:none;margin:0 -20px 0 -10px;padding:20px;border-top:1px solid #f0f0f1;background:#f6f7f7;overflow:hidden}.wp-filter .favorites-form .favorites-username{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem}.wp-filter .favorites-form .favorites-username input{margin:0}.show-favorites-form .favorites-form,.show-filters .filter-drawer{display:block}.show-filters .filter-links a.current{border-bottom:none}.show-filters .wp-filter .button.drawer-toggle{border-radius:2px;background:#646970;color:#fff}.show-filters .wp-filter .drawer-toggle:focus,.show-filters .wp-filter .drawer-toggle:hover{background:var(--wp-admin-theme-color)}.show-filters .wp-filter .drawer-toggle:before{color:#fff}.filter-group{box-sizing:border-box;position:relative;float:right;margin:0 0 0 1%;padding:20px 10px 10px;width:24%;background:#fff;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04)}.filter-group legend{position:absolute;top:10px;display:block;margin:0;padding:0;font-size:1em;font-weight:600}.filter-drawer .filter-group-feature{margin:28px 0 0;list-style-type:none;font-size:12px}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:1.4}.filter-drawer .filter-group-feature input{position:absolute;margin:0}.filter-group .filter-group-feature label{display:block;margin:14px 23px 14px 0}.filter-drawer .buttons{clear:both;margin-bottom:20px}.filter-drawer .filter-group+.buttons{margin-bottom:0;padding-top:20px}.filter-drawer .buttons .button span{display:inline-block;opacity:.8;font-size:12px;text-indent:10px}.wp-filter .button.clear-filters{display:none;margin-right:10px}.wp-filter .button-link.edit-filters{padding:0 5px;line-height:2.2}.filtered-by{display:none;margin:0}.filtered-by>span{font-weight:600}.filtered-by a{margin-right:10px}.filtered-by .tags{display:flex;align-items:flex-start;flex-wrap:wrap;gap:8px}.filtered-by .tag{padding:4px 8px;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:11px}.filters-applied .filter-drawer .buttons,.filters-applied .filter-drawer br,.filters-applied .filter-group{display:none}.filters-applied .filtered-by{display:flex;align-items:center;flex-wrap:wrap;gap:10px}.filters-applied .filter-drawer{padding:20px}.error .content-filterable,.loading-content .content-filterable,.show-filters .content-filterable,.show-filters .favorites-form,.show-filters.filters-applied.loading-content .content-filterable{display:none}.show-filters.filters-applied .content-filterable{display:block}.loading-content .spinner{display:block;margin:40px auto 0;float:none}@media only screen and (max-width:1138px){.wp-filter .search-form{margin:11px 0}}@media only screen and (max-width:1250px){.wp-filter:has(.plugin-install-search) .search-form{margin:11px 0}}@media only screen and (max-width:1120px){.filter-drawer{border-bottom:1px solid #f0f0f1}.filter-group{margin-bottom:0;margin-top:5px;width:100%}.filter-group li{margin:10px 0}}@media only screen and (max-width:1000px){.filter-items{float:none}.wp-filter .media-toolbar-primary,.wp-filter .media-toolbar-secondary,.wp-filter .search-form{float:none;position:relative;max-width:100%}.wp-filter .search-form{margin:11px 0;flex-wrap:wrap;row-gap:10px}}@media only screen and (max-width:782px){.filter-group li{padding:0;width:50%}.wp-filter .search-form input[type=search]{min-height:40px;padding:0 12px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:40px;padding:0 12px 0 24px}}@media only screen and (max-width:320px){.filter-count{display:none}.wp-filter .drawer-toggle{margin:10px 0}.filter-group li,.wp-filter .search-form input[type=search]{width:100%}}.notice,div.error,div.updated{background:#fff;border:none;border-right:4px solid #c3c4c7;box-shadow:none;margin:5px 15px 2px;padding:8px 12px}div[class=update-message]{padding:.5em 0 .5em 12px}.form-table td .notice p,.notice p,.notice-title,div.error p,div.updated p{margin:.5em 0;padding:0;font-size:13px;line-height:1.54;color:#1e1e1e}div.error a,div.notice a,div.updated a{color:var(--wp-admin-theme-color-darker-10);text-decoration:underline}div.error a:hover,div.notice a:hover,div.updated a:hover{color:var(--wp-admin-theme-color-darker-20)}div.error a:focus,div.notice a:focus,div.updated a:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent;border-radius:2px}.notice-alt{box-shadow:none}.notice-large{padding:10px 20px}.notice-title{display:inline-block;color:#1d2327;font-size:18px}.wp-core-ui .notice.is-dismissible{padding-left:48px;position:relative}.notice-dismiss{position:absolute;top:12px;left:12px;border:none;margin:0;padding:0;background:0 0;color:#1e1e1e;cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:2px}.notice-dismiss:active:before,.notice-dismiss:hover:before{color:#1e1e1e;opacity:.7}.notice-dismiss:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.notice-dismiss:focus:before{color:#1e1e1e}.notice-success,div.updated{border-right-color:#4ab866;background-color:#eff9f1}.notice-success.notice-alt,div.updated.notice-alt{background-color:#eff9f1}.notice-warning{border-right-color:#f0b849;background-color:#fef8ee}.notice-warning.notice-alt{background-color:#fef8ee}.notice-error,div.error{border-right-color:#cc1818;background-color:#fcf0f0}.notice-error.notice-alt,div.error.notice-alt{background-color:#fcf0f0}.notice-info{border-right-color:#3858e9;background-color:#fff}.notice-info.notice-alt{background-color:#fff}#plugin-information-footer .update-now:not(.button-disabled):before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 20px/1 dashicons;margin:-3px -2px 0 5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle}#plugin-information-footer .notice{margin-top:-5px}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updated-message p:before,.updating-message p:before{display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.media-upload-form .notice,.media-upload-form div.error,.wrap .notice,.wrap div.error,.wrap div.updated{margin:5px 0 15px}.wrap #templateside .notice{display:block;margin:0;padding:5px 8px;font-weight:600;text-decoration:none}.wrap #templateside span.notice{margin-right:-12px}#templateside li.notice a{padding:0}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updating-message p:before{color:#d63638;content:"\f463";content:"\f463"/''}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:none}}.theme-overlay .theme-autoupdate .dashicons-update.spin{margin-left:3px}.button.activated-message:before,.button.updated-message:before,.installed p:before,.updated-message p:before{color:#68de7c;content:"\f147";content:"\f147"/''}.update-message.notice-error p:before{color:#d63638;content:"\f534";content:"\f534"/''}.import-php .updating-message:before,.wrap .notice p:before{margin-left:6px}.import-php .updating-message:before{vertical-align:bottom}#update-nag,.update-nag{display:inline-block;line-height:1.4;padding:11px 15px;font-size:14px;margin:25px 2px 0 20px}ul#dismissed-updates{display:none}#dismissed-updates li>p{margin-top:0}#dismiss,#undismiss{margin-right:.5em}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em}.update-php .spinner{float:none;margin:-4px 0}h2.wp-current-version{margin-bottom:.3em}p.update-last-checked{margin-top:0}p.auto-update-status{margin-top:2em;line-height:1.8}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-right:2em}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before{margin:0 -2px 0 5px;line-height:1.9;vertical-align:top}#plugin-information-footer .button{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}#plugin-information-footer .button.activated-message:before,#plugin-information-footer .button.activating-message:before,#plugin-information-footer .button.installed:before,#plugin-information-footer .button.installing:before,#plugin-information-footer .button.updated-message:before,#plugin-information-footer .button.updating-message:before{margin:0 -2px 0 5px;line-height:1.9;vertical-align:top}#plugin-information-footer .button.update-now.updating-message:before{margin:0 -2px 0 5px}.button-primary.activating-message:before,.button-primary.updating-message:before{color:#fff}.button-primary.activated-message:before,.button-primary.updated-message:before{color:#9ec2e6}.button.activated-message,.button.updated-message{transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}#adminmenu a,#catlist a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-right:0}#screen-meta-links{float:left;margin:0 0 0 20px}#screen-meta{display:none;margin:0 0 -1px 20px;position:relative;background-color:#fff;border:1px solid #c3c4c7;border-top:none;box-shadow:0 0 0 transparent}#contextual-help-link-wrap,#screen-options-link-wrap{float:right;margin:0 6px 0 0}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links .show-settings{border:1px solid #c3c4c7;border-top:none;height:auto;margin-bottom:0;padding:0 16px 0 6px;background:#fff;border-radius:0 0 4px 4px;color:#646970;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear}#screen-meta-links .show-settings:active,#screen-meta-links .show-settings:focus,#screen-meta-links .show-settings:hover{color:#2c3338}#screen-meta-links .show-settings:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#screen-meta-links .show-settings:active{transform:none}#screen-meta-links .show-settings:after{left:0;content:"\f140";content:"\f140"/'';font:normal 20px/1.5 dashicons;display:inline-block;padding:0 0 0 5px;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}#screen-meta-links .screen-meta-active:after{content:"\f142";content:"\f142"/''}.toggle-arrow{background-repeat:no-repeat;background-position:top right;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom right}#contextual-help-wrap h5,#screen-options-wrap h5,#screen-options-wrap legend{margin:0;padding:8px 0;font-size:13px;font-weight:600}.metabox-prefs label{display:inline-block;padding-left:15px;line-height:2.35}#number-of-columns{display:inline-block;vertical-align:middle;line-height:30px}.metabox-prefs input[type=checkbox]{margin-top:0;margin-left:6px}.metabox-prefs label input,.metabox-prefs label input[type=checkbox]{margin:-4px 0 0 5px}.metabox-prefs .columns-prefs label input{margin:-1px 0 0 2px}.metabox-prefs label a{display:none}.metabox-prefs .screen-options input,.metabox-prefs .screen-options label{margin-top:0;margin-bottom:0;vertical-align:middle}.metabox-prefs .screen-options .screen-per-page{margin-left:15px;padding-left:0}.metabox-prefs .screen-options label{line-height:2.2;padding-left:0}.screen-options+.screen-options{margin-top:10px}.metabox-prefs .submit{margin-top:1em;padding:0}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;right:150px;left:170px;border:1px solid #c3c4c7;border-top:none;border-bottom:none;background:rgba(var(--wp-admin-theme-color--rgb),.08)}#contextual-help-wrap.no-sidebar #contextual-help-back{left:0;border-left-width:0;border-bottom-left-radius:2px}.contextual-help-tabs{float:right;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 2px 0 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 12px 5px 5px;line-height:1.4;text-decoration:none;border:1px solid transparent;border-left:none;border-right:none}.contextual-help-tabs a:hover{color:#2c3338}.contextual-help-tabs .active{padding:0;margin:0 0 0 -1px;border-right:2px solid var(--wp-admin-theme-color);background:color-mix(in srgb,var(--wp-admin-theme-color) 8%,#fff);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#c3c4c7;color:#2c3338}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 0 12px 22px;line-height:1.6}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-right:18px}.contextual-help-sidebar{width:150px;float:left;padding:0 12px 0 8px;overflow:auto}html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height);box-sizing:border-box;-ms-overflow-style:scrollbar}.widefat td,.widefat th{color:#50575e}.widefat tfoot td,.widefat th,.widefat thead td{font-weight:400}.widefat tfoot tr td,.widefat tfoot tr th,.widefat thead tr td,.widefat thead tr th{color:#2c3338}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#2c3338}.widefat .column-comment p{margin:.6em 0}.widefat .column-comment ul{list-style:initial;margin-right:2em}.postbox-container{float:right}.postbox-container .meta-box-sortables{box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .meta-box-sortables{min-height:1px;position:relative}#post-body-content{width:100%;min-width:463px;float:right}#post-body.columns-2 #postbox-container-1{float:left;margin-left:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{outline:0;height:0;min-height:0}}.js .postbox .hndle,.js .widget .widget-top{cursor:move}.js .postbox .hndle.is-non-sortable,.js .widget .widget-top.is-non-sortable{cursor:auto}.hndle a{font-size:12px;font-weight:400}.postbox-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #c3c4c7}.postbox-header .hndle{flex-grow:1;display:flex;justify-content:space-between;align-items:center}.postbox-header .handle-actions{flex-shrink:0}.postbox .handle-order-higher,.postbox .handle-order-lower,.postbox .handlediv{width:1.62rem;height:1.62rem;margin:0;padding:0;border:0;background:0 0;cursor:pointer}.postbox .handle-order-higher,.postbox .handle-order-lower{color:#646970;width:1.62rem}.edit-post-meta-boxes-area .postbox .handle-order-higher,.edit-post-meta-boxes-area .postbox .handle-order-lower{width:44px;height:44px;color:#1d2327}.postbox .handle-order-higher[aria-disabled=true],.postbox .handle-order-lower[aria-disabled=true]{cursor:default;color:#a7aaad}.sortable-placeholder:not(.empty-container .sortable-placeholder){border:1px dashed #c3c4c7;border-radius:8px;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox.closed .postbox-header{border-bottom:0}.postbox .hndle,.stuffbox .hndle{-webkit-user-select:none;user-select:none}.postbox .inside{padding:0 12px 12px;line-height:1.4;font-size:13px}.stuffbox .inside{padding:0;line-height:1.4;font-size:13px;margin-top:0}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{box-shadow:none}.temp-border{border:1px dotted #c3c4c7}.columns-prefs label{padding:0 0 0 10px}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#comment-status-display,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;right:0;left:0;padding:10px 20px;color:#50575e}#wpfooter p{font-size:13px;margin:0;line-height:1.55}#footer-thankyou{font-style:italic}.nav-tab{float:right;border:1px solid #c3c4c7;border-bottom:none;margin-right:.5em;padding:5px 10px;font-size:14px;line-height:1.71428571;font-weight:600;background:#dcdcde;color:#50575e;text-decoration:none;white-space:nowrap}.nav-tab-small .nav-tab,h3 .nav-tab{padding:5px 14px;font-size:12px;line-height:1.33}.nav-tab:focus,.nav-tab:hover{background-color:#fff;color:#3c434a}.nav-tab-active,.nav-tab:focus:active{box-shadow:none}.nav-tab-active{margin-bottom:-1px;color:#3c434a}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #f0f0f1;background:#f0f0f1;color:#000}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:1px solid #c3c4c7;margin:0;padding-top:9px;padding-bottom:0;line-height:inherit}.nav-tab-wrapper:not(.wp-clearfix):after{content:"";display:table;clear:both}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:left;vertical-align:middle;opacity:.7;width:20px;height:20px;margin:10px 10px 0}.loading-content .spinner,.spinner.is-active{visibility:visible}#template>div{margin-left:16em}#template .notice{margin-top:1em;margin-left:3%}#template .notice p{width:auto}#template .submit .spinner{float:none;vertical-align:top}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2.hndle,.metabox-holder h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.nav-menus-php .metabox-holder h3{padding:0}.accordion-container h3.accordion-section-title{padding:0!important}.accordion-section-title button.accordion-trigger,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger{background:inherit;color:#1d2327;display:block;position:relative;text-align:right;width:100%;outline:0;border:0;padding:10px 14px 11px 10px;line-height:1.5;cursor:pointer}.accordion-section-title button.accordion-trigger:focus,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down{position:absolute;left:10px;right:auto;color:#787c82;border-radius:50px;top:50%;transform:translateY(-50%)}.accordion-section-title:hover span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down{color:#1d2327}.accordion-section-title span.dashicons.dashicons-arrow-down::before,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before{position:relative;right:-1px}.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down{transform:rotate(-180deg) translate(0,50%)}#templateside ul li a{text-decoration:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:right}.attention,.error-message{color:#d63638;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}.media-icon{width:62px;text-align:center}.media-icon img{border:1px solid #dcdcde;border:1px solid rgba(0,0,0,.07)}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-left:14px;line-height:1.4}.importers .import-system{max-width:250px}.importers td.desc{max-width:500px}.importer-action,.importer-desc,.importer-title{display:block}.importer-title{color:#000;font-size:14px;font-weight:400;margin-bottom:.2em}.importer-action{line-height:1.55;color:#50575e;margin-bottom:1em}#post-body #post-body-content #namediv h2,#post-body #post-body-content #namediv h3{margin-top:0}.edit-comment-author{color:#1d2327;border-bottom:1px solid #f0f0f1}#namediv h2 label,#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:100%}#namediv p{margin:10px 0}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:.15}.checkbox{border:none;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom right}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top right;height:17px;float:right}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;transition:color .1s ease-in;text-align:center;color:#dba617}.star-rating .star-full:before{content:"\f155";content:"\f155"/''}.star-rating .star-half:before{content:"\f459";content:"\f459"/''}.rtl .star-rating .star-half{transform:rotateY(-180deg)}.star-rating .star-empty:before{content:"\f154";content:"\f154"/''}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fff;position:fixed;top:0;left:0;bottom:0;right:0;height:100%;padding:0}#plugin-information-scrollable{overflow:auto;-webkit-overflow-scrolling:touch;height:100%}#plugin-information-title{padding:0 26px;background:#f6f7f7;font-size:22px;font-weight:600;line-height:2.4;position:relative;height:56px}#plugin-information-title.with-banner{margin-left:0;height:250px;background-size:cover}#plugin-information-title h2{font-size:1em;font-weight:600;padding:0;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-title.with-banner h2{position:relative;font-family:"Helvetica Neue",sans-serif;display:inline-block;font-size:30px;line-height:1.68;box-sizing:border-box;max-width:100%;padding:0 15px;margin-top:174px;color:#fff;background:rgba(29,35,39,.9);text-shadow:0 1px 3px rgba(0,0,0,.4);box-shadow:0 0 30px rgba(255,255,255,.1);border-radius:8px}#plugin-information-title div.vignette{display:none}#plugin-information-title.with-banner div.vignette{position:absolute;display:block;top:0;right:0;height:250px;width:100%;background:0 0;box-shadow:inset 0 0 50px 4px rgba(0,0,0,.2),inset 0 -1px 0 rgba(0,0,0,.1)}#plugin-information-tabs{padding:0 16px;position:relative;left:0;right:0;min-height:36px;font-size:0;z-index:1;border-bottom:1px solid #dcdcde;background:#f6f7f7}#plugin-information-tabs a{position:relative;display:inline-block;padding:9px 10px;margin:0;height:18px;line-height:1.3;font-size:14px;text-decoration:none;transition:none}#plugin-information-tabs a.current{margin:0 -1px -1px;background:#fff;border:1px solid #dcdcde;border-bottom-color:#fff;padding-top:8px;color:#2c3338}#plugin-information-tabs.with-banner a.current{border-top:none;padding-top:9px}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{overflow:hidden;background:#fff;position:relative;top:0;left:0;right:0;min-height:100%;min-height:calc(100% - 152px)}#plugin-information-content.with-banner{min-height:calc(100% - 346px)}#section-holder{position:relative;top:0;left:250px;bottom:0;right:0;margin-top:10px;margin-left:250px;padding:10px 26px 99999px;margin-bottom:-99932px}#section-holder .notice{margin:5px 0 15px}#section-holder .updated{margin:16px 0}#plugin-information .fyi{float:left;position:relative;top:0;left:0;padding:16px 16px 99999px;margin-bottom:-99932px;width:217px;border-right:1px solid #dcdcde;background:#f6f7f7;color:#646970}#plugin-information .fyi strong{color:#3c434a}#plugin-information .fyi h3{font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-left:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information .fyi-description{margin-top:0}#plugin-information .counter-container{margin:3px 0}#plugin-information .counter-label{float:right;margin-left:5px;min-width:55px}#plugin-information .counter-back{height:17px;width:92px;background-color:#dcdcde;float:right}#plugin-information .counter-bar{height:17px;background-color:#f0c33c;float:right}#plugin-information .counter-count{margin-right:5px}#plugin-information .fyi ul.contributors{margin-top:10px}#plugin-information .fyi ul.contributors li{display:inline-block;margin-left:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li{display:inline-block;margin-left:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li img{vertical-align:middle;margin-left:4px}#plugin-information-footer{padding:13px 16px;position:absolute;left:0;bottom:0;right:0;height:40px;border-top:1px solid #dcdcde;background:#f6f7f7}#plugin-information .section{direction:ltr}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-left:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #c3c4c7}#plugin-information blockquote{border-right:2px solid #dcdcde;color:#646970;font-style:italic;margin:1em 0;padding:0 1em 0 0}#plugin-information .review{overflow:hidden;width:100%;margin-bottom:20px;border-bottom:1px solid #dcdcde}#plugin-information .review-title-section{overflow:hidden}#plugin-information .review-title-section h4{display:inline-block;float:left;margin:0 6px 0 0}#plugin-information .reviewer-info p{clear:both;margin:0;padding-top:2px}#plugin-information .reviewer-info .avatar{float:left;margin:4px 6px 0 0}#plugin-information .reviewer-info .star-rating{float:left}#plugin-information .review-meta{float:left;margin-left:.75em}#plugin-information .review-body{float:left;width:100%}.plugin-version-author-uri{font-size:13px}.update-php .button.button-primary{margin-left:1em}@media screen and (max-width:771px){#plugin-information-title.with-banner{height:100px}#plugin-information-title.with-banner h2{margin-top:30px;font-size:20px;line-height:2;max-width:85%}#plugin-information-title.with-banner div.vignette{height:100px}#plugin-information-tabs{overflow:hidden;padding:0;height:auto}#plugin-information-tabs a.current{margin-bottom:0;border-bottom:none}#plugin-information .fyi{float:none;border:1px solid #dcdcde;position:static;width:auto;margin:26px 26px 0;padding-bottom:0}#section-holder{position:static;margin:0;padding-bottom:70px}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}#TB_window.plugin-details-modal{background:#fff}#TB_window.plugin-details-modal.thickbox-loading:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;z-index:-1;margin:-10px -10px 0 0;background:#fff url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(min-resolution:120dpi){#TB_window.plugin-details-modal.thickbox-loading:before{background-image:url(../images/spinner-2x.gif)}}.plugin-details-modal #TB_title{float:right;height:1px}.plugin-details-modal #TB_ajaxWindowTitle{display:none}.plugin-details-modal #TB_closeWindowButton{right:auto;left:-30px;color:#f0f0f1}.plugin-details-modal #TB_closeWindowButton:focus,.plugin-details-modal #TB_closeWindowButton:hover{outline:0;box-shadow:none}.plugin-details-modal #TB_closeWindowButton:focus::after,.plugin-details-modal #TB_closeWindowButton:hover::after{outline:2px solid;outline-offset:-4px;border-radius:4px}.plugin-details-modal .tb-close-icon{display:none}.plugin-details-modal #TB_closeWindowButton:after{content:"\f335";content:"\f335"/'';font:normal 32px/29px dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:830px){.plugin-details-modal #TB_closeWindowButton{left:0;top:-30px}}img{border:none}.bulk-action-notice .toggle-indicator::before,.meta-box-sortables .postbox .order-higher-indicator::before,.meta-box-sortables .postbox .order-lower-indicator::before,.meta-box-sortables .postbox .toggle-indicator::before,.privacy-text-box .toggle-indicator::before,.sidebar-name .toggle-indicator::before{content:"\f142";content:"\f142"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,.js .widgets-holder-wrap.closed .toggle-indicator::before,.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,.privacy-text-box.closed .toggle-indicator::before{content:"\f140";content:"\f140"/''}.postbox .handle-order-higher .order-higher-indicator::before{content:"\f343";content:"\f343"/'';color:inherit}.postbox .handle-order-lower .order-lower-indicator::before{content:"\f347";content:"\f347"/'';color:inherit}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{position:relative;top:.11rem;width:20px;height:20px}.postbox .handlediv .toggle-indicator::before{width:20px;border-radius:50%}.postbox .handlediv .toggle-indicator::before{position:relative;top:.05rem;text-indent:-1px}.rtl .postbox .handlediv .toggle-indicator::before{text-indent:1px}.bulk-action-notice .toggle-indicator::before{line-height:16px;vertical-align:top;color:#787c82}.postbox .handle-order-higher:focus,.postbox .handle-order-lower:focus,.postbox .handlediv:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);border-radius:50%;outline:2px solid transparent}.postbox .handle-order-higher:focus .order-higher-indicator::before,.postbox .handle-order-lower:focus .order-lower-indicator::before,.postbox .handlediv:focus .toggle-indicator::before{box-shadow:none;outline:1px solid transparent}#photo-add-url-div input[type=text]{width:300px}.alignleft h2{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;background:#f6f7f7;tab-size:4}#template .CodeMirror,#template textarea{width:100%;min-height:60vh;height:calc(100vh - 295px);border:1px solid #dcdcde;box-sizing:border-box}#templateside>h2{padding-top:6px;padding-bottom:7px;margin:0}#templateside ol,#templateside ul{margin:0;padding:0}#templateside>ul{box-sizing:border-box;margin-top:0;overflow:auto;padding:0;min-height:60vh;height:calc(100vh - 295px);background-color:#f6f7f7;border:1px solid #dcdcde;border-right:none}#templateside ul ul{padding-right:12px}#templateside>ul>li>ul[role=group]{padding-right:0}[role=treeitem][aria-expanded=false]>ul{display:none}[role=treeitem] span[aria-hidden]{display:inline;font-family:dashicons;font-size:20px;position:absolute;pointer-events:none}[role=treeitem][aria-expanded=false]>.folder-label .icon:after{content:"\f141";content:"\f139"/''}[role=treeitem][aria-expanded=true]>.folder-label .icon:after{content:"\f140";content:"\f140"/''}[role=treeitem] .folder-label{display:block;padding:3px 12px 3px 3px;cursor:pointer}[role=treeitem]{outline:0}[role=treeitem] .folder-label.focus,[role=treeitem] a:focus{color:#043959;box-shadow:none;outline:2px solid var(--wp-admin-theme-color,#3858e9);outline-offset:-2px}[role=treeitem] .folder-label.hover,[role=treeitem].hover{background-color:#f0f0f1}.tree-folder{margin:0;position:relative}[role=treeitem] li{position:relative}.tree-folder .tree-folder::after{content:"";display:block;position:absolute;right:2px;border-right:1px solid #c3c4c7;top:-13px;bottom:10px}.tree-folder>li::before{content:"";position:absolute;display:block;border-right:1px solid #c3c4c7;right:2px;top:-5px;height:18px;width:7px;border-bottom:1px solid #c3c4c7}.tree-folder>li::after{content:"";position:absolute;display:block;border-right:1px solid #c3c4c7;right:2px;bottom:-7px;top:0}#templateside .current-file{margin:-4px 0 -2px}.tree-folder>.current-file::before{right:4px;height:15px;width:0;border-right:none;top:3px}.tree-folder>.current-file::after{bottom:-4px;height:7px;right:2px;top:auto}.tree-folder li:last-child>.tree-folder::after,.tree-folder>li:last-child::after{display:none}#documentation label,#theme-plugin-editor-label,#theme-plugin-editor-selector{font-weight:600}#theme-plugin-editor-label{display:inline-block;margin-bottom:1em}#docs-list,#template textarea{direction:ltr}.fileedit-sub #plugin,.fileedit-sub #theme{max-width:40%}.fileedit-sub .alignright{text-align:left}#template p{width:97%}#file-editor-linting-error{margin-top:1em;margin-bottom:1em}#file-editor-linting-error>.notice{margin:0;display:inline-block}#file-editor-linting-error>.notice>p{width:auto}#template .submit{margin-top:1em;padding:0}#template .submit input[type=submit][disabled]{cursor:not-allowed}#templateside{float:left;width:16em;word-wrap:break-word}#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside li{margin:4px 0}#templateside li:not(.howto) a,.theme-editor-php .highlight{display:block;padding:3px 12px 3px 0;text-decoration:none}#templateside li.current-file>a{padding-bottom:0}#templateside li:not(.howto)>a:first-of-type{padding-top:0}#templateside li.howto{padding:6px 12px 12px}.theme-editor-php .highlight{margin:-3px -12px -3px 3px}#templateside .highlight{border:none;font-weight:600}.nonessential{color:#646970;font-size:11px;font-style:italic;padding-right:12px}#documentation{margin-top:10px}#documentation label{line-height:1.8;vertical-align:baseline}.fileedit-sub{padding:10px 0 8px;line-height:180%}#file-editor-warning .file-editor-warning-content{margin:25px}.nav-menus-php .item-edit:before,.widget-top .widget-action .toggle-indicator:before,.wp-customizer .accordion-section-title:after,.wp-customizer .control-section .accordion-section-title:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.widget-top .widget-action .toggle-indicator:before{padding:1px 0 1px 2px;border-radius:50%}.handlediv,.item-edit,.postbox .handlediv.button-link,.toggle-indicator{color:#646970}.widget-action{color:#50575e}.handlediv:focus,.handlediv:hover,.item-edit:focus,.item-edit:hover,.postbox .handlediv.button-link:focus,.postbox .handlediv.button-link:hover,.sidebar-name:hover .toggle-indicator,.widget-action:focus,.widget-top:hover .widget-action{color:#1d2327;outline:2px solid transparent}.widget-top .widget-action:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#customize-info.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before,.widget.open .widget-top .widget-action .toggle-indicator:before,.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before{content:"\f142";content:"\f142"/''}/*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.accordion-section{border-bottom:1px solid #dcdcde;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dcdcde}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;position:relative;border-right:1px solid #dcdcde;border-left:1px solid #dcdcde;-webkit-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;left:10px;z-index:1}.accordion-section-title:focus{outline:1px solid transparent}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#a7aaad transparent;outline:1px solid transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title,.customize-pane-child .accordion-section-title{border-right:none;border-left:none;padding:10px 14px 11px 10px;line-height:1.55;background:#fff}.control-section .accordion-section-title:after,.customize-pane-child .accordion-section-title:after{top:calc(50% - 10px)}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#1d2327;background:#f6f7f7}.control-section.open .accordion-section-title{border-bottom:1px solid #dcdcde}.network-admin .edit-site-actions{margin-top:0}.my-sites{display:block;overflow:auto;zoom:1}.my-sites li{display:block;padding:8px 3%;min-height:130px;margin:0}@media only screen and (max-width:599px){.my-sites li{min-height:0}}@media only screen and (min-width:600px){.my-sites.striped li{background-color:#fff;position:relative}.my-sites.striped li:after{content:"";width:1px;height:100%;position:absolute;top:0;left:0;background:#c3c4c7}}@media only screen and (min-width:600px) and (max-width:699px){.my-sites li{float:right;width:44%}.my-sites.striped li{background-color:#fff}.my-sites.striped li:nth-of-type(odd){clear:right}.my-sites.striped li:nth-of-type(2n+2):after{content:none}.my-sites li:nth-of-type(4n+1),.my-sites li:nth-of-type(4n+2){background-color:#f6f7f7}}@media only screen and (min-width:700px) and (max-width:1199px){.my-sites li{float:right;width:27.333333%;background-color:#fff}.my-sites.striped li:nth-of-type(3n+3):after{content:none}.my-sites li:nth-of-type(6n+1),.my-sites li:nth-of-type(6n+2),.my-sites li:nth-of-type(6n+3){background-color:#f6f7f7}}@media only screen and (min-width:1200px) and (max-width:1399px){.my-sites li{float:right;width:21%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(4n+1){clear:right}.my-sites.striped li:nth-of-type(4n+4):after{content:none}.my-sites li:nth-of-type(8n+1),.my-sites li:nth-of-type(8n+2),.my-sites li:nth-of-type(8n+3),.my-sites li:nth-of-type(8n+4){background-color:#f6f7f7}}@media only screen and (min-width:1400px) and (max-width:1599px){.my-sites li{float:right;width:16%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(5n+1){clear:right}.my-sites.striped li:nth-of-type(5n+5):after{content:none}.my-sites li:nth-of-type(10n+1),.my-sites li:nth-of-type(10n+2),.my-sites li:nth-of-type(10n+3),.my-sites li:nth-of-type(10n+4),.my-sites li:nth-of-type(10n+5){background-color:#f6f7f7}}@media only screen and (min-width:1600px){.my-sites li{float:right;width:12.666666%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(6n+1){clear:right}.my-sites.striped li:nth-of-type(6n+6):after{content:none}.my-sites li:nth-of-type(12n+1),.my-sites li:nth-of-type(12n+2),.my-sites li:nth-of-type(12n+3),.my-sites li:nth-of-type(12n+4),.my-sites li:nth-of-type(12n+5),.my-sites li:nth-of-type(12n+6){background-color:#f6f7f7}}.my-sites li a{text-decoration:none}@media print,(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom right;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height)}.screen-reader-shortcut:focus{top:-39px}.block-editor-page .screen-reader-shortcut:focus{top:7px}.screen-reader-shortcut[href="#wp-toolbar"]{display:none}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:transparent!important}#wpcontent{position:relative;margin-right:0;padding-right:10px}#wpbody-content{padding-bottom:100px}.wrap{clear:both;margin-left:12px;margin-right:0}#col-left,#col-right{float:none;width:auto}#col-left .col-wrap,#col-right .col-wrap{padding:0}#collapse-menu,.post-format-select{display:none!important}.wrap h1.wp-heading-inline{margin-bottom:.5em}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{padding:0 14px;font-size:14px;white-space:nowrap;min-height:40px;line-height:2.71428571;vertical-align:middle}.media-upload-form div.error,.notice,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wp-core-ui .notice.is-dismissible{padding-left:46px}.notice-dismiss{padding:13px}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{left:-16em}code{word-wrap:break-word;word-wrap:anywhere;word-break:break-word}.postbox{font-size:14px}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2,.metabox-holder h3.hndle{padding:12px}.nav-menus-php .metabox-holder h3{padding:0}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#template .CodeMirror,#template textarea{box-sizing:border-box}#templateside{float:none;width:auto}#templateside>ul{border-right:1px solid #dcdcde}#templateside li{margin:0}#templateside li:not(.howto) a{display:block;padding:5px}#templateside li.howto{padding:12px}#templateside .highlight{padding:5px;margin-right:-5px;margin-top:-5px}#template .notice,#template>div{float:none;margin:1em 0;width:auto}#template .CodeMirror,#template textarea{width:100%}#templateside ul ul{padding-right:1.5em}[role=treeitem] .folder-label{display:block;padding:5px}.tree-folder .tree-folder::after,.tree-folder>li::after,.tree-folder>li::before{right:-8px}.tree-folder>li::before{top:0;height:13px}.tree-folder>.current-file::before{right:-5px;top:7px;width:4px}.tree-folder>.current-file::after{height:9px;right:-8px}.wrap #templateside span.notice{margin-right:-5px;width:100%}.fileedit-sub .alignright{float:right;margin-top:15px;width:100%;text-align:right}.fileedit-sub .alignright label{display:block}.fileedit-sub #plugin,.fileedit-sub #theme{margin-right:0;max-width:70%}.fileedit-sub input[type=submit]{margin-bottom:0}#documentation label[for=docs-list]{display:block}#documentation select[name=docs-list]{margin-right:0;max-width:60%}#documentation input[type=button]{margin-bottom:0}#wpfooter{display:none}#comments-form .checkforspam{display:none}.edit-comment-author{margin:2px 0 0}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:2.1}.filter-drawer .filter-group-feature label{margin-right:32px}.wp-filter .button.drawer-toggle{font-size:13px;line-height:2;height:28px}#screen-meta #contextual-help-wrap{overflow:visible}#screen-meta #contextual-help-back,#screen-meta .contextual-help-sidebar{display:none}#screen-meta .contextual-help-tabs{clear:both;width:100%;float:none}#screen-meta .contextual-help-tabs ul{margin:0 0 1em;padding:1em 0 0}#screen-meta .contextual-help-tabs .active{margin:0}#screen-meta .contextual-help-tabs-wrap{clear:both;max-width:100%;float:none}#screen-meta,#screen-meta-links{margin-left:10px}#screen-meta-links{margin-bottom:20px}#screen-meta-links .show-settings:after{line-height:1.9}.wp-filter .search-form input[type=search]{font-size:1rem}.wp-filter .search-form.search-plugins{min-width:100%}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}.screen-reader-shortcut:focus{top:7px}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:0}h1 .nav-tab,h2 .nav-tab,h3 .nav-tab,nav .nav-tab{margin:10px 0 0 10px;border-bottom:1px solid #c3c4c7}.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #c3c4c7}.wp-filter .search-form.search-plugins label{width:100%}}@media screen and (max-width:480px){.metabox-prefs-container{display:grid}.metabox-prefs-container>*{display:inline-block;padding:2px}}@media screen and (max-width:320px){#network_dashboard_right_now .subsubsub{font-size:14px;text-align:right}}css/color-picker-rtl.min.css000066600000006201152330733730012031 0ustar00/*! This file is auto-generated */ .wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:32px;margin:0 0 6px 6px;padding:0 30px 0 0;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:2px 0 0 2px;border-right:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.72727273;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-right:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-right:6px;padding:0 8px;line-height:2.72727273;min-height:32px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;margin:0;padding:0 5px;vertical-align:top;min-height:32px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:var(--wp-admin-theme-color,#3858e9);border-style:solid;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 40px 0 0;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}css/login.css000066600000020075152330733730007174 0ustar00html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; min-width: 0; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4; } a { color: var(--wp-admin-theme-color-darker-10); transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a { outline: 0; } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: #043959; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } p { line-height: 1.5; } .login .message, .login .notice, .login .success { border-left: 4px solid #3858e9; padding: 8px 12px; margin-top: 0; margin-left: 0; margin-bottom: 20px; background-color: #fff; word-wrap: break-word; } .login .message p, .login .notice p, .login .success p { font-size: 13px; line-height: 1.54; margin: 0.5em 0; } .login .success { border-left-color: #4ab866; background-color: #eff9f1; } /* Match border color from common.css */ .login .notice-error { border-left-color: #cc1818; background-color: #fcf0f0; } .login .login-error-list { list-style: none; } .login .login-error-list li + li { margin-top: 4px; } #loginform p.submit, .login-action-lostpassword p.submit { border: none; margin: -10px 0 20px; /* May want to revisit this */ } .login * { margin: 0; padding: 0; } .login .input::-ms-clear { display: none; } .login .pw-weak { margin-bottom: 15px; } /* rtl:ignore */ .login .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: normal; width: 2.5rem; height: 2.5rem; min-width: 40px; min-height: 40px; margin: 0; padding: 5px 9px; position: absolute; right: 0; top: 0; } .login .button.wp-hide-pw:hover { background: transparent; } .login .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .login .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } .login .button.wp-hide-pw .dashicons { width: 1.25rem; height: 1.25rem; } .login .wp-pwd { position: relative; } .no-js .hide-if-no-js { display: none; } .login form { margin: 24px 0; padding: 26px 24px; font-weight: 400; overflow: hidden; background: #fff; border: 1px solid #c3c4c7; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); } .login form.shake { animation: shake 0.2s cubic-bezier(.19,.49,.38,.79) both; animation-iteration-count: 3; transform: translateX(0); } @keyframes shake { 25% { transform: translateX(-20px); } 75% { transform: translateX(20px); } 100% { transform: translateX(0); } } @media (prefers-reduced-motion: reduce) { .login form.shake { animation: none; transform: none; } } .login-action-confirm_admin_email #login { width: 60vw; max-width: 650px; margin-top: -2vh; } @media screen and (max-width: 782px) { .login-action-confirm_admin_email #login { box-sizing: border-box; margin-top: 0; padding-left: 4vw; padding-right: 4vw; width: 100vw; } } .login form .forgetmenot { font-weight: 400; float: left; margin-bottom: 0; } .login .button-primary { float: right; } .login .reset-pass-submit { display: flex; flex-flow: row wrap; justify-content: space-between; } .login .reset-pass-submit .button { display: inline-block; float: none; margin-bottom: 6px; } .login .admin-email-confirm-form .submit { text-align: center; } .admin-email__later { text-align: left; } .login form p.admin-email__details { margin: 1.1em 0; } .login .admin-email__heading { border-bottom: 1px #f0f0f1 solid; color: #50575e; font-weight: normal; padding-bottom: 0.5em; text-align: left; } .admin-email__actions div { padding-top: 1.5em; } .login .admin-email__actions .button-primary { float: none; margin-left: 0.25em; margin-right: 0.25em; } #login form p { margin-bottom: 0; } #login form .indicator-hint, #login #reg_passmail { margin-bottom: 16px; } #login form p.submit { margin: 0; padding: 0; } .login label { font-size: 14px; line-height: 1.5; display: inline-block; margin-bottom: 3px; } .login .forgetmenot label, .login .pw-weak label { line-height: 1.5; vertical-align: baseline; } .login h1 { text-align: center; } .login h1 a { background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; height: 84px; font-size: 20px; font-weight: 400; line-height: 1.3; margin: 0 auto 24px; padding: 0; text-decoration: none; width: 84px; text-indent: -9999px; outline: none; overflow: hidden; display: block; } #login { width: 320px; padding: 5% 0 0; margin: auto; } .login #nav, .login #backtoblog { font-size: 13px; padding: 0 24px; } .login #nav { margin: 24px 0 0; } #backtoblog { margin: 16px 0; word-wrap: break-word; } .login #nav a, .login #backtoblog a { text-decoration: none; color: #50575e; } .login #nav a:hover, .login #backtoblog a:hover, .login h1 a:hover { color: var(--wp-admin-theme-color-darker-20); } .login #nav a:focus, .login #backtoblog a:focus, .login h1 a:focus { color: #043959; } .login .privacy-policy-page-link { text-align: center; width: 100%; margin: 3em 0 2em; } .login form .input, .login input[type="text"], .login input[type="password"] { font-size: 24px; line-height: 1.33333333; /* 32px */ width: 100%; border-width: 0.0625rem; padding: 0.1875rem 0.3125rem; /* 3px 5px */ margin: 0 6px 16px 0; min-height: 40px; max-height: none; } .login input.password-input { font-family: Consolas, Monaco, monospace; } /* rtl:ignore */ .js.login input.password-input { padding-right: 2.5rem; } .js.login-action-resetpass input[type="text"], .js.login-action-resetpass input[type="password"], .js.login-action-rp input[type="text"], .js.login-action-rp input[type="password"] { margin-bottom: 0; } .login #pass-strength-result { font-weight: 600; margin: -1px 5px 16px 0; padding: 6px 5px; text-align: center; width: 100%; } body.interim-login { height: auto; } .interim-login #login { padding: 0; margin: 5px auto 20px; } .interim-login.login h1 a { width: auto; } .interim-login #login_error, .interim-login.login .message { margin: 0 0 16px; } .interim-login.login form { margin: 0; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } /* Hide the Edge "reveal password" native button */ input::-ms-reveal { display: none; } #language-switcher { padding: 0; overflow: visible; background: none; border: none; box-shadow: none; } #language-switcher select { margin-right: 0.25em; } .language-switcher { margin: 0 auto; padding: 0 0 24px; text-align: center; } .language-switcher label { margin-right: 0.25em; } .language-switcher label .dashicons { width: auto; height: auto; } .login .language-switcher .button { margin-bottom: 0; } @media screen and (max-height: 550px) { #login { padding: 20px 0; } #language-switcher { margin-top: 0; } } @media screen and (max-width: 782px) { .interim-login input[type=checkbox] { width: 1rem; height: 1rem; } .interim-login input[type=checkbox]:checked:before { width: 1.3125rem; height: 1.3125rem; margin: -0.1875rem 0 0 -0.25rem; } #language-switcher label, #language-switcher select { margin-right: 0; } } @media screen and (max-width: 400px) { .login .language-switcher .button { display: block; margin: 5px auto 0; } } css/revisions-rtl.min.css000066600000021154152330733730011465 0ustar00/*! This file is auto-generated */ .revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-diff-frame{top:10px}.revisions-controls{padding-top:40px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;height:82px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-tickmarks{position:relative;margin:0 auto;height:.7em;top:7px;max-width:70%;box-sizing:border-box;background-color:#fff}.revisions-tickmarks>div{position:absolute;height:100%;border-right:1px solid #a7aaad;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.comparing-two-revisions.pinned .revisions-controls{height:124px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:absolute;vertical-align:middle;opacity:0;width:100%;width:calc(100% - 30px);top:50%;top:calc(50% - 10px);transition:opacity .5s}body.folded .revisions .loading-indicator{margin-right:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1}.revisions .diff{transition:opacity .5s}.revisions.loading .diff{opacity:.5}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:20px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1);overflow:hidden}.revisions.pinned .revisions-meta{box-shadow:none}.revision-toggle-compare-mode{position:absolute;top:0;left:0}.comparing-two-revisions .revisions-next,.comparing-two-revisions .revisions-previous,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#646970}.revisions-controls .author-card.autosave{color:#d63638}.revisions-controls .author-card .author-name{font-weight:600}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions.pinned .revisions-buttons{padding:0 11px}.revisions-next,.revisions-previous{position:relative;z-index:1}.revisions-previous{float:right}.revisions-next{float:left}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-diff{padding:15px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-diff h3:first-child{margin-top:0}#revisions-meta-restored img,.post-revisions li img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.57142857;padding:.5em 2em .5em .5em;vertical-align:top;word-wrap:break-word}table.diff td h1,table.diff td h2,table.diff td h3,table.diff td h4,table.diff td h5,table.diff td h6{margin:0}table.diff .diff-addedline ins,table.diff .diff-deletedline del{text-decoration:none}table.diff .diff-deletedline{position:relative;background-color:#fcf0f1}table.diff .diff-deletedline del{background-color:#ffabaf}table.diff .diff-addedline{position:relative;background-color:#edfaef}table.diff .diff-addedline .dashicons,table.diff .diff-deletedline .dashicons{position:absolute;top:.85714286em;right:.5em;width:1em;height:1em;font-size:1em;line-height:1}table.diff .diff-addedline .dashicons{top:.92857143em}table.diff .diff-addedline ins{background-color:#68de7c}.diff-meta{padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:2.46153846;min-width:60px;text-align:left;float:right;margin-left:5px}.revisions-controls .author-card .author-info{font-size:12px;line-height:1.33333333}.revisions-controls .author-card .author-info,.revisions-controls .author-card .avatar{float:right;margin-right:6px;margin-left:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:left;margin-right:6px;margin-left:6px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-left:0;margin-right:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-right:0;margin-left:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;right:0;margin-right:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-right:0;margin-left:35px;right:auto;left:0}.revisions-tooltip-arrow>span{content:"";position:absolute;right:20px;top:-20px;width:25px;height:25px;transform:rotate(-45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:auto;left:20px}.revisions-tooltip,.revisions-tooltip-arrow>span{border:1px solid #dcdcde;background-color:#fff}.revisions-tooltip{display:none}.arrow{width:70px;height:16px;overflow:hidden;position:absolute;right:0;margin-right:-35px;bottom:90px;z-index:10000}.arrow:after{z-index:9999;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.1)}.arrow.top{top:-16px;bottom:auto}.arrow.left{right:20%}.arrow:after{content:"";position:absolute;right:20px;top:-20px;width:25px;height:25px;transform:rotate(-45deg)}.revisions-tooltip,.revisions-tooltip-arrow:after{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-right:-10px}.rtl div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border:1px solid #dcdcde;text-align:right;cursor:pointer}.wp-slider .ui-slider-handle{border-radius:50%;height:18px;margin-top:-5px;outline:0;padding:2px;position:absolute;width:18px;z-index:2;touch-action:none}.wp-slider .ui-slider-handle{background:#f6f7f7;border:1px solid #c3c4c7;box-shadow:0 1px 0 #c3c4c7}.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle:hover{background:#f6f7f7;border-color:#8c8f94}.wp-slider .ui-slider-handle.ui-state-active,.wp-slider .ui-slider-handle:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);transform:translateY(1px)}.wp-slider .ui-slider-handle.ui-state-focus,.wp-slider .ui-slider-handle:focus{background:#f0f0f1;border-color:#8c8f94;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-slider .ui-slider-handle:before{background:0 0;position:absolute;top:2px;right:2px;color:#50575e;content:"\f229";content:"\f229"/'';font:normal 18px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-slider .ui-slider-handle.ui-state-hover:before,.wp-slider .ui-slider-handle:hover:before{color:#1d2327}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{font-size:20px!important;margin:-1px -1px 0 0}.wp-slider .ui-slider-handle.from-handle:before{content:"\f141";content:"\f139"/''}.wp-slider .ui-slider-handle.to-handle:before{content:"\f139";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.from-handle:before{content:"\f139";content:"\f141"/''}.rtl .wp-slider .ui-slider-handle.to-handle:before{content:"\f141";content:"\f139"/'';left:-1px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.7em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-right:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{right:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{left:0}@media print,(min-resolution:120dpi){.revision-tick.completed-false{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:600px){.revisions-meta .author-card:not(.comparing-two-revisions .author-card){display:flex;flex-direction:column;width:fit-content;gap:16px}.comparing-two-revisions .revisions-meta .restore-revision{margin-top:16px}.revisions-controls{padding-top:0}.revision-toggle-compare-mode{position:relative;padding:1rem 0}}@media screen and (max-width:782px){#diff-next-revision,#diff-previous-revision{margin-top:-1em}.revisions-buttons{overflow:hidden;margin-bottom:15px}.comparing-two-revisions .revisions-controls,.revisions-controls{height:fit-content}.revisions-tooltip{bottom:155px;z-index:2}.comparing-two-revisions .revisions-tooltip{bottom:200px}.diff-meta{overflow:hidden}table.diff{-ms-word-break:break-all;word-break:break-all;word-wrap:break-word}}css/common.min.css000066600000170126152330733730010141 0ustar00/*! This file is auto-generated */ #wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%;padding-left:20px}#wpcontent,#wpfooter{margin-left:160px}.folded #wpcontent,.folded #wpfooter{margin-left:36px}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-left{float:left;width:35%}#col-right{float:right;width:65%}#col-left .col-wrap{padding:0 6px 0 0}#col-right .col-wrap{padding:0 0 0 6px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.wp-clearfix:after{content:"";display:table;clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.button .screen-reader-text{height:auto}.screen-reader-text+.dashicons-external{margin-top:-1px;margin-left:2px;text-decoration:none}.screen-reader-shortcut{position:absolute;top:-1000em;left:6px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#fff;color:var(--wp-admin-theme-color,#3858e9);z-index:100000;line-height:normal}.screen-reader-shortcut:focus{top:-25px;color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);text-decoration:none;outline:2px solid transparent;outline-offset:-2px}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.comment-ays,.feature-filter,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,.04)}.comment-ays,.feature-filter,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.modal-open{overflow:hidden}body.mobile.modal-open #wpwrap{overflow:hidden;position:fixed;height:100%}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#2271b1;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#135e96}.wp-person a:focus .gravatar,a:focus,a:focus .media-icon img,a:focus .plugin-icon{color:#043959;border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#adminmenu a:focus{box-shadow:none;outline:1px solid transparent;outline-offset:-1px}.screen-reader-text:focus{box-shadow:none;outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}.wp-die-message,p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{color:#1d2327;font-size:2em;margin:.67em 0}h2,h3{color:#1d2327;font-size:1.3em;margin:1em 0}.update-core-php h2{margin-top:4em}.update-messages h2,.update-php h2,h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-left:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr;unicode-bidi:embed}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#f0f0f1;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:left;color:#646970}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#50575e;font-weight:400}.subsubsub a.current{font-weight:600;border:none}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a,.widefat button.button-link{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead td,.widefat thead th{border-bottom:1px solid #c3c4c7}.widefat tfoot td,.widefat tfoot th{border-top:1px solid #c3c4c7;border-bottom:none}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat tfoot td,.widefat th,.widefat thead td{text-align:left;line-height:1.3em;font-size:14px}.updates-table td input,.widefat tfoot td input,.widefat th input,.widefat thead td input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.updates-table tbody td.check-column,.widefat tbody th.check-column,.widefat tfoot td.check-column,.widefat thead td.check-column{padding:11px 0 0 3px}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:4px;vertical-align:middle}.update-php div.error,.update-php div.updated{margin-left:0}.js-update-details-toggle .dashicons{text-decoration:none}.js-update-details-toggle[aria-expanded=true] .dashicons::before{content:"\f142";content:"\f142"/''}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 20px 0 2px}.postbox .inside h2,.wrap [class$=icon32]+h2,.wrap h1,.wrap>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px;line-height:1.3}.wrap h1.wp-heading-inline{display:inline-block;margin-right:5px}.wp-header-end{visibility:hidden;margin:-2px 0 0}.subtitle{margin:0;padding-left:25px;color:#50575e;font-size:14px;font-weight:400;line-height:1}.subtitle strong{word-break:break-all}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{display:inline-block;position:relative;box-sizing:border-box;cursor:pointer;white-space:nowrap;text-decoration:none;text-shadow:none;top:-3px;margin-left:4px;border:1px solid #2271b1;border-radius:2px;background:0 0;font-size:13px;font-weight:500;min-height:32px;line-height:2.30769231;color:#2271b1;padding:0 12px;-webkit-appearance:none}.wrap .wp-heading-inline+.page-title-action{margin-left:0}.wrap .add-new-h2:hover,.wrap .page-title-action:hover{border-color:#0a4b78;color:#0a4b78}.page-title-action:focus{color:#0a4b78}.form-table th label[for=WPLANG] .dashicons,.form-table th label[for=locale] .dashicons{margin-left:5px}.wrap .page-title-action:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.wrap h1.long-header{padding-right:0}.wp-dialog{background-color:#fff}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.sorthelper{background-color:#c5d9ed}.ac_match,.subsubsub a.current{color:#000}.alternate,.striped>tbody>:nth-child(odd),ul.striped>:nth-child(odd){background-color:#f6f7f7}.bar{background-color:#f0f0f1;border-right-color:var(--wp-admin-theme-color)}.highlight{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);color:#3c434a}.wp-ui-primary{color:#fff;background-color:#2c3338}.wp-ui-text-primary{color:#2c3338}.wp-ui-highlight{color:#fff;background-color:#2271b1}.wp-ui-text-highlight{color:#2271b1}.wp-ui-notification{color:#fff;background-color:#d63638}.wp-ui-text-notification{color:#d63638}.wp-ui-text-icon{color:#8c8f94}img.emoji{display:inline!important;border:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important;box-shadow:none!important}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox .hndle,.side-info,.sidebar-name,.stuffbox .hndle,.widefat tfoot td,.widefat tfoot th,.widefat thead td,.widefat thead th,.widget .widget-top{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#f6f7f7;color:#1d2327}.stuffbox .hndle{border-bottom:1px solid #c3c4c7}.quicktags{background-color:#c3c4c7;color:#000;font-size:12px}.icon32{display:none}#bulk-titles .ntdelbutton:before,.notice-dismiss:before,.tagchecklist .ntdelbutton .remove-tag-icon:before,.welcome-panel .welcome-panel-close:before{background:0 0;color:#1e1e1e;content:"\f335";content:"\f335"/'';display:block;font:normal 20px/1 dashicons;height:1em;text-align:center;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.welcome-panel .welcome-panel-close:before{margin:0}.tagchecklist .ntdelbutton .remove-tag-icon:before{margin-left:2px;border-radius:50%;color:var(--wp-admin-theme-color,#3858e9);line-height:1.1}.tagchecklist .ntdelbutton:focus{outline:0}#bulk-titles .ntdelbutton:focus:before,#bulk-titles .ntdelbutton:hover:before,.tagchecklist .ntdelbutton:focus .remove-tag-icon:before,.tagchecklist .ntdelbutton:hover .remove-tag-icon:before{color:#d63638}.tagchecklist .ntdelbutton:focus .remove-tag-icon:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#646970;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}#all-plugins-table .plugins a.delete,#delete-link a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.privacy_requests .remove-personal-data .remove-personal-data-handle,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete,a#remove-post-thumbnail{color:#b32d2e}#all-plugins-table .plugins a.delete:hover,#delete-link a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.privacy_requests .remove-personal-data .remove-personal-data-handle:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,a#remove-post-thumbnail:hover,abbr.required,span.required{color:#b32d2e;border:none}.application-password-display .success{color:#007017;margin-left:.5rem}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #dcdcde;background:#f6f7f7;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}#delete-action{line-height:2.30769231}#delete-link a{text-decoration:none}#publishing-action{text-align:right;margin-left:auto;line-height:1.9}#publishing-action .spinner{float:none}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}.misc-pub-filename,.word-wrap-break-word{word-wrap:break-word}#minor-publishing-actions{padding:10px 10px 0;text-align:right}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:right}#misc-publishing-actions .notice{margin-left:10px;margin-right:10px}.wp-filter{display:inline-block;position:relative;box-sizing:border-box;margin:12px 0 25px;padding:0 10px;width:100%;box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #c3c4c7;background:#fff;color:#50575e;font-size:13px}.wp-filter a{text-decoration:none}.filter-count{display:inline-block;vertical-align:middle;min-width:4em}.filter-count .count,.title-count{display:inline-block;position:relative;top:-1px;padding:4px 10px;border-radius:30px;background:#646970;color:#fff;font-size:14px;font-weight:600}.title-count{display:inline;top:-3px;margin-left:5px;margin-right:20px}.filter-items{float:left}.filter-links{display:inline-block;margin:0}.filter-links li{display:inline-block;margin:0}.filter-links li>a{display:inline-block;margin:0 10px;padding:15px 0;border-bottom:4px solid #fff;color:#646970;cursor:pointer}.filter-links .current{box-shadow:none;border-bottom:4px solid var(--wp-admin-theme-color);color:#1d2327}.filter-links li>a:focus,.filter-links li>a:hover,.show-filters .filter-links a.current:focus,.show-filters .filter-links a.current:hover{color:var(--wp-admin-theme-color)}.wp-filter .search-form{float:right;display:flex;align-items:center;column-gap:.5rem}.wp-filter .search-form input[type=search]{width:280px;max-width:100%}.wp-filter .search-form select{margin:0}.wp-filter .search-form input[type=search]{min-height:32px;padding:0 8px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:32px;line-height:2.14285714;padding:0 24px 0 8px}.wp-filter .button{min-height:32px;line-height:2.30769231;padding:0 12px}.plugin-install-php .wp-filter,.upload-php .wp-filter{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.no-js .wp-filter .search-form.search-plugins .button,.wp-filter .search-form.search-plugins .wp-filter-search,.wp-filter .search-form.search-plugins select{display:inline-block;vertical-align:top}.wp-filter .button.drawer-toggle{margin:10px 9px 0;padding:0 10px 0 6px;border-color:transparent;background-color:transparent;color:#646970;vertical-align:baseline;box-shadow:none}.wp-filter .drawer-toggle:before{content:"\f111";content:"\f111"/'';margin:0 5px 0 0;color:#646970;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-filter .button.drawer-toggle:focus,.wp-filter .button.drawer-toggle:hover,.wp-filter .drawer-toggle:focus:before,.wp-filter .drawer-toggle:hover:before{background-color:transparent;color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:focus:active,.wp-filter .button.drawer-toggle:hover{border-color:transparent}.wp-filter .button.drawer-toggle:focus{border-color:var(--wp-admin-theme-color)}.wp-filter .button.drawer-toggle:active{background:0 0;box-shadow:none;transform:none}.wp-filter .drawer-toggle.current:before{color:#fff}.filter-drawer,.wp-filter .favorites-form{display:none;margin:0 -10px 0 -20px;padding:20px;border-top:1px solid #f0f0f1;background:#f6f7f7;overflow:hidden}.wp-filter .favorites-form .favorites-username{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem}.wp-filter .favorites-form .favorites-username input{margin:0}.show-favorites-form .favorites-form,.show-filters .filter-drawer{display:block}.show-filters .filter-links a.current{border-bottom:none}.show-filters .wp-filter .button.drawer-toggle{border-radius:2px;background:#646970;color:#fff}.show-filters .wp-filter .drawer-toggle:focus,.show-filters .wp-filter .drawer-toggle:hover{background:var(--wp-admin-theme-color)}.show-filters .wp-filter .drawer-toggle:before{color:#fff}.filter-group{box-sizing:border-box;position:relative;float:left;margin:0 1% 0 0;padding:20px 10px 10px;width:24%;background:#fff;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04)}.filter-group legend{position:absolute;top:10px;display:block;margin:0;padding:0;font-size:1em;font-weight:600}.filter-drawer .filter-group-feature{margin:28px 0 0;list-style-type:none;font-size:12px}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:1.4}.filter-drawer .filter-group-feature input{position:absolute;margin:0}.filter-group .filter-group-feature label{display:block;margin:14px 0 14px 23px}.filter-drawer .buttons{clear:both;margin-bottom:20px}.filter-drawer .filter-group+.buttons{margin-bottom:0;padding-top:20px}.filter-drawer .buttons .button span{display:inline-block;opacity:.8;font-size:12px;text-indent:10px}.wp-filter .button.clear-filters{display:none;margin-left:10px}.wp-filter .button-link.edit-filters{padding:0 5px;line-height:2.2}.filtered-by{display:none;margin:0}.filtered-by>span{font-weight:600}.filtered-by a{margin-left:10px}.filtered-by .tags{display:flex;align-items:flex-start;flex-wrap:wrap;gap:8px}.filtered-by .tag{padding:4px 8px;border:1px solid #dcdcde;box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:11px}.filters-applied .filter-drawer .buttons,.filters-applied .filter-drawer br,.filters-applied .filter-group{display:none}.filters-applied .filtered-by{display:flex;align-items:center;flex-wrap:wrap;gap:10px}.filters-applied .filter-drawer{padding:20px}.error .content-filterable,.loading-content .content-filterable,.show-filters .content-filterable,.show-filters .favorites-form,.show-filters.filters-applied.loading-content .content-filterable{display:none}.show-filters.filters-applied .content-filterable{display:block}.loading-content .spinner{display:block;margin:40px auto 0;float:none}@media only screen and (max-width:1138px){.wp-filter .search-form{margin:11px 0}}@media only screen and (max-width:1250px){.wp-filter:has(.plugin-install-search) .search-form{margin:11px 0}}@media only screen and (max-width:1120px){.filter-drawer{border-bottom:1px solid #f0f0f1}.filter-group{margin-bottom:0;margin-top:5px;width:100%}.filter-group li{margin:10px 0}}@media only screen and (max-width:1000px){.filter-items{float:none}.wp-filter .media-toolbar-primary,.wp-filter .media-toolbar-secondary,.wp-filter .search-form{float:none;position:relative;max-width:100%}.wp-filter .search-form{margin:11px 0;flex-wrap:wrap;row-gap:10px}}@media only screen and (max-width:782px){.filter-group li{padding:0;width:50%}.wp-filter .search-form input[type=search]{min-height:40px;padding:0 12px}.wp-filter .filter-items select,.wp-filter .search-form select{min-height:40px;padding:0 24px 0 12px}}@media only screen and (max-width:320px){.filter-count{display:none}.wp-filter .drawer-toggle{margin:10px 0}.filter-group li,.wp-filter .search-form input[type=search]{width:100%}}.notice,div.error,div.updated{background:#fff;border:none;border-left:4px solid #c3c4c7;box-shadow:none;margin:5px 15px 2px;padding:8px 12px}div[class=update-message]{padding:.5em 12px .5em 0}.form-table td .notice p,.notice p,.notice-title,div.error p,div.updated p{margin:.5em 0;padding:0;font-size:13px;line-height:1.54;color:#1e1e1e}div.error a,div.notice a,div.updated a{color:var(--wp-admin-theme-color-darker-10);text-decoration:underline}div.error a:hover,div.notice a:hover,div.updated a:hover{color:var(--wp-admin-theme-color-darker-20)}div.error a:focus,div.notice a:focus,div.updated a:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent;border-radius:2px}.notice-alt{box-shadow:none}.notice-large{padding:10px 20px}.notice-title{display:inline-block;color:#1d2327;font-size:18px}.wp-core-ui .notice.is-dismissible{padding-right:48px;position:relative}.notice-dismiss{position:absolute;top:12px;right:12px;border:none;margin:0;padding:0;background:0 0;color:#1e1e1e;cursor:pointer;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:2px}.notice-dismiss:active:before,.notice-dismiss:hover:before{color:#1e1e1e;opacity:.7}.notice-dismiss:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);outline:2px solid transparent}.notice-dismiss:focus:before{color:#1e1e1e}.notice-success,div.updated{border-left-color:#4ab866;background-color:#eff9f1}.notice-success.notice-alt,div.updated.notice-alt{background-color:#eff9f1}.notice-warning{border-left-color:#f0b849;background-color:#fef8ee}.notice-warning.notice-alt{background-color:#fef8ee}.notice-error,div.error{border-left-color:#cc1818;background-color:#fcf0f0}.notice-error.notice-alt,div.error.notice-alt{background-color:#fcf0f0}.notice-info{border-left-color:#3858e9;background-color:#fff}.notice-info.notice-alt{background-color:#fff}#plugin-information-footer .update-now:not(.button-disabled):before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 20px/1 dashicons;margin:-3px 5px 0 -2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle}#plugin-information-footer .notice{margin-top:-5px}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updated-message p:before,.updating-message p:before{display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.media-upload-form .notice,.media-upload-form div.error,.wrap .notice,.wrap div.error,.wrap div.updated{margin:5px 0 15px}.wrap #templateside .notice{display:block;margin:0;padding:5px 8px;font-weight:600;text-decoration:none}.wrap #templateside span.notice{margin-left:-12px}#templateside li.notice a{padding:0}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.update-message p:before,.updating-message p:before{color:#d63638;content:"\f463";content:"\f463"/''}.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:rotation 2s infinite linear}@media (prefers-reduced-motion:reduce){.button.activating-message:before,.button.installing:before,.button.updating-message:before,.import-php .updating-message:before,.plugins .column-auto-updates .dashicons-update.spin,.theme-overlay .theme-autoupdate .dashicons-update.spin,.updating-message p:before{animation:none}}.theme-overlay .theme-autoupdate .dashicons-update.spin{margin-right:3px}.button.activated-message:before,.button.updated-message:before,.installed p:before,.updated-message p:before{color:#68de7c;content:"\f147";content:"\f147"/''}.update-message.notice-error p:before{color:#d63638;content:"\f534";content:"\f534"/''}.import-php .updating-message:before,.wrap .notice p:before{margin-right:6px}.import-php .updating-message:before{vertical-align:bottom}#update-nag,.update-nag{display:inline-block;line-height:1.4;padding:11px 15px;font-size:14px;margin:25px 20px 0 2px}ul#dismissed-updates{display:none}#dismissed-updates li>p{margin-top:0}#dismiss,#undismiss{margin-left:.5em}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em}.update-php .spinner{float:none;margin:-4px 0}h2.wp-current-version{margin-bottom:.3em}p.update-last-checked{margin-top:0}p.auto-update-status{margin-top:2em;line-height:1.8}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}.button.activated-message:before,.button.activating-message:before,.button.installed:before,.button.installing:before,.button.updated-message:before,.button.updating-message:before{margin:0 5px 0 -2px;line-height:1.9;vertical-align:top}#plugin-information-footer .button{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}#plugin-information-footer .button.activated-message:before,#plugin-information-footer .button.activating-message:before,#plugin-information-footer .button.installed:before,#plugin-information-footer .button.installing:before,#plugin-information-footer .button.updated-message:before,#plugin-information-footer .button.updating-message:before{margin:0 5px 0 -2px;line-height:1.9;vertical-align:top}#plugin-information-footer .button.update-now.updating-message:before{margin:0 5px 0 -2px}.button-primary.activating-message:before,.button-primary.updating-message:before{color:#fff}.button-primary.activated-message:before,.button-primary.updated-message:before{color:#9ec2e6}.button.activated-message,.button.updated-message{transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}#adminmenu a,#catlist a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-left:0}#screen-meta-links{float:right;margin:0 20px 0 0}#screen-meta{display:none;margin:0 20px -1px 0;position:relative;background-color:#fff;border:1px solid #c3c4c7;border-top:none;box-shadow:0 0 0 transparent}#contextual-help-link-wrap,#screen-options-link-wrap{float:left;margin:0 0 0 6px}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links .show-settings{border:1px solid #c3c4c7;border-top:none;height:auto;margin-bottom:0;padding:0 6px 0 16px;background:#fff;border-radius:0 0 4px 4px;color:#646970;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear}#screen-meta-links .show-settings:active,#screen-meta-links .show-settings:focus,#screen-meta-links .show-settings:hover{color:#2c3338}#screen-meta-links .show-settings:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#screen-meta-links .show-settings:active{transform:none}#screen-meta-links .show-settings:after{right:0;content:"\f140";content:"\f140"/'';font:normal 20px/1.5 dashicons;display:inline-block;padding:0 5px 0 0;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}#screen-meta-links .screen-meta-active:after{content:"\f142";content:"\f142"/''}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#contextual-help-wrap h5,#screen-options-wrap h5,#screen-options-wrap legend{margin:0;padding:8px 0;font-size:13px;font-weight:600}.metabox-prefs label{display:inline-block;padding-right:15px;line-height:2.35}#number-of-columns{display:inline-block;vertical-align:middle;line-height:30px}.metabox-prefs input[type=checkbox]{margin-top:0;margin-right:6px}.metabox-prefs label input,.metabox-prefs label input[type=checkbox]{margin:-4px 5px 0 0}.metabox-prefs .columns-prefs label input{margin:-1px 2px 0 0}.metabox-prefs label a{display:none}.metabox-prefs .screen-options input,.metabox-prefs .screen-options label{margin-top:0;margin-bottom:0;vertical-align:middle}.metabox-prefs .screen-options .screen-per-page{margin-right:15px;padding-right:0}.metabox-prefs .screen-options label{line-height:2.2;padding-right:0}.screen-options+.screen-options{margin-top:10px}.metabox-prefs .submit{margin-top:1em;padding:0}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border:1px solid #c3c4c7;border-top:none;border-bottom:none;background:rgba(var(--wp-admin-theme-color--rgb),.08)}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 0 0 2px;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:1.4;text-decoration:none;border:1px solid transparent;border-right:none;border-left:none}.contextual-help-tabs a:hover{color:#2c3338}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-left:2px solid var(--wp-admin-theme-color);background:color-mix(in srgb,var(--wp-admin-theme-color) 8%,#fff);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#c3c4c7;color:#2c3338}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height);box-sizing:border-box;-ms-overflow-style:scrollbar}.widefat td,.widefat th{color:#50575e}.widefat tfoot td,.widefat th,.widefat thead td{font-weight:400}.widefat tfoot tr td,.widefat tfoot tr th,.widefat thead tr td,.widefat thead tr th{color:#2c3338}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#2c3338}.widefat .column-comment p{margin:.6em 0}.widefat .column-comment ul{list-style:initial;margin-left:2em}.postbox-container{float:left}.postbox-container .meta-box-sortables{box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .meta-box-sortables{min-height:1px;position:relative}#post-body-content{width:100%;min-width:463px;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{outline:0;height:0;min-height:0}}.js .postbox .hndle,.js .widget .widget-top{cursor:move}.js .postbox .hndle.is-non-sortable,.js .widget .widget-top.is-non-sortable{cursor:auto}.hndle a{font-size:12px;font-weight:400}.postbox-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #c3c4c7}.postbox-header .hndle{flex-grow:1;display:flex;justify-content:space-between;align-items:center}.postbox-header .handle-actions{flex-shrink:0}.postbox .handle-order-higher,.postbox .handle-order-lower,.postbox .handlediv{width:1.62rem;height:1.62rem;margin:0;padding:0;border:0;background:0 0;cursor:pointer}.postbox .handle-order-higher,.postbox .handle-order-lower{color:#646970;width:1.62rem}.edit-post-meta-boxes-area .postbox .handle-order-higher,.edit-post-meta-boxes-area .postbox .handle-order-lower{width:44px;height:44px;color:#1d2327}.postbox .handle-order-higher[aria-disabled=true],.postbox .handle-order-lower[aria-disabled=true]{cursor:default;color:#a7aaad}.sortable-placeholder:not(.empty-container .sortable-placeholder){border:1px dashed #c3c4c7;border-radius:8px;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox.closed .postbox-header{border-bottom:0}.postbox .hndle,.stuffbox .hndle{-webkit-user-select:none;user-select:none}.postbox .inside{padding:0 12px 12px;line-height:1.4;font-size:13px}.stuffbox .inside{padding:0;line-height:1.4;font-size:13px;margin-top:0}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{box-shadow:none}.temp-border{border:1px dotted #c3c4c7}.columns-prefs label{padding:0 10px 0 0}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#comment-status-display,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 20px;color:#50575e}#wpfooter p{font-size:13px;margin:0;line-height:1.55}#footer-thankyou{font-style:italic}.nav-tab{float:left;border:1px solid #c3c4c7;border-bottom:none;margin-left:.5em;padding:5px 10px;font-size:14px;line-height:1.71428571;font-weight:600;background:#dcdcde;color:#50575e;text-decoration:none;white-space:nowrap}.nav-tab-small .nav-tab,h3 .nav-tab{padding:5px 14px;font-size:12px;line-height:1.33}.nav-tab:focus,.nav-tab:hover{background-color:#fff;color:#3c434a}.nav-tab-active,.nav-tab:focus:active{box-shadow:none}.nav-tab-active{margin-bottom:-1px;color:#3c434a}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #f0f0f1;background:#f0f0f1;color:#000}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:1px solid #c3c4c7;margin:0;padding-top:9px;padding-bottom:0;line-height:inherit}.nav-tab-wrapper:not(.wp-clearfix):after{content:"";display:table;clear:both}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;display:inline-block;visibility:hidden;float:right;vertical-align:middle;opacity:.7;width:20px;height:20px;margin:10px 10px 0}.loading-content .spinner,.spinner.is-active{visibility:visible}#template>div{margin-right:16em}#template .notice{margin-top:1em;margin-right:3%}#template .notice p{width:auto}#template .submit .spinner{float:none;vertical-align:top}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2.hndle,.metabox-holder h3.hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}.nav-menus-php .metabox-holder h3{padding:0}.accordion-container h3.accordion-section-title{padding:0!important}.accordion-section-title button.accordion-trigger,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger{background:inherit;color:#1d2327;display:block;position:relative;text-align:left;width:100%;outline:0;border:0;padding:10px 10px 11px 14px;line-height:1.5;cursor:pointer}.accordion-section-title button.accordion-trigger:focus,.nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down{position:absolute;right:10px;left:auto;color:#787c82;border-radius:50px;top:50%;transform:translateY(-50%)}.accordion-section-title:hover span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down{color:#1d2327}.accordion-section-title span.dashicons.dashicons-arrow-down::before,.nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before{position:relative;left:-1px}.accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down,.nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down{transform:rotate(180deg) translate(0,50%)}#templateside ul li a{text-decoration:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:left}.attention,.error-message{color:#d63638;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}.media-icon{width:62px;text-align:center}.media-icon img{border:1px solid #dcdcde;border:1px solid rgba(0,0,0,.07)}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-right:14px;line-height:1.4}.importers .import-system{max-width:250px}.importers td.desc{max-width:500px}.importer-action,.importer-desc,.importer-title{display:block}.importer-title{color:#000;font-size:14px;font-weight:400;margin-bottom:.2em}.importer-action{line-height:1.55;color:#50575e;margin-bottom:1em}#post-body #post-body-content #namediv h2,#post-body #post-body-content #namediv h3{margin-top:0}.edit-comment-author{color:#1d2327;border-bottom:1px solid #f0f0f1}#namediv h2 label,#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:100%}#namediv p{margin:10px 0}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:.15}.checkbox{border:none;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom left}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top left;height:17px;float:left}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;transition:color .1s ease-in;text-align:center;color:#dba617}.star-rating .star-full:before{content:"\f155";content:"\f155"/''}.star-rating .star-half:before{content:"\f459";content:"\f459"/''}.rtl .star-rating .star-half{transform:rotateY(180deg)}.star-rating .star-empty:before{content:"\f154";content:"\f154"/''}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fff;position:fixed;top:0;right:0;bottom:0;left:0;height:100%;padding:0}#plugin-information-scrollable{overflow:auto;-webkit-overflow-scrolling:touch;height:100%}#plugin-information-title{padding:0 26px;background:#f6f7f7;font-size:22px;font-weight:600;line-height:2.4;position:relative;height:56px}#plugin-information-title.with-banner{margin-right:0;height:250px;background-size:cover}#plugin-information-title h2{font-size:1em;font-weight:600;padding:0;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-title.with-banner h2{position:relative;font-family:"Helvetica Neue",sans-serif;display:inline-block;font-size:30px;line-height:1.68;box-sizing:border-box;max-width:100%;padding:0 15px;margin-top:174px;color:#fff;background:rgba(29,35,39,.9);text-shadow:0 1px 3px rgba(0,0,0,.4);box-shadow:0 0 30px rgba(255,255,255,.1);border-radius:8px}#plugin-information-title div.vignette{display:none}#plugin-information-title.with-banner div.vignette{position:absolute;display:block;top:0;left:0;height:250px;width:100%;background:0 0;box-shadow:inset 0 0 50px 4px rgba(0,0,0,.2),inset 0 -1px 0 rgba(0,0,0,.1)}#plugin-information-tabs{padding:0 16px;position:relative;right:0;left:0;min-height:36px;font-size:0;z-index:1;border-bottom:1px solid #dcdcde;background:#f6f7f7}#plugin-information-tabs a{position:relative;display:inline-block;padding:9px 10px;margin:0;height:18px;line-height:1.3;font-size:14px;text-decoration:none;transition:none}#plugin-information-tabs a.current{margin:0 -1px -1px;background:#fff;border:1px solid #dcdcde;border-bottom-color:#fff;padding-top:8px;color:#2c3338}#plugin-information-tabs.with-banner a.current{border-top:none;padding-top:9px}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{overflow:hidden;background:#fff;position:relative;top:0;right:0;left:0;min-height:100%;min-height:calc(100% - 152px)}#plugin-information-content.with-banner{min-height:calc(100% - 346px)}#section-holder{position:relative;top:0;right:250px;bottom:0;left:0;margin-top:10px;margin-right:250px;padding:10px 26px 99999px;margin-bottom:-99932px}#section-holder .notice{margin:5px 0 15px}#section-holder .updated{margin:16px 0}#plugin-information .fyi{float:right;position:relative;top:0;right:0;padding:16px 16px 99999px;margin-bottom:-99932px;width:217px;border-left:1px solid #dcdcde;background:#f6f7f7;color:#646970}#plugin-information .fyi strong{color:#3c434a}#plugin-information .fyi h3{font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information .fyi-description{margin-top:0}#plugin-information .counter-container{margin:3px 0}#plugin-information .counter-label{float:left;margin-right:5px;min-width:55px}#plugin-information .counter-back{height:17px;width:92px;background-color:#dcdcde;float:left}#plugin-information .counter-bar{height:17px;background-color:#f0c33c;float:left}#plugin-information .counter-count{margin-left:5px}#plugin-information .fyi ul.contributors{margin-top:10px}#plugin-information .fyi ul.contributors li{display:inline-block;margin-right:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li{display:inline-block;margin-right:8px;vertical-align:middle}#plugin-information .fyi ul.contributors li img{vertical-align:middle;margin-right:4px}#plugin-information-footer{padding:13px 16px;position:absolute;right:0;bottom:0;left:0;height:40px;border-top:1px solid #dcdcde;background:#f6f7f7}#plugin-information .section{direction:ltr}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-left:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #c3c4c7}#plugin-information blockquote{border-left:2px solid #dcdcde;color:#646970;font-style:italic;margin:1em 0;padding:0 0 0 1em}#plugin-information .review{overflow:hidden;width:100%;margin-bottom:20px;border-bottom:1px solid #dcdcde}#plugin-information .review-title-section{overflow:hidden}#plugin-information .review-title-section h4{display:inline-block;float:left;margin:0 6px 0 0}#plugin-information .reviewer-info p{clear:both;margin:0;padding-top:2px}#plugin-information .reviewer-info .avatar{float:left;margin:4px 6px 0 0}#plugin-information .reviewer-info .star-rating{float:left}#plugin-information .review-meta{float:left;margin-left:.75em}#plugin-information .review-body{float:left;width:100%}.plugin-version-author-uri{font-size:13px}.update-php .button.button-primary{margin-right:1em}@media screen and (max-width:771px){#plugin-information-title.with-banner{height:100px}#plugin-information-title.with-banner h2{margin-top:30px;font-size:20px;line-height:2;max-width:85%}#plugin-information-title.with-banner div.vignette{height:100px}#plugin-information-tabs{overflow:hidden;padding:0;height:auto}#plugin-information-tabs a.current{margin-bottom:0;border-bottom:none}#plugin-information .fyi{float:none;border:1px solid #dcdcde;position:static;width:auto;margin:26px 26px 0;padding-bottom:0}#section-holder{position:static;margin:0;padding-bottom:70px}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}#TB_window.plugin-details-modal{background:#fff}#TB_window.plugin-details-modal.thickbox-loading:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;z-index:-1;margin:-10px 0 0 -10px;background:#fff url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}@media print,(min-resolution:120dpi){#TB_window.plugin-details-modal.thickbox-loading:before{background-image:url(../images/spinner-2x.gif)}}.plugin-details-modal #TB_title{float:left;height:1px}.plugin-details-modal #TB_ajaxWindowTitle{display:none}.plugin-details-modal #TB_closeWindowButton{left:auto;right:-30px;color:#f0f0f1}.plugin-details-modal #TB_closeWindowButton:focus,.plugin-details-modal #TB_closeWindowButton:hover{outline:0;box-shadow:none}.plugin-details-modal #TB_closeWindowButton:focus::after,.plugin-details-modal #TB_closeWindowButton:hover::after{outline:2px solid;outline-offset:-4px;border-radius:4px}.plugin-details-modal .tb-close-icon{display:none}.plugin-details-modal #TB_closeWindowButton:after{content:"\f335";content:"\f335"/'';font:normal 32px/29px dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media screen and (max-width:830px){.plugin-details-modal #TB_closeWindowButton{right:0;top:-30px}}img{border:none}.bulk-action-notice .toggle-indicator::before,.meta-box-sortables .postbox .order-higher-indicator::before,.meta-box-sortables .postbox .order-lower-indicator::before,.meta-box-sortables .postbox .toggle-indicator::before,.privacy-text-box .toggle-indicator::before,.sidebar-name .toggle-indicator::before{content:"\f142";content:"\f142"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before,.js .widgets-holder-wrap.closed .toggle-indicator::before,.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before,.privacy-text-box.closed .toggle-indicator::before{content:"\f140";content:"\f140"/''}.postbox .handle-order-higher .order-higher-indicator::before{content:"\f343";content:"\f343"/'';color:inherit}.postbox .handle-order-lower .order-lower-indicator::before{content:"\f347";content:"\f347"/'';color:inherit}.postbox .handle-order-higher .order-higher-indicator::before,.postbox .handle-order-lower .order-lower-indicator::before{position:relative;top:.11rem;width:20px;height:20px}.postbox .handlediv .toggle-indicator::before{width:20px;border-radius:50%}.postbox .handlediv .toggle-indicator::before{position:relative;top:.05rem;text-indent:-1px}.rtl .postbox .handlediv .toggle-indicator::before{text-indent:1px}.bulk-action-notice .toggle-indicator::before{line-height:16px;vertical-align:top;color:#787c82}.postbox .handle-order-higher:focus,.postbox .handle-order-lower:focus,.postbox .handlediv:focus{box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);border-radius:50%;outline:2px solid transparent}.postbox .handle-order-higher:focus .order-higher-indicator::before,.postbox .handle-order-lower:focus .order-lower-indicator::before,.postbox .handlediv:focus .toggle-indicator::before{box-shadow:none;outline:1px solid transparent}#photo-add-url-div input[type=text]{width:300px}.alignleft h2{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;background:#f6f7f7;tab-size:4}#template .CodeMirror,#template textarea{width:100%;min-height:60vh;height:calc(100vh - 295px);border:1px solid #dcdcde;box-sizing:border-box}#templateside>h2{padding-top:6px;padding-bottom:7px;margin:0}#templateside ol,#templateside ul{margin:0;padding:0}#templateside>ul{box-sizing:border-box;margin-top:0;overflow:auto;padding:0;min-height:60vh;height:calc(100vh - 295px);background-color:#f6f7f7;border:1px solid #dcdcde;border-left:none}#templateside ul ul{padding-left:12px}#templateside>ul>li>ul[role=group]{padding-left:0}[role=treeitem][aria-expanded=false]>ul{display:none}[role=treeitem] span[aria-hidden]{display:inline;font-family:dashicons;font-size:20px;position:absolute;pointer-events:none}[role=treeitem][aria-expanded=false]>.folder-label .icon:after{content:"\f139";content:"\f139"/''}[role=treeitem][aria-expanded=true]>.folder-label .icon:after{content:"\f140";content:"\f140"/''}[role=treeitem] .folder-label{display:block;padding:3px 3px 3px 12px;cursor:pointer}[role=treeitem]{outline:0}[role=treeitem] .folder-label.focus,[role=treeitem] a:focus{color:#043959;box-shadow:none;outline:2px solid var(--wp-admin-theme-color,#3858e9);outline-offset:-2px}[role=treeitem] .folder-label.hover,[role=treeitem].hover{background-color:#f0f0f1}.tree-folder{margin:0;position:relative}[role=treeitem] li{position:relative}.tree-folder .tree-folder::after{content:"";display:block;position:absolute;left:2px;border-left:1px solid #c3c4c7;top:-13px;bottom:10px}.tree-folder>li::before{content:"";position:absolute;display:block;border-left:1px solid #c3c4c7;left:2px;top:-5px;height:18px;width:7px;border-bottom:1px solid #c3c4c7}.tree-folder>li::after{content:"";position:absolute;display:block;border-left:1px solid #c3c4c7;left:2px;bottom:-7px;top:0}#templateside .current-file{margin:-4px 0 -2px}.tree-folder>.current-file::before{left:4px;height:15px;width:0;border-left:none;top:3px}.tree-folder>.current-file::after{bottom:-4px;height:7px;left:2px;top:auto}.tree-folder li:last-child>.tree-folder::after,.tree-folder>li:last-child::after{display:none}#documentation label,#theme-plugin-editor-label,#theme-plugin-editor-selector{font-weight:600}#theme-plugin-editor-label{display:inline-block;margin-bottom:1em}#docs-list,#template textarea{direction:ltr}.fileedit-sub #plugin,.fileedit-sub #theme{max-width:40%}.fileedit-sub .alignright{text-align:right}#template p{width:97%}#file-editor-linting-error{margin-top:1em;margin-bottom:1em}#file-editor-linting-error>.notice{margin:0;display:inline-block}#file-editor-linting-error>.notice>p{width:auto}#template .submit{margin-top:1em;padding:0}#template .submit input[type=submit][disabled]{cursor:not-allowed}#templateside{float:right;width:16em;word-wrap:break-word}#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside li{margin:4px 0}#templateside li:not(.howto) a,.theme-editor-php .highlight{display:block;padding:3px 0 3px 12px;text-decoration:none}#templateside li.current-file>a{padding-bottom:0}#templateside li:not(.howto)>a:first-of-type{padding-top:0}#templateside li.howto{padding:6px 12px 12px}.theme-editor-php .highlight{margin:-3px 3px -3px -12px}#templateside .highlight{border:none;font-weight:600}.nonessential{color:#646970;font-size:11px;font-style:italic;padding-left:12px}#documentation{margin-top:10px}#documentation label{line-height:1.8;vertical-align:baseline}.fileedit-sub{padding:10px 0 8px;line-height:180%}#file-editor-warning .file-editor-warning-content{margin:25px}.nav-menus-php .item-edit:before,.widget-top .widget-action .toggle-indicator:before,.wp-customizer .accordion-section-title:after,.wp-customizer .control-section .accordion-section-title:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none}.widget-top .widget-action .toggle-indicator:before{padding:1px 2px 1px 0;border-radius:50%}.handlediv,.item-edit,.postbox .handlediv.button-link,.toggle-indicator{color:#646970}.widget-action{color:#50575e}.handlediv:focus,.handlediv:hover,.item-edit:focus,.item-edit:hover,.postbox .handlediv.button-link:focus,.postbox .handlediv.button-link:hover,.sidebar-name:hover .toggle-indicator,.widget-action:focus,.widget-top:hover .widget-action{color:#1d2327;outline:2px solid transparent}.widget-top .widget-action:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#customize-info.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before,.widget.open .widget-top .widget-action .toggle-indicator:before,.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before{content:"\f142";content:"\f142"/''}/*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.accordion-section{border-bottom:1px solid #dcdcde;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dcdcde}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;position:relative;border-left:1px solid #dcdcde;border-right:1px solid #dcdcde;-webkit-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;right:10px;z-index:1}.accordion-section-title:focus{outline:1px solid transparent}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#a7aaad transparent;outline:1px solid transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title,.customize-pane-child .accordion-section-title{border-left:none;border-right:none;padding:10px 10px 11px 14px;line-height:1.55;background:#fff}.control-section .accordion-section-title:after,.customize-pane-child .accordion-section-title:after{top:calc(50% - 10px)}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#1d2327;background:#f6f7f7}.control-section.open .accordion-section-title{border-bottom:1px solid #dcdcde}.network-admin .edit-site-actions{margin-top:0}.my-sites{display:block;overflow:auto;zoom:1}.my-sites li{display:block;padding:8px 3%;min-height:130px;margin:0}@media only screen and (max-width:599px){.my-sites li{min-height:0}}@media only screen and (min-width:600px){.my-sites.striped li{background-color:#fff;position:relative}.my-sites.striped li:after{content:"";width:1px;height:100%;position:absolute;top:0;right:0;background:#c3c4c7}}@media only screen and (min-width:600px) and (max-width:699px){.my-sites li{float:left;width:44%}.my-sites.striped li{background-color:#fff}.my-sites.striped li:nth-of-type(odd){clear:left}.my-sites.striped li:nth-of-type(2n+2):after{content:none}.my-sites li:nth-of-type(4n+1),.my-sites li:nth-of-type(4n+2){background-color:#f6f7f7}}@media only screen and (min-width:700px) and (max-width:1199px){.my-sites li{float:left;width:27.333333%;background-color:#fff}.my-sites.striped li:nth-of-type(3n+3):after{content:none}.my-sites li:nth-of-type(6n+1),.my-sites li:nth-of-type(6n+2),.my-sites li:nth-of-type(6n+3){background-color:#f6f7f7}}@media only screen and (min-width:1200px) and (max-width:1399px){.my-sites li{float:left;width:21%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(4n+1){clear:left}.my-sites.striped li:nth-of-type(4n+4):after{content:none}.my-sites li:nth-of-type(8n+1),.my-sites li:nth-of-type(8n+2),.my-sites li:nth-of-type(8n+3),.my-sites li:nth-of-type(8n+4){background-color:#f6f7f7}}@media only screen and (min-width:1400px) and (max-width:1599px){.my-sites li{float:left;width:16%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(5n+1){clear:left}.my-sites.striped li:nth-of-type(5n+5):after{content:none}.my-sites li:nth-of-type(10n+1),.my-sites li:nth-of-type(10n+2),.my-sites li:nth-of-type(10n+3),.my-sites li:nth-of-type(10n+4),.my-sites li:nth-of-type(10n+5){background-color:#f6f7f7}}@media only screen and (min-width:1600px){.my-sites li{float:left;width:12.666666%;padding:8px 2%;background-color:#fff}.my-sites.striped li:nth-of-type(6n+1){clear:left}.my-sites.striped li:nth-of-type(6n+6):after{content:none}.my-sites li:nth-of-type(12n+1),.my-sites li:nth-of-type(12n+2),.my-sites li:nth-of-type(12n+3),.my-sites li:nth-of-type(12n+4),.my-sites li:nth-of-type(12n+5),.my-sites li:nth-of-type(12n+6){background-color:#f6f7f7}}.my-sites li a{text-decoration:none}@media print,(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){html.wp-toolbar{padding-top:var(--wp-admin--admin-bar--height)}.screen-reader-shortcut:focus{top:-39px}.block-editor-page .screen-reader-shortcut:focus{top:7px}.screen-reader-shortcut[href="#wp-toolbar"]{display:none}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:transparent!important}#wpcontent{position:relative;margin-left:0;padding-left:10px}#wpbody-content{padding-bottom:100px}.wrap{clear:both;margin-right:12px;margin-left:0}#col-left,#col-right{float:none;width:auto}#col-left .col-wrap,#col-right .col-wrap{padding:0}#collapse-menu,.post-format-select{display:none!important}.wrap h1.wp-heading-inline{margin-bottom:.5em}.wrap .add-new-h2,.wrap .add-new-h2:active,.wrap .page-title-action,.wrap .page-title-action:active{padding:0 14px;font-size:14px;white-space:nowrap;min-height:40px;line-height:2.71428571;vertical-align:middle}.media-upload-form div.error,.notice,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wp-core-ui .notice.is-dismissible{padding-right:46px}.notice-dismiss{padding:13px}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{right:-16em}code{word-wrap:break-word;word-wrap:anywhere;word-break:break-word}.postbox{font-size:14px}.metabox-holder .postbox>h3,.metabox-holder .stuffbox>h3,.metabox-holder h2,.metabox-holder h3.hndle{padding:12px}.nav-menus-php .metabox-holder h3{padding:0}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#template .CodeMirror,#template textarea{box-sizing:border-box}#templateside{float:none;width:auto}#templateside>ul{border-left:1px solid #dcdcde}#templateside li{margin:0}#templateside li:not(.howto) a{display:block;padding:5px}#templateside li.howto{padding:12px}#templateside .highlight{padding:5px;margin-left:-5px;margin-top:-5px}#template .notice,#template>div{float:none;margin:1em 0;width:auto}#template .CodeMirror,#template textarea{width:100%}#templateside ul ul{padding-left:1.5em}[role=treeitem] .folder-label{display:block;padding:5px}.tree-folder .tree-folder::after,.tree-folder>li::after,.tree-folder>li::before{left:-8px}.tree-folder>li::before{top:0;height:13px}.tree-folder>.current-file::before{left:-5px;top:7px;width:4px}.tree-folder>.current-file::after{height:9px;left:-8px}.wrap #templateside span.notice{margin-left:-5px;width:100%}.fileedit-sub .alignright{float:left;margin-top:15px;width:100%;text-align:left}.fileedit-sub .alignright label{display:block}.fileedit-sub #plugin,.fileedit-sub #theme{margin-left:0;max-width:70%}.fileedit-sub input[type=submit]{margin-bottom:0}#documentation label[for=docs-list]{display:block}#documentation select[name=docs-list]{margin-left:0;max-width:60%}#documentation input[type=button]{margin-bottom:0}#wpfooter{display:none}#comments-form .checkforspam{display:none}.edit-comment-author{margin:2px 0 0}.filter-drawer .filter-group-feature input,.filter-drawer .filter-group-feature label{line-height:2.1}.filter-drawer .filter-group-feature label{margin-left:32px}.wp-filter .button.drawer-toggle{font-size:13px;line-height:2;height:28px}#screen-meta #contextual-help-wrap{overflow:visible}#screen-meta #contextual-help-back,#screen-meta .contextual-help-sidebar{display:none}#screen-meta .contextual-help-tabs{clear:both;width:100%;float:none}#screen-meta .contextual-help-tabs ul{margin:0 0 1em;padding:1em 0 0}#screen-meta .contextual-help-tabs .active{margin:0}#screen-meta .contextual-help-tabs-wrap{clear:both;max-width:100%;float:none}#screen-meta,#screen-meta-links{margin-right:10px}#screen-meta-links{margin-bottom:20px}#screen-meta-links .show-settings:after{line-height:1.9}.wp-filter .search-form input[type=search]{font-size:1rem}.wp-filter .search-form.search-plugins{min-width:100%}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}.screen-reader-shortcut:focus{top:7px}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}.nav-tab-wrapper,.wrap h2.nav-tab-wrapper,h1.nav-tab-wrapper{border-bottom:0}h1 .nav-tab,h2 .nav-tab,h3 .nav-tab,nav .nav-tab{margin:10px 10px 0 0;border-bottom:1px solid #c3c4c7}.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{border-bottom:1px solid #c3c4c7}.wp-filter .search-form.search-plugins label{width:100%}}@media screen and (max-width:480px){.metabox-prefs-container{display:grid}.metabox-prefs-container>*{display:inline-block;padding:2px}}@media screen and (max-width:320px){#network_dashboard_right_now .subsubsub{font-size:14px;text-align:left}}css/farbtastic.css000066600000001143152330733730010201 0ustar00 .farbtastic { position: relative; } .farbtastic * { position: absolute; cursor: crosshair; } .farbtastic, .farbtastic .wheel { width: 195px; height: 195px; } .farbtastic .color, .farbtastic .overlay { top: 47px; left: 47px; width: 101px; height: 101px; } .farbtastic .wheel { background: url(../images/wheel.png) no-repeat; width: 195px; height: 195px; } .farbtastic .overlay { background: url(../images/mask.png) no-repeat; } .farbtastic .marker { width: 17px; height: 17px; margin: -8px 0 0 -8px; overflow: hidden; background: url(../images/marker.png) no-repeat; } css/forms-rtl.min.css000066600000074304152330733730010577 0ustar00/*! This file is auto-generated */ button,input,select,textarea{box-sizing:border-box;font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea{font-size:14px}textarea{overflow:auto;padding:8px 12px;line-height:1.42857143;resize:vertical}input,select{margin:0 1px}textarea.code{padding:8px 12px}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{box-shadow:0 0 0 transparent;border-radius:2px;border:1px solid #949494;background-color:#fff;color:#1e1e1e}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{padding:0 12px;min-height:40px}select{padding:0 12px 0 24px;line-height:2.71428571;min-height:40px}::-webkit-datetime-edit{line-height:1.85714286}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:2px solid transparent}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.ltr,input[type=email],input[type=password],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #1e1e1e;border-radius:2px;background:#fff;color:#1e1e1e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-.25rem 0 0 .25rem;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:none;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#949494}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#135e96}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{display:inline-flex;border-radius:50%;margin-left:.25rem;align-items:center;justify-content:center}input[type=checkbox]:checked::before,input[type=radio]:checked::before{float:right;display:inline-block;vertical-align:middle;width:1rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E");content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E")/'';margin:-.1875rem -.25rem 0 0;height:1.3125rem;width:1.3125rem}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked::before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:auto;background-color:#fff;outline:4px solid transparent}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}input[type=search]::-webkit-search-cancel-button{cursor:pointer}.wp-admin input[type=file]{padding:3px 0;cursor:pointer}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#f0f0f0}::-webkit-input-placeholder{color:#757575}::-moz-placeholder{color:#757575}.form-invalid .form-required,.form-invalid .form-required:focus,.form-invalid.form-required input,.form-invalid.form-required input:focus,.form-invalid.form-required select,.form-invalid.form-required select:focus{border-color:#d63638!important;box-shadow:0 0 2px rgba(214,54,56,.8)}.form-table .form-required.form-invalid td:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin-right:-25px;vertical-align:middle}.form-table .form-required.user-pass1-wrap.form-invalid td:after{content:""}.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin:0 -29px 0 6px;vertical-align:middle}.form-input-tip{color:#646970}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:#f0f0f0;border-color:#ccc;box-shadow:none;color:#949494}input[type=file].disabled,input[type=file]:disabled,input[type=file][aria-disabled=true],input[type=range].disabled,input[type=range]:disabled,input[type=range][aria-disabled=true]{background:0 0;box-shadow:none;cursor:default}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=checkbox][aria-disabled=true],input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before,input[type=radio][aria-disabled=true]{opacity:.7;cursor:default}.wp-core-ui select{font-size:14px;line-height:2.71428571;color:#1e1e1e;border-color:#949494;box-shadow:none;border-radius:2px;padding:0 12px 0 24px;min-height:40px;max-width:25rem;-webkit-appearance:none;background:#fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat left 8px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.wp-core-ui select:hover{color:#1e1e1e;border-color:#1e1e1e}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);color:#1e1e1e;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui select:active{border-color:#949494;box-shadow:none}.wp-core-ui select.disabled,.wp-core-ui select:disabled{color:#a7aaad;border-color:#dcdcde;background-color:#f6f7f7;background-image:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E');box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.wp-core-ui select[aria-disabled=true]{cursor:default}.wp-core-ui select:-moz-focusring{color:transparent;text-shadow:0 0 0 #0a4b78}.wp-core-ui select::-ms-value{background:0 0;color:#50575e}.wp-core-ui select:hover::-ms-value{color:#1e1e1e}.wp-core-ui select:focus::-ms-value{color:#0a4b78}.wp-core-ui select.disabled::-ms-value,.wp-core-ui select:disabled::-ms-value{color:#a7aaad}.wp-core-ui select::-ms-expand{display:none}.wp-admin .button-cancel{display:inline-block;min-height:28px;padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.meta-box-sortables input{vertical-align:middle}.misc-pub-post-status select{margin-top:0}.wp-core-ui select[multiple]{height:auto;padding-left:8px;background:#fff}.submit{padding:1.5em 0;margin:5px 0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border:none}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:right;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:none;text-align:left}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:none;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}.regular-text{width:25em}input.small-text{width:50px;padding:0 8px}label input.small-text{margin-top:-4px}input[type=number].small-text{width:65px;padding-left:4px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px;padding-left:0}#doaction,#doaction2,#post-query-submit{margin:0 0 0 8px}.no-js input#changeit2,.no-js input#doaction2,.no-js label[for=bulk-action-selector-bottom],.no-js label[for=new_role2],.no-js select#bulk-action-selector-bottom,.no-js select#new_role2{display:none}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{padding:0 12px;line-height:2.14285714;min-height:32px}.wp-core-ui .tablenav select{float:right;margin-left:6px;max-width:12.5rem;padding:0 8px 0 24px}.wp-core-ui .tablenav .button{min-height:32px;line-height:2.30769231;padding:0 12px}#timezone_string option{margin-right:1em}.wp-core-ui .button.wp-cancel-pw>.dashicons,.wp-core-ui .button.wp-hide-pw>.dashicons{width:1.25rem;height:1.25rem;font-size:20px;line-height:1;vertical-align:middle}.button.wp-hide-pw.user-new-password-toggle{display:inline-flex;align-items:center;column-gap:4px}.wp-cancel-pw .dashicons-no{display:none}#your-profile label+a,label{vertical-align:middle}#your-profile label+a,fieldset label{vertical-align:middle}.options-media-php [for*="_size_"]{min-width:10em;vertical-align:baseline}.options-media-php .small-text[name*="_size_"]{margin:0 0 1em}.wp-generate-pw{margin-top:1em;position:relative}.wp-pwd button{height:min-content}.wp-pwd{margin-top:1em;position:relative}.mailserver-pass-wrap .wp-pwd{display:inline-block;margin-top:0}#mailserver_pass{padding-right:2.5rem}.mailserver-pass-wrap .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:2;width:2.5rem;min-width:40px;margin:0;padding:0 9px;position:absolute;right:0;top:0}.mailserver-pass-wrap .button.wp-hide-pw:hover{background:0 0;border-color:transparent}.mailserver-pass-wrap .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.mailserver-pass-wrap .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{background-color:#f0f0f0;border:1px solid #ccc;border-radius:2px;color:#1e1e1e;margin:-1px 1px 5px;padding:3px 5px;text-align:center;width:25em;box-sizing:border-box;opacity:0}#pass-strength-result.short{background-color:#ffabaf;border-color:#e65054;opacity:1}#pass-strength-result.bad{background-color:#facfd2;border-color:#f86368;opacity:1}#pass-strength-result.good{background-color:#f5e6ab;border-color:#f0c33c;opacity:1}#pass-strength-result.strong{background-color:#b8e6bf;border-color:#68de7c;opacity:1}.password-input-wrapper{display:inline-block}.password-input-wrapper input{font-family:Consolas,Monaco,monospace}#pass1-text.short,#pass1.short{border-color:#e65054}#pass1-text.bad,#pass1.bad{border-color:#f86368}#pass1-text.good,#pass1.good{border-color:#f0c33c}#pass1-text.strong,#pass1.strong{border-color:#68de7c}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.pw-weak{display:none}.indicator-hint{padding-top:8px}.wp-pwd [type=password],.wp-pwd [type=text]{margin-bottom:0;min-height:40px}.wp-pwd input::-ms-reveal{display:none}#pass1-text,.show-password #pass1{display:none}#pass1-text::-ms-clear{display:none}.show-password #pass1-text{display:inline-block}.wp-pwd .caps-warning{display:none;position:relative;background:#fcf9e8;border:1px solid #f0c33c;color:#1d2327;padding:6px 10px;top:-8px}.profile-php .wp-pwd .caps-warning{padding:3px 5px;top:-4px;border-radius:2px}.wp-pwd .caps-icon{display:inline-flex;justify-content:center;width:20px;height:20px;margin-left:5px;vertical-align:middle}.wp-pwd .caps-warning-text{vertical-align:middle}p.search-box{display:flex;flex-wrap:wrap;align-items:center;column-gap:.5rem;position:relative;float:left;margin:11px 0}p.search-box input[type=search],p.search-box input[type=text]{min-height:32px;padding:0 8px}p.search-box .button{min-height:32px;line-height:2.30769231;padding:0 12px}.network-admin.themes-php p.search-box{clear:right}.tablenav .search-plugins input[name="s"]{float:right;margin:0 0 0 4px}.tagsdiv .newtag{margin:0}.js.plugins-php .search-box .wp-filter-search{margin:0;width:280px}input[type=email].ui-autocomplete-loading,input[type=text].ui-autocomplete-loading{background-image:url(../images/loading.gif);background-repeat:no-repeat;background-position:left 5px center;visibility:visible}input.ui-autocomplete-input.open{border-bottom-color:transparent}ul#add-to-blog-users{margin:0 14px 0 0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;box-shadow:0 1px 2px rgba(79,148,212,.8);background-color:#fff}.ui-autocomplete li{margin-bottom:0;padding:4px 10px;white-space:nowrap;text-align:right;cursor:pointer}.ui-autocomplete .ui-state-focus{background-color:#dcdcde}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color);color:#fff;outline:2px solid transparent}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#1d2327;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:right;padding:20px 0 20px 10px;width:200px;line-height:1.3;font-weight:600}.form-table .td-full,.form-table th.th-full{width:auto;padding:20px 0 20px 10px;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table .date-time-doc{margin-top:1em}.form-table p.timezone-info{margin:1em 0;display:flex;flex-direction:column}#local-time{margin-top:.5em}.form-table td fieldset label{margin:.35em 0 .5em!important;display:inline-block}.form-table td fieldset p label{margin-top:0!important}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}table.form-table td .updated p{font-size:13px;margin:.3em 0}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-left:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#adduser .form-field input,#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#dcdcde}.color-palette{display:table;width:100%;border-spacing:0;border-collapse:collapse}.color-palette .color-palette-shade,.color-palette td{display:table-cell;height:20px;padding:0;border:none}.color-option{cursor:pointer}.create-application-password .form-field{max-width:25em}.create-application-password label{font-weight:600}.create-application-password p.submit{margin-bottom:0;padding-bottom:0;display:block}#application-passwords-section .notice{margin-top:20px;margin-bottom:0;word-wrap:break-word}.application-password-display input.code{margin-bottom:6px;width:100%;max-width:20em}.auth-app-card.card{max-width:768px}.authorize-application-php .form-wrap p{display:block}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.label-responsive{vertical-align:middle}#export-filters p{margin:0 0 1em}#export-filters p.submit{margin:7px 0 5px}.card{position:relative;margin-top:20px;padding:16px 24px;min-width:255px;max-width:520px;border:1px solid rgb(0,0,0,.1);border-radius:8px;background:#fff;box-sizing:border-box}.pressthis h4{margin:2em 0 1em}.pressthis textarea{width:100%;font-size:1em}#pressthis-code-wrap{overflow:auto}.pressthis-bookmarklet-wrapper{margin:20px 0 8px;vertical-align:top;position:relative;z-index:1}.pressthis-bookmarklet,.pressthis-bookmarklet:active,.pressthis-bookmarklet:focus,.pressthis-bookmarklet:hover{display:inline-block;position:relative;cursor:move;color:#2c3338;background:#dcdcde;border-radius:5px;border:1px solid #c3c4c7;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis-bookmarklet:active{outline:0}.pressthis-bookmarklet:after{content:"";width:70%;height:55%;z-index:-1;position:absolute;left:10px;bottom:9px;background:0 0;transform:skew(-20deg) rotate(-6deg);box-shadow:0 10px 8px rgba(0,0,0,.6)}.pressthis-bookmarklet:hover:after{transform:skew(-20deg) rotate(-9deg);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis-bookmarklet span{display:inline-block;margin:0;padding:0 9px 8px 12px}.pressthis-bookmarklet span:before{color:#787c82;font:normal 20px/1 dashicons;content:"\f157";content:"\f157"/'';position:relative;display:inline-block;top:4px;margin-left:4px}.pressthis-js-toggle{margin-right:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle.button.button{margin-right:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle .dashicons{margin:5px 7px 6px 8px;color:#50575e}.timezone-info code{white-space:nowrap}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .date-time-text{display:inline-block;min-width:10em}.options-general-php input.small-text{width:56px;margin:-2px 0;min-height:32px}.options-general-php .spinner{float:none;margin:-3px 3px 0}.options-general-php .language-install-spinner,.profile-php .language-install-spinner,.settings-php .language-install-spinner,.user-edit-php .language-install-spinner{display:inline-block;float:none;margin:-3px 5px 0;vertical-align:middle}.form-table.permalink-structure .available-structure-tags{margin-top:8px}.form-table.permalink-structure .available-structure-tags ul{display:flex;flex-wrap:wrap;margin:8px 0 0}.form-table.permalink-structure .available-structure-tags li{margin:6px 0 0 5px}.form-table.permalink-structure .available-structure-tags li:last-child{margin-left:0}.form-table.permalink-structure .structure-selection .row{margin-bottom:16px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 24px);display:inline-flex;flex-direction:column}.form-table.permalink-structure .structure-selection .row label{font-weight:600}.form-table.permalink-structure .structure-selection .row p{margin-top:0}.permalink-structure-optional-description code{display:inline-block}.setup-php textarea{max-width:100%}.form-field #site-address{max-width:25em}.form-field #domain{max-width:22em}.form-field #admin-email,.form-field #blog_last_updated,.form-field #blog_registered,.form-field #path,.form-field #site-title{max-width:25em}.form-field #path{margin-bottom:5px}#search-sites,#search-users{max-width:60%}.configuration-rules-label{font-weight:600;margin-bottom:4px}.request-filesystem-credentials-dialog{display:none;visibility:visible}.request-filesystem-credentials-dialog .notification-dialog{top:10%;max-height:85%}.request-filesystem-credentials-dialog-content{margin:25px}#request-filesystem-credentials-title{font-size:1.3em;margin:1em 0}.request-filesystem-credentials-form legend{font-size:1em;padding:1.33em 0;font-weight:600}.request-filesystem-credentials-form input[type=password],.request-filesystem-credentials-form input[type=text]{display:block}.request-filesystem-credentials-dialog input[type=password],.request-filesystem-credentials-dialog input[type=text]{width:100%}.request-filesystem-credentials-form .field-title{font-weight:600}.request-filesystem-credentials-dialog label[for=hostname],.request-filesystem-credentials-dialog label[for=private_key],.request-filesystem-credentials-dialog label[for=public_key]{display:block;margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:right;width:48%}.request-filesystem-credentials-dialog .ftp-password{margin-right:4%}.request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons{text-align:left}.request-filesystem-credentials-dialog label[for=ftp]{margin-left:10px}.request-filesystem-credentials-dialog #auth-keys-desc{margin-bottom:0}#request-filesystem-credentials-dialog .button:not(:last-child){margin-left:10px}#request-filesystem-credentials-form .cancel-button{display:none}#request-filesystem-credentials-dialog .cancel-button{display:inline}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:none;width:auto}.request-filesystem-credentials-dialog .ftp-username{margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password{margin:0}.request-filesystem-credentials-dialog .ftp-password em{color:#757575}.request-filesystem-credentials-dialog label{display:block;line-height:1.5;margin-bottom:1em}.request-filesystem-credentials-form legend{padding-bottom:0}.request-filesystem-credentials-form #ssh-keys legend{font-size:1.3em}.request-filesystem-credentials-form .notice{margin:0 0 20px;clear:both}.tools-privacy-policy-page form{margin-bottom:1.3em}.tools-privacy-policy-page input.button{margin:0 6px 0 1px}.tools-privacy-policy-page select{margin:0 6px .5em 1px}.tools-privacy-edit{margin:1.5em 0}.tools-privacy-policy-page span{line-height:2}.privacy_requests .column-email{width:40%}.privacy_requests .column-type{text-align:center}.privacy_requests tfoot td:first-child,.privacy_requests thead td:first-child{border-right:4px solid #fff}.privacy_requests tbody th{border-right:4px solid #fff;background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests .row-actions{color:#787c82}.privacy_requests .row-actions.processing{position:static}.privacy_requests tbody .has-request-results th{box-shadow:none}.privacy_requests tbody .request-results th .notice{margin:0 0 5px}.privacy_requests tbody td{background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests tbody .has-request-results td{box-shadow:none}.privacy_requests .next_steps .button{word-wrap:break-word;white-space:normal}.privacy_requests .status-request-confirmed td,.privacy_requests .status-request-confirmed th{background-color:#fff;border-right-color:#72aee6}.privacy_requests .status-request-failed td,.privacy_requests .status-request-failed th{background-color:#f6f7f7;border-right-color:#d63638}.privacy_requests .export_personal_data_failed a{vertical-align:baseline}.status-label{font-weight:600}.status-label.status-request-pending{font-weight:400;font-style:italic;color:#646970}.status-label.status-request-failed{color:#d63638;font-weight:600}.privacy_requests .status-date{display:block;font-weight:400}.wp-privacy-request-form{clear:both}.wp-privacy-request-form-field{margin:1.5em 0}.wp-privacy-request-form input{margin:0}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:0 12px;min-height:40px}::-webkit-datetime-edit{line-height:1.875}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox],input[type=checkbox]{-webkit-appearance:none}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox]{margin-bottom:8px}.widefat tfoot td input[type=checkbox]:before,.widefat th input[type=checkbox]:before,.widefat thead td input[type=checkbox]:before,input[type=checkbox]:checked:before{width:1.875rem;height:1.875rem;margin:-.1875rem -.3125rem}input[type=checkbox],input[type=radio]{height:1.5625rem;width:1.5625rem}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-.1875rem}input[type=radio]:checked:before{vertical-align:middle;width:.5625rem;height:.5625rem;margin:.4375rem;line-height:.76190476}.wp-admin .form-table select,.wp-core-ui select{min-height:40px;font-size:16px;line-height:2.5;padding:0 12px 0 24px}.wp-admin .button-cancel{margin-bottom:0;padding:2px 0;font-size:14px;vertical-align:middle}#adduser .form-field input,#createuser .form-field input{width:100%}.form-table{box-sizing:border-box}.form-table td,.form-table th,.label-responsive{display:block;width:auto;vertical-align:middle}.label-responsive{margin:.5em 0}.export-filters li{margin-bottom:0}.form-table .color-palette .color-palette-shade,.form-table .color-palette td{display:table-cell;width:15px;height:30px;padding:0}.form-table .color-palette{margin-left:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;display:block;max-width:none;box-sizing:border-box}.form-table .form-required.form-invalid td:after{float:left;margin:-30px 0 0 3px}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:4.375em;display:inline;padding:3px 6px;margin:0 3px}.form-table .regular-text~input[type=text].small-text{margin-top:5px}#pass-strength-result{width:100%;box-sizing:border-box;padding:8px}.profile-php .wp-pwd .caps-warning{padding:8px}.password-input-wrapper{display:block}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{min-height:40px}.wp-core-ui .tablenav .button{min-height:40px;line-height:2.71428571;padding:0 14px}p.search-box{float:none;width:100%;margin-bottom:20px;display:flex}p.search-box input[name="s"]{width:100%;float:none;margin-bottom:10px;vertical-align:middle}.js.plugins-php .search-box .wp-filter-search{width:100%;margin-bottom:0}p.search-box input[type=search],p.search-box input[type=text]{min-height:40px;padding:0 12px}p.search-box input[type=submit].button{margin-bottom:10px}.form-table span.description{display:inline;padding:4px 0 0;line-height:1.4;font-size:14px}.form-table th{padding:10px 0 0;border-bottom:0}.form-table td{margin-bottom:0;padding:4px 0 6px}.form-table.permalink-structure td code{display:inline-block}.form-table.permalink-structure .structure-selection{margin-top:8px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 36px);width:100%}.form-table.permalink-structure td input[type=text]{margin-top:4px}.permalink-structure-has-blog-prefix{display:flex;align-items:center}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table td>label:first-child{display:inline-block;margin-top:.35em}.background-position-control .button-group>label{font-size:0}.form-table fieldset label{display:block}.form-field #domain{max-width:none}.wp-pwd{position:relative}#profile-page .form-table #pass1{padding-left:90px}.wp-pwd button.button{background:0 0;border:1px solid transparent;box-shadow:none;line-height:2;margin:0;padding:5px 9px;position:absolute;left:0;top:0;width:2.375rem;height:2.375rem;min-width:40px;min-height:40px}.wp-pwd button.wp-hide-pw{left:2.5rem}body.user-new-php .wp-pwd button.wp-hide-pw{left:0}.wp-pwd button.button:focus,.wp-pwd button.button:hover{background:0 0}.wp-pwd button.button:active{background:0 0;box-shadow:none;transform:none}.wp-pwd .button .text{display:none}.wp-pwd [type=password],.wp-pwd [type=text]{line-height:2;padding-left:5rem}body.user-new-php .wp-pwd [type=password],body.user-new-php .wp-pwd [type=text]{padding-left:2.5rem}.wp-cancel-pw .dashicons-no{display:inline-block}.mailserver-pass-wrap .wp-pwd{display:block}#mailserver_pass{padding-left:10px}.options-general-php input[type=text].small-text{max-width:6.25em;margin:0;min-height:40px}.tools-privacy-policy-page form.wp-create-privacy-page{margin-bottom:1em}.tools-privacy-policy-page input#set-page,.tools-privacy-policy-page select{margin:10px 0 0}.tools-privacy-policy-page .wp-create-privacy-page span{display:block;margin-bottom:1em}.tools-privacy-policy-page .wp-create-privacy-page .button{margin-right:0}.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column){display:table-cell}.wp-list-table.privacy_requests.widefat th input,.wp-list-table.privacy_requests.widefat thead td input{margin-right:5px}.wp-privacy-request-form-field input[type=text]{width:100%;margin-bottom:10px;vertical-align:middle}.regular-text{max-width:100%}}@media only screen and (max-width:768px){.form-field input[type=email],.form-field input[type=password],.form-field input[type=text],.form-field select,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}}@media only screen and (max-height:480px),screen and (max-width:450px){.file-editor-warning .notification-dialog,.request-filesystem-credentials-dialog .notification-dialog{width:100%;height:100%;max-height:100%;position:fixed;top:0;margin:0;right:0}}@media screen and (max-width:600px){.color-option{width:49%}}@media only screen and (max-width:320px){.options-general-php .date-time-text.date-time-custom-text{min-width:0;margin-left:.5em}}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}css/site-icon-rtl.min.css000066600000007554152330733730011346 0ustar00/*! This file is auto-generated */ .site-icon-section{--site-icon-removal:#b32d2e}.site-icon-preview{--site-icon-input-border:#8c8f94;--site-icon-preview-background:#fff;--site-icon-preview-browser-top:#dcdcde;--site-icon-preview-browser-bottom:#a7aaad;--site-icon-preview-browser-border:rgba(255, 255, 255, 0.2);--site-icon-address-bar-background:#f0f0f1;--site-icon-address-bar-close:#646970;--site-icon-address-bar-text:#3c434a;--site-icon-shadow-1:rgba(0, 0, 0, 0.1);--site-icon-shadow-2:rgba(0, 0, 0, 0.2);--site-icon-shadow-3:rgba(0, 0, 0, 0.5);direction:initial;display:flex;height:60px;padding:8px 8px 0 0;align-items:flex-start;position:relative;overflow:hidden;box-sizing:border-box;border:1px solid var(--site-icon-input-border);border-radius:4px;background-color:var(--site-icon-preview-background);width:275px}@media (prefers-color-scheme:dark){.site-icon-preview{--site-icon-preview-browser-top:#2c3338;--site-icon-preview-browser-bottom:#111;--site-icon-address-bar-background:#3c434a;--site-icon-address-bar-close:#f0f0f1;--site-icon-address-bar-text:#f0f0f1}}.site-icon-preview.settings{height:88px;padding:16px 16px 0 0;width:350px;margin:0 0 16px 0}.site-icon-preview.crop{width:258px;height:100%;display:grid;grid-template-columns:8px 1fr;grid-template-rows:64px 1fr;padding-right:0;row-gap:16px;direction:inherit}.site-icon-preview.hidden{display:none}.site-icon-preview .direction-wrap{grid-template-columns:44px 1fr;gap:8px;display:grid;direction:rtl;height:100%;width:100%}.site-icon-preview.settings .direction-wrap{grid-template-columns:58px 1fr;gap:16px}.site-icon-preview:after{--after-size:150%;aspect-ratio:1/1;content:"";display:block;position:absolute;top:0;right:0;width:var(--after-size);transform:translate(calc(-1*(var(--after-size) * -.125)),calc(var(--after-size) * -.125));filter:blur(5px);opacity:.5;background:var(--site-icon-url)}.site-icon-preview .app-icon-preview{aspect-ratio:1/1;border-radius:10px;box-shadow:0 1px 5px 0 var(--site-icon-shadow-3);flex-shrink:0;width:100%;z-index:1}.site-icon-preview-browser{display:flex;padding:4px 12px 0 4px;align-items:flex-start;gap:16px;flex:1 0 0;z-index:1;border-top-right-radius:10px;border-top:1px solid var(--site-icon-preview-browser-border);border-right:1px solid var(--site-icon-preview-browser-border);background:linear-gradient(-180deg,var(--site-icon-preview-browser-top) 0,var(--site-icon-preview-browser-bottom) 100%);box-shadow:0 10px 22px 0 var(--site-icon-shadow-2)}.site-icon-preview .browser-buttons{width:48px;height:40px;fill:var(--site-icon-input-border)}.site-icon-preview-tab{padding:8px;align-items:center;gap:8px;flex:1 0 0;border-radius:4px;background-color:var(--site-icon-address-bar-background);box-shadow:0 1px 3px 0 var(--site-icon-shadow-1);display:grid;grid-template-columns:24px auto 24px}.site-icon-preview-browser .browser-icon-preview{box-shadow:0 0 20px 0 var(--site-icon-shadow-1)}.site-icon-preview-tab>img,.site-icon-preview-tab>svg{width:24px;height:24px}.site-icon-preview-tab>svg{fill:var(--site-icon-address-bar-close)}.site-icon-preview-site-title{color:var(--site-icon-address-bar-text);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:500}.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview{width:64px;height:64px;margin:0;grid-column:2}.site-icon-preview-crop-modal .site-icon-preview-browser{grid-column:2}.site-icon-preview-crop-modal .image-preview-wrap{overflow:hidden;aspect-ratio:1/1}.site-icon-preview-crop-modal .image-preview-wrap.browser{width:24px;height:24px}button.reset.remove-site-icon{color:var(--site-icon-removal);text-decoration:none;border-color:currentColor;box-shadow:none;background:0 0}button.reset.remove-site-icon:focus,button.reset.remove-site-icon:hover{background:var(--site-icon-removal);color:#fff;border-color:var(--site-icon-removal);box-shadow:0 0 0 1px var(--site-icon-removal)}.site-icon-action-buttons{display:flex;flex-wrap:wrap;gap:10px}css/admin-menu.min.css000066600000035457152330733730010712 0ustar00/*! This file is auto-generated */ #adminmenu,#adminmenu .wp-submenu,#adminmenuback,#adminmenuwrap{width:160px;background-color:#1d2327}#adminmenuback{position:fixed;top:0;bottom:-120px;z-index:1;outline:1px solid transparent}.php-error #adminmenuback{position:absolute}.php-error #adminmenuback,.php-error #adminmenuwrap{margin-top:2em}#adminmenu{clear:left;margin:12px 0;padding:0;list-style:none}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:36px}.menu-icon-appearance div.wp-menu-image,.menu-icon-comments div.wp-menu-image,.menu-icon-dashboard div.wp-menu-image,.menu-icon-generic div.wp-menu-image,.menu-icon-links div.wp-menu-image,.menu-icon-media div.wp-menu-image,.menu-icon-page div.wp-menu-image,.menu-icon-plugins div.wp-menu-image,.menu-icon-post div.wp-menu-image,.menu-icon-settings div.wp-menu-image,.menu-icon-site div.wp-menu-image,.menu-icon-tools div.wp-menu-image,.menu-icon-users div.wp-menu-image{background-image:none!important}#adminmenuwrap{position:relative;float:left;z-index:9990}#adminmenu *{-webkit-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0}#adminmenu a{display:block;line-height:1.3;padding:2px 5px;color:#f0f0f1}#adminmenu .wp-submenu a{color:#c3c4c7;color:rgba(240,246,252,.7);font-size:13px;line-height:1.4;margin:0;padding:5px 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover{background:0 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a:hover,#adminmenu li.menu-top>a:focus{color:#72aee6}#adminmenu a:focus,#adminmenu a:hover,.folded #adminmenu .wp-submenu-head:hover{box-shadow:inset 4px 0 0 0 currentColor;transition:box-shadow .1s linear;border-radius:0}#adminmenu li.menu-top{border:none;min-height:34px;position:relative}#adminmenu .wp-submenu{list-style:none;position:absolute;top:-1000em;left:160px;overflow:visible;word-wrap:break-word;padding:6px 0;z-index:9999;background-color:#2c3338;box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu a.menu-top:focus+.wp-submenu,.js #adminmenu .opensub .wp-submenu,.js #adminmenu .sub-open,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{top:0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;margin-top:0;box-shadow:none}.folded #adminmenu .wp-has-current-submenu .wp-submenu{box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{position:relative;background-color:#1d2327;color:#72aee6}.folded #adminmenu li.menu-top:hover,.folded #adminmenu li.opensub>a.menu-top,.folded #adminmenu li>a.menu-top:focus{z-index:10000}#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu{background:#2271b1;color:#fff}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:0;left:36px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-left-width:5px}#adminmenu .opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-not-current-submenu li>a,.folded #adminmenu .wp-has-current-submenu li>a{padding-right:16px;padding-left:14px;transition:all .1s ease-in-out,outline 0s}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding:5px 12px}#adminmenu .wp-submenu-head,#adminmenu a.menu-top{font-size:14px;font-weight:400;line-height:1.3;padding:0}#adminmenu .wp-submenu-head{display:none}.folded #adminmenu .wp-menu-name{position:absolute;left:-999px}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0}#adminmenu .wp-menu-image img{padding:9px 0 0;opacity:.6}#adminmenu div.wp-menu-name{padding:8px 8px 8px 36px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#adminmenu div.wp-menu-image{float:left;width:36px;height:34px;margin:0;text-align:center}#adminmenu div.wp-menu-image.svg{background-repeat:no-repeat;background-position:center;background-size:20px auto}div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6);padding:7px 0;transition:all .1s ease-in-out}#adminmenu div.wp-menu-image:before{color:#a7aaad;color:rgba(240,246,252,.6)}#adminmenu .current div.wp-menu-image:before,#adminmenu .wp-has-current-submenu div.wp-menu-image:before,#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before{color:#fff}#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#72aee6}.folded #adminmenu div.wp-menu-image{width:35px;height:30px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:34px}.sticky-menu #adminmenuwrap{position:fixed}ul#adminmenu a.wp-has-current-submenu{position:relative}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{right:0;border:solid 8px transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-right-color:#f0f0f1;top:50%;margin-top:-8px}.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after,.folded ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.folded ul#adminmenu a.wp-has-current-submenu:after,.folded ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{right:0;border:8px solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;top:10px;z-index:10000}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:18px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:#2c3338}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1}#adminmenu li.wp-menu-separator{height:5px;padding:0;margin:0 0 6px;cursor:inherit}#adminmenu div.separator{height:2px;padding:0}#adminmenu .wp-submenu .wp-submenu-head{color:#fff;font-weight:400;font-size:14px;padding:5px 4px 5px 11px;margin:-8px -1px 4px -5px;border-width:3px 1px 3px 5px;border-style:solid;border-color:transparent}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{display:inline-block;vertical-align:top;box-sizing:border-box;margin:1px 0 -1px 2px;padding:0 5px;min-width:18px;height:18px;border-radius:9px;background-color:#d63638;color:#fff;font-size:11px;line-height:1.6;text-align:center;z-index:26}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod{background-color:#d63638;color:#fff}#adminmenu li span.count-0{display:none}#collapse-button{display:block;width:100%;height:34px;margin:0;border:none;padding:0;position:relative;overflow:visible;background:0 0;color:#a7aaad;cursor:pointer}#collapse-button:hover{color:#72aee6}#collapse-button:focus{color:#72aee6;outline:1px solid transparent;outline-offset:-1px}#collapse-button .collapse-button-icon,#collapse-button .collapse-button-label{display:block;position:absolute;top:0;left:0}#collapse-button .collapse-button-label{top:8px}#collapse-button .collapse-button-icon{width:36px;height:34px}#collapse-button .collapse-button-label{padding:0 0 0 36px}.folded #collapse-button .collapse-button-label{display:none}#collapse-button .collapse-button-icon:after{content:"\f148";content:"\f148"/'';display:block;position:relative;top:7px;text-align:center;font:normal 20px/1 dashicons!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.folded #collapse-button .collapse-button-icon:after,.rtl #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.folded #collapse-button .collapse-button-icon:after{transform:none}#collapse-button .collapse-button-icon:after,#collapse-button .collapse-button-label{transition:all .1s ease-in-out}li#wp-admin-bar-menu-toggle{display:none}.customize-support #menu-appearance a[href="themes.php?page=custom-background"],.customize-support #menu-appearance a[href="themes.php?page=custom-header"]{display:none}@media only screen and (max-width:960px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:36px}.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{width:36px}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{top:0;left:36px}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em;margin-right:-1px;padding:6px 0;z-index:9999}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto;border:1px solid transparent;border-left-width:5px}.auto-fold #adminmenu .wp-has-current-submenu li>a{padding-right:16px;padding-left:14px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{position:absolute;left:-999px}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{height:30px;width:34px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{min-height:34px}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:16px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}.auto-fold #adminmenu li.menu-top:hover,.auto-fold #adminmenu li.opensub>a.menu-top,.auto-fold #adminmenu li>a.menu-top:focus{z-index:10000}.auto-fold #collapse-menu .collapse-button-label{display:none}.auto-fold #collapse-button .collapse-button-icon:after{transform:rotate(180deg)}.rtl.auto-fold #collapse-button .collapse-button-icon:after{transform:none}}@media screen and (max-width:782px){.auto-fold #wpcontent{position:relative;margin-left:0;padding-left:10px}.sticky-menu #adminmenuwrap{position:relative;z-index:auto;top:0}.auto-fold #adminmenu,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{position:absolute;width:190px;z-index:100}.auto-fold #adminmenuback{position:fixed}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{display:none}.auto-fold .wp-responsive-open #adminmenuback,.auto-fold .wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu li.menu-top{width:100%}.auto-fold #adminmenu li a{font-size:16px;padding:5px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding:10px 10px 10px 20px}.auto-fold #adminmenu .wp-menu-name{position:static}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li.current>a.current:after{border-width:8px;margin-top:-8px}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after,.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{display:none}#adminmenu .wp-submenu{position:relative;display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold #adminmenu .wp-menu-open .wp-submenu{position:relative;display:block;top:0;left:-1px;box-shadow:none}.auto-fold #adminmenu .selected .wp-submenu:after,.auto-fold #adminmenu .wp-menu-open .wp-submenu:after{display:none}.auto-fold #adminmenu .opensub .wp-submenu{display:none}.auto-fold #adminmenu .selected .wp-submenu{display:block}.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:block}.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{position:relative;left:-1px;right:0;top:0}#adminmenu .wp-not-current-submenu .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border:none}#adminmenu .wp-submenu .wp-submenu-head{display:none}#wp-responsive-toggle{position:fixed;top:5px;left:4px;padding-right:10px;z-index:99999;border:none;box-sizing:border-box}#wpadminbar #wp-admin-bar-menu-toggle a{display:block;padding:0;overflow:hidden;outline:0;text-decoration:none;border:1px solid transparent;background:0 0;height:44px;margin-left:-1px}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#2c3338}li#wp-admin-bar-menu-toggle{display:block}#wpadminbar #wp-admin-bar-menu-toggle a:hover{border:1px solid transparent}#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{content:"\f228";display:inline-block;float:left;font:normal 40px/45px dashicons;vertical-align:middle;outline:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:44px;width:50px;padding:0;border:none;text-align:center;text-decoration:none;box-sizing:border-box}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#72aee6}}@media screen and (max-width:600px){#adminmenuback,#adminmenuwrap{display:none}.wp-responsive-open #adminmenuback,.wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu{top:46px}}css/code-editor-rtl.css000066600000003122152330733730011053 0ustar00/*! This file is auto-generated */ .wrap [class*="CodeMirror-lint-marker"], .wp-core-ui [class*="CodeMirror-lint-message"], .wrap .CodeMirror-lint-marker-multiple { background-image: none; } .wp-core-ui .CodeMirror-lint-marker-error, .wp-core-ui .CodeMirror-lint-marker-warning { cursor: help; } .wrap .CodeMirror-lint-marker-multiple { position: absolute; top: 0; } .wrap [class*="CodeMirror-lint-marker"]:before { font: normal 18px/1 dashicons; position: relative; top: -2px; } .wp-core-ui [class*="CodeMirror-lint-message"]:before { font: normal 16px/1 dashicons; right: 16px; position: absolute; } .wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-warning { box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); margin: 5px 0 2px; padding: 3px 28px 3px 12px; } .wp-core-ui .CodeMirror-lint-message-warning { background-color: #fcf9e8; border-right: 4px solid #dba617; } .wrap .CodeMirror-lint-marker-warning:before, .wp-core-ui .CodeMirror-lint-message-warning:before { content: "\f534"; color: #dba617; } .wp-core-ui .CodeMirror-lint-message-error { background-color: #fcf0f1; border-right: 4px solid #d63638; } .wrap .CodeMirror-lint-marker-error:before, .wp-core-ui .CodeMirror-lint-message-error:before { content: "\f153"; color: #d63638; } .wp-core-ui .CodeMirror-lint-tooltip { background: none; border: none; border-radius: 0; direction: rtl; } .wrap .CodeMirror .CodeMirror-matchingbracket { background: rgba(219, 166, 23, 0.3); color: inherit; } .CodeMirror { text-align: right; } .wrap .CodeMirror .CodeMirror-linenumber { color: #646970; } css/revisions-rtl.css000066600000025017152330733730010705 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 11.2 - Post Revisions ------------------------------------------------------------------------------*/ .revisions-control-frame, .revisions-diff-frame { position: relative; } .revisions-diff-frame { top: 10px; } .revisions-controls { padding-top: 40px; z-index: 1; } .revisions-controls input[type="checkbox"] { position: relative; top: -1px; vertical-align: text-bottom; } .revisions.pinned .revisions-controls { position: fixed; top: 0; height: 82px; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-tickmarks { position: relative; margin: 0 auto; height: 0.7em; top: 7px; max-width: 70%; box-sizing: border-box; background-color: #fff; } .revisions-tickmarks > div { position: absolute; height: 100%; border-right: 1px solid #a7aaad; box-sizing: border-box; } .revisions-tickmarks > div:first-child { border-width: 0; } .comparing-two-revisions .revisions-controls { height: 140px; } .comparing-two-revisions.pinned .revisions-controls { height: 124px; } .revisions .diff-error { position: absolute; text-align: center; margin: 0 auto; width: 100%; display: none; } .revisions.diff-error .diff-error { display: block; } .revisions .loading-indicator { position: absolute; vertical-align: middle; opacity: 0; width: 100%; width: calc( 100% - 30px ); top: 50%; top: calc( 50% - 10px ); transition: opacity 0.5s; } body.folded .revisions .loading-indicator { margin-right: -32px; } .revisions .loading-indicator span.spinner { display: block; margin: 0 auto; float: none; } .revisions.loading .loading-indicator { opacity: 1; } .revisions .diff { transition: opacity 0.5s; } .revisions.loading .diff { opacity: 0.5; } .revisions.diff-error .diff { visibility: hidden; } .revisions-meta { margin-top: 20px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); overflow: hidden; } .revisions.pinned .revisions-meta { box-shadow: none; } .revision-toggle-compare-mode { position: absolute; top: 0; left: 0; } .comparing-two-revisions .revisions-previous, .comparing-two-revisions .revisions-next, .revisions-meta .diff-meta-to strong { display: none; } .revisions-controls .author-card .date { color: #646970; } .revisions-controls .author-card.autosave { color: #d63638; } .revisions-controls .author-card .author-name { font-weight: 600; } .comparing-two-revisions .diff-meta-to strong { display: block; } .revisions.pinned .revisions-buttons { padding: 0 11px; } .revisions-previous, .revisions-next { position: relative; z-index: 1; } .revisions-previous { float: right; } .revisions-next { float: left; } .revisions-controls .wp-slider { max-width: 70%; margin: 0 auto; top: -3px; } .revisions-diff { padding: 15px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-diff h3:first-child { margin-top: 0; } /* Revision meta box */ .post-revisions li img, #revisions-meta-restored img { vertical-align: middle; } table.diff { table-layout: fixed; width: 100%; white-space: pre-wrap; } table.diff col.content { width: auto; } table.diff col.content.diffsplit { width: 48%; } table.diff col.diffsplit.middle { width: auto; } table.diff col.ltype { width: 30px; } table.diff tr { background-color: transparent; } table.diff td, table.diff th { font-family: Consolas, Monaco, monospace; font-size: 14px; line-height: 1.57142857; padding: 0.5em 2em 0.5em 0.5em; vertical-align: top; word-wrap: break-word; } table.diff td h1, table.diff td h2, table.diff td h3, table.diff td h4, table.diff td h5, table.diff td h6 { margin: 0; } table.diff .diff-deletedline del, table.diff .diff-addedline ins { text-decoration: none; } table.diff .diff-deletedline { position: relative; background-color: #fcf0f1; } table.diff .diff-deletedline del { background-color: #ffabaf; } table.diff .diff-addedline { position: relative; background-color: #edfaef; } table.diff .diff-deletedline .dashicons, table.diff .diff-addedline .dashicons { position: absolute; top: 0.85714286em; right: 0.5em; width: 1em; height: 1em; font-size: 1em; line-height: 1; } table.diff .diff-addedline .dashicons { /* Compensate the vertically non-centered plus glyph. */ top: 0.92857143em; } table.diff .diff-addedline ins { background-color: #68de7c; } .diff-meta { padding: 5px; clear: both; min-height: 32px; } .diff-title strong { line-height: 2.46153846; min-width: 60px; text-align: left; float: right; margin-left: 5px; } .revisions-controls .author-card .author-info { font-size: 12px; line-height: 1.33333333; } .revisions-controls .author-card .avatar, .revisions-controls .author-card .author-info { float: right; margin-right: 6px; margin-left: 6px; } .revisions-controls .author-card .byline { display: block; font-size: 12px; } .revisions-controls .author-card .avatar { vertical-align: middle; } .diff-meta input.restore-revision { float: left; margin-right: 6px; margin-left: 6px; } .diff-meta-from { display: none; } .comparing-two-revisions .diff-meta-from { display: block; } .revisions-tooltip { position: absolute; bottom: 105px; margin-left: 0; margin-right: -69px; z-index: 0; max-width: 350px; min-width: 130px; padding: 8px 4px; display: none; opacity: 0; } .revisions-tooltip.flipped { margin-right: 0; margin-left: -70px; } .revisions.pinned .revisions-tooltip { display: none !important; } .comparing-two-revisions .revisions-tooltip { bottom: 145px; } .revisions-tooltip-arrow { width: 70px; height: 15px; overflow: hidden; position: absolute; right: 0; margin-right: 35px; bottom: -15px; } .revisions-tooltip.flipped .revisions-tooltip-arrow { margin-right: 0; margin-left: 35px; right: auto; left: 0; } .revisions-tooltip-arrow > span { content: ""; position: absolute; right: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(-45deg); } .revisions-tooltip.flipped .revisions-tooltip-arrow > span { right: auto; left: 20px; } .revisions-tooltip, .revisions-tooltip-arrow > span { border: 1px solid #dcdcde; background-color: #fff; } .revisions-tooltip { display: none; } .arrow { width: 70px; height: 16px; overflow: hidden; position: absolute; right: 0; margin-right: -35px; bottom: 90px; z-index: 10000; } .arrow:after { z-index: 9999; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .arrow.top { top: -16px; bottom: auto; } .arrow.left { right: 20%; } .arrow:after { content: ""; position: absolute; right: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(-45deg); } .revisions-tooltip, .revisions-tooltip-arrow:after { border-width: 1px; border-style: solid; } div.revisions-controls > .wp-slider > .ui-slider-handle { margin-right: -10px; } .rtl div.revisions-controls > .wp-slider > .ui-slider-handle { margin-left: -10px; } /* jQuery UI Slider */ .wp-slider.ui-slider { position: relative; border: 1px solid #dcdcde; text-align: right; cursor: pointer; } .wp-slider .ui-slider-handle { border-radius: 50%; height: 18px; margin-top: -5px; outline: none; padding: 2px; position: absolute; width: 18px; z-index: 2; touch-action: none; } .wp-slider .ui-slider-handle { background: #f6f7f7; border: 1px solid #c3c4c7; box-shadow: 0 1px 0 #c3c4c7; } .wp-slider .ui-slider-handle:hover, .wp-slider .ui-slider-handle.ui-state-hover { background: #f6f7f7; border-color: #8c8f94; } .wp-slider .ui-slider-handle:active, .wp-slider .ui-slider-handle.ui-state-active { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); transform: translateY(1px); } .wp-slider .ui-slider-handle:focus, .wp-slider .ui-slider-handle.ui-state-focus { background: #f0f0f1; border-color: #8c8f94; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-slider .ui-slider-handle:before { background: none; position: absolute; top: 2px; right: 2px; color: #50575e; content: "\f229"; content: "\f229" / ''; font: normal 18px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-slider .ui-slider-handle:hover:before, .wp-slider .ui-slider-handle.ui-state-hover:before { color: #1d2327; } .wp-slider .ui-slider-handle.from-handle:before, .wp-slider .ui-slider-handle.to-handle:before { font-size: 20px !important; margin: -1px -1px 0 0; } .wp-slider .ui-slider-handle.from-handle:before { content: "\f141"; content: "\f139" / ''; } .wp-slider .ui-slider-handle.to-handle:before { content: "\f139"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.from-handle:before { content: "\f139"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.to-handle:before { content: "\f141"; content: "\f139" / ''; left: -1px; } .wp-slider .ui-slider-range { position: absolute; font-size: 0.7em; display: block; border: 0; background-color: transparent; background-image: none; } .wp-slider.ui-slider-horizontal { height: 0.7em; } .wp-slider.ui-slider-horizontal .ui-slider-handle { top: -.25em; margin-right: -.6em; } .wp-slider.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .wp-slider.ui-slider-horizontal .ui-slider-range-min { right: 0; } .wp-slider.ui-slider-horizontal .ui-slider-range-max { left: 0; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .revision-tick.completed-false { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 600px) { .revisions-meta .author-card:not(.comparing-two-revisions .author-card) { display: flex; flex-direction: column; width: fit-content; gap: 16px; } .comparing-two-revisions .revisions-meta .restore-revision { margin-top: 16px; } .revisions-controls { padding-top: 0; } .revision-toggle-compare-mode { position: relative; padding: 1rem 0; } } @media screen and (max-width: 782px) { #diff-next-revision, #diff-previous-revision { margin-top: -1em; } .revisions-buttons { overflow: hidden; margin-bottom: 15px; } .revisions-controls, .comparing-two-revisions .revisions-controls { height: fit-content; } .revisions-tooltip { bottom: 155px; z-index: 2; } .comparing-two-revisions .revisions-tooltip { bottom: 200px; } .diff-meta { overflow: hidden; } table.diff { -ms-word-break: break-all; word-break: break-all; word-wrap: break-word; } } css/customize-widgets.css000066600000032365152330733730011557 0ustar00.wp-full-overlay-sidebar { overflow: visible; } /** * Hide all sidebar sections by default, only show them (via JS) once the * preview loads and we know whether the sidebars are used in the template. */ .control-section.control-section-sidebar, .customize-control-sidebar_widgets label, .customize-control-sidebar_widgets .hide-if-js { /* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */ display: none; } .control-section.control-section-sidebar .accordion-section-content.ui-sortable { overflow: visible; } /* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */ .customize-control-widget_form .widget-top { background: #fff; transition: opacity 0.5s; } .customize-control .widget-action { color: #787c82; } .customize-control .widget-top:hover .widget-action, .customize-control .widget-action:focus { color: #1d2327; } .customize-control-widget_form:not(.widget-rendered) .widget-top { opacity: 0.5; } .customize-control-widget_form .widget-control-save { display: none; } .customize-control-widget_form .spinner { visibility: hidden; margin-top: 0; } .customize-control-widget_form.previewer-loading .spinner { visibility: visible; } .customize-control-widget_form.widget-form-disabled .widget-content { opacity: 0.7; pointer-events: none; -webkit-user-select: none; user-select: none; } .customize-control-widget_form .widget { margin-bottom: 0; } .customize-control-widget_form.wide-widget-control .widget-inside { position: fixed; left: 299px; top: 25%; border: 1px solid #dcdcde; overflow: auto; } .customize-control-widget_form.wide-widget-control .widget-inside > .form { padding: 20px; } .customize-control-widget_form.wide-widget-control .widget-top { transition: background-color 0.4s; } .customize-control-widget_form.wide-widget-control.expanding .widget-top, .customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top { background-color: #dcdcde; } .widget-inside { padding: 1px 10px 10px; border-top: none; line-height: 1.23076923; } .customize-control-widget_form.expanded .widget-action .toggle-indicator:before { content: "\f142"; } .customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before { content: "\f139"; } .customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before { content: "\f141"; } .widget-title-action { cursor: pointer; } .widget-top, .customize-control-widget_form .widget .customize-control-title { cursor: move; } .control-section.accordion-section.highlighted > .accordion-section-title, .customize-control-widget_form.highlighted { outline: none; box-shadow: 0 0 2px rgba(79, 148, 212, 0.8); position: relative; z-index: 1; } #widget-customizer-control-templates { display: none; } /** * Widget reordering styles */ #customize-theme-controls .widget-reorder-nav { display: none; float: right; background-color: #f6f7f7; } .move-widget:before { content: "\f504"; content: "\f504" / ''; } #customize-theme-controls .move-widget-area { display: none; background: #fff; border: 1px solid #c3c4c7; border-top: none; cursor: auto; } #customize-theme-controls .reordering .move-widget-area.active { display: block; } #customize-theme-controls .move-widget-area .description { margin: 0; padding: 15px 20px; font-weight: 400; } #customize-theme-controls .widget-area-select { margin: 0; padding: 0; list-style: none; } #customize-theme-controls .widget-area-select li { position: relative; margin: 0; padding: 13px 15px 15px 42px; color: #50575e; border-top: 1px solid #c3c4c7; cursor: pointer; -webkit-user-select: none; user-select: none; } #customize-theme-controls .widget-area-select li:before { display: none; content: "\f147"; content: "\f147" / ''; position: absolute; top: 12px; left: 10px; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #customize-theme-controls .widget-area-select li:last-child { border-bottom: 1px solid #c3c4c7; } #customize-theme-controls .widget-area-select .selected { color: #fff; background: var(--wp-admin-theme-color); } #customize-theme-controls .widget-area-select .selected:before { display: block; } #customize-theme-controls .move-widget-actions { text-align: right; padding: 12px; } #customize-theme-controls .reordering .widget-title-action { display: none; } #customize-theme-controls .reordering .widget-reorder-nav { display: block; } /* Text Widget */ .wp-customizer div.mce-inline-toolbar-grp, .wp-customizer div.mce-tooltip { z-index: 500100 !important; } .wp-customizer .ui-autocomplete.wplink-autocomplete { z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-backdrop { z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-wrap { z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */ } /** * Styles for new widget addition panel */ /* override widgets admin page rules in wp-admin/css/widgets.css */ #widgets-left #available-widgets .widget { float: none !important; width: auto !important; } /* Keep rule that is no longer necessary on widgets.php. */ #available-widgets .widget-action { display: none; } .ios #available-widgets { transition: left 0s; } #available-widgets .widget-tpl:hover, #available-widgets .widget-tpl.selected { background: #f6f7f7; border-bottom-color: #c3c4c7; color: var(--wp-admin-theme-color);; border-left: 4px solid var(--wp-admin-theme-color); } #customize-controls .widget-title h3 { font-size: 1em; } #available-widgets .widget-title h3 { padding: 0 0 5px; font-size: 14px; } #available-widgets .widget .widget-description { padding: 0; color: #646970; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-widget #available-widgets { left: 0; visibility: visible; } body.adding-widget .wp-full-overlay-main { left: 300px; } body.adding-widget #customize-preview { opacity: 0.4; } /** * Widget Icon styling * No plurals in naming. * Ordered from lowest to highest specificity. */ #available-widgets .widget-title { position: relative; } #available-widgets .widget-title:before { content: "\f132"; content: "\f132" / ''; position: absolute; top: -3px; right: 100%; margin-right: 20px; width: 20px; height: 20px; color: #2c3338; font: normal 20px/1 dashicons; text-align: center; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* dashicons-smiley */ #available-widgets [class*="easy"] .widget-title:before { content: "\f328"; content: "\f328" / ''; top: -4px; } /* dashicons-star-filled */ #available-widgets [class*="super"] .widget-title:before, #available-widgets [class*="like"] .widget-title:before { content: "\f155"; content: "\f155" / ''; top: -4px; } /* dashicons-wordpress */ #available-widgets [class*="meta"] .widget-title:before { content: "\f120"; content: "\f120" / ''; } /* dashicons-archive */ #available-widgets [class*="archives"] .widget-title:before { content: "\f480"; content: "\f480" / ''; top: -4px; } /* dashicons-category */ #available-widgets [class*="categor"] .widget-title:before { content: "\f318"; content: "\f318" / ''; top: -4px; } /* dashicons-admin-comments */ #available-widgets [class*="comment"] .widget-title:before, #available-widgets [class*="testimonial"] .widget-title:before, #available-widgets [class*="chat"] .widget-title:before { content: "\f101"; content: "\f101" / ''; } /* dashicons-admin-post */ #available-widgets [class*="post"] .widget-title:before { content: "\f109"; content: "\f109" / ''; } /* dashicons-admin-page */ #available-widgets [class*="page"] .widget-title:before { content: "\f105"; content: "\f105" / ''; } /* dashicons-text */ #available-widgets [class*="text"] .widget-title:before { content: "\f478"; content: "\f478" / ''; } /* dashicons-admin-links */ #available-widgets [class*="link"] .widget-title:before { content: "\f103"; content: "\f103" / ''; } /* dashicons-search */ #available-widgets [class*="search"] .widget-title:before { content: "\f179"; content: "\f179" / ''; } /* dashicons-menu */ #available-widgets [class*="menu"] .widget-title:before, #available-widgets [class*="nav"] .widget-title:before { content: "\f333"; content: "\f333" / ''; } /* dashicons-tagcloud */ #available-widgets [class*="tag"] .widget-title:before { content: "\f479"; content: "\f479" / ''; } /* dashicons-rss */ #available-widgets [class*="rss"] .widget-title:before { content: "\f303"; content: "\f303" / ''; top: -6px; } /* dashicons-calendar */ #available-widgets [class*="event"] .widget-title:before, #available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; content: "\f145" / ''; top: -4px; } /* dashicons-format-image */ #available-widgets [class*="image"] .widget-title:before, #available-widgets [class*="photo"] .widget-title:before, #available-widgets [class*="slide"] .widget-title:before, #available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; content: "\f128" / ''; } /* dashicons-format-gallery */ #available-widgets [class*="album"] .widget-title:before, #available-widgets [class*="galler"] .widget-title:before { content: "\f161"; content: "\f161" / ''; } /* dashicons-format-video */ #available-widgets [class*="video"] .widget-title:before, #available-widgets [class*="tube"] .widget-title:before { content: "\f126"; content: "\f126" / ''; } /* dashicons-format-audio */ #available-widgets [class*="music"] .widget-title:before, #available-widgets [class*="radio"] .widget-title:before, #available-widgets [class*="audio"] .widget-title:before { content: "\f127"; content: "\f127" / ''; } /* dashicons-admin-users */ #available-widgets [class*="login"] .widget-title:before, #available-widgets [class*="user"] .widget-title:before, #available-widgets [class*="member"] .widget-title:before, #available-widgets [class*="avatar"] .widget-title:before, #available-widgets [class*="subscriber"] .widget-title:before, #available-widgets [class*="profile"] .widget-title:before, #available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; content: "\f110" / ''; } /* dashicons-cart */ #available-widgets [class*="commerce"] .widget-title:before, #available-widgets [class*="shop"] .widget-title:before, #available-widgets [class*="cart"] .widget-title:before { content: "\f174"; content: "\f174" / ''; top: -4px; } /* dashicons-shield */ #available-widgets [class*="secur"] .widget-title:before, #available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; content: "\f332" / ''; } /* dashicons-chart-bar */ #available-widgets [class*="analytic"] .widget-title:before, #available-widgets [class*="stat"] .widget-title:before, #available-widgets [class*="poll"] .widget-title:before { content: "\f185"; content: "\f185" / ''; } /* dashicons-feedback */ #available-widgets [class*="form"] .widget-title:before { content: "\f175"; content: "\f175" / ''; } /* dashicons-email-alt */ #available-widgets [class*="subscribe"] .widget-title:before, #available-widgets [class*="news"] .widget-title:before, #available-widgets [class*="contact"] .widget-title:before, #available-widgets [class*="mail"] .widget-title:before { content: "\f466"; content: "\f466" / ''; } /* dashicons-share */ #available-widgets [class*="share"] .widget-title:before, #available-widgets [class*="socia"] .widget-title:before { content: "\f237"; content: "\f237" / ''; } /* dashicons-translation */ #available-widgets [class*="lang"] .widget-title:before, #available-widgets [class*="translat"] .widget-title:before { content: "\f326"; content: "\f326" / ''; } /* dashicons-location-alt */ #available-widgets [class*="locat"] .widget-title:before, #available-widgets [class*="map"] .widget-title:before { content: "\f231"; content: "\f231" / ''; } /* dashicons-download */ #available-widgets [class*="download"] .widget-title:before { content: "\f316"; content: "\f316" / ''; } /* dashicons-cloud */ #available-widgets [class*="weather"] .widget-title:before { content: "\f176"; content: "\f176" / ''; top: -4px; } /* dashicons-facebook */ #available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; content: "\f304" / ''; } /* dashicons-twitter */ #available-widgets [class*="tweet"] .widget-title:before, #available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; content: "\f301" / ''; } @media screen and (max-height: 700px) and (min-width: 981px) { /* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */ .customize-control-widget_form { margin-bottom: 0; } .widget-top { box-shadow: none; margin-top: -1px; } .widget-top:hover { position: relative; z-index: 1; } .last-widget { margin-bottom: 15px; } .widget-title h3 { padding: 13px 15px; } .widget-top .widget-action { padding: 8px 10px; } .widget-reorder-nav span { height: 39px; } .widget-reorder-nav span:before { line-height: 39px; } /* Compact the move widget areas. */ #customize-theme-controls .widget-area-select li { padding: 9px 15px 11px 42px; } #customize-theme-controls .widget-area-select li:before { top: 8px; } } css/admin-menu.css000066600000044362152330733730010123 0ustar00#adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu { width: 160px; background-color: #1d2327; } #adminmenuback { position: fixed; top: 0; bottom: -120px; z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */ /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .php-error #adminmenuback { position: absolute; } .php-error #adminmenuback, .php-error #adminmenuwrap { margin-top: 2em; } #adminmenu { clear: left; margin: 12px 0; padding: 0; list-style: none; } .folded #adminmenuback, .folded #adminmenuwrap, .folded #adminmenu, .folded #adminmenu li.menu-top { width: 36px; } /* New Menu icons */ /* hide background-image for icons above */ .menu-icon-dashboard div.wp-menu-image, .menu-icon-post div.wp-menu-image, .menu-icon-media div.wp-menu-image, .menu-icon-links div.wp-menu-image, .menu-icon-page div.wp-menu-image, .menu-icon-comments div.wp-menu-image, .menu-icon-appearance div.wp-menu-image, .menu-icon-plugins div.wp-menu-image, .menu-icon-users div.wp-menu-image, .menu-icon-tools div.wp-menu-image, .menu-icon-settings div.wp-menu-image, .menu-icon-site div.wp-menu-image, .menu-icon-generic div.wp-menu-image { background-image: none !important; } /*------------------------------------------------------------------------------ 7.0 - Main Navigation (Left Menu) ------------------------------------------------------------------------------*/ #adminmenuwrap { position: relative; float: left; z-index: 9990; } /* side admin menu */ #adminmenu * { -webkit-user-select: none; user-select: none; } #adminmenu li { margin: 0; padding: 0; } #adminmenu a { display: block; line-height: 1.3; padding: 2px 5px; color: #f0f0f1; } #adminmenu .wp-submenu a { color: #c3c4c7; color: rgba(240, 246, 252, 0.7); font-size: 13px; line-height: 1.4; margin: 0; padding: 5px 0; } #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { background: none; } #adminmenu a:hover, #adminmenu li.menu-top > a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { color: #72aee6; } #adminmenu a:hover, #adminmenu a:focus, .folded #adminmenu .wp-submenu-head:hover { box-shadow: inset 4px 0 0 0 currentColor; transition: box-shadow .1s linear; border-radius: 0; } #adminmenu li.menu-top { border: none; min-height: 34px; position: relative; } #adminmenu .wp-submenu { list-style: none; position: absolute; top: -1000em; left: 160px; overflow: visible; word-wrap: break-word; padding: 6px 0; z-index: 9999; background-color: #2c3338; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } .js #adminmenu .sub-open, .js #adminmenu .opensub .wp-submenu, #adminmenu a.menu-top:focus + .wp-submenu, .no-js li.wp-has-submenu:hover .wp-submenu { top: -1px; } #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { top: 0; } #adminmenu .wp-has-current-submenu .wp-submenu, .no-js li.wp-has-current-submenu:hover .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, #adminmenu .wp-has-current-submenu.opensub .wp-submenu { position: relative; z-index: 3; top: auto; left: auto; right: auto; bottom: auto; border: 0 none; margin-top: 0; box-shadow: none; } .folded #adminmenu .wp-has-current-submenu .wp-submenu { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { position: relative; background-color: #1d2327; color: #72aee6; } .folded #adminmenu li.menu-top:hover, .folded #adminmenu li.opensub > a.menu-top, .folded #adminmenu li > a.menu-top:focus { z-index: 10000; } #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.current a.menu-top, #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { background: #2271b1; color: #fff; } .folded #adminmenu .wp-submenu.sub-open, .folded #adminmenu .opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu a.menu-top:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { top: 0; left: 36px; } .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-left-width: 5px; } #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .opensub .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus { color: #fff; } #adminmenu .wp-not-current-submenu li > a, .folded #adminmenu .wp-has-current-submenu li > a { padding-right: 16px; padding-left: 14px; /* Exclude from the transition the outline for Windows High Contrast mode */ transition: all .1s ease-in-out, outline 0s; } #adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a { padding: 5px 12px; } #adminmenu a.menu-top, #adminmenu .wp-submenu-head { font-size: 14px; font-weight: 400; line-height: 1.3; padding: 0; } #adminmenu .wp-submenu-head { display: none; } .folded #adminmenu .wp-menu-name { position: absolute; left: -999px; } .folded #adminmenu .wp-submenu-head { display: block; } #adminmenu .wp-submenu li { padding: 0; margin: 0; } #adminmenu .wp-menu-image img { padding: 9px 0 0; opacity: 0.6; filter: alpha(opacity=60); } #adminmenu div.wp-menu-name { padding: 8px 8px 8px 36px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #adminmenu div.wp-menu-image { float: left; width: 36px; height: 34px; margin: 0; text-align: center; } #adminmenu div.wp-menu-image.svg { background-repeat: no-repeat; background-position: center; background-size: 20px auto; } div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); padding: 7px 0; transition: all .1s ease-in-out; } #adminmenu div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); } #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu .wp-has-current-submenu div.wp-menu-image:before, #adminmenu .current div.wp-menu-image:before, #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before { color: #fff; } #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #72aee6; } .folded #adminmenu div.wp-menu-image { width: 35px; height: 30px; position: absolute; z-index: 25; } .folded #adminmenu a.menu-top { height: 34px; } /* Sticky admin menu */ .sticky-menu #adminmenuwrap { position: fixed; } ul#adminmenu a.wp-has-current-submenu { position: relative; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { right: 0; border: solid 8px transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-right-color: #f0f0f1; top: 50%; margin-top: -8px; } .folded ul#adminmenu li:hover a.wp-has-current-submenu:after, .folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after { display: none; } .folded ul#adminmenu a.wp-has-current-submenu:after, .folded ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } /* flyout menu arrow */ #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { right: 0; border: 8px solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; top: 10px; z-index: 10000; } .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 18px; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: #2c3338; } #adminmenu li.menu-top:hover .wp-menu-image img, #adminmenu li.wp-has-current-submenu .wp-menu-image img { opacity: 1; filter: alpha(opacity=100); } #adminmenu li.wp-menu-separator { height: 5px; padding: 0; margin: 0 0 6px; cursor: inherit; } /* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */ #adminmenu div.separator { height: 2px; padding: 0; } #adminmenu .wp-submenu .wp-submenu-head { color: #fff; font-weight: 400; font-size: 14px; padding: 5px 4px 5px 11px; margin: -8px -1px 4px -5px; border-width: 3px 1px 3px 5px; border-style: solid; border-color: transparent; } #adminmenu li.current, .folded #adminmenu li.wp-menu-open { border: 0 none; } /* @todo: consider to use a single rule for these counters and the list table comments counters. */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { display: inline-block; vertical-align: top; box-sizing: border-box; margin: 1px 0 -1px 2px; padding: 0 5px; min-width: 18px; height: 18px; border-radius: 9px; background-color: #d63638; color: #fff; font-size: 11px; line-height: 1.6; text-align: center; z-index: 26; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins { background-color: #d63638; color: #fff; } #adminmenu li span.count-0 { display: none; } #collapse-button { display: block; width: 100%; height: 34px; margin: 0; border: none; padding: 0; position: relative; overflow: visible; background: none; color: #a7aaad; cursor: pointer; } #collapse-button:hover { color: #72aee6; } #collapse-button:focus { color: #72aee6; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } #collapse-button .collapse-button-icon, #collapse-button .collapse-button-label { /* absolutely positioned to avoid 1px shift in IE when button is pressed */ display: block; position: absolute; top: 0; left: 0; } #collapse-button .collapse-button-label { top: 8px; } #collapse-button .collapse-button-icon { width: 36px; height: 34px; } #collapse-button .collapse-button-label { padding: 0 0 0 36px; } .folded #collapse-button .collapse-button-label { display: none; } #collapse-button .collapse-button-icon:after { content: "\f148"; content: "\f148" / ''; display: block; position: relative; top: 7px; text-align: center; font: normal 20px/1 dashicons !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* rtl:ignore */ .folded #collapse-button .collapse-button-icon:after, .rtl #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.folded #collapse-button .collapse-button-icon:after { transform: none; } #collapse-button .collapse-button-icon:after, #collapse-button .collapse-button-label { transition: all .1s ease-in-out; } /** * Toolbar menu toggle */ li#wp-admin-bar-menu-toggle { display: none; } /* Hide-if-customize for items we can't add classes to */ .customize-support #menu-appearance a[href="themes.php?page=custom-header"], .customize-support #menu-appearance a[href="themes.php?page=custom-background"] { display: none; } /* Auto-folding of the admin menu */ @media only screen and (max-width: 960px) { .auto-fold #wpcontent, .auto-fold #wpfooter { margin-left: 36px; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap, .auto-fold #adminmenu, .auto-fold #adminmenu li.menu-top { width: 36px; } .auto-fold #adminmenu .wp-submenu.sub-open, .auto-fold #adminmenu .opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { top: 0; left: 36px; } .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; margin-right: -1px; padding: 6px 0; z-index: 9999; } .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-left-width: 5px; } .auto-fold #adminmenu .wp-has-current-submenu li > a { padding-right: 16px; padding-left: 14px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding-left: 12px; } .auto-fold #adminmenu .wp-menu-name { position: absolute; left: -999px; } .auto-fold #adminmenu .wp-submenu-head { display: block; } .auto-fold #adminmenu div.wp-menu-image { height: 30px; width: 34px; position: absolute; z-index: 25; } .auto-fold #adminmenu a.menu-top { min-height: 34px; } .auto-fold #adminmenu li.wp-menu-open { border: 0 none; } .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { margin-bottom: 0; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: none; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 16px; } .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } .auto-fold #adminmenu li.menu-top:hover, .auto-fold #adminmenu li.opensub > a.menu-top, .auto-fold #adminmenu li > a.menu-top:focus { z-index: 10000; } .auto-fold #collapse-menu .collapse-button-label { display: none; } /* rtl:ignore */ .auto-fold #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.auto-fold #collapse-button .collapse-button-icon:after { transform: none; } } @media screen and (max-width: 782px) { .auto-fold #wpcontent { position: relative; margin-left: 0; padding-left: 10px; } .sticky-menu #adminmenuwrap { position: relative; z-index: auto; top: 0; } /* Sidebar Adjustments */ .auto-fold #adminmenu, .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { position: absolute; width: 190px; z-index: 100; } .auto-fold #adminmenuback { position: fixed; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { display: none; } .auto-fold .wp-responsive-open #adminmenuback, .auto-fold .wp-responsive-open #adminmenuwrap { display: block; } .auto-fold #adminmenu li.menu-top { width: 100%; } /* Resize the admin menu items to a comfortable touch size */ .auto-fold #adminmenu li a { font-size: 16px; padding: 5px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding: 10px 10px 10px 20px; } /* Restore the menu names */ .auto-fold #adminmenu .wp-menu-name { position: static; } /* Switch the arrow side */ .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li.current > a.current:after { border-width: 8px; margin-top: -8px; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { display: none; } /* Make the submenus appear correctly when tapped. */ #adminmenu .wp-submenu { position: relative; display: none; } .auto-fold #adminmenu .selected .wp-submenu, .auto-fold #adminmenu .wp-menu-open .wp-submenu { position: relative; display: block; top: 0; left: -1px; box-shadow: none; } .auto-fold #adminmenu .selected .wp-submenu:after, .auto-fold #adminmenu .wp-menu-open .wp-submenu:after { display: none; } .auto-fold #adminmenu .opensub .wp-submenu { display: none; } .auto-fold #adminmenu .selected .wp-submenu { display: block; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: block; } .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { position: relative; left: -1px; right: 0; top: 0; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { border: none; } /* Remove submenu headers and adjust sub meu*/ #adminmenu .wp-submenu .wp-submenu-head { display: none; } /* Toolbar menu toggle */ #wp-responsive-toggle { position: fixed; top: 5px; left: 4px; padding-right: 10px; z-index: 99999; border: none; box-sizing: border-box; } #wpadminbar #wp-admin-bar-menu-toggle a { display: block; padding: 0; overflow: hidden; outline: none; text-decoration: none; border: 1px solid transparent; background: none; height: 44px; margin-left: -1px; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #2c3338; } li#wp-admin-bar-menu-toggle { display: block; } #wpadminbar #wp-admin-bar-menu-toggle a:hover { border: 1px solid transparent; } #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { content: "\f228"; display: inline-block; float: left; font: normal 40px/45px dashicons; vertical-align: middle; outline: none; margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; height: 44px; width: 50px; padding: 0; border: none; text-align: center; text-decoration: none; box-sizing: border-box; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #72aee6; } } /* Smartphone */ @media screen and (max-width: 600px) { #adminmenuwrap, #adminmenuback { display: none; } .wp-responsive-open #adminmenuwrap, .wp-responsive-open #adminmenuback { display: block; } .auto-fold #adminmenu { top: 46px; } } css/widgets.css000066600000042672152330733730007541 0ustar00/* General Widgets Styles */ .widget { margin: 0 auto 10px; position: relative; box-sizing: border-box; } .widget.open { z-index: 99; } .widget.open:focus-within { z-index: 100; } .widget-top { font-size: 13px; font-weight: 600; background: #f6f7f7; } .widget-top .widget-action { border: 0; margin: 0; padding: 10px; background: none; cursor: pointer; } .widget-title h3, .widget-title h4 { margin: 0; padding: 15px; font-size: 1em; line-height: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; -webkit-user-select: none; user-select: none; } .widgets-holder-wrap .widget-inside { border-top: none; padding: 1px 15px 15px; line-height: 1.23076923; } .widget.widget-dirty .widget-control-close-wrapper { display: none; } .in-widget-title, #widgets-right a.widget-control-edit, #available-widgets .widget-description { color: #646970; } .deleting .widget-title, .deleting .widget-top .widget-action .toggle-indicator:before { color: #a7aaad; } /* Media Widgets */ .wp-core-ui .media-widget-control.selected .placeholder, .wp-core-ui .media-widget-control.selected .not-selected, .wp-core-ui .media-widget-control .selected { display: none; } .media-widget-control.selected .selected { display: inline-block; } .media-widget-buttons { text-align: left; margin-top: 0; } .media-widget-control .media-widget-buttons .button { width: auto; height: auto; margin-top: 12px; white-space: normal; } .media-widget-buttons .button:first-child { margin-right: 8px; } .media-widget-control .attachment-media-view .button-add-media, .media-widget-control .placeholder { border: 1px dashed #c3c4c7; box-sizing: border-box; cursor: pointer; line-height: 1.6; padding: 9px 0; position: relative; text-align: center; width: 100%; } .media-widget-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .media-widget-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .media-widget-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-style: solid; border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .media-widget-control .media-widget-preview { background: transparent; text-align: center; } .media-widget-control .media-widget-preview .notice { text-align: initial; } .media-frame .media-widget-embed-notice p code, .media-widget-control .notice p code { padding: 0 3px 0 0; } .media-frame .media-widget-embed-notice { margin-top: 16px; } .media-widget-control .media-widget-preview img { max-width: 100%; vertical-align: middle; background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .media-widget-control .media-widget-preview .wp-video-shortcode { background: #000; } .media-frame.media-widget .media-toolbar-secondary { min-width: 300px; } .media-frame.media-widget .image-details .embed-media-settings .setting.align, .media-frame.media-widget .attachment-display-settings .setting.align, .media-frame.media-widget .embed-media-settings .setting.align, .media-frame.media-widget .embed-media-settings .legend-inline, .media-frame.media-widget .embed-link-settings .setting.link-text, .media-frame.media-widget .replace-attachment, .media-frame.media-widget .checkbox-setting.autoplay { display: none; } .media-widget-video-preview { width: 100%; } .media-widget-video-link { display: inline-block; min-height: 132px; width: 100%; background: #000; } .media-widget-video-link .dashicons { font: normal 60px/1 'dashicons'; position: relative; width: 100%; top: -90px; color: #fff; text-decoration: none; } .media-widget-video-link.no-poster .dashicons { top: 30px; } .media-frame #embed-url-field.invalid, .media-widget-image-link > .link:invalid { border: 1px solid #d63638; } .media-widget-image-link { margin: 1em 0; } .media-widget-gallery-preview { display: flex; justify-content: flex-start; flex-wrap: wrap; margin: -1.79104477%; } .media-widget-preview.media_gallery, .media-widget-preview.media_image { cursor: pointer; } .media-widget-preview .placeholder { background: #f0f0f1; } .media-widget-gallery-preview .gallery-item { box-sizing: border-box; width: 50%; margin: 0; background: transparent; } .media-widget-gallery-preview .gallery-item .gallery-icon { margin: 4.5%; } /* * Use targeted nth-last-child selectors to control the size of each image * based on how many gallery items are present in the grid. * See: https://alistapart.com/article/quantity-queries-for-css */ .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child, .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+5), .media-widget-gallery-preview .gallery-item:nth-last-child(n+5) ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+6), .media-widget-gallery-preview .gallery-item:nth-last-child(n+6) ~ .gallery-item { max-width: 33.33%; } .media-widget-gallery-preview .gallery-item img { height: auto; vertical-align: bottom; } .media-widget-gallery-preview .gallery-icon { position: relative; } .media-widget-gallery-preview .gallery-icon-placeholder { position: absolute; top: 0; bottom: 0; width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.5); } .media-widget-gallery-preview .gallery-icon-placeholder-text { font-weight: 600; font-size: 2em; color: #fff; } /* Widget Dragging Helpers */ .widget.ui-draggable-dragging { min-width: 100%; } .widget.ui-sortable-helper { opacity: 0.8; } .widget-placeholder { border: 1px dashed #c3c4c7; margin: 0 auto 10px; height: 45px; width: 100%; box-sizing: border-box; } #widgets-right .widget-placeholder { margin-top: 0; } #widgets-right .closed .widget-placeholder { height: 0; border: 0; margin-top: -10px; } /* Widget Sidebars */ .sidebar-name { position: relative; box-sizing: border-box; } .js .sidebar-name { cursor: pointer; } .sidebar-name .handlediv { float: right; width: 38px; height: 38px; border: 0; margin: 0; padding: 8px; background: none; cursor: pointer; outline: none; } #widgets-right .sidebar-name .handlediv { margin: 5px 3px 0 0; } .sidebar-name .handlediv:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #widgets-left .sidebar-name .toggle-indicator { display: none; } #widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator, #widgets-left .sidebar-name:hover .toggle-indicator, #widgets-left .sidebar-name .handlediv:focus .toggle-indicator { display: block; } .sidebar-name .toggle-indicator:before { padding: 1px 2px 1px 0; border-radius: 50%; } .sidebar-name .handlediv:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .sidebar-name h2, .sidebar-name h3 { margin: 0; padding: 8px 10px; overflow: hidden; white-space: normal; line-height: 1.5; } .widgets-holder-wrap .description { padding: 0 0 15px; margin: 0; font-style: normal; color: #646970; } .widget-holder .description, .inactive-sidebar .description { color: #50575e; } #widgets-right .widgets-holder-wrap .description { padding-left: 7px; padding-right: 7px; } /* Widgets 2-col Layout */ div.widget-liquid-left { margin: 0; width: 38%; float: left; } div.widget-liquid-right { float: right; width: 58%; } /* Widgets Left - Available Widgets */ div#widgets-left { padding-top: 12px; } div#widgets-left .closed .sidebar-name, div#widgets-left .inactive-sidebar.closed .sidebar-name { margin-bottom: 10px; } div#widgets-left .sidebar-name h2, div#widgets-left .sidebar-name h3 { padding: 10px 0; margin: 0 10px 0 0; } #widgets-left .widgets-holder-wrap, div#widgets-left .widget-holder { background: transparent; border: none; } #widgets-left .widgets-holder-wrap { border: none; box-shadow: none; } #available-widgets .widget { margin: 0; } #available-widgets .widget:nth-child(odd) { clear: both; } #available-widgets .widget .widget-description { display: block; padding: 10px 15px; font-size: 12px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #available-widgets #widget-list { position: relative; } /* Inactive Sidebars */ #widgets-left .inactive-sidebar { clear: both; width: 100%; background: transparent; padding: 0; margin: 0 0 20px; border: none; box-shadow: none; } #widgets-left .inactive-sidebar.first { margin-top: 40px; } /* Not sure what this is for... */ div#widgets-left .inactive-sidebar .widget.expanded { left: auto; } .widget-title-action { float: right; position: relative; } div#widgets-left .inactive-sidebar .widgets-sortables { min-height: 42px; padding: 0; background: transparent; margin: 0; position: relative; } /* Widgets Right */ div#widgets-right .sidebars-column-1, div#widgets-right .sidebars-column-2 { max-width: 450px; } div#widgets-right .widgets-holder-wrap { margin: 10px 0 0; } div#widgets-right .sidebar-description { min-height: 20px; margin-top: -5px; } div#widgets-right .sidebar-name h2, div#widgets-right .sidebar-name h3 { padding: 15px 15px 15px 7px; } div#widgets-right .widget-top { padding: 0; } div#widgets-right .widgets-sortables { padding: 0 8px; margin-bottom: 9px; position: relative; min-height: 123px; } div#widgets-right .closed .widgets-sortables { min-height: 0; margin-bottom: 0; } .sidebar-name .spinner, .remove-inactive-widgets .spinner { float: none; position: relative; top: -2px; margin: -5px 5px; } .sidebar-name .spinner { position: absolute; top: 18px; right: 30px; } /* Dragging a widget over a closed sidebar */ #widgets-right .widgets-holder-wrap.widget-hover { border-color: #787c82; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* Accessibility Mode */ .widget-access-link { float: right; margin: -5px 0 10px 10px; } .widgets_access #widgets-left .widget .widget-top { cursor: auto; } .widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description, .widgets_access #wpwrap .widgets-holder-wrap.closed .widget, .widgets_access #wpwrap .widget-control-edit { display: block; } .widgets_access #widgets-left .widget .widget-top:hover, .widgets_access #widgets-right .widget .widget-top:hover { border-color: #dcdcde; } #available-widgets .widget-control-edit .edit, #available-widgets .widget-action .edit, #widgets-left .inactive-sidebar .widget-control-edit .add, #widgets-left .inactive-sidebar .widget-action .add, #widgets-right .widget-control-edit .add, #widgets-right .widget-action .add { display: none; } .widget-control-edit { display: block; color: #646970; background: #f0f0f1; padding: 0 15px; line-height: 3.30769230; border-left: 1px solid #dcdcde; } #widgets-left .widget-control-edit:hover, #widgets-right .widget-control-edit:hover { color: #fff; background: #3c434a; border-left: 0; outline: 1px solid #3c434a; } .widgets-holder-wrap .sidebar-name, .widgets-holder-wrap .sidebar-description { -webkit-user-select: none; user-select: none; } .editwidget { margin: 0 auto; } .editwidget .widget-inside { display: block; padding: 0 15px; } .widget-control-actions { display: flex; align-items: center; justify-content: space-between; } .editwidget .widget-control-actions { margin-top: 20px; } .js .widgets-holder-wrap.closed .widget, .js .widgets-holder-wrap.closed .sidebar-description, .js .widgets-holder-wrap.closed .remove-inactive-widgets, .js .widgets-holder-wrap.closed .description, .js .closed br.clear { display: none; } .js .widgets-holder-wrap.closed .widget.ui-sortable-helper { display: block; } /* Hide Widget Settings by Default */ .widget-inside, .widget-description { display: none; } .widget-inside { background: #fff; } .widget-inside select { max-width: 100%; } /* Dragging widgets over the available widget area show's a "Deactivate" message */ #removing-widget { display: none; font-weight: 400; padding-left: 15px; font-size: 12px; line-height: 1; color: #000; } .js #removing-widget { color: #72aee6; } .widget-control-noform, #access-off, .widgets_access .widget-action, .widgets_access .handlediv, .widgets_access #access-on, .widgets_access .widget-holder .description, .no-js .widget-holder .description { display: none; } .widgets_access .widget-holder, .widgets_access #widget-list { padding-top: 10px; } .widgets_access #access-off { display: inline; } .widgets_access .sidebar-name, .widgets_access .widget .widget-top { cursor: default; } /* Widgets Area Chooser */ .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { transition: opacity 0.1s linear; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { /* -webkit-filter: blur(1px); */ opacity: 0.2; pointer-events: none; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question { /* -webkit-filter: none; */ opacity: 1; pointer-events: auto; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .widgets-chooser ul.widgets-chooser-sidebars { margin: 0; list-style-type: none; max-height: 300px; overflow: auto; } .widgets-chooser { display: none; } .widgets-chooser ul { border: 1px solid #c3c4c7; } .widgets-chooser li { border-bottom: 1px solid #c3c4c7; background: #fff; margin: 0; position: relative; } .widgets-chooser .widgets-chooser-button { width: 100%; padding: 10px 15px 10px 35px; background: transparent; border: 0; box-sizing: border-box; text-align: left; cursor: pointer; transition: background 0.2s ease-in-out; } /* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */ .widgets-chooser .widgets-chooser-button:hover, .widgets-chooser .widgets-chooser-button:focus { outline: none; text-decoration: underline; } .widgets-chooser li:last-child { border: none; } .widgets-chooser .widgets-chooser-selected .widgets-chooser-button { background: var(--wp-admin-theme-color, #3858e9); color: #fff; } .widgets-chooser .widgets-chooser-selected:before { content: "\f147"; content: "\f147" / ''; display: block; -webkit-font-smoothing: antialiased; font: normal 26px/1 dashicons; color: #fff; position: absolute; top: 7px; left: 5px; } .widgets-chooser .widgets-chooser-actions { padding: 10px 0 12px; text-align: center; } #available-widgets .widget .widget-top { cursor: pointer; } #available-widgets .widget.ui-draggable-dragging .widget-top { cursor: move; } /* =Specific widget styling -------------------------------------------------------------- */ .text-widget-fields { position: relative; } .text-widget-fields [hidden] { display: none; } .text-widget-fields .wp-pointer.wp-pointer-top { position: absolute; z-index: 3; top: 100px; right: 10px; left: 10px; } .text-widget-fields .wp-pointer .wp-pointer-arrow { left: auto; right: 15px; } .text-widget-fields .wp-pointer .wp-pointer-buttons { line-height: 1.4; } .custom-html-widget-fields > p > .CodeMirror { border: 1px solid #dcdcde; } .custom-html-widget-fields code { padding-top: 1px; padding-bottom: 1px; } ul.CodeMirror-hints { z-index: 101; /* Due to z-index 100 set on .widget.open */ } .widget-control-actions .custom-html-widget-save-button.button.validation-blocked { cursor: not-allowed; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { .widgets-holder-wrap .widget-inside input[type="checkbox"], .widgets-holder-wrap .widget-inside input[type="radio"], .editwidget .widget-inside input[type="checkbox"], /* Selectors for the "accessibility mode" page. */ .editwidget .widget-inside input[type="radio"] { margin: 0.25rem 0.25rem 0.25rem 0; } } @media screen and (max-width: 480px) { div.widget-liquid-left { width: 100%; float: none; border-right: none; padding-right: 0; } #widgets-left .sidebar-name { margin-right: 0; } #widgets-left #available-widgets .widget-top { margin-right: 0; } #widgets-left .inactive-sidebar .widgets-sortables { margin-right: 0; } div.widget-liquid-right { width: 100%; float: none; } div.widget { max-width: 480px; } .widget-access-link { float: none; margin: 15px 0 0; } } @media screen and (max-width: 320px) { div.widget { max-width: 320px; } } @media only screen and (min-width: 1250px) { #widgets-left #available-widgets .widget { width: 49%; float: left; } .widget.ui-draggable-dragging { min-width: 49%; } #widgets-left #available-widgets .widget:nth-child(even) { float: right; } #widgets-right .sidebars-column-1, #widgets-right .sidebars-column-2 { float: left; width: 49%; } #widgets-right .sidebars-column-1 { margin-right: 2%; } #widgets-right.single-sidebar .sidebars-column-1, #widgets-right.single-sidebar .sidebars-column-2 { float: none; width: 100%; margin: 0; } } css/farbtastic-rtl.css000066600000001207152330733730011001 0ustar00/*! This file is auto-generated */ .farbtastic { position: relative; } .farbtastic * { position: absolute; cursor: crosshair; } .farbtastic, .farbtastic .wheel { width: 195px; height: 195px; } .farbtastic .color, .farbtastic .overlay { top: 47px; right: 47px; width: 101px; height: 101px; } .farbtastic .wheel { background: url(../images/wheel.png) no-repeat; width: 195px; height: 195px; } .farbtastic .overlay { background: url(../images/mask.png) no-repeat; } .farbtastic .marker { width: 17px; height: 17px; margin: -8px -8px 0 0; overflow: hidden; background: url(../images/marker.png) no-repeat; } css/wp-admin-rtl.css000066600000000752152330733730010377 0ustar00/*! This file is auto-generated */ @import url(common-rtl.css); @import url(forms-rtl.css); @import url(admin-menu-rtl.css); @import url(dashboard-rtl.css); @import url(list-tables-rtl.css); @import url(edit-rtl.css); @import url(revisions-rtl.css); @import url(media-rtl.css); @import url(themes-rtl.css); @import url(about-rtl.css); @import url(nav-menus-rtl.css); @import url(widgets-rtl.css); @import url(site-icon-rtl.css); @import url(l10n-rtl.css); @import url(site-health-rtl.css); css/login-rtl.min.css000066600000014762152330733730010563 0ustar00/*! This file is auto-generated */ body,html{height:100%;margin:0;padding:0}body{background:#f0f0f1;min-width:0;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.4}a{color:var(--wp-admin-theme-color-darker-10);transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}a{outline:0}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:#043959;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}p{line-height:1.5}.login .message,.login .notice,.login .success{border-right:4px solid #3858e9;padding:8px 12px;margin-top:0;margin-right:0;margin-bottom:20px;background-color:#fff;word-wrap:break-word}.login .message p,.login .notice p,.login .success p{font-size:13px;line-height:1.54;margin:.5em 0}.login .success{border-right-color:#4ab866;background-color:#eff9f1}.login .notice-error{border-right-color:#cc1818;background-color:#fcf0f0}.login .login-error-list{list-style:none}.login .login-error-list li+li{margin-top:4px}#loginform p.submit,.login-action-lostpassword p.submit{border:none;margin:-10px 0 20px}.login *{margin:0;padding:0}.login .input::-ms-clear{display:none}.login .pw-weak{margin-bottom:15px}.login .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:normal;width:2.5rem;height:2.5rem;min-width:40px;min-height:40px;margin:0;padding:5px 9px;position:absolute;right:0;top:0}.login .button.wp-hide-pw:hover{background:0 0}.login .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.login .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}.login .button.wp-hide-pw .dashicons{width:1.25rem;height:1.25rem}.login .wp-pwd{position:relative}.no-js .hide-if-no-js{display:none}.login form{margin:24px 0;padding:26px 24px;font-weight:400;overflow:hidden;background:#fff;border:1px solid #c3c4c7;box-shadow:0 1px 3px rgba(0,0,0,.04)}.login form.shake{animation:shake .2s cubic-bezier(.19,.49,.38,.79) both;animation-iteration-count:3;transform:translateX(0)}@keyframes shake{25%{transform:translateX(20px)}75%{transform:translateX(-20px)}100%{transform:translateX(0)}}@media (prefers-reduced-motion:reduce){.login form.shake{animation:none;transform:none}}.login-action-confirm_admin_email #login{width:60vw;max-width:650px;margin-top:-2vh}@media screen and (max-width:782px){.login-action-confirm_admin_email #login{box-sizing:border-box;margin-top:0;padding-right:4vw;padding-left:4vw;width:100vw}}.login form .forgetmenot{font-weight:400;float:right;margin-bottom:0}.login .button-primary{float:left}.login .reset-pass-submit{display:flex;flex-flow:row wrap;justify-content:space-between}.login .reset-pass-submit .button{display:inline-block;float:none;margin-bottom:6px}.login .admin-email-confirm-form .submit{text-align:center}.admin-email__later{text-align:right}.login form p.admin-email__details{margin:1.1em 0}.login .admin-email__heading{border-bottom:1px #f0f0f1 solid;color:#50575e;font-weight:400;padding-bottom:.5em;text-align:right}.admin-email__actions div{padding-top:1.5em}.login .admin-email__actions .button-primary{float:none;margin-right:.25em;margin-left:.25em}#login form p{margin-bottom:0}#login #reg_passmail,#login form .indicator-hint{margin-bottom:16px}#login form p.submit{margin:0;padding:0}.login label{font-size:14px;line-height:1.5;display:inline-block;margin-bottom:3px}.login .forgetmenot label,.login .pw-weak label{line-height:1.5;vertical-align:baseline}.login h1{text-align:center}.login h1 a{background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;height:84px;font-size:20px;font-weight:400;line-height:1.3;margin:0 auto 24px;padding:0;text-decoration:none;width:84px;text-indent:-9999px;outline:0;overflow:hidden;display:block}#login{width:320px;padding:5% 0 0;margin:auto}.login #backtoblog,.login #nav{font-size:13px;padding:0 24px}.login #nav{margin:24px 0 0}#backtoblog{margin:16px 0;word-wrap:break-word}.login #backtoblog a,.login #nav a{text-decoration:none;color:#50575e}.login #backtoblog a:hover,.login #nav a:hover,.login h1 a:hover{color:var(--wp-admin-theme-color-darker-20)}.login #backtoblog a:focus,.login #nav a:focus,.login h1 a:focus{color:#043959}.login .privacy-policy-page-link{text-align:center;width:100%;margin:3em 0 2em}.login form .input,.login input[type=password],.login input[type=text]{font-size:24px;line-height:1.33333333;width:100%;border-width:.0625rem;padding:.1875rem .3125rem;margin:0 0 16px 6px;min-height:40px;max-height:none}.login input.password-input{font-family:Consolas,Monaco,monospace}.js.login input.password-input{padding-right:2.5rem}.js.login-action-resetpass input[type=password],.js.login-action-resetpass input[type=text],.js.login-action-rp input[type=password],.js.login-action-rp input[type=text]{margin-bottom:0}.login #pass-strength-result{font-weight:600;margin:-1px 0 16px 5px;padding:6px 5px;text-align:center;width:100%}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.screen-reader-text,.screen-reader-text span{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}input::-ms-reveal{display:none}#language-switcher{padding:0;overflow:visible;background:0 0;border:none;box-shadow:none}#language-switcher select{margin-left:.25em}.language-switcher{margin:0 auto;padding:0 0 24px;text-align:center}.language-switcher label{margin-left:.25em}.language-switcher label .dashicons{width:auto;height:auto}.login .language-switcher .button{margin-bottom:0}@media screen and (max-height:550px){#login{padding:20px 0}#language-switcher{margin-top:0}}@media screen and (max-width:782px){.interim-login input[type=checkbox]{width:1rem;height:1rem}.interim-login input[type=checkbox]:checked:before{width:1.3125rem;height:1.3125rem;margin:-.1875rem -.25rem 0 0}#language-switcher label,#language-switcher select{margin-left:0}}@media screen and (max-width:400px){.login .language-switcher .button{display:block;margin:5px auto 0}}css/customize-nav-menus.min.css000066600000044123152330733730012577 0ustar00/*! This file is auto-generated */ #customize-theme-controls #accordion-section-menu_locations{position:relative;margin-top:30px}#customize-theme-controls #accordion-section-menu_locations>.accordion-section-title{border-bottom-color:#dcdcde;margin-top:15px}#customize-theme-controls .customize-section-title-menu_locations-description,#customize-theme-controls .customize-section-title-menu_locations-heading,#customize-theme-controls .customize-section-title-nav_menus-heading{padding:0 12px}#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description{font-style:normal}.menu-in-location,.menu-in-locations{display:block;font-weight:600;font-size:10px}#customize-controls .control-section .accordion-section-title:focus .menu-in-location,#customize-controls .control-section .accordion-section-title:hover .menu-in-location,#customize-controls .theme-location-set{color:#50575e}.customize-control-nav_menu_location .create-menu,.customize-control-nav_menu_location .edit-menu{margin-left:6px;vertical-align:middle;line-height:2.2}#customize-controls .customize-control-nav_menu_name{margin-bottom:12px}.customize-control-nav_menu_name p:last-of-type{margin-bottom:0}#customize-new-menu-submit{float:right;min-width:85px}.wp-customizer .menu-item-bar .menu-item-handle,.wp-customizer .menu-item-settings,.wp-customizer .menu-item-settings .description-thin{box-sizing:border-box}.wp-customizer .menu-item-bar{margin:0}.wp-customizer .menu-item-bar .menu-item-handle{width:100%;max-width:100%;background:#fff}.wp-customizer .menu-item-handle .item-title{margin-right:0}.wp-customizer .menu-item-handle .item-type{padding:1px 21px 0 5px;float:right;text-align:right}.wp-customizer .menu-item-handle:hover{z-index:8}.customize-control-nav_menu_item.has-notifications .menu-item-handle{border-left:4px solid #72aee6}.wp-customizer .menu-item-settings{max-width:100%;overflow:hidden;z-index:8;padding:10px;background:#f0f0f1;border:1px solid #8c8f94;border-top:none}.wp-customizer .menu-item-settings .description-thin{width:100%;height:auto;margin:0 0 8px}.wp-customizer .menu-item-settings input[type=text]{width:100%}.wp-customizer .menu-item-settings .submitbox{margin:0;padding:0}.wp-customizer .menu-item-settings .link-to-original{padding:5px 0;border:none;font-style:normal;margin:0;width:100%}.wp-customizer .menu-item .submitbox .submitdelete{float:left;margin:6px 0 0;padding:0;cursor:pointer}.menu-item-reorder-nav{display:none;background-color:#fff;position:absolute;top:0;right:0}.menus-move-left:before{content:"\f341";content:"\f341"/''}.menus-move-right:before{content:"\f345";content:"\f345"/''}.reordering .menu-item .item-controls,.reordering .menu-item .item-type{display:none}.reordering .menu-item-reorder-nav{display:block}.customize-control input.menu-name-field{width:100%}.wp-customizer .menu-item .item-edit{position:absolute;right:-19px;top:2px;display:block;width:30px;height:38px;margin-right:0!important;box-shadow:none;outline:0;overflow:hidden;cursor:pointer;text-align:center}.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before{content:"\f142";content:"\f142"/''}.wp-customizer .menu-item-settings p.description{font-style:normal}.wp-customizer .menu-settings dl{margin:12px 0 0;padding:0}.wp-customizer .menu-settings .checkbox-input{margin-top:8px}.wp-customizer .menu-settings .menu-theme-locations{border-top:1px solid #c3c4c7}.wp-customizer .menu-settings{margin-top:36px;border-top:none}.wp-customizer .menu-location-settings{margin-top:12px;border-top:none}.wp-customizer .control-section-nav_menu .menu-location-settings{margin-top:24px;border-top:1px solid #dcdcde}.customize-control-nav_menu_auto_add,.wp-customizer .control-section-nav_menu .menu-location-settings{padding-top:12px}.menu-location-settings .customize-control-checkbox .theme-location-set{line-height:1}.customize-control-nav_menu_auto_add label{vertical-align:top}.menu-location-settings .new-menu-locations-widget-note{display:block}.customize-control-menu{margin-top:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle{color:#50575e}.customize-screen-options-toggle{background:0 0;border:none;color:#50575e;cursor:pointer;margin:0;padding:20px;position:absolute;right:0;top:30px}#customize-controls .customize-info .customize-help-toggle{padding:20px}#customize-controls .customize-info .customize-help-toggle:before{padding:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.active-menu-screen-options .customize-screen-options-toggle,.customize-screen-options-toggle:active,.customize-screen-options-toggle:focus,.customize-screen-options-toggle:hover{color:var(--wp-admin-theme-color)}#customize-controls .customize-info .customize-help-toggle:focus,.customize-screen-options-toggle:focus{outline:2px solid transparent}.customize-screen-options-toggle:before{-moz-osx-font-smoothing:grayscale;border:none;content:"\f111";content:"\f111"/'';display:block;font:18px/1 dashicons;padding:5px;text-align:center;text-decoration:none!important;text-indent:0;left:6px;position:absolute;top:6px}#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before{border-radius:100%}.wp-customizer #screen-options-wrap{display:none;background:#fff;border-top:1px solid #dcdcde;padding:4px 15px 15px}.wp-customizer .metabox-prefs label{display:block;padding-right:0;line-height:30px}.wp-customizer .toggle-indicator{display:inline-block;font-size:20px;line-height:1}.rtl .wp-customizer .toggle-indicator{text-indent:1px}#available-menu-items .accordion-section-title .toggle-indicator:before,.wp-customizer .menu-item .item-edit .toggle-indicator:before{content:"\f140";content:"\f140"/'';display:block;padding:1px 2px 1px 0;border-radius:50%;color:#787c82;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.control-section-nav_menu .field-css-classes,.control-section-nav_menu .field-description,.control-section-nav_menu .field-link-target,.control-section-nav_menu .field-title-attribute,.control-section-nav_menu .field-xfn{display:none}.control-section-nav_menu.field-css-classes-active .field-css-classes,.control-section-nav_menu.field-description-active .field-description,.control-section-nav_menu.field-link-target-active .field-link-target,.control-section-nav_menu.field-title-attribute-active .field-title-attribute,.control-section-nav_menu.field-xfn-active .field-xfn{display:block}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:20px}.menu-item-depth-2{margin-left:40px}.menu-item-depth-3{margin-left:60px}.menu-item-depth-4{margin-left:80px}.menu-item-depth-5{margin-left:100px}.menu-item-depth-6{margin-left:120px}.menu-item-depth-7{margin-left:140px}.menu-item-depth-8{margin-left:160px}.menu-item-depth-9{margin-left:180px}.menu-item-depth-10{margin-left:200px}.menu-item-depth-11{margin-left:220px}.menu-item-depth-0>.menu-item-bar{margin-right:0}.menu-item-depth-1>.menu-item-bar{margin-right:20px}.menu-item-depth-2>.menu-item-bar{margin-right:40px}.menu-item-depth-3>.menu-item-bar{margin-right:60px}.menu-item-depth-4>.menu-item-bar{margin-right:80px}.menu-item-depth-5>.menu-item-bar{margin-right:100px}.menu-item-depth-6>.menu-item-bar{margin-right:120px}.menu-item-depth-7>.menu-item-bar{margin-right:140px}.menu-item-depth-8>.menu-item-bar{margin-right:160px}.menu-item-depth-9>.menu-item-bar{margin-right:180px}.menu-item-depth-10>.menu-item-bar{margin-right:200px}.menu-item-depth-11>.menu-item-bar{margin-right:220px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-20px}.menu-item-depth-3 .menu-item-transport{margin-left:-60px}.menu-item-depth-4 .menu-item-transport{margin-left:-80px}.menu-item-depth-2 .menu-item-transport{margin-left:-40px}.menu-item-depth-5 .menu-item-transport{margin-left:-100px}.menu-item-depth-6 .menu-item-transport{margin-left:-120px}.menu-item-depth-7 .menu-item-transport{margin-left:-140px}.menu-item-depth-8 .menu-item-transport{margin-left:-160px}.menu-item-depth-9 .menu-item-transport{margin-left:-180px}.menu-item-depth-10 .menu-item-transport{margin-left:-200px}.menu-item-depth-11 .menu-item-transport{margin-left:-220px}.reordering .menu-item-depth-0{margin-left:0}.reordering .menu-item-depth-1{margin-left:15px}.reordering .menu-item-depth-2{margin-left:30px}.reordering .menu-item-depth-3{margin-left:45px}.reordering .menu-item-depth-4{margin-left:60px}.reordering .menu-item-depth-5{margin-left:75px}.reordering .menu-item-depth-6{margin-left:90px}.reordering .menu-item-depth-7{margin-left:105px}.reordering .menu-item-depth-8{margin-left:120px}.reordering .menu-item-depth-9{margin-left:135px}.reordering .menu-item-depth-10{margin-left:150px}.reordering .menu-item-depth-11{margin-left:165px}.reordering .menu-item-depth-0>.menu-item-bar{margin-right:0}.reordering .menu-item-depth-1>.menu-item-bar{margin-right:15px}.reordering .menu-item-depth-2>.menu-item-bar{margin-right:30px}.reordering .menu-item-depth-3>.menu-item-bar{margin-right:45px}.reordering .menu-item-depth-4>.menu-item-bar{margin-right:60px}.reordering .menu-item-depth-5>.menu-item-bar{margin-right:75px}.reordering .menu-item-depth-6>.menu-item-bar{margin-right:90px}.reordering .menu-item-depth-7>.menu-item-bar{margin-right:105px}.reordering .menu-item-depth-8>.menu-item-bar{margin-right:120px}.reordering .menu-item-depth-9>.menu-item-bar{margin-right:135px}.reordering .menu-item-depth-10>.menu-item-bar{margin-right:150px}.reordering .menu-item-depth-11>.menu-item-bar{margin-right:165px}.control-section-nav_menu.menu .menu-item-edit-active{margin-left:0}.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar{margin-right:0}.control-section-nav_menu.menu .sortable-placeholder{margin-top:0;margin-bottom:1px;max-width:calc(100% - 2px);float:left;display:list-item;border-color:#a7aaad}.menu-item-transport li.customize-control{float:none}.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar{margin-top:0}.adding-menu-items .control-section{opacity:.4}.adding-menu-items .control-panel.control-section,.adding-menu-items .control-section.open{opacity:1}.menu-item-bar .item-delete{color:#d63638;position:absolute;top:2px;right:-19px;width:30px;height:38px;cursor:pointer;display:none}.menu-item-bar .item-delete:before{content:"\f335";content:"\f335"/'';position:absolute;top:9px;left:5px;border-radius:50%;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-bar .item-delete:focus,.menu-item-bar .item-delete:hover{box-shadow:none;outline:0;color:#d63638}.adding-menu-items .menu-item-bar .item-edit{display:none}.adding-menu-items .menu-item-bar .item-delete{display:block}#available-menu-items.opening{overflow-y:hidden}#available-menu-items #available-menu-items-search.open{height:100%;border-bottom:none}#available-menu-items .accordion-section-title{border-left:none;border-right:none;background:#fff;transition:background-color .15s;-webkit-user-select:auto;user-select:auto}#available-menu-items #available-menu-items-search .accordion-section-title,#available-menu-items .open .accordion-section-title{background:#f0f0f1}#available-menu-items .accordion-section-title:after{content:none!important}#available-menu-items .accordion-section-title:hover .toggle-indicator:before,#available-menu-items .button-link:focus .toggle-indicator:before,#available-menu-items .button-link:hover .toggle-indicator:before{color:#1d2327}#available-menu-items .open .accordion-section-title .toggle-indicator:before{content:"\f142";color:#1d2327}#available-menu-items .available-menu-items-list{overflow-y:auto;max-height:200px;background:0 0}#available-menu-items .accordion-section-title button .toggle-indicator{display:flex;align-items:center;width:28px;height:35px;position:absolute;top:5px;right:5px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .accordion-section-title .no-items,#available-menu-items .cannot-expand .accordion-section-title .spinner,#available-menu-items .cannot-expand .accordion-section-title>button:not(#available-menu-items-search button.is-visible){display:none}#available-menu-items-search.cannot-expand .accordion-section-title .spinner{display:block}#available-menu-items .cannot-expand .accordion-section-title .no-items{float:right;color:#50575e;font-weight:400;margin-left:5px}#available-menu-items .accordion-section-content{max-height:290px;margin:0;padding:0;position:relative;background:0 0}#available-menu-items .accordion-section-content .available-menu-items-list{margin:0 0 64px;padding:1px 15px 15px}#available-menu-items .accordion-section-content .available-menu-items-list:only-child{margin-bottom:0}#new-custom-menu-item .accordion-section-content{padding:0 15px 15px}#available-menu-items .menu-item-tpl{margin:0}#available-menu-items .new-content-item .create-item-input.invalid,#available-menu-items .new-content-item .create-item-input.invalid:focus,#custom-menu-item-name.invalid,#custom-menu-item-url.invalid,.edit-menu-item-url.invalid,.menu-name-field.invalid,.menu-name-field.invalid:focus{border:1px solid #d63638}#available-menu-items .menu-item-handle .item-type{padding-right:0}#available-menu-items .menu-item-handle .item-title{padding-left:20px}#available-menu-items .menu-item-handle{cursor:pointer}#available-menu-items .menu-item-handle{box-shadow:none;margin-top:-1px}#available-menu-items .menu-item-handle:hover{z-index:1}#available-menu-items .item-title h4{padding:0 0 5px;font-size:14px}#available-menu-items .item-add{position:absolute;top:1px;left:1px;color:#8c8f94;width:30px;height:38px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .menu-item-handle .item-add:focus{color:#1d2327}#available-menu-items .item-add:before{content:"\f543";content:"\f543"/'';position:relative;left:2px;top:3px;display:inline-block;height:20px;border-radius:50%;font:normal 20px/1.05 dashicons}#available-menu-items .menu-item-handle.item-added .item-add:focus,#available-menu-items .menu-item-handle.item-added .item-title,#available-menu-items .menu-item-handle.item-added .item-type,#available-menu-items .menu-item-handle.item-added:hover .item-add{color:#646970}#available-menu-items .menu-item-handle.item-added .item-add:before{content:"\f147";content:"\f147"/''}#available-menu-items .accordion-section-title.loading .spinner,#available-menu-items-search.loading .accordion-section-title .spinner{visibility:visible;margin:0 20px}#available-menu-items-search .spinner{position:absolute;bottom:24px;right:21px;margin:0!important}#available-menu-items #available-menu-items-search .accordion-section-content{position:absolute;left:0;top:83px;bottom:0;max-height:none;width:100%;padding:1px 15px 15px;box-sizing:border-box}#available-menu-items-search .nothing-found{margin-top:-1px}#available-menu-items-search .accordion-section-title:after{display:none}#available-menu-items-search .accordion-section-content:empty{min-height:0;padding:0}#available-menu-items-search.loading .accordion-section-content div{opacity:.5}#available-menu-items-search.loading.loading-more .accordion-section-content div{opacity:1}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-menu-items #available-menu-items{left:0;visibility:visible}body.adding-menu-items .wp-full-overlay-main{left:300px}body.adding-menu-items #customize-preview{opacity:.4}body.adding-menu-items #customize-preview iframe{pointer-events:none}.menu-item-handle .spinner{display:none;float:left;margin:0 8px 0 0}.nav-menu-inserted-item-loading .spinner{display:block}.nav-menu-inserted-item-loading .menu-item-handle .item-type{padding:0 0 0 8px}.added-menu-item .menu-item-handle.loading,.nav-menu-inserted-item-loading .menu-item-handle{padding:10px 15px 10px 8px;cursor:default;opacity:.5;background:#fff;color:#787c82}.added-menu-item .menu-item-handle{transition-property:opacity,background,color;transition-duration:1.25s;transition-timing-function:cubic-bezier(.25,-2.5,.75,8)}#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title{border-bottom-color:#dcdcde}#accordion-section-add_menu{margin:15px 12px}#accordion-section-add_menu h3{text-align:right}#accordion-section-add_menu .customize-add-menu-button,#accordion-section-add_menu h3{margin:0}#accordion-section-add_menu .customize-add-menu-button{font-weight:400}#create-new-menu-submit{float:right;margin:0 0 12px}.menu-delete-item{float:left;padding:1em 0;width:100%}.assigned-menu-locations-title p{margin:0 0 8px}li.assigned-to-menu-location .menu-delete-item{display:none}li.assigned-to-menu-location .add-new-menu-item{margin-bottom:1em}.menu-item-handle{margin-top:-1px}.ui-sortable-disabled .menu-item-handle{cursor:default}.menu-item-handle:hover{position:relative;z-index:10;color:var(--wp-admin-theme-color)}#available-menu-items .menu-item-handle:hover .item-add,.menu-item-handle:hover .item-edit,.menu-item-handle:hover .item-type{color:var(--wp-admin-theme-color)}.menu-item-edit-active .menu-item-handle{border-color:#8c8f94;border-bottom:none}.customize-control-nav_menu_item{margin-bottom:0}.customize-control-nav_menu .new-menu-item-invitation{margin-top:0;margin-bottom:0}.customize-control-nav_menu .customize-control-nav_menu-buttons{display:flex;flex-direction:row-reverse;align-items:center;gap:8px;margin-top:12px}#available-menu-items .item-add:focus:before,#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before,.menu-delete:focus,.menu-item-bar .item-delete:focus:before,.wp-customizer .menu-item .submitbox .submitdelete:focus,.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}@media screen and (max-width:782px){#available-menu-items #available-menu-items-search .accordion-section-content{top:71px}}@media screen and (max-width:640px){#available-menu-items #available-menu-items-search .accordion-section-content{top:154px}}css/about-rtl.min.css000066600000052570152330733730010564 0ustar00/*! This file is auto-generated */ .about__container{--background:#ebe8e5;--subtle-background:#ebe8e5;--text:#1e1e1e;--text-light:#fff;--accent-1:#3858e9;--accent-2:#183ad6;--accent-3:#ececec;--accent-gradient:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%);--nav-background:#fff;--nav-border:transparent;--nav-color:var(--text);--nav-current:var(--accent-1);--border-radius:0.5rem;--gap:2rem}.about-php,.contribute-php,.credits-php,.freedoms-php,.privacy-php{background:#fff}.about-php #wpcontent,.contribute-php #wpcontent,.credits-php #wpcontent,.freedoms-php #wpcontent,.privacy-php #wpcontent{background:#fff;padding:0 24px}@media screen and (max-width:782px){.about-php.auto-fold #wpcontent,.contribute-php.auto-fold #wpcontent,.credits-php.auto-fold #wpcontent,.freedoms-php.auto-fold #wpcontent,.privacy-php.auto-fold #wpcontent{padding-right:24px}}.about__container{max-width:1000px;margin:24px auto;clear:both}.about__container .alignleft{float:right}.about__container .alignright{float:left}.about__container .aligncenter{text-align:center}.about__container .is-vertically-aligned-top{align-self:start}.about__container .is-vertically-aligned-center{align-self:center}.about__container .is-vertically-aligned-bottom{align-self:end}.about__section{background:0 0;clear:both}.about__container .has-accent-background-color{color:var(--text-light);background-color:var(--accent-2)}.about__container .has-transparent-background-color{background-color:transparent}.about__container .has-accent-color{color:var(--accent-2)}.about__container .has-border{border:3px solid currentColor}.about__container .has-subtle-background-color{background-color:var(--subtle-background);border-radius:var(--border-radius)}.about__container .has-background-image{background-size:contain;background-repeat:no-repeat;background-position:center}.about__section{margin:0}.about__section .column:not(.is-edge-to-edge){padding:var(--gap)}.about__section .column.is-left-padding-zero{padding-right:0}.about__section .column.is-right-padding-zero{padding-left:0}.about__section+.about__section .is-section-header{padding-bottom:var(--gap)}.about__section .column.has-border:not(.is-edge-to-edge),.about__section .column[class*=background-color]:not(.is-edge-to-edge),.about__section:where([class*=background-color]) .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section .column p:first-of-type{margin-top:0}.about__section .column p:last-of-type{margin-bottom:0}.about__section .has-text-columns{columns:2;column-gap:calc(var(--gap) * 2)}.about__section .is-section-header{margin-bottom:0;padding:var(--gap) var(--gap) 0}.about__section .is-section-header p:last-child{margin-bottom:0}.about__section .is-section-header:first-child:last-child{padding:0}.about__section.is-feature{padding:var(--gap)}.about__section.is-feature p{margin:0}.about__section.is-feature p+p{margin-top:calc(var(--gap)/ 2)}.about__section.has-1-column{margin-right:auto;margin-left:auto;max-width:36em}.about__section.has-2-columns,.about__section.has-3-columns,.about__section.has-4-columns,.about__section.has-overlap-style{display:grid}.about__section.has-gutters{gap:var(--gap);margin-bottom:var(--gap)}.about__section.has-2-columns{grid-template-columns:1fr 1fr}.about__section.has-2-columns.is-wider-right{grid-template-columns:2fr 3fr}.about__section.has-2-columns.is-wider-left{grid-template-columns:3fr 2fr}.about__section .is-section-header{grid-column-start:1;grid-column-end:-1}.about__section.has-3-columns{grid-template-columns:repeat(3,1fr)}.about__section.has-4-columns{grid-template-columns:repeat(4,1fr)}.about__section.has-overlap-style{grid-template-columns:repeat(7,1fr)}.about__section.has-overlap-style .column{grid-row-start:1}.about__section.has-overlap-style .column:nth-of-type(odd){grid-column-start:2;grid-column-end:span 3}.about__section.has-overlap-style .column:nth-of-type(2n){grid-column-start:4;grid-column-end:span 3}.about__section.has-overlap-style .column.is-top-layer{z-index:1}@media screen and (max-width:782px){.about__section.has-2-columns.is-wider-left,.about__section.has-2-columns.is-wider-right,.about__section.has-3-columns{display:block;margin-bottom:calc(var(--gap)/ 2)}.about__section .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section.has-2-columns.has-gutters.is-wider-left,.about__section.has-2-columns.has-gutters.is-wider-right,.about__section.has-3-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column,.about__section.has-3-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child,.about__section.has-3-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-3-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns{grid-template-columns:repeat(2,1fr)}.about__section.has-overlap-style{grid-template-columns:1fr}.about__section.has-overlap-style .column.column{grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2}}@media screen and (max-width:600px){.about__section.has-2-columns{display:block;margin-bottom:var(--gap)}.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-2-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child{margin-bottom:0}.about__section .column.is-left-padding-zero{padding-left:0}.about__section .column.is-right-padding-zero{padding-right:0}}@media screen and (max-width:480px){.about__section .is-section-header,.about__section.is-feature .column{padding:0}.about__section.has-4-columns{display:block;padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column{margin-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-4-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}}.about__container{line-height:1.4;color:var(--text)}.about__container h1{padding:0}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:2rem;font-weight:700;line-height:1.16}.about__container h1.is-smaller-heading,.about__container h2.is-smaller-heading,.about__container h3{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:1.625rem;font-weight:700;line-height:1.4}.about__container h3.is-smaller-heading,.about__container h4{margin-top:0;font-size:1.125rem;font-weight:600;line-height:1.6}.about__container h1,.about__container h2,.about__container h3,.about__container h4{text-wrap:pretty;color:inherit}.about__container :is(h1,h2,h3,h4,.about__header-text):lang(en){text-wrap:balance}.about__container p{text-wrap:pretty}.about__container p{font-size:inherit;line-height:inherit}.about__container p.is-subheading{margin-top:0;margin-bottom:1rem;font-size:1.5rem;font-weight:300;line-height:160%}.about__section a{color:var(--accent-1);text-decoration:underline}.about__section a:active,.about__section a:focus,.about__section a:hover{color:var(--accent-1);text-decoration:none}.wp-credits-list a{text-decoration:none}.wp-credits-list a:active,.wp-credits-list a:focus,.wp-credits-list a:hover{text-decoration:underline}.about__section a.button.button-hero{padding-top:1.1875rem;padding-bottom:1.1875rem;font-size:1.5rem;line-height:1.4;white-space:normal;text-wrap:pretty}.about__container ul{list-style:disc;margin-right:calc(var(--gap)/ 2)}.about__container li{margin-bottom:.5rem}.about__container img{margin:0;max-width:100%;vertical-align:middle}.about__container .about__image{margin:0}.about__container .about__image img{max-width:100%;width:100%;height:auto;border-radius:var(--border-radius)}.about__container .about__image figcaption{margin-top:.5em;text-align:center}.about__container .about__image .wp-video{margin-right:auto;margin-left:auto}.about__container .about__image svg{vertical-align:middle}.about__container .about__image+h3{margin-top:calc(.75 * var(--gap))}.about__container hr{margin:calc(var(--gap)/ 2) var(--gap);height:0;border:none;border-top:4px solid var(--accent-3)}.about__container hr.is-small{margin-top:0;margin-bottom:0}.about__container hr.is-large{margin:var(--gap) auto}.about__container hr.is-invisible{border:none}.about__container .notice,.about__container div.error,.about__container div.updated{display:none!important}.about__container code{font-size:inherit}.about__section{font-size:1.125rem;line-height:1.55}.about__section.is-feature{font-size:1.6em}.about__section.has-3-columns,.about__section.has-4-columns{font-size:1rem}@media screen and (max-width:480px){.about__section.is-feature{font-size:1.4em}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{font-size:2em}}.about__header{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;box-sizing:border-box;padding:calc(var(--gap) * 1.5);padding-left:26rem;min-height:clamp(10rem,25vw,18.75rem);border-radius:var(--border-radius);background-image:url("../images/about-header-default.webp?ver=20260514");background-repeat:no-repeat;background-position:left center;background-size:cover;background-color:var(--background);color:var(--text-light)}.credits-php .about__header{background-image:url("../images/about-header-credits.webp?ver=20260514")}.freedoms-php .about__header{background-image:url("../images/about-header-freedoms.webp?ver=20260514")}.privacy-php .about__header{background-image:url("../images/about-header-privacy.webp?ver=20260514")}.contribute-php .about__header{background-image:url("../images/about-header-get-involved.webp?ver=20260514")}[dir=rtl] .about__header{background-image:url("../images/about-header-default-rtl.webp?ver=20260514")}[dir=rtl] .credits-php .about__header{background-image:url("../images/about-header-credits-rtl.webp?ver=20260514")}[dir=rtl] .freedoms-php .about__header{background-image:url("../images/about-header-freedoms-rtl.webp?ver=20260514")}[dir=rtl] .privacy-php .about__header{background-image:url("../images/about-header-privacy-rtl.webp?ver=20260514")}[dir=rtl] .contribute-php .about__header{background-image:url("../images/about-header-get-involved-rtl.webp?ver=20260514")}.about__header-image{margin:0 0 calc(var(--gap) * 1.5)}.about__header-title{box-sizing:border-box;margin:0;padding:0}.about__header-title h1{margin:0;padding:0;font-size:clamp(2rem, 20vw - 9rem, 4rem);line-height:1;font-weight:600;color:var(--text)}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-text{box-sizing:border-box;max-width:26em;margin:1rem 0 0;padding:0;font-size:1.6rem;line-height:1.15;color:var(--text)}.about__header-navigation{position:relative;z-index:1;display:flex;flex-wrap:wrap;justify-content:space-between;padding-top:0;margin-bottom:var(--gap);background:var(--nav-background);color:var(--nav-color);border-bottom:3px solid var(--nav-border)}.about__header-navigation::after{display:none}.about__header-navigation .nav-tab{margin-right:0;padding:calc(var(--gap) * .75) var(--gap);float:none;font-size:1.4em;line-height:1;border-width:0 0 3px;border-style:solid;border-color:transparent;background:0 0;color:inherit}.about__header-navigation .nav-tab:active,.about__header-navigation .nav-tab:hover{background-color:var(--nav-current);color:var(--text-light);border-radius:var(--border-radius)}.about__header-navigation .nav-tab-active{margin-bottom:-3px;color:var(--nav-current);border-width:0 0 6px;border-color:var(--nav-current)}.about__header-navigation .nav-tab-active:active,.about__header-navigation .nav-tab-active:hover{background-color:var(--nav-current);color:var(--text-light);border-color:var(--nav-current);border-radius:var(--border-radius)}@media screen and (max-width:960px){.about__header{padding-left:21rem}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-navigation .nav-tab{padding:calc(var(--gap) * .75) calc(var(--gap) * .5)}}@media screen and (max-width:782px){.about__container .about__header-text{font-size:1.4em}.about__header-container{display:block}.about__header{padding:var(--gap);padding-left:17rem}.about__header-text{margin-top:.5rem}.about__header-navigation .nav-tab{margin-top:0;margin-left:0;font-size:1.2em}}@media screen and (max-width:600px){.about__header{min-height:auto;padding-left:var(--gap)}.about__header-navigation{display:block}.about__header-navigation .nav-tab{display:block;margin-bottom:0;padding:calc(var(--gap)/ 2);border-right-width:6px;border-bottom:none}.about__header-navigation .nav-tab-active{border-bottom:none;border-right-width:6px}}.about__section .wp-people-group-title{margin-bottom:calc(var(--gap) * 2 - 10px);text-align:center}.about__section .wp-people-group{margin:0;display:flex;flex-wrap:wrap}.about__section .wp-person{display:inline-block;vertical-align:top;box-sizing:border-box;margin-bottom:calc(var(--gap) - 10px);width:25%;text-align:center}.about__section .compact .wp-person{height:auto;width:20%}.about__section .wp-person-avatar{display:block;margin:0 auto calc(var(--gap)/ 2);width:140px;height:140px;border-radius:100%;overflow:hidden}.about__section .wp-person .gravatar{width:140px;height:140px;filter:grayscale(100%)}.about__section .compact .wp-person .gravatar,.about__section .compact .wp-person-avatar{width:80px;height:80px}.about__section .wp-person .web{display:block;font-size:1.4em;font-weight:600;padding:10px 10px 0;text-decoration:none}.about__section .wp-person .web:hover{text-decoration:underline}.about__section .compact .wp-person .web{font-size:1.2em}.about__section .wp-person .title{display:block;margin-top:.5em}@media screen and (max-width:782px){.about__section .wp-person{width:33%}.about__section .compact .wp-person{width:25%}.about__section .wp-person .gravatar,.about__section .wp-person-avatar{width:120px;height:120px}}@media screen and (max-width:600px){.about__section .wp-person{width:50%}.about__section .compact .wp-person{width:33%}.about__section .wp-person .web{font-size:1.2em}}@media screen and (max-width:480px){.about__section .wp-person{min-width:100%}.about__section .wp-person .web{font-size:1em}.about__section .compact .wp-person .web{font-size:1em}}.about__section .column .freedom-image{margin-bottom:var(--gap);max-height:180px}.about__section .column .privacy-image{display:block;margin-right:auto;margin-left:auto;max-width:25rem}.about-wrap{position:relative;margin:25px 20px 0 40px;max-width:1050px;font-size:15px}.about-wrap.full-width-layout{max-width:1200px}.about-wrap-content{max-width:1050px}.about-wrap .notice,.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:3em 0 0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;width:100%;height:auto;vertical-align:middle}.about-wrap .inline-svg img{max-width:100%;width:auto;height:auto}.about-wrap video{margin:1.5em auto}.wp-badge{background:#0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat;background-position:center 25px;background-size:80px 80px;color:#fff;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:140px;text-rendering:optimizeLegibility;box-shadow:0 1px 3px rgba(0,0,0,.2)}.svg .wp-badge{background-image:url(../images/wordpress-logo-white.svg?ver=20160308)}.about-wrap .wp-badge{position:absolute;top:0;left:0}.about-wrap .nav-tab{padding-left:15px;padding-right:15px;font-size:18px;line-height:1.33333333}.about-wrap h1{margin:.2em 0 0 200px;padding:0;color:#32373c;line-height:1.2;font-size:2.8em;font-weight:400}.about-wrap h2{margin:40px 0 .6em;font-size:2.7em;line-height:1.3;font-weight:300;text-align:center}.about-wrap h3{margin:1.25em 0 .6em;font-size:1.4em;line-height:1.5}.about-wrap h4{font-size:16px;color:#23282d}.about-wrap p{line-height:1.5;font-size:16px}.about-wrap code,.about-wrap ol li p{font-size:14px;font-weight:400}.about-wrap figcaption{font-size:13px;text-align:center;color:#fff;text-overflow:ellipsis}.about-wrap .about-description,.about-wrap .about-text{margin-top:1.4em;font-weight:400;line-height:1.6;font-size:19px}.about-wrap .about-text{margin:1em 0 1em 200px;color:#555d66}.about-wrap .has-1-columns,.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:grid;max-width:800px;margin-top:40px;margin-right:auto;margin-left:auto}.about-wrap .column{margin-left:20px;margin-right:20px}.about-wrap .is-wide{max-width:760px}.about-wrap .is-fullwidth{max-width:100%}.about-wrap .has-1-columns{display:block;max-width:680px;margin:0 auto 40px}.about-wrap .has-2-columns{grid-template-columns:1fr 1fr}.about-wrap .has-2-columns .column:nth-of-type(odd){grid-column-start:1}.about-wrap .has-2-columns .column:nth-of-type(2n){grid-column-start:2}.about-wrap .has-2-columns.is-wider-right{grid-template-columns:1fr 2fr}.about-wrap .has-2-columns.is-wider-left{grid-template-columns:2fr 1fr}.about-wrap .has-3-columns{grid-template-columns:repeat(3,1fr)}.about-wrap .has-3-columns .column:nth-of-type(3n+1){grid-column-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2){grid-column-start:2}.about-wrap .has-3-columns .column:nth-of-type(3n){grid-column-start:3}.about-wrap .has-4-columns{grid-template-columns:repeat(4,1fr)}.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1}.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:3}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:4}.about-wrap .column :first-child{margin-top:0}.about-wrap .aligncenter{text-align:center}.about-wrap .alignleft{float:right;margin-left:40px}.about-wrap .alignright{float:left;margin-right:40px}.about-wrap .is-vertically-aligned-top{align-self:flex-start}.about-wrap .is-vertically-aligned-center{align-self:center}.about-wrap .is-vertically-aligned-bottom{align-self:end}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #ddd}.about-wrap .changelog{margin-bottom:40px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .changelog.feature-section .col{margin-top:40px}.about-wrap .lead-description{font-size:1.5em;text-align:center}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .headline-feature{margin:0 auto 40px;max-width:680px}.about-wrap .headline-feature h2{margin:50px 0 0}.about-wrap .headline-feature img{max-width:600px;width:100%}.about-wrap .return-to-dashboard{margin:30px -5px 0 0;font-size:14px;font-weight:600}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h2.wp-people-group{margin:2.6em 0 1.33em;padding:0;font-size:16px;line-height:inherit;font-weight:600;text-align:right}.about-wrap .wp-people-group{padding:0 5px;margin:0 -5px 0 -15px}.about-wrap .compact{margin-bottom:0}.about-wrap .wp-person{display:inline-block;vertical-align:top;margin-left:10px;padding-bottom:15px;height:70px;width:280px}.about-wrap .compact .wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap .wp-person .gravatar{float:right;margin:0 0 10px 10px;padding:1px;width:60px;height:60px}.about-wrap .compact .wp-person .gravatar{width:30px;height:30px}.about-wrap .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.about-wrap .wp-person .title{display:block}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:600}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .has-3-columns,.about-wrap .has-4-columns{grid-template-columns:1fr 1fr}.about-wrap .has-3-columns .column:nth-of-type(3n+1),.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2),.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n),.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:1;grid-row-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:2;grid-row-start:2}}@media screen and (max-width:600px){.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:block}.about-wrap :not(.is-wider-right):not(.is-wider-left) .column{margin-left:0;margin-right:0}.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:grid}}@media only screen and (max-width:500px){.about-wrap{margin-left:20px;margin-right:10px}.about-wrap .about-text,.about-wrap h1{margin-left:0}.about-wrap .about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}}@media only screen and (max-width:480px){.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:block}.about-wrap .column{margin-left:0;margin-right:0}.about-wrap .has-2-columns.is-wider-left img,.about-wrap .has-2-columns.is-wider-right img{max-width:160px}}css/customize-controls.min.css000066600000166016152330733730012537 0ustar00/*! This file is auto-generated */ body{overflow:hidden;-webkit-text-size-adjust:100%}.customize-controls-close,.widget-control-actions a{text-decoration:none}#customize-controls h3{font-size:14px}#customize-controls img{max-width:100%}#customize-controls .submit{text-align:center}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked{background-color:rgba(0,0,0,.7);padding:25px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message{margin-left:auto;margin-right:auto;max-width:366px;min-height:64px;width:auto;padding:25px;position:relative;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;overflow-y:auto;text-align:left;top:calc(50% - 100px)}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar{padding-left:109px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing{margin-top:0}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons{margin-bottom:0}.customize-changeset-locked-avatar{width:64px;position:absolute;left:25px;top:25px}.wp-core-ui.wp-customizer .customize-changeset-locked-message a.button{margin-right:10px;margin-top:0}#customize-controls .description{color:#50575e}#customize-save-button-wrapper{float:right;margin-top:7px}body:not(.ready) #customize-save-button-wrapper .save{visibility:hidden}#customize-save-button-wrapper .save{float:left;border-radius:3px;box-shadow:none;margin-top:0}#customize-save-button-wrapper .save.has-next-sibling{border-radius:3px 0 0 3px}#customize-sidebar-outer-content{position:absolute;top:0;bottom:0;left:0;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:100%;margin:0;z-index:-1;background:#f0f0f1;transition:left .18s;border-right:1px solid #dcdcde;border-left:1px solid #dcdcde;height:100%}@media (prefers-reduced-motion:reduce){#customize-sidebar-outer-content{transition:none}}#customize-theme-controls .control-section-outer{display:none!important}#customize-outer-theme-controls .accordion-section-content{padding:12px}#customize-outer-theme-controls .accordion-section-content.open{display:block}.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{visibility:visible;left:100%;transition:left .18s}@media (prefers-reduced-motion:reduce){.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{transition:none}}.customize-outer-pane-parent{margin:0}.outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main{left:300px;opacity:.4}.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main{left:64%}#customize-outer-theme-controls li.notice{padding-top:8px;padding-bottom:8px;margin-left:0;margin-bottom:10px}#publish-settings{text-indent:0;border-radius:0 3px 3px 0;padding-left:0;padding-right:0;box-shadow:none;font-size:14px;width:30px;float:left;transform:none;margin-top:0;line-height:2}body.trashing #customize-save-button-wrapper .save,body.trashing #publish-settings,body:not(.ready) #publish-settings{display:none}#customize-header-actions .spinner{margin-top:13px;margin-right:4px}.saving #customize-header-actions .spinner,.trashing #customize-header-actions .spinner{visibility:visible}#customize-header-actions{border-bottom:1px solid #dcdcde}#customize-controls .wp-full-overlay-sidebar-content{overflow-y:auto;overflow-x:hidden}.outer-section-open #customize-controls .wp-full-overlay-sidebar-content{background:#f0f0f1}#customize-controls .customize-info{border:none;border-bottom:1px solid #dcdcde;margin-bottom:15px}#customize-control-changeset_preview_link input,#customize-control-changeset_status .customize-inside-control-row{background-color:#fff;border-bottom:1px solid #dcdcde;box-sizing:content-box;width:100%;margin-left:-12px;padding-left:12px;padding-right:12px}#customize-control-trash_changeset{margin-top:20px}#customize-control-trash_changeset .button-link{position:relative;padding-left:24px;display:inline-block}#customize-control-trash_changeset .button-link:before{content:"\f182";content:"\f182"/'';font:normal 22px dashicons;text-decoration:none;position:absolute;left:0;top:-2px}#customize-controls .date-input:invalid{border-color:#d63638}#customize-control-changeset_status .customize-inside-control-row{padding-top:10px;padding-bottom:10px;font-weight:500}#customize-control-changeset_status .customize-inside-control-row:first-of-type{border-top:1px solid #dcdcde}#customize-control-changeset_status .customize-control-title{margin-bottom:6px}#customize-control-changeset_status input{margin-left:0}#customize-control-changeset_preview_link{position:relative;display:block}.preview-link-wrapper .customize-copy-preview-link.preview-control-element.button{margin:0;position:absolute;top:50%;transform:translateY(-50%)!important;right:0;background:#fff!important}.preview-link-wrapper{position:relative}.customize-copy-preview-link:after,.customize-copy-preview-link:before{content:"";height:40px;position:absolute;background:#fff;top:0}.customize-copy-preview-link:before{left:-10px;width:9px;opacity:.75}.customize-copy-preview-link:after{left:-5px;width:4px;opacity:.8}#customize-control-changeset_preview_link input{line-height:2.85714286;border-top:1px solid #dcdcde;border-left:none;border-right:none;text-indent:-999px;color:#fff;min-height:40px}#customize-control-changeset_preview_link label{position:relative;display:block}#customize-control-changeset_preview_link a{display:inline-block;position:absolute;white-space:nowrap;overflow:hidden;width:90%;bottom:14px;font-size:14px;text-decoration:none}#customize-control-changeset_preview_link a.disabled,#customize-control-changeset_preview_link a.disabled:active,#customize-control-changeset_preview_link a.disabled:focus,#customize-control-changeset_preview_link a.disabled:visited{color:#000;opacity:.4;cursor:default;outline:0;box-shadow:none}#sub-accordion-section-publish_settings .customize-section-description-container{display:none}#customize-controls .customize-info.section-meta{margin-bottom:15px}.customize-control-date_time .customize-control-description+.date-time-fields.includes-time{margin-top:10px}.customize-control.customize-control-date_time .date-time-fields .date-input.day{margin-right:0}.date-time-fields .date-input.month{width:auto;margin:0}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:46px}.customize-control-date_time select{vertical-align:top}.date-time-fields .date-input.year{width:65px}.date-time-fields .date-input.meridian{width:auto;margin:0}.date-time-fields .time-row{margin-top:12px}#customize-control-changeset_preview_link{margin-top:6px}#customize-control-changeset_status{margin-bottom:0;padding-bottom:0}#customize-control-changeset_scheduled_date{box-sizing:content-box;width:100%;margin-left:-12px;padding:12px;background:#fff;border-bottom:1px solid #dcdcde;margin-bottom:0}#customize-control-changeset_scheduled_date .customize-control-description,#customize-control-site_icon .customize-control-description{font-style:normal}#customize-controls .customize-info.is-in-view,#customize-controls .customize-section-title.is-in-view{position:absolute;z-index:9;width:100%;box-shadow:0 1px 0 rgba(0,0,0,.1)}#customize-controls .customize-section-title.is-in-view{margin-top:0}#customize-controls .customize-info.is-in-view+.accordion-section{margin-top:15px}#customize-controls .customize-info.is-sticky,#customize-controls .customize-section-title.is-sticky{position:fixed;top:46px}#customize-controls .customize-info .accordion-section-title{background:#fff;color:#50575e;border-left:none;border-right:none;border-bottom:none;cursor:default;padding:10px 10px 11px 14px}#customize-controls .customize-info .accordion-section-title:focus:after,#customize-controls .customize-info .accordion-section-title:hover:after,#customize-controls .customize-info.open .accordion-section-title:after{color:#2c3338}#customize-controls .customize-info .accordion-section-title:after{display:none}#customize-controls .customize-info .preview-notice{font-size:13px;line-height:1.9;margin:0;font-weight:400;color:#50575e}#customize-controls .customize-info .panel-title,#customize-controls .customize-pane-child .customize-section-title h3,#customize-controls .customize-pane-child h3.customize-section-title,#customize-outer-theme-controls .customize-pane-child .customize-section-title h3,#customize-outer-theme-controls .customize-pane-child h3.customize-section-title{font-size:20px;font-weight:200;line-height:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-section-title span.customize-action{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-info .customize-help-toggle{position:absolute;top:4px;right:1px;padding:20px 20px 10px 10px;width:20px;height:20px;cursor:pointer;box-shadow:none;background:0 0;color:#50575e;border:none}#customize-controls .customize-info .customize-help-toggle:before{position:absolute;top:5px;left:6px}#customize-controls .customize-info .customize-panel-description,#customize-controls .customize-info .customize-section-description,#customize-controls .no-widget-areas-rendered-notice,#customize-outer-theme-controls .customize-info .customize-section-description{color:#50575e;display:none;background:#fff;padding:12px 15px;border-top:1px solid #dcdcde}#customize-controls .customize-info .customize-panel-description.open+.no-widget-areas-rendered-notice{border-top:none}.no-widget-areas-rendered-notice{font-style:italic}.no-widget-areas-rendered-notice p:first-child{margin-top:0}.no-widget-areas-rendered-notice p:last-child{margin-bottom:0}#customize-controls .customize-info .customize-section-description{margin-bottom:15px}#customize-controls .customize-info .customize-panel-description p:first-child,#customize-controls .customize-info .customize-section-description p:first-child{margin-top:0}#customize-controls .customize-info .customize-panel-description p:last-child,#customize-controls .customize-info .customize-section-description p:last-child{margin-bottom:0}#customize-controls .current-panel .control-section>h3.accordion-section-title{padding-right:30px}#customize-outer-theme-controls .control-section,#customize-theme-controls .control-section{border:none}#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{color:#50575e;background-color:#fff;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}#customize-controls .current-panel .control-section>h3.accordion-section-title:has(button.accordion-trigger),.accordion-section-title:has(button.accordion-trigger){padding:0}.accordion-section-title button.accordion-trigger{all:unset;width:100%;padding:10px 30px 11px 14px;display:flex;align-items:center;box-sizing:border-box}.accordion-section-title button.accordion-trigger:has(.menu-in-location){display:block}.accordion-section-title button.accordion-trigger .spinner{margin-top:0}@media (prefers-reduced-motion:reduce){#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{transition:none}}#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title{color:#50575e;background-color:#fff;border-left:4px solid #fff}#customize-outer-theme-controls .accordion-section-title:after,#customize-theme-controls .accordion-section-title:after{content:"\f345";content:"\f345"/'';color:#a7aaad;pointer-events:none}#customize-outer-theme-controls .accordion-section-content,#customize-theme-controls .accordion-section-content{color:#50575e;background:0 0}#accordion-section-themes+.control-section{border-top:1px solid #dcdcde}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{background:#f6f7f7}#customize-theme-controls .control-section.open{border-bottom:1px solid #f0f0f1}#customize-outer-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section.open .accordion-section-title{border-bottom-color:#f0f0f1!important}#customize-theme-controls .control-section:last-of-type.open,#customize-theme-controls .control-section:last-of-type>.accordion-section-title{border-bottom-color:#dcdcde}#customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2),#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu,#customize-theme-controls .control-section-nav_menu_locations .accordion-section-title{border-top:1px solid #dcdcde}#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu+.control-section-nav_menu{border-top:none}#customize-theme-controls>ul{margin:0}#customize-theme-controls .accordion-section-content{position:absolute;top:0;left:100%;width:100%;margin:0;padding:12px;box-sizing:border-box}#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{overflow:visible;width:100%;margin:0;padding:0;box-sizing:border-box;transition:.18s transform cubic-bezier(.645, .045, .355, 1)}@media (prefers-reduced-motion:reduce){#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{transition:none}}#customize-theme-controls .customize-pane-child.skip-transition{transition:none}#customize-info,#customize-theme-controls .customize-pane-parent{position:relative;visibility:visible;height:auto;max-height:none;overflow:auto;transform:none}#customize-theme-controls .customize-pane-child{position:absolute;top:0;left:0;visibility:hidden;height:0;max-height:none;overflow:hidden;transform:translateX(100%)}#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open{transform:none}.in-sub-panel #customize-info,.in-sub-panel #customize-theme-controls .customize-pane-parent,.in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel,.section-open #customize-info,.section-open #customize-theme-controls .customize-pane-parent{visibility:hidden;height:0;overflow:hidden;transform:translateX(-100%)}#customize-theme-controls .customize-pane-child.busy,#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open,.busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel,.in-sub-panel #customize-info.busy,.in-sub-panel #customize-theme-controls .customize-pane-parent.busy,.section-open #customize-info.busy,.section-open #customize-theme-controls .customize-pane-parent.busy{visibility:visible;height:auto;overflow:auto}#customize-theme-controls .customize-pane-child.accordion-section-content,#customize-theme-controls .customize-pane-child.accordion-sub-container{display:block;overflow-x:hidden}#customize-theme-controls .customize-pane-child.accordion-section-content{padding:12px}#customize-theme-controls .customize-pane-child.menu li{position:static}.control-section-nav_menu .customize-section-description-container,.control-section-new_menu .customize-section-description-container,.customize-section-description-container{margin-bottom:15px}.control-section-nav_menu .customize-control,.control-section-new_menu .customize-control{margin-bottom:0}.customize-section-title{margin:-12px -12px 0;border-bottom:1px solid #dcdcde;background:#fff}div.customize-section-description{margin-top:22px}.customize-info div.customize-section-description{margin-top:0}div.customize-section-description p:first-child{margin-top:0}div.customize-section-description p:last-child{margin-bottom:0}#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{border-bottom:1px solid #dcdcde;padding:12px}.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{padding:12px 12px 13px}.customize-section-title h3,h3.customize-section-title{padding:10px 10px 12px 14px;margin:0;line-height:21px;color:#50575e}.accordion-sub-container.control-panel-content{display:none;position:absolute;top:0;width:100%}.accordion-sub-container.control-panel-content.busy{display:block}.current-panel .accordion-sub-container.control-panel-content{width:100%}.customize-controls-close{display:block;position:absolute;top:0;left:0;width:45px;height:41px;padding:0 2px 0 0;background:#f0f0f1;border:none;border-top:4px solid #f0f0f1;border-right:1px solid #dcdcde;color:#3c434a;text-align:left;cursor:pointer;box-sizing:content-box}@media (prefers-reduced-motion:no-preference){.customize-controls-close{transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}}.customize-panel-back,.customize-section-back{display:block;float:left;width:48px;height:71px;padding:0 24px 0 0;margin:0;background:#fff;border:none;border-right:1px solid #dcdcde;border-left:4px solid #fff;box-shadow:none;cursor:pointer;transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}.customize-section-back{height:74px}.ios .customize-panel-back{display:none}.ios .expanded.in-sub-panel .customize-panel-back{display:block}#customize-controls .panel-meta.customize-info .accordion-section-title{margin-left:48px;border-left:none}#customize-controls .cannot-expand:hover .accordion-section-title,#customize-controls .panel-meta.customize-info .accordion-section-title:hover{background:#fff;color:#50575e;border-left-color:#fff}.customize-controls-close:focus,.customize-controls-close:hover,.customize-controls-preview-toggle:focus,.customize-controls-preview-toggle:hover{background:#fff;box-shadow:none;outline:1px solid transparent}#customize-theme-controls .accordion-section-title:focus .customize-action{outline:1px solid transparent;outline-offset:1px}.customize-panel-back:focus,.customize-panel-back:hover,.customize-section-back:focus,.customize-section-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.customize-controls-close:before{font:normal 22px/45px dashicons;content:"\f335";content:"\f335"/'';position:relative;top:-3px;left:13px}.customize-panel-back:before,.customize-section-back:before{font:normal 20px/72px dashicons;content:"\f341";content:"\f341"/'';position:relative;left:9px}.wp-full-overlay-sidebar .wp-full-overlay-header{background-color:#f0f0f1;transition:padding ease-in-out .18s}.in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header{padding-left:62px}p.customize-section-description{font-style:normal;margin-top:22px;margin-bottom:0}.customize-section-description ul{margin-left:1em}.customize-section-description ul>li{list-style:disc}.section-description-buttons{text-align:right}.customize-control{width:100%;float:left;clear:both;margin-bottom:12px}.customize-control input[type=email],.customize-control input[type=number],.customize-control input[type=password],.customize-control input[type=range],.customize-control input[type=search],.customize-control input[type=tel],.customize-control input[type=text],.customize-control input[type=url]{width:100%;margin:0}.customize-control-hidden{margin:0}.customize-control-textarea textarea{width:100%;resize:vertical}.customize-control select{width:100%}.customize-control select[multiple]{height:auto}.customize-control-title{display:block;font-size:14px;line-height:1.75;font-weight:600;margin-bottom:4px}.customize-control-description{display:block;font-style:italic;line-height:1.4;margin-top:0;margin-bottom:5px}.customize-section-description a.external-link:after{font:16px/11px dashicons;content:"\f504";content:"\f504"/'';top:3px;position:relative;padding-left:3px;display:inline-block;text-decoration:none}.customize-control-color .color-picker,.customize-control-upload div{line-height:28px}.customize-control .customize-inside-control-row{line-height:1.6;display:block;margin-left:24px;padding-top:6px;padding-bottom:6px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-right:4px;margin-left:-24px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:1.6}.customize-control-radio .customize-control-title+.customize-control-description{margin-top:7px}.customize-control-checkbox label,.customize-control-radio label{vertical-align:top}.customize-control .attachment-thumb.type-icon{float:left;margin:10px;width:auto}.customize-control .attachment-title{font-weight:600;margin:0;padding:5px 10px}.customize-control .attachment-meta{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;padding:0 10px}.customize-control .attachment-meta-title{padding-top:7px}.customize-control .thumbnail-image,.customize-control .wp-media-wrapper.wp-video,.customize-control-header .current{line-height:0}.customize-control .thumbnail-image img{cursor:pointer}#customize-controls .thumbnail-audio .thumbnail{max-width:64px;max-height:64px;margin:10px;float:left}#available-menu-items .accordion-section-content .new-content-item-wrapper,.customize-control-dropdown-pages .new-content-item-wrapper{width:calc(100% - 30px);padding:8px 15px;position:absolute;bottom:0;z-index:10;background:#f0f0f1}.customize-control-dropdown-pages .new-content-item-wrapper{width:100%;padding:0;position:static}#available-menu-items .new-content-item-wrapper>label,.customize-control-dropdown-pages .new-content-item-wrapper>label{margin-bottom:4px;display:block}#available-menu-items .accordion-section-content .new-content-item,.customize-control-dropdown-pages .new-content-item{display:flex}.customize-control-dropdown-pages .new-content-item{width:100%;padding:5px 0 5px 1px;position:relative}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item{padding:0}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label{line-height:1.6}#available-menu-items .new-content-item .create-item-input,.customize-control-dropdown-pages .new-content-item .create-item-input{flex-grow:10;width:100%}#available-menu-items .new-content-item .create-item-input{min-height:32px;line-height:2.15384615}#available-menu-items .new-content-item .add-content,.customize-control-dropdown-pages .new-content-item .add-content{margin:0 0 0 6px;flex-grow:1}#available-menu-items .new-content-item .add-content{min-height:32px;line-height:2.30769231}.customize-control-dropdown-pages .new-content-item .create-item-input.invalid{border:1px solid #d63638}.customize-control-dropdown-pages .add-new-toggle{margin-left:1px;font-weight:600;line-height:2.2}#customize-preview iframe{width:100%;height:100%;position:absolute}#customize-preview iframe+iframe{visibility:hidden}.wp-full-overlay-sidebar{background:#f0f0f1;border-right:1px solid #dcdcde}#customize-controls .customize-control-notifications-container{margin:4px 0 8px;padding:0;cursor:default}#customize-controls .customize-control-widget_form.has-error .widget .widget-top,.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle{box-shadow:inset 0 0 0 2px #d63638;transition:.15s box-shadow linear}#customize-controls .customize-control-notifications-container li.notice{list-style:none;margin:0 0 6px;padding:9px 14px;overflow:hidden}#customize-controls .customize-control-notifications-container .notice.is-dismissible{padding-right:38px}.customize-control-notifications-container li.notice:last-child{margin-bottom:0}#customize-controls .customize-control-nav_menu_item .customize-control-notifications-container{margin-top:0}#customize-controls .customize-control-widget_form .customize-control-notifications-container{margin-top:8px}.customize-control-text.has-error input{outline:2px solid #d63638}#customize-controls #customize-notifications-area{position:absolute;top:46px;width:100%;border-bottom:1px solid #dcdcde;display:block;padding:0;margin:0}.wp-full-overlay.collapsed #customize-controls #customize-notifications-area{display:none!important}#customize-controls #customize-notifications-area:not(.has-overlay-notifications),#customize-controls .customize-section-title>.customize-control-notifications-container:not(.has-overlay-notifications),#customize-controls .panel-meta>.customize-control-notifications-container:not(.has-overlay-notifications){max-height:210px;overflow-x:hidden;overflow-y:auto}#customize-controls #customize-notifications-area .notice,#customize-controls #customize-notifications-area>ul,#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container .notice{margin:0}#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container{border-top:1px solid #dcdcde}#customize-controls #customize-notifications-area .notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice{padding:9px 14px}#customize-controls #customize-notifications-area .notice.is-dismissible,#customize-controls .customize-section-title>.customize-control-notifications-container .notice.is-dismissible,#customize-controls .panel-meta>.customize-control-notifications-container .notice.is-dismissible{padding-right:38px}#customize-controls #customize-notifications-area .notice+.notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice+.notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice+.notice{margin-top:1px}@keyframes customize-fade-in{0%{opacity:0}100%{opacity:1}}#customize-controls #customize-notifications-area .notice.notification-overlay,#customize-controls .notice.notification-overlay{margin:0;border-left:0}#customize-controls .customize-control-notifications-container.has-overlay-notifications{animation:customize-fade-in .5s;z-index:30}#customize-controls #customize-notifications-area .notice.notification-overlay .notification-message{clear:both;color:#1d2327;font-size:18px;font-style:normal;margin:0;padding:2em 0;text-align:center;width:100%;display:block;top:50%;position:relative}#customize-control-show_on_front.has-error{margin-bottom:0}#customize-control-show_on_front.has-error .customize-control-notifications-container{margin-top:12px}.accordion-section .dropdown{float:left;display:block;position:relative;cursor:pointer}.accordion-section .dropdown-content{overflow:hidden;float:left;min-width:30px;height:16px;line-height:16px;margin-right:16px;padding:4px 5px;border:2px solid #f0f0f1;-webkit-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;right:0;width:20px;background:#f0f0f1}.customize-control .dropdown-arrow:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#2c3338}.customize-control .dropdown-status{color:#2c3338;background:#f0f0f1;display:none;max-width:112px}.customize-control-color .dropdown{margin-right:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#50575e;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.ios .wp-full-overlay{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}.customize-control .actions .button{margin-top:12px}.customize-control-header .actions,.customize-control-header .uploaded{margin-bottom:18px}.customize-control-header .default button:not(.random),.customize-control-header .uploaded button:not(.random){width:100%;padding:0;margin:0;background:0 0;border:none;color:inherit;cursor:pointer}.customize-control-header button img{display:block}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control .attachment-media-view .upload-button,.customize-control-header button.new,.customize-control-header button.remove{width:auto;height:auto;white-space:normal}.customize-control .attachment-media-view .upload-button{width:100%;text-align:center}.customize-control .attachment-media-view .upload-button.control-focus{width:auto}.customize-control.customize-control-header .actions .upload-button.button.new{width:100%;text-align:center}.customize-control .attachment-media-view .thumbnail,.customize-control-header .current .container{overflow:hidden}.customize-control .attachment-media-view .button-add-media,.customize-control .attachment-media-view .placeholder,.customize-control-header .placeholder{width:100%;position:relative;text-align:center;cursor:default;border:1px dashed #c3c4c7;box-sizing:border-box;padding:9px 0;line-height:1.6}.customize-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.customize-control .attachment-media-view .button-add-media:hover{background-color:#fff}.customize-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.customize-control-header .inner{display:none;position:absolute;width:100%;color:#50575e;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.customize-control-header .inner,.customize-control-header .inner .dashicons{line-height:20px;top:8px}.customize-control-header .list .inner,.customize-control-header .list .inner .dashicons{top:9px}.customize-control-header .header-view{position:relative;width:100%;margin-bottom:12px}.customize-control-header .header-view:last-child{margin-bottom:0}.customize-control-header .header-view:after{border:0}.customize-control-header .header-view.selected .choice:focus{outline:0}.customize-control-header .header-view.selected:after{content:"";position:absolute;height:auto;top:0;left:0;bottom:0;right:0;border:4px solid #72aee6;border-radius:2px}.customize-control-header .header-view.button.selected{border:0}.customize-control-header .uploaded .header-view .close{font-size:20px;color:#fff;background:#50575e;background:rgba(0,0,0,.5);position:absolute;top:10px;left:-999px;z-index:1;width:26px;height:26px;cursor:pointer}.customize-control-header .header-view .close:focus,.customize-control-header .header-view:hover .close{left:auto;right:10px}.customize-control-header .header-view .close:focus{outline:1px solid #4f94d4}.customize-control-header .random.placeholder{cursor:pointer;border-radius:2px;height:40px}.customize-control-header button.random{width:100%;height:auto;min-height:40px;white-space:normal}.customize-control-header button.random .dice{margin-top:0}.customize-control-header .header-view:hover>button.random .dice,.customize-control-header .placeholder:hover .dice{animation:dice-color-change 3s infinite}.button-see-me{animation:bounce .7s 1;transform-origin:center bottom}@keyframes bounce{20%,53%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);transform:translate3d(0,0,0)}40%,43%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-12px,0)}70%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-1px,0)}}.customize-control-header .choice{position:relative;display:block;margin-bottom:9px}.customize-control-header .choice:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.customize-control-header .uploaded div:last-child>.choice{margin-bottom:0}.customize-control .attachment-media-view .thumbnail-image img,.customize-control-header img{max-width:100%}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control-header .remove{margin-right:8px}.customize-control-background_position .background-position-control .button-group{display:block}.customize-control-code_editor textarea{width:100%;font-family:Consolas,Monaco,monospace;font-size:12px;padding:6px 8px;tab-size:2}.customize-control-code_editor .CodeMirror,.customize-control-code_editor textarea{height:14em}#customize-controls .customize-section-description-container.section-meta.customize-info{border-bottom:none}#sub-accordion-section-custom_css .customize-control-notifications-container{margin-bottom:15px}#customize-control-custom_css textarea{display:block;height:500px}.customize-section-description-container+#customize-control-custom_css .customize-control-title{margin-left:12px}.customize-section-description-container+#customize-control-custom_css:last-child textarea{border-right:0;border-left:0;height:calc(100vh - 185px);resize:none}.customize-section-description-container+#customize-control-custom_css:last-child{margin-left:-12px;width:299px;width:calc(100% + 24px);margin-bottom:-12px}.customize-section-description-container+#customize-control-custom_css:last-child .CodeMirror{height:calc(100vh - 185px)}.CodeMirror-hints,.CodeMirror-lint-tooltip{z-index:500000!important}.customize-section-description-container+#customize-control-custom_css:last-child .customize-control-notifications-container{margin-left:12px;margin-right:12px}.theme-browser .theme.active .theme-actions,.wp-customizer .theme-browser .theme .theme-actions{padding:9px 15px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}@media screen and (max-width:640px){.customize-section-description-container+#customize-control-custom_css:last-child{margin-right:0}.customize-section-description-container+#customize-control-custom_css:last-child textarea{height:calc(100vh - 140px)}}#customize-theme-controls .control-panel-themes{border-bottom:none}#customize-theme-controls .control-panel-themes>.accordion-section-title,#customize-theme-controls .control-panel-themes>.accordion-section-title:hover{cursor:default;background:#fff;color:#50575e;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;border-left:none;border-right:none;margin:0 0 15px;padding:12px 100px 15px 15px}#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child,#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover{border-top:0}#customize-theme-controls .control-section-themes>.accordion-section-title,#customize-theme-controls .control-section-themes>.accordion-section-title:hover{margin:0 0 15px}#customize-controls .customize-themes-panel .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title:hover{margin:15px -8px}#customize-controls .control-section-themes .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title{padding-right:100px}#customize-controls .control-section-themes .accordion-section-title span.customize-action,#customize-controls .customize-section-title span.customize-action,.control-panel-themes .accordion-section-title span.customize-action{font-size:13px;display:block;font-weight:400}#customize-theme-controls .control-panel-themes .accordion-section-title .change-theme{position:absolute;right:10px;top:50%;margin-top:-20px;font-weight:400}#customize-notifications-area .notification-message button.switch-to-editor{display:block;margin-top:6px;font-weight:400}#customize-theme-controls .control-panel-themes>.accordion-section-title:after{display:none}.control-panel-themes .customize-themes-full-container{position:fixed;top:0;left:0;transition:.18s left ease-in-out;margin:0 0 0 300px;padding:71px 0 25px;overflow-y:scroll;width:calc(100% - 300px);height:calc(100% - 96px);background:#f0f0f1;z-index:20}@media (prefers-reduced-motion:reduce){.control-panel-themes .customize-themes-full-container{transition:none}}@media screen and (min-width:1670px){.control-panel-themes .customize-themes-full-container{width:82%;right:0;left:initial}}.modal-open .control-panel-themes .customize-themes-full-container{overflow-y:visible}#customize-header-actions .customize-controls-preview-toggle,#customize-header-actions .spinner,#customize-save-button-wrapper{transition:.18s margin ease-in-out}#customize-footer-actions,#customize-footer-actions .collapse-sidebar{bottom:0;transition:.18s bottom ease-in-out}.in-themes-panel:not(.animating) #customize-footer-actions,.in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel:not(.animating) #customize-header-actions .spinner,.in-themes-panel:not(.animating) #customize-preview{visibility:hidden}.wp-full-overlay.in-themes-panel{background:#f0f0f1}.in-themes-panel #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel #customize-header-actions .spinner,.in-themes-panel #customize-save-button-wrapper{margin-top:-46px}.in-themes-panel #customize-footer-actions,.in-themes-panel #customize-footer-actions .collapse-sidebar{bottom:-45px}.in-themes-panel.animating .control-panel-themes .filter-themes-count{display:none}.in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content{bottom:0}.themes-filter-bar .feature-filter-toggle{min-height:32px;line-height:2.30769231}.themes-filter-bar .feature-filter-toggle:before{content:"\f111";content:"\f111"/'';margin:0 5px 0 0;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .feature-filter-toggle.open{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.themes-filter-bar .feature-filter-toggle .filter-count-filters{display:none}.filter-drawer{box-sizing:border-box;width:100%;position:absolute;top:46px;left:0;padding:25px 0 25px 25px;border-top:0;margin:0;background:#f0f0f1;border-bottom:1px solid #dcdcde}.filter-drawer .filter-group{margin:0 25px 0 0;width:calc((100% - 75px)/ 3);min-width:200px;max-width:320px}@keyframes themes-fade-in{0%{opacity:0}50%{opacity:0}100%{opacity:1}}.control-panel-themes .customize-themes-full-container.animate{animation:.6s themes-fade-in 1}.in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count{animation:.6s themes-fade-in 1}.control-panel-themes .filter-themes-count .themes-displayed{font-weight:600;color:#50575e}.customize-themes-notifications{margin:0}.control-panel-themes .customize-themes-notifications .notice{margin:0 0 25px}.customize-themes-full-container .customize-themes-section{display:none!important;overflow:hidden}.customize-themes-full-container .customize-themes-section.current-section{display:list-item!important}.control-section .customize-section-text-before{padding:0 0 8px 15px;margin:15px 0 0;line-height:16px;border-bottom:1px solid #dcdcde;color:#50575e}.control-panel-themes .customize-themes-section-title{width:100%;background:#fff;box-shadow:none;outline:0;border-top:none;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;border-right:none;cursor:pointer;padding:10px 15px;position:relative;text-align:left;font-size:14px;font-weight:600;color:#50575e;text-shadow:none}.control-panel-themes #accordion-section-installed_themes{border-top:1px solid #dcdcde}.control-panel-themes .theme-section{margin:0;position:relative}.control-panel-themes .customize-themes-section-title:focus,.control-panel-themes .customize-themes-section-title:hover{background:#f6f7f7}.customize-themes-section-title:not(.selected):after{content:"";display:block;position:absolute;top:9px;right:15px;width:18px;height:18px;border-radius:100%;border:1px solid #c3c4c7;background:#fff}.control-panel-themes .theme-section .customize-themes-section-title.selected:after{content:"\f147";content:"\f147"/'';font:16px/1 dashicons;box-sizing:border-box;width:20px;height:20px;padding:3px 3px 1px 1px;border-radius:100%;position:absolute;top:9px;right:15px;color:#fff}#customize-theme-controls .themes.accordion-section-content{position:relative;left:0;padding:0;width:100%}.loading .customize-themes-section .spinner{display:block;visibility:visible;position:relative;clear:both;width:20px;height:20px;left:calc(50% - 10px);float:none;margin-top:50px}.customize-themes-section .no-themes,.customize-themes-section .no-themes-local{display:none}.themes-section-installed_themes .theme .notice-success:not(.updated-message){display:none}.customize-control-theme .theme{width:100%;margin:0;border:1px solid #dcdcde;background:#fff}.customize-control-theme .theme .theme-actions,.customize-control-theme .theme .theme-name{background:#fff;border:none}.customize-control.customize-control-theme{box-sizing:border-box;width:25%;max-width:600px;margin:0 25px 25px 0;padding:0;clear:none}@media screen and (min-width:2101px){.customize-control.customize-control-theme{width:calc((100% - 125px)/ 5 - 1px)}}@media screen and (min-width:1601px) and (max-width:2100px){.customize-control.customize-control-theme{width:calc((100% - 100px)/ 4 - 1px)}}@media screen and (min-width:1201px) and (max-width:1600px){.customize-control.customize-control-theme{width:calc((100% - 75px)/ 3 - 1px)}}@media screen and (min-width:851px) and (max-width:1200px){.customize-control.customize-control-theme{width:calc((100% - 50px)/ 2 - 1px)}}@media screen and (max-width:850px){.customize-control.customize-control-theme{width:100%}}.wp-customizer .theme-browser .themes{padding:0 0 25px 25px;transition:.18s margin-top linear}.wp-customizer .theme-browser .theme .theme-actions{opacity:1}#customize-controls h3.theme-name{font-size:15px}#customize-controls .theme-overlay .theme-name{font-size:32px}.customize-preview-header.themes-filter-bar{position:fixed;top:0;left:300px;width:calc(100% - 300px);height:46px;background:#f0f0f1;z-index:10;padding:6px 25px;box-sizing:border-box;border-bottom:1px solid #dcdcde}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.customize-preview-header.themes-filter-bar .search-form-input{position:relative}.customize-preview-header .filter-themes-wrapper{display:grid;align-items:center;gap:10px;grid-template-columns:auto 1fr}.customize-preview-header .filter-themes-wrapper .filter-themes-count{justify-self:end}@media screen and (min-width:1670px){.customize-preview-header.themes-filter-bar{width:82%;right:0;left:initial}}.themes-filter-bar .themes-filter-container{margin:0;padding:0;display:flex;align-items:center;gap:10px}.themes-filter-bar .wp-filter-search{padding:0 10px 0 30px;max-width:100%;width:40%;min-width:300px;height:32px;min-height:32px;margin:1px 0;top:0;left:0}@media screen and (max-height:540px),screen and (max-width:1018px){.customize-preview-header.themes-filter-bar{position:relative;left:0;width:100%;margin:0 0 25px}.filter-drawer{top:46px}.wp-customizer .theme-browser .themes{padding:0 0 25px 25px;overflow:hidden}.control-panel-themes .customize-themes-full-container{margin-top:0;padding:0;height:100%;width:calc(100% - 300px)}}@media screen and (max-width:1018px){.filter-drawer .filter-group{width:calc((100% - 50px)/ 2)}}@media screen and (max-width:960px){.customize-preview-header.themes-filter-bar{height:96px}}@media screen and (max-width:900px){.themes-filter-bar .wp-filter-search{width:100%;margin:0;min-width:200px}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container{display:grid;gap:4px}.customize-preview-header.themes-filter-bar .search-form-input{display:flex;flex-grow:1}.filter-drawer{top:86px}.control-panel-themes .filter-themes-count{float:left}}@media screen and (max-width:792px){.filter-drawer .filter-group{width:calc(100% - 25px)}}.control-panel-themes .customize-themes-mobile-back{display:none}@media screen and (max-width:600px){.filter-drawer{top:132px}.wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes{display:block;float:right}.control-panel-themes .customize-themes-full-container{width:100%;margin:0;padding-top:46px;height:calc(100% - 46px);z-index:1;display:none}.showing-themes .control-panel-themes .customize-themes-full-container{display:block}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back{display:block;position:fixed;top:0;left:0;background:#f0f0f1;color:#3c434a;border-radius:0;box-shadow:none;border:none;height:46px;width:100%;z-index:10;text-align:left;text-shadow:none;border-bottom:1px solid #dcdcde;border-left:4px solid transparent;margin:0;padding:0;font-size:0;overflow:hidden}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before{left:0;top:0;height:46px;width:26px;display:block;line-height:2.3;padding:0 8px;border-right:1px solid #dcdcde}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus,.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.showing-themes #customize-header-actions{display:none}#customize-controls{width:100%}}.wp-customizer .theme-overlay{display:none}.wp-customizer.modal-open .theme-overlay{position:fixed;left:0;top:0;right:0;bottom:0;z-index:109}.wp-customizer.modal-open #customize-header-actions,.wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after,.wp-customizer.modal-open .control-panel-themes .filter-themes-count{z-index:-1}.wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-overlay .theme-backdrop{background:rgba(240,240,241,.75);position:fixed;z-index:110}.wp-customizer .theme-overlay .star-rating{float:left;margin-right:8px}.wp-customizer .theme-rating .num-ratings{line-height:20px}.wp-customizer .theme-overlay .theme-wrap{left:90px;right:90px;top:45px;bottom:45px;z-index:120}.wp-customizer .theme-overlay .theme-actions{text-align:right;padding:10px 25px 5px;background:#f0f0f1;border-top:1px solid #dcdcde}.wp-customizer .theme-overlay .theme-actions .theme-install.preview{margin-left:8px}.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-header{background:#f0f0f1}.wp-customizer .theme-overlay .theme-header .close:before,.wp-customizer .theme-overlay .theme-header button{color:#3c434a}.wp-customizer .theme-overlay .theme-header .close:focus,.wp-customizer .theme-overlay .theme-header .close:hover,.wp-customizer .theme-overlay .theme-header .left:focus,.wp-customizer .theme-overlay .theme-header .left:hover,.wp-customizer .theme-overlay .theme-header .right:focus,.wp-customizer .theme-overlay .theme-header .right:hover{background:#fff}.wp-customizer .theme-overlay .theme-header .close:focus:before,.wp-customizer .theme-overlay .theme-header .close:hover:before{color:var(--wp-admin-theme-color)}.wp-customizer .theme-overlay .theme-header button.disabled,.wp-customizer .theme-overlay .theme-header button.disabled:focus,.wp-customizer .theme-overlay .theme-header button.disabled:hover{border-bottom:none;background:0 0;color:#c3c4c7}@media (max-width:850px),(max-height:472px){.wp-customizer .theme-overlay .theme-wrap{left:0;right:0;top:0;bottom:0}.wp-customizer .theme-browser .themes{padding-right:25px}}body.cheatin{font-size:medium;height:auto;background:#fff;border:1px solid #c3c4c7;margin:50px auto 2em;padding:1em 2em;max-width:700px;min-width:0;box-shadow:0 1px 1px rgba(0,0,0,.04)}body.cheatin h1{border-bottom:1px solid #dcdcde;clear:both;color:#50575e;font-size:24px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:30px 0 0;padding:0 0 7px}body.cheatin p{font-size:14px;line-height:1.5;margin:25px 0 20px}#customize-theme-controls .add-new-menu-item,#customize-theme-controls .add-new-widget{cursor:pointer;float:right;margin:0 0 0 10px;transition:all .2s;-webkit-user-select:none;user-select:none;outline:0}.reordering .add-new-menu-item,.reordering .add-new-widget{opacity:.2;pointer-events:none;cursor:not-allowed}#available-menu-items .new-content-item .add-content:before,.add-new-menu-item:before,.add-new-widget:before{content:"\f132";content:"\f132"/'';display:inline-block;position:relative;left:-2px;top:0;font:normal 20px/1 dashicons;vertical-align:middle;transition:all .2s;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.reorder-toggle{float:right;padding:5px 8px;text-decoration:none;cursor:pointer;outline:0}.reorder,.reordering .reorder-done{display:block;padding:5px 8px}.reorder-done,.reordering .reorder{display:none}.menu-item-reorder-nav button,.widget-reorder-nav span{position:relative;overflow:hidden;float:left;display:block;width:33px;height:43px;color:#8c8f94;text-indent:-9999px;cursor:pointer;outline:0}.menu-item-reorder-nav button{width:30px;height:40px;background:0 0;border:none;box-shadow:none}.menu-item-reorder-nav button:before,.widget-reorder-nav span:before{display:inline-block;position:absolute;top:0;right:0;width:100%;height:100%;font:normal 20px/43px dashicons;text-align:center;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-reorder-nav button:focus,.menu-item-reorder-nav button:hover,.widget-reorder-nav span:focus,.widget-reorder-nav span:hover{color:#1d2327;background:#f0f0f1}.menus-move-down:before,.move-widget-down:before{content:"\f347";content:"\f347"/''}.menus-move-up:before,.move-widget-up:before{content:"\f343";content:"\f343"/''}#customize-theme-controls .first-widget .move-widget-up,#customize-theme-controls .last-widget .move-widget-down,.move-down-disabled .menus-move-down,.move-left-disabled .menus-move-left,.move-right-disabled .menus-move-right,.move-up-disabled .menus-move-up{color:#dcdcde;background-color:#fff;cursor:default;pointer-events:none}.wp-full-overlay-main{right:auto;width:100%}.add-menu-toggle.open,.add-menu-toggle.open:hover,.adding-menu-items .add-new-menu-item,.adding-menu-items .add-new-menu-item:hover,body.adding-widget .add-new-widget,body.adding-widget .add-new-widget:hover{background:#f0f0f1;border-color:#8c8f94;color:#2c3338;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}#accordion-section-add_menu .add-new-menu-item.open:before,.adding-menu-items .add-new-menu-item:before,body.adding-widget .add-new-widget:before{transform:rotate(45deg)}#available-menu-items,#available-widgets{position:absolute;top:0;bottom:0;left:-301px;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:300px;margin:0;z-index:4;background:#f0f0f1;transition:left .18s;border-right:1px solid #dcdcde}#available-menu-items .accordion-section-title,#available-widgets .accordion-section-title{z-index:2}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:none}#available-widgets-list{top:82px;position:absolute;overflow:auto;bottom:0;width:100%;border-top:1px solid #dcdcde}.no-widgets-found #available-widgets-list{border-top:none}#available-widgets-filter{position:fixed;top:0;z-index:1;width:300px;background:#f0f0f1}#available-menu-items-search .accordion-section-title,#available-widgets-filter{padding:13px 15px;box-sizing:border-box}#available-menu-items-search input,#available-widgets-filter input{width:100%;min-height:40px;margin:1px 0;padding:0 30px}#available-menu-items-search input::-ms-clear,#available-widgets-filter input::-ms-clear{display:none}#available-menu-items-search .search-icon,#available-widgets-filter .search-icon{display:block;position:absolute;bottom:19px;left:16px;width:30px;height:30px;line-height:2.1;text-align:center;color:#646970}#available-menu-items-search .accordion-section-title .clear-results,#available-widgets-filter .clear-results{position:absolute;top:40px;right:16px;width:30px;height:30px;padding:0;border:0;cursor:pointer;background:0 0;color:#d63638;text-decoration:none;outline:0}#available-menu-items-search .clear-results,#available-menu-items-search.loading .clear-results.is-visible,#available-widgets-filter .clear-results{display:none}#available-menu-items-search .clear-results.is-visible,#available-widgets-filter .clear-results.is-visible{display:block}#available-menu-items-search .clear-results:before,#available-widgets-filter .clear-results:before{content:"\f335";content:"\f335"/'';font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-menu-items-search .clear-results:focus,#available-menu-items-search .clear-results:hover,#available-widgets-filter .clear-results:focus,#available-widgets-filter .clear-results:hover{color:#d63638}#available-menu-items-search .clear-results:focus,#available-widgets-filter .clear-results:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#available-menu-items-search .search-icon:after,#available-widgets-filter .search-icon:after,.themes-filter-bar .search-icon:after{content:"\f179";font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .search-icon{position:absolute;top:2px;left:2px;z-index:1;color:#646970;height:30px;width:30px;line-height:2;text-align:center}.no-widgets-found-message{display:none;margin:0;padding:0 15px;line-height:inherit}.no-widgets-found .no-widgets-found-message{display:block}#available-menu-items .item-top,#available-menu-items .item-top:hover,#available-widgets .widget-top,#available-widgets .widget-top:hover{border:none;background:0 0;box-shadow:none}#available-menu-items .item-tpl,#available-widgets .widget-tpl{position:relative;padding:15px 15px 15px 60px;background:#fff;border-bottom:1px solid #dcdcde;border-left:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out;cursor:pointer;display:none}#available-menu-items .item,#available-widgets .widget{position:static}.customize-controls-preview-toggle{display:none}@media only screen and (max-width:782px){.wp-customizer .theme:not(.active):focus .theme-actions,.wp-customizer .theme:not(.active):hover .theme-actions{display:block}.wp-customizer .theme-browser .theme.active .theme-name span{display:inline}.customize-control-header button.random .dice{margin-top:0}.customize-control-checkbox .customize-inside-control-row,.customize-control-nav_menu_auto_add .customize-inside-control-row,.customize-control-radio .customize-inside-control-row{margin-left:32px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-left:-32px}.customize-control input[type=checkbox]+label+br,.customize-control input[type=radio]+label+br{line-height:2.5}.customize-control .date-time-fields select{height:39px}.date-time-fields .date-input.month{width:79px}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:55px}.date-time-fields .date-input.year{width:80px}#customize-control-changeset_preview_link a{bottom:16px}.media-widget-control .media-widget-buttons .button.change-media,.media-widget-control .media-widget-buttons .button.edit-media,.media-widget-control .media-widget-buttons .button.select-media{margin-top:12px}.customize-preview-header.themes-filter-bar .search-icon{top:6px}}@media screen and (max-width:1200px){.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main{left:67%}}@media screen and (max-width:640px){.wp-full-overlay.collapsed #customize-controls{margin-left:0}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{bottom:0}.customize-controls-preview-toggle{display:block;position:absolute;top:0;left:48px;line-height:2.6;font-size:14px;padding:0 12px 4px;margin:0;height:45px;background:#f0f0f1;border:0;border-right:1px solid #dcdcde;border-top:4px solid #f0f0f1;color:#50575e;cursor:pointer;transition:color .1s ease-in-out,background .1s ease-in-out}#customize-footer-actions,.customize-controls-preview-toggle .controls,.preview-only .customize-controls-preview-toggle .preview,.preview-only .wp-full-overlay-sidebar-content{display:none}.preview-only #customize-save-button-wrapper{margin-top:-46px}.customize-controls-preview-toggle .controls:before,.customize-controls-preview-toggle .preview:before{font:normal 20px/1 dashicons;content:"\f177";content:"\f177"/'';position:relative;top:4px;margin-right:6px}.customize-controls-preview-toggle .controls:before{content:"\f540";content:"\f540"/''}.preview-only #customize-controls{height:45px}.preview-only #customize-preview,.preview-only .customize-controls-preview-toggle .controls{display:block}.wp-core-ui.wp-customizer .button{padding:0 14px;line-height:2.14285714;font-size:14px;vertical-align:middle}.customize-control .attachment-media-view .upload-button{text-align:center}#customize-control-changeset_status .customize-inside-control-row{padding-top:15px}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{width:100%}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:none;height:inherit;margin:0;overflow:hidden;padding:0;width:auto;position:static}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:block}#available-menu-items .customize-section-back,#available-widgets .customize-section-back{height:69px}#available-menu-items .customize-section-title h3,#available-widgets .customize-section-title h3{font-size:20px;font-weight:200;padding:9px 10px 12px 14px;margin:0;line-height:24px;color:#50575e;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-menu-items .customize-section-title .customize-action,#available-widgets .customize-section-title .customize-action{font-size:13px;display:block;font-weight:400;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-widgets-filter{position:relative;width:100%;height:auto}#available-widgets-list{top:152px}#available-menu-items-search .clear-results{top:40px;right:16px}.reorder,.reordering .reorder-done{padding:8px}}@media screen and (max-width:600px){.wp-full-overlay.expanded{margin-left:0}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{top:46px;z-index:10}body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content{left:-100%}body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{left:0}}css/customize-nav-menus-rtl.min.css000066600000044136152330733730013402 0ustar00/*! This file is auto-generated */ #customize-theme-controls #accordion-section-menu_locations{position:relative;margin-top:30px}#customize-theme-controls #accordion-section-menu_locations>.accordion-section-title{border-bottom-color:#dcdcde;margin-top:15px}#customize-theme-controls .customize-section-title-menu_locations-description,#customize-theme-controls .customize-section-title-menu_locations-heading,#customize-theme-controls .customize-section-title-nav_menus-heading{padding:0 12px}#customize-theme-controls .customize-control-description.customize-section-title-menu_locations-description{font-style:normal}.menu-in-location,.menu-in-locations{display:block;font-weight:600;font-size:10px}#customize-controls .control-section .accordion-section-title:focus .menu-in-location,#customize-controls .control-section .accordion-section-title:hover .menu-in-location,#customize-controls .theme-location-set{color:#50575e}.customize-control-nav_menu_location .create-menu,.customize-control-nav_menu_location .edit-menu{margin-right:6px;vertical-align:middle;line-height:2.2}#customize-controls .customize-control-nav_menu_name{margin-bottom:12px}.customize-control-nav_menu_name p:last-of-type{margin-bottom:0}#customize-new-menu-submit{float:left;min-width:85px}.wp-customizer .menu-item-bar .menu-item-handle,.wp-customizer .menu-item-settings,.wp-customizer .menu-item-settings .description-thin{box-sizing:border-box}.wp-customizer .menu-item-bar{margin:0}.wp-customizer .menu-item-bar .menu-item-handle{width:100%;max-width:100%;background:#fff}.wp-customizer .menu-item-handle .item-title{margin-left:0}.wp-customizer .menu-item-handle .item-type{padding:1px 5px 0 21px;float:left;text-align:left}.wp-customizer .menu-item-handle:hover{z-index:8}.customize-control-nav_menu_item.has-notifications .menu-item-handle{border-right:4px solid #72aee6}.wp-customizer .menu-item-settings{max-width:100%;overflow:hidden;z-index:8;padding:10px;background:#f0f0f1;border:1px solid #8c8f94;border-top:none}.wp-customizer .menu-item-settings .description-thin{width:100%;height:auto;margin:0 0 8px}.wp-customizer .menu-item-settings input[type=text]{width:100%}.wp-customizer .menu-item-settings .submitbox{margin:0;padding:0}.wp-customizer .menu-item-settings .link-to-original{padding:5px 0;border:none;font-style:normal;margin:0;width:100%}.wp-customizer .menu-item .submitbox .submitdelete{float:right;margin:6px 0 0;padding:0;cursor:pointer}.menu-item-reorder-nav{display:none;background-color:#fff;position:absolute;top:0;left:0}.menus-move-left:before{content:"\f345";content:"\f341"/''}.menus-move-right:before{content:"\f341";content:"\f345"/''}.reordering .menu-item .item-controls,.reordering .menu-item .item-type{display:none}.reordering .menu-item-reorder-nav{display:block}.customize-control input.menu-name-field{width:100%}.wp-customizer .menu-item .item-edit{position:absolute;left:-19px;top:2px;display:block;width:30px;height:38px;margin-left:0!important;box-shadow:none;outline:0;overflow:hidden;cursor:pointer;text-align:center}.wp-customizer .menu-item.menu-item-edit-active .item-edit .toggle-indicator:before{content:"\f142";content:"\f142"/''}.wp-customizer .menu-item-settings p.description{font-style:normal}.wp-customizer .menu-settings dl{margin:12px 0 0;padding:0}.wp-customizer .menu-settings .checkbox-input{margin-top:8px}.wp-customizer .menu-settings .menu-theme-locations{border-top:1px solid #c3c4c7}.wp-customizer .menu-settings{margin-top:36px;border-top:none}.wp-customizer .menu-location-settings{margin-top:12px;border-top:none}.wp-customizer .control-section-nav_menu .menu-location-settings{margin-top:24px;border-top:1px solid #dcdcde}.customize-control-nav_menu_auto_add,.wp-customizer .control-section-nav_menu .menu-location-settings{padding-top:12px}.menu-location-settings .customize-control-checkbox .theme-location-set{line-height:1}.customize-control-nav_menu_auto_add label{vertical-align:top}.menu-location-settings .new-menu-locations-widget-note{display:block}.customize-control-menu{margin-top:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle{color:#50575e}.customize-screen-options-toggle{background:0 0;border:none;color:#50575e;cursor:pointer;margin:0;padding:20px;position:absolute;left:0;top:30px}#customize-controls .customize-info .customize-help-toggle{padding:20px}#customize-controls .customize-info .customize-help-toggle:before{padding:4px}#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,#customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.active-menu-screen-options .customize-screen-options-toggle,.customize-screen-options-toggle:active,.customize-screen-options-toggle:focus,.customize-screen-options-toggle:hover{color:var(--wp-admin-theme-color)}#customize-controls .customize-info .customize-help-toggle:focus,.customize-screen-options-toggle:focus{outline:2px solid transparent}.customize-screen-options-toggle:before{-moz-osx-font-smoothing:grayscale;border:none;content:"\f111";content:"\f111"/'';display:block;font:18px/1 dashicons;padding:5px;text-align:center;text-decoration:none!important;text-indent:0;right:6px;position:absolute;top:6px}#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before{border-radius:100%}.wp-customizer #screen-options-wrap{display:none;background:#fff;border-top:1px solid #dcdcde;padding:4px 15px 15px}.wp-customizer .metabox-prefs label{display:block;padding-left:0;line-height:30px}.wp-customizer .toggle-indicator{display:inline-block;font-size:20px;line-height:1}.rtl .wp-customizer .toggle-indicator{text-indent:1px}#available-menu-items .accordion-section-title .toggle-indicator:before,.wp-customizer .menu-item .item-edit .toggle-indicator:before{content:"\f140";content:"\f140"/'';display:block;padding:1px 0 1px 2px;border-radius:50%;color:#787c82;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.control-section-nav_menu .field-css-classes,.control-section-nav_menu .field-description,.control-section-nav_menu .field-link-target,.control-section-nav_menu .field-title-attribute,.control-section-nav_menu .field-xfn{display:none}.control-section-nav_menu.field-css-classes-active .field-css-classes,.control-section-nav_menu.field-description-active .field-description,.control-section-nav_menu.field-link-target-active .field-link-target,.control-section-nav_menu.field-title-attribute-active .field-title-attribute,.control-section-nav_menu.field-xfn-active .field-xfn{display:block}.menu-item-depth-0{margin-right:0}.menu-item-depth-1{margin-right:20px}.menu-item-depth-2{margin-right:40px}.menu-item-depth-3{margin-right:60px}.menu-item-depth-4{margin-right:80px}.menu-item-depth-5{margin-right:100px}.menu-item-depth-6{margin-right:120px}.menu-item-depth-7{margin-right:140px}.menu-item-depth-8{margin-right:160px}.menu-item-depth-9{margin-right:180px}.menu-item-depth-10{margin-right:200px}.menu-item-depth-11{margin-right:220px}.menu-item-depth-0>.menu-item-bar{margin-left:0}.menu-item-depth-1>.menu-item-bar{margin-left:20px}.menu-item-depth-2>.menu-item-bar{margin-left:40px}.menu-item-depth-3>.menu-item-bar{margin-left:60px}.menu-item-depth-4>.menu-item-bar{margin-left:80px}.menu-item-depth-5>.menu-item-bar{margin-left:100px}.menu-item-depth-6>.menu-item-bar{margin-left:120px}.menu-item-depth-7>.menu-item-bar{margin-left:140px}.menu-item-depth-8>.menu-item-bar{margin-left:160px}.menu-item-depth-9>.menu-item-bar{margin-left:180px}.menu-item-depth-10>.menu-item-bar{margin-left:200px}.menu-item-depth-11>.menu-item-bar{margin-left:220px}.menu-item-depth-0 .menu-item-transport{margin-right:0}.menu-item-depth-1 .menu-item-transport{margin-right:-20px}.menu-item-depth-3 .menu-item-transport{margin-right:-60px}.menu-item-depth-4 .menu-item-transport{margin-right:-80px}.menu-item-depth-2 .menu-item-transport{margin-right:-40px}.menu-item-depth-5 .menu-item-transport{margin-right:-100px}.menu-item-depth-6 .menu-item-transport{margin-right:-120px}.menu-item-depth-7 .menu-item-transport{margin-right:-140px}.menu-item-depth-8 .menu-item-transport{margin-right:-160px}.menu-item-depth-9 .menu-item-transport{margin-right:-180px}.menu-item-depth-10 .menu-item-transport{margin-right:-200px}.menu-item-depth-11 .menu-item-transport{margin-right:-220px}.reordering .menu-item-depth-0{margin-right:0}.reordering .menu-item-depth-1{margin-right:15px}.reordering .menu-item-depth-2{margin-right:30px}.reordering .menu-item-depth-3{margin-right:45px}.reordering .menu-item-depth-4{margin-right:60px}.reordering .menu-item-depth-5{margin-right:75px}.reordering .menu-item-depth-6{margin-right:90px}.reordering .menu-item-depth-7{margin-right:105px}.reordering .menu-item-depth-8{margin-right:120px}.reordering .menu-item-depth-9{margin-right:135px}.reordering .menu-item-depth-10{margin-right:150px}.reordering .menu-item-depth-11{margin-right:165px}.reordering .menu-item-depth-0>.menu-item-bar{margin-left:0}.reordering .menu-item-depth-1>.menu-item-bar{margin-left:15px}.reordering .menu-item-depth-2>.menu-item-bar{margin-left:30px}.reordering .menu-item-depth-3>.menu-item-bar{margin-left:45px}.reordering .menu-item-depth-4>.menu-item-bar{margin-left:60px}.reordering .menu-item-depth-5>.menu-item-bar{margin-left:75px}.reordering .menu-item-depth-6>.menu-item-bar{margin-left:90px}.reordering .menu-item-depth-7>.menu-item-bar{margin-left:105px}.reordering .menu-item-depth-8>.menu-item-bar{margin-left:120px}.reordering .menu-item-depth-9>.menu-item-bar{margin-left:135px}.reordering .menu-item-depth-10>.menu-item-bar{margin-left:150px}.reordering .menu-item-depth-11>.menu-item-bar{margin-left:165px}.control-section-nav_menu.menu .menu-item-edit-active{margin-right:0}.control-section-nav_menu.menu .menu-item-edit-active .menu-item-bar{margin-left:0}.control-section-nav_menu.menu .sortable-placeholder{margin-top:0;margin-bottom:1px;max-width:calc(100% - 2px);float:right;display:list-item;border-color:#a7aaad}.menu-item-transport li.customize-control{float:none}.control-section-nav_menu.menu ul.menu-item-transport .menu-item-bar{margin-top:0}.adding-menu-items .control-section{opacity:.4}.adding-menu-items .control-panel.control-section,.adding-menu-items .control-section.open{opacity:1}.menu-item-bar .item-delete{color:#d63638;position:absolute;top:2px;left:-19px;width:30px;height:38px;cursor:pointer;display:none}.menu-item-bar .item-delete:before{content:"\f335";content:"\f335"/'';position:absolute;top:9px;right:5px;border-radius:50%;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-bar .item-delete:focus,.menu-item-bar .item-delete:hover{box-shadow:none;outline:0;color:#d63638}.adding-menu-items .menu-item-bar .item-edit{display:none}.adding-menu-items .menu-item-bar .item-delete{display:block}#available-menu-items.opening{overflow-y:hidden}#available-menu-items #available-menu-items-search.open{height:100%;border-bottom:none}#available-menu-items .accordion-section-title{border-right:none;border-left:none;background:#fff;transition:background-color .15s;-webkit-user-select:auto;user-select:auto}#available-menu-items #available-menu-items-search .accordion-section-title,#available-menu-items .open .accordion-section-title{background:#f0f0f1}#available-menu-items .accordion-section-title:after{content:none!important}#available-menu-items .accordion-section-title:hover .toggle-indicator:before,#available-menu-items .button-link:focus .toggle-indicator:before,#available-menu-items .button-link:hover .toggle-indicator:before{color:#1d2327}#available-menu-items .open .accordion-section-title .toggle-indicator:before{content:"\f142";color:#1d2327}#available-menu-items .available-menu-items-list{overflow-y:auto;max-height:200px;background:0 0}#available-menu-items .accordion-section-title button .toggle-indicator{display:flex;align-items:center;width:28px;height:35px;position:absolute;top:5px;left:5px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .accordion-section-title .no-items,#available-menu-items .cannot-expand .accordion-section-title .spinner,#available-menu-items .cannot-expand .accordion-section-title>button:not(#available-menu-items-search button.is-visible){display:none}#available-menu-items-search.cannot-expand .accordion-section-title .spinner{display:block}#available-menu-items .cannot-expand .accordion-section-title .no-items{float:left;color:#50575e;font-weight:400;margin-right:5px}#available-menu-items .accordion-section-content{max-height:290px;margin:0;padding:0;position:relative;background:0 0}#available-menu-items .accordion-section-content .available-menu-items-list{margin:0 0 64px;padding:1px 15px 15px}#available-menu-items .accordion-section-content .available-menu-items-list:only-child{margin-bottom:0}#new-custom-menu-item .accordion-section-content{padding:0 15px 15px}#available-menu-items .menu-item-tpl{margin:0}#available-menu-items .new-content-item .create-item-input.invalid,#available-menu-items .new-content-item .create-item-input.invalid:focus,#custom-menu-item-name.invalid,#custom-menu-item-url.invalid,.edit-menu-item-url.invalid,.menu-name-field.invalid,.menu-name-field.invalid:focus{border:1px solid #d63638}#available-menu-items .menu-item-handle .item-type{padding-left:0}#available-menu-items .menu-item-handle .item-title{padding-right:20px}#available-menu-items .menu-item-handle{cursor:pointer}#available-menu-items .menu-item-handle{box-shadow:none;margin-top:-1px}#available-menu-items .menu-item-handle:hover{z-index:1}#available-menu-items .item-title h4{padding:0 0 5px;font-size:14px}#available-menu-items .item-add{position:absolute;top:1px;right:1px;color:#8c8f94;width:30px;height:38px;box-shadow:none;outline:0;cursor:pointer;text-align:center}#available-menu-items .menu-item-handle .item-add:focus{color:#1d2327}#available-menu-items .item-add:before{content:"\f543";content:"\f543"/'';position:relative;right:2px;top:3px;display:inline-block;height:20px;border-radius:50%;font:normal 20px/1.05 dashicons}#available-menu-items .menu-item-handle.item-added .item-add:focus,#available-menu-items .menu-item-handle.item-added .item-title,#available-menu-items .menu-item-handle.item-added .item-type,#available-menu-items .menu-item-handle.item-added:hover .item-add{color:#646970}#available-menu-items .menu-item-handle.item-added .item-add:before{content:"\f147";content:"\f147"/''}#available-menu-items .accordion-section-title.loading .spinner,#available-menu-items-search.loading .accordion-section-title .spinner{visibility:visible;margin:0 20px}#available-menu-items-search .spinner{position:absolute;bottom:24px;left:21px;margin:0!important}#available-menu-items #available-menu-items-search .accordion-section-content{position:absolute;right:0;top:83px;bottom:0;max-height:none;width:100%;padding:1px 15px 15px;box-sizing:border-box}#available-menu-items-search .nothing-found{margin-top:-1px}#available-menu-items-search .accordion-section-title:after{display:none}#available-menu-items-search .accordion-section-content:empty{min-height:0;padding:0}#available-menu-items-search.loading .accordion-section-content div{opacity:.5}#available-menu-items-search.loading.loading-more .accordion-section-content div{opacity:1}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-menu-items #available-menu-items{right:0;visibility:visible}body.adding-menu-items .wp-full-overlay-main{right:300px}body.adding-menu-items #customize-preview{opacity:.4}body.adding-menu-items #customize-preview iframe{pointer-events:none}.menu-item-handle .spinner{display:none;float:right;margin:0 0 0 8px}.nav-menu-inserted-item-loading .spinner{display:block}.nav-menu-inserted-item-loading .menu-item-handle .item-type{padding:0 8px 0 0}.added-menu-item .menu-item-handle.loading,.nav-menu-inserted-item-loading .menu-item-handle{padding:10px 8px 10px 15px;cursor:default;opacity:.5;background:#fff;color:#787c82}.added-menu-item .menu-item-handle{transition-property:opacity,background,color;transition-duration:1.25s;transition-timing-function:cubic-bezier(.25,-2.5,.75,8)}#customize-theme-controls .control-panel-content .control-section-nav_menu:nth-last-child(2) .accordion-section-title{border-bottom-color:#dcdcde}#accordion-section-add_menu{margin:15px 12px}#accordion-section-add_menu h3{text-align:left}#accordion-section-add_menu .customize-add-menu-button,#accordion-section-add_menu h3{margin:0}#accordion-section-add_menu .customize-add-menu-button{font-weight:400}#create-new-menu-submit{float:left;margin:0 0 12px}.menu-delete-item{float:right;padding:1em 0;width:100%}.assigned-menu-locations-title p{margin:0 0 8px}li.assigned-to-menu-location .menu-delete-item{display:none}li.assigned-to-menu-location .add-new-menu-item{margin-bottom:1em}.menu-item-handle{margin-top:-1px}.ui-sortable-disabled .menu-item-handle{cursor:default}.menu-item-handle:hover{position:relative;z-index:10;color:var(--wp-admin-theme-color)}#available-menu-items .menu-item-handle:hover .item-add,.menu-item-handle:hover .item-edit,.menu-item-handle:hover .item-type{color:var(--wp-admin-theme-color)}.menu-item-edit-active .menu-item-handle{border-color:#8c8f94;border-bottom:none}.customize-control-nav_menu_item{margin-bottom:0}.customize-control-nav_menu .new-menu-item-invitation{margin-top:0;margin-bottom:0}.customize-control-nav_menu .customize-control-nav_menu-buttons{display:flex;flex-direction:row-reverse;align-items:center;gap:8px;margin-top:12px}#available-menu-items .item-add:focus:before,#customize-controls .customize-info .customize-help-toggle:focus:before,.customize-screen-options-toggle:focus:before,.menu-delete:focus,.menu-item-bar .item-delete:focus:before,.wp-customizer .menu-item .submitbox .submitdelete:focus,.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}@media screen and (max-width:782px){#available-menu-items #available-menu-items-search .accordion-section-content{top:71px}}@media screen and (max-width:640px){#available-menu-items #available-menu-items-search .accordion-section-content{top:154px}}css/edit-rtl.css000066600000113555152330733730007616 0ustar00/*! This file is auto-generated */ #poststuff { padding-top: 10px; min-width: 763px; } #poststuff #post-body { padding: 0; } #poststuff .postbox-container { width: 100%; } #poststuff #post-body.columns-2 { margin-left: 300px; } /*------------------------------------------------------------------------------ 11.0 - Write/Edit Post Screen ------------------------------------------------------------------------------*/ #show-comments { overflow: hidden; } #save-action .spinner, #show-comments a { float: right; } #show-comments .spinner { float: none; margin-top: 0; } #lost-connection-notice .spinner { visibility: visible; float: right; margin: 0 0 0 5px; } #titlediv { position: relative; } #titlediv label { cursor: text; } #titlediv div.inside { margin: 0; } #poststuff #titlewrap { border: 0; padding: 0; } #titlediv #title { padding: 3px 8px; font-size: 1.7em; line-height: 100%; height: 1.7em; width: 100%; outline: none; margin: 0 0 3px; background-color: #fff; } #titlediv #title-prompt-text { color: #646970; position: absolute; font-size: 1.7em; padding: 10px; pointer-events: none; } #titlewrap .skiplink { background: #fff; line-height: 2.30769231; /* 30px for 32px min-height */ min-height: 32px; left: 4px; } #titlewrap .skiplink:focus { clip: inherit; clip-path: inherit; top: 4px; width: auto; } input#link_description, input#link_url { width: 100%; } #pending { background: 100% none; border: 0 none; padding: 0; font-size: 11px; margin-top: -1px; } #edit-slug-box, #comment-link-box { line-height: 1.84615384; min-height: 25px; margin-top: 5px; padding: 0 10px; color: #646970; } #sample-permalink { display: inline-block; max-width: 100%; word-wrap: break-word; } #edit-slug-box .cancel { margin-left: 10px; padding: 0; } #comment-link-box { margin: 5px 0; padding: 0 5px; } #editable-post-name-full { display: none; } #editable-post-name { font-weight: 600; } #editable-post-name input { font-size: 13px; font-weight: 400; min-height: 32px; margin: 0; width: 16em; } .postarea h3 label { float: right; } body.post-new-php .submitbox .submitdelete { display: none; } .submitbox .submit a:hover { text-decoration: underline; } .submitbox .submit input { margin-bottom: 8px; margin-left: 4px; padding: 6px; } #post-status-select { margin-top: 3px; } body.post-type-wp_navigation div#minor-publishing, body.post-type-wp_navigation .inline-edit-status { display: none; } /* Post Screen */ /* Only highlight drop zones when dragging and only in the 2 columns layout. */ .is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); /* * This min-height is meant to limit jumpiness while dragging. It's equivalent * to the minimum height of the sortable-placeholder which is given by the height * of a collapsed post box (36px + 1px top and bottom borders) + the placeholder * bottom margin (20px) + 2 additional pixels to compensate browsers rounding. */ min-height: 60px; margin-bottom: 20px; } .postbox { position: relative; min-width: 255px; border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; } #trackback_url { width: 99%; } #normal-sortables .postbox .submit { background: transparent none; border: 0 none; float: left; padding: 0 12px; margin: 0; } .category-add input[type="text"], .category-add select { width: 100%; max-width: 260px; vertical-align: baseline; } #side-sortables .category-add input[type="text"], #side-sortables .category-add select { margin: 0 0 1em; } ul.category-tabs li, #side-sortables .add-menu-item-tabs li, .wp-tab-bar li { display: inline; line-height: 1.35; } .no-js .category-tabs li.hide-if-no-js { display: none; } .category-tabs a, #side-sortables .add-menu-item-tabs a, .wp-tab-bar a { text-decoration: none; } /* @todo: do these really need to be so specific? */ #side-sortables .category-tabs .tabs a, #side-sortables .add-menu-item-tabs .tabs a, .wp-tab-bar .wp-tab-active a, #post-body ul.category-tabs li.tabs a, #post-body ul.add-menu-item-tabs li.tabs a { color: #2c3338; } .category-tabs { margin: 8px 0 5px; } /* Back-compat for pre-4.4 */ #category-adder h4 { margin: 0; } .taxonomy-add-new { display: inline-block; margin: 10px 0; font-weight: 600; } #side-sortables .add-menu-item-tabs, .wp-tab-bar { margin-bottom: 3px; } #normal-sortables .postbox #replyrow .submit { float: none; margin: 0; padding: 5px 7px 10px; overflow: hidden; } #side-sortables .submitbox .submit input, #side-sortables .submitbox .submit .preview, #side-sortables .submitbox .submit a.preview:hover { border: 0 none; } /* @todo: make this a more generic class */ ul.category-tabs, ul.add-menu-item-tabs, ul.wp-tab-bar { margin-top: 12px; } ul.category-tabs li, ul.add-menu-item-tabs li { border: solid 1px transparent; position: relative; } ul.category-tabs li.tabs, ul.add-menu-item-tabs li.tabs, .wp-tab-active { border: 1px solid #dcdcde; border-bottom-color: #fff; background-color: #fff; } ul.category-tabs li, ul.add-menu-item-tabs li, ul.wp-tab-bar li { padding: 3px 5px 6px; } #set-post-thumbnail { display: inline-block; max-width: 100%; } #postimagediv .inside img { max-width: 100%; height: auto; vertical-align: top; background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } form#tags-filter { position: relative; } /* Global classes */ .wp-hidden-children .wp-hidden-child, .ui-tabs-hide { display: none; } #post-body .tagsdiv #newtag { margin-left: 0; flex: 1; min-width: 0; } #side-sortables input#post_password { width: 94% } #side-sortables .tagsdiv #newtag { flex: 1; min-width: 0; } #post-status-info { width: 100%; border-spacing: 0; border: 1px solid #c3c4c7; border-top: none; background-color: #f6f7f7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); z-index: 999; } #post-status-info td { font-size: 12px; } .autosave-info { padding: 2px 10px; text-align: left; } #editorcontent #post-status-info { border: none; } #content-resize-handle { background: transparent url(../images/resize.gif) no-repeat scroll left bottom; width: 12px; cursor: row-resize; } /*rtl:ignore*/ .rtl #content-resize-handle { background-image: url(../images/resize-rtl.gif); background-position: left bottom; } .wp-editor-expand #content-resize-handle { display: none; } #postdivrich #content { resize: none; } #wp-word-count { padding: 2px 10px; } #wp-content-editor-container { position: relative; } .wp-editor-expand #wp-content-editor-tools { z-index: 1000; border-bottom: 1px solid #c3c4c7; } .wp-editor-expand #wp-content-editor-container { box-shadow: none; margin-top: -1px; } .wp-editor-expand #wp-content-editor-container { border-bottom: 0 none; } .wp-editor-expand div.mce-statusbar { z-index: 1; } .wp-editor-expand #post-status-info { border-top: 1px solid #c3c4c7; } .wp-editor-expand div.mce-toolbar-grp { z-index: 999; } /* TinyMCE native fullscreen mode override */ .mce-fullscreen #wp-content-wrap .mce-menubar, .mce-fullscreen #wp-content-wrap .mce-toolbar-grp, .mce-fullscreen #wp-content-wrap .mce-edit-area, .mce-fullscreen #wp-content-wrap .mce-statusbar { position: static !important; width: auto !important; padding: 0 !important; } .mce-fullscreen #wp-content-wrap .mce-statusbar { visibility: visible !important; } .mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw { display: none; } .post-php.mce-fullscreen #wpadminbar, .mce-fullscreen #wp-content-wrap .mce-wp-dfw { display: none; } /* End TinyMCE native fullscreen mode override */ #wp-content-editor-tools { background-color: #f0f0f1; padding-top: 20px; } #poststuff #post-body.columns-2 #side-sortables { width: 280px; } #timestampdiv select { vertical-align: top; font-size: 12px; line-height: 2.33333333; /* 28px */ } #aa, #jj, #hh, #mn { padding: 6px 1px; font-size: 12px; line-height: 1.16666666; /* 14px */ } #jj, #hh, #mn { width: 2em; } #aa { width: 3.4em; } .curtime #timestamp { padding: 2px 0 1px; display: inline !important; height: auto !important; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { color: #8c8f94; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { font: normal 20px/1 dashicons; display: inline-block; margin-right: -1px; padding-left: 3px; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #post-body .misc-pub-post-status:before, #post-body .misc-pub-comment-status:before { content: "\f173"; content: "\f173" / ''; } #post-body #visibility:before { content: "\f177"; content: "\f177" / ''; } .curtime #timestamp:before { content: "\f145"; content: "\f145" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedby:before { content: "\f110"; content: "\f110" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedto:before { content: "\f318"; content: "\f318" / ''; position: relative; top: -1px; } #post-body .misc-pub-revisions:before { content: "\f321"; content: "\f321" / ''; } #post-body .misc-pub-response-to:before { content: "\f101"; content: "\f101" / ''; } #timestampdiv { padding-top: 5px; line-height: 1.76923076; } #timestampdiv p { margin: 8px 0 6px; } #timestampdiv input { text-align: center; } .notification-dialog { position: fixed; top: 30%; max-height: 70%; right: 50%; width: 450px; margin-right: -225px; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; z-index: 1000005; overflow-y: auto; } .notification-dialog-background { position: fixed; top: 0; right: 0; left: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 1000000; } #post-lock-dialog .post-locked-message, #post-lock-dialog .post-taken-over { margin: 25px; } #post-lock-dialog .post-locked-message a.button, #file-editor-warning .button { margin-left: 10px; } #post-lock-dialog .post-locked-avatar { float: right; margin: 0 0 20px 20px; } #post-lock-dialog .wp-tab-first { outline: 0; } #post-lock-dialog .locked-saving img { float: right; margin-left: 3px; } #post-lock-dialog.saving .locked-saving, #post-lock-dialog.saved .locked-saved { display: inline; } #excerpt { display: block; margin: 12px 0 0; height: 4em; width: 100%; } .tagchecklist { margin-right: 14px; font-size: 12px; overflow: auto; } .tagchecklist br { display: none; } .tagchecklist strong { margin-right: -8px; position: absolute; } .tagchecklist > li { float: right; margin-left: 25px; font-size: 13px; line-height: 1.8; cursor: default; max-width: 100%; overflow: hidden; text-overflow: ellipsis; } .tagchecklist .ntdelbutton { position: absolute; width: 24px; height: 24px; border: none; margin: 0 -19px 0 0; padding: 0; background: none; cursor: pointer; text-indent: 0; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } #poststuff .stuffbox h2 { padding: 8px 10px; } #poststuff .stuffbox > h2 { border-bottom: 1px solid #f0f0f1; } #poststuff .inside { margin: 6px 0 0; } .link-php #poststuff .inside, .link-add-php #poststuff .inside { margin-top: 12px; } #poststuff .stuffbox .inside { margin: 0; } #poststuff .inside #parent_id, #poststuff .inside #page_template { max-width: 100%; } .post-attributes-label-wrapper { margin-bottom: 0.5em; } .post-attributes-label { vertical-align: baseline; font-weight: 600; } #post-visibility-select, #comment-status-radio { line-height: 1.5; margin-top: 3px; } #linksubmitdiv .inside, /* Old Link Manager back-compat. */ #poststuff #submitdiv .inside { margin: 0; padding: 0; } #post-body-content, .edit-form-section { margin-bottom: 20px; } .wp_attachment_details .attachment-content-description { margin-top: 0.5385em; display: inline-block; min-height: 1.6923em; } /** * Privacy Settings section * * Note: This section includes selectors from * Site Health where duplicate styling is used. */ /* General */ .privacy-settings #wpcontent, .privacy-settings.auto-fold #wpcontent, .site-health #wpcontent, .site-health.auto-fold #wpcontent { padding-right: 0; } /* Better position for the WordPress admin notices. */ .privacy-settings .notice, .site-health .notice { margin: 25px 22px 15px 20px; } .privacy-settings .notice ~ .notice, .site-health .notice ~ .notice { margin-top: 5px; } /* Emulates .wrap h1 styling */ .privacy-settings-header h1, .health-check-header h1 { display: inline-block; font-weight: 600; margin: 0 0.8rem 1rem; font-size: 23px; padding: 9px 0 4px; line-height: 1.3; } /* Header */ .privacy-settings-header, .health-check-header { text-align: center; margin: 0 0 1rem; background: #fff; border-bottom: 1px solid #dcdcde; } .privacy-settings-title-section, .health-check-title-section { display: flex; align-items: center; justify-content: center; clear: both; padding-top: 8px; } .privacy-settings-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr; } .privacy-settings-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .privacy-settings-tab:nth-child(1), .health-check-tab:nth-child(1) { -ms-grid-column: 1; /* IE 11 */ } .privacy-settings-tab:nth-child(2), .health-check-tab:nth-child(2) { -ms-grid-column: 2; /* IE 11 */ } .privacy-settings-tab:focus, .health-check-tab:focus { color: #1d2327; outline: 1px solid #787c82; box-shadow: none; } .privacy-settings-tab.active, .health-check-tab.active { box-shadow: inset 0 -3px var(--wp-admin-theme-color); font-weight: 600; } /* Body */ .privacy-settings-body, .health-check-body { max-width: 800px; margin: 0 auto; } .tools-privacy-policy-page th { min-width: 230px; } .hr-separator { margin-top: 20px; margin-bottom: 15px; } /* Accordions */ .privacy-settings-accordion, .health-check-accordion { border: 1px solid #c3c4c7; } .privacy-settings-accordion-heading, .health-check-accordion-heading { margin: 0; border-top: 1px solid #c3c4c7; font-size: inherit; line-height: inherit; font-weight: 600; color: inherit; } .privacy-settings-accordion-heading:first-child, .health-check-accordion-heading:first-child { border-top: none; } .privacy-settings-accordion-trigger, .health-check-accordion-trigger { background: #fff; border: 0; color: #2c3338; cursor: pointer; display: flex; font-weight: 400; margin: 0; padding: 1em 1.5em 1em 3.5em; min-height: 46px; position: relative; text-align: right; width: 100%; align-items: center; justify-content: space-between; -webkit-user-select: auto; user-select: auto; } .privacy-settings-accordion-trigger:hover, .privacy-settings-accordion-trigger:active, .health-check-accordion-trigger:hover, .health-check-accordion-trigger:active { background: #f6f7f7; } .privacy-settings-accordion-trigger:focus, .health-check-accordion-trigger:focus { color: #1d2327; border: none; box-shadow: none; outline-offset: -1px; outline: 2px solid var(--wp-admin-theme-color); background-color: #f6f7f7; } .privacy-settings-accordion-trigger .title, .health-check-accordion-trigger .title { pointer-events: none; font-weight: 600; flex-grow: 1; } .privacy-settings-accordion-trigger .icon, .privacy-settings-view-read .icon, .health-check-accordion-trigger .icon, .site-health-view-passed .icon { border: solid #50575e; border-width: 0 0 2px 2px; height: 0.5rem; pointer-events: none; position: absolute; left: 1.5em; top: 50%; transform: translateY(-70%) rotate(-45deg); width: 0.5rem; } .privacy-settings-accordion-trigger .badge, .health-check-accordion-trigger .badge { padding: 0.1rem 0.5rem 0.15rem; color: #2c3338; font-weight: 600; } .privacy-settings-accordion-trigger .badge { margin-right: 0.5rem; } .privacy-settings-accordion-trigger .badge.blue, .health-check-accordion-trigger .badge.blue { border: 1px solid var(--wp-admin-theme-color); } .privacy-settings-accordion-trigger .badge.orange, .health-check-accordion-trigger .badge.orange { border: 1px solid #dba617; } .privacy-settings-accordion-trigger .badge.red, .health-check-accordion-trigger .badge.red { border: 1px solid #e65054; } .privacy-settings-accordion-trigger .badge.green, .health-check-accordion-trigger .badge.green { border: 1px solid #00ba37; } .privacy-settings-accordion-trigger .badge.purple, .health-check-accordion-trigger .badge.purple { border: 1px solid #2271b1; } .privacy-settings-accordion-trigger .badge.gray, .health-check-accordion-trigger .badge.gray { border: 1px solid #c3c4c7; } .privacy-settings-accordion-trigger[aria-expanded="true"] .icon, .privacy-settings-view-passed[aria-expanded="true"] .icon, .health-check-accordion-trigger[aria-expanded="true"] .icon, .site-health-view-passed[aria-expanded="true"] .icon { transform: translateY(-30%) rotate(135deg) } .privacy-settings-accordion-panel, .health-check-accordion-panel { margin: 0; padding: 1em 1.5em; background: #fff; } .privacy-settings-accordion-panel[hidden], .health-check-accordion-panel[hidden] { display: none; } .privacy-settings-accordion-panel a .dashicons, .health-check-accordion-panel a .dashicons { text-decoration: none; } .privacy-settings-accordion-actions { justify-content: right; display: flex; align-items: center; flex-wrap: wrap; gap: 1em; } .privacy-settings-accordion-actions .success { display: none; color: #007017; } .privacy-settings-accordion-actions .success.visible { display: inline-block; } /* Suggested text for privacy policy */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial, .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy { display: none; } .privacy-settings-accordion-panel strong.wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel strong.privacy-policy-tutorial { display: block; margin: 0 0 1em; } .privacy-text-copy span { pointer-events: none; } .privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p) { margin: 0; padding: 1em; border-right: 2px solid #787c82; } /* Media queries */ @media screen and (max-width: 782px) { .privacy-settings-body, .health-check-body { margin: 0 12px; width: auto; } .privacy-settings .notice, .site-health .notice { margin: 5px 10px 15px; } .privacy-settings .update-nag, .site-health .update-nag { margin-left: 10px; margin-right: 10px; } input#create-page { margin-top: 10px; } .wp-core-ui button.privacy-text-copy { white-space: normal; line-height: 1.8; } #edit-slug-box { padding: 0; } #editable-post-name input { min-height: 40px; } } @media only screen and (max-width: 1004px) { .privacy-settings-body, .health-check-body { margin: 0 22px; width: auto; } } /** * End Privacy Settings section */ /*------------------------------------------------------------------------------ 11.1 - Custom Fields ------------------------------------------------------------------------------*/ #postcustomstuff thead th { padding: 5px 8px 8px; background-color: #f0f0f1; } #postcustom #postcustomstuff .submit { border: 0 none; float: none; padding: 0 8px 8px; } #postcustom #postcustomstuff .add-custom-field { padding: 12px 8px 8px; } #side-sortables #postcustom #postcustomstuff .submit { margin: 0; padding: 0; } #side-sortables #postcustom #postcustomstuff #the-list textarea { height: 85px; } #side-sortables #postcustom #postcustomstuff td.left input, #side-sortables #postcustom #postcustomstuff td.left select, #side-sortables #postcustomstuff #newmetaleft a { margin: 3px 3px 0; } #postcustomstuff table { margin: 0; width: 100%; border: 1px solid #dcdcde; border-spacing: 0; background-color: #f6f7f7; } #postcustomstuff tr { vertical-align: top; } #postcustomstuff table input, #postcustomstuff table select, #postcustomstuff table textarea { width: 96%; margin: 8px; } #side-sortables #postcustomstuff table input, #side-sortables #postcustomstuff table select, #side-sortables #postcustomstuff table textarea { margin: 3px; } #postcustomstuff th.left, #postcustomstuff td.left { width: 38%; } #postcustomstuff .submit input { margin: 0; width: auto; } #postcustomstuff #newmetaleft a, #postcustomstuff #newmeta-button { display: inline-block; margin: 0 8px 8px; text-decoration: none; } .no-js #postcustomstuff #enternew { display: none; } #post-body-content .compat-attachment-fields { margin-bottom: 20px; } .compat-attachment-fields th { padding-top: 5px; padding-left: 10px; } /*------------------------------------------------------------------------------ 11.3 - Featured Images ------------------------------------------------------------------------------*/ #select-featured-image { padding: 4px 0; overflow: hidden; } #select-featured-image img { max-width: 100%; height: auto; margin-bottom: 10px; } #select-featured-image a { float: right; clear: both; } #select-featured-image .remove { display: none; margin-top: 10px; } .js #select-featured-image.has-featured-image .remove { display: inline-block; } .no-js #select-featured-image .choose { display: none; } /*------------------------------------------------------------------------------ 11.4 - Post formats ------------------------------------------------------------------------------*/ .post-format-icon::before { display: inline-block; vertical-align: middle; height: 20px; width: 20px; margin-top: -4px; margin-left: 7px; color: #dcdcde; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a.post-format-icon:hover:before { color: #135e96; } #post-formats-select { line-height: 2; } #post-formats-select .post-format-icon::before { top: 5px; } input.post-format { margin-top: 1px; } label.post-format-icon { margin-right: 0; padding: 2px 0; } .post-format-icon.post-format-standard::before { content: "\f109"; content: "\f109" / ''; } .post-format-icon.post-format-image::before { content: "\f128"; content: "\f128" / ''; } .post-format-icon.post-format-gallery::before { content: "\f161"; content: "\f161" / ''; } .post-format-icon.post-format-audio::before { content: "\f127"; content: "\f127" / ''; } .post-format-icon.post-format-video::before { content: "\f126"; content: "\f126" / ''; } .post-format-icon.post-format-chat::before { content: "\f125"; content: "\f125" / ''; } .post-format-icon.post-format-status::before { content: "\f130"; content: "\f130" / ''; } .post-format-icon.post-format-aside::before { content: "\f123"; content: "\f123" / ''; } .post-format-icon.post-format-quote::before { content: "\f122"; content: "\f122" / ''; } .post-format-icon.post-format-link::before { content: "\f103"; content: "\f103" / ''; } /*------------------------------------------------------------------------------ 12.0 - Categories ------------------------------------------------------------------------------*/ .category-adder { margin-right: 120px; padding: 4px 0; } .category-adder h4 { margin: 0 0 8px; } #side-sortables .category-adder { margin: 0; } .wp-tab-panel, .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel, .posttypediv div.tabs-panel, .taxonomydiv div.tabs-panel { min-height: 42px; max-height: 200px; overflow: auto; padding: 0 0.9em; border: solid 1px #dcdcde; background-color: #fff; } div.tabs-panel-active { display: block; } div.tabs-panel-inactive { display: none; } div.tabs-panel-active:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .options-discussion-php .indent-children ul, #front-page-warning, #front-static-pages ul, ul.export-filters, .inline-editor ul.cat-checklist ul, .categorydiv ul.categorychecklist ul, .customlinkdiv ul.categorychecklist ul, .posttypediv ul.categorychecklist ul, .taxonomydiv ul.categorychecklist ul { margin-right: 18px; } ul.categorychecklist li { margin: 0; padding: 0; line-height: 1.69230769; word-wrap: break-word; } .categorydiv .tabs-panel, .customlinkdiv .tabs-panel, .posttypediv .tabs-panel, .taxonomydiv .tabs-panel { border-width: 3px; border-style: solid; } .form-wrap label { display: block; padding: 2px 0; } .form-field input[type="text"], .form-field input[type="password"], .form-field input[type="email"], .form-field input[type="number"], .form-field input[type="search"], .form-field input[type="tel"], .form-field input[type="url"], .form-field textarea { border-style: solid; border-width: 1px; width: 95%; } .form-field select, .form-field p { max-width: 95%; } p.description, .form-wrap p { margin: 2px 0 5px; color: #646970; } p.help, p.description, span.description, .form-wrap p { font-size: 13px; } p.description code { font-style: normal; } p.description code, .form-wrap p code { color: #50575e; } .form-wrap .form-field { margin: 1em 0; padding: 0; } .col-wrap h2 { margin: 12px 0; font-size: 1.1em; } .col-wrap p.submit { margin-top: -10px; } .edit-term-notes { margin-top: 2em; } /*------------------------------------------------------------------------------ 13.0 - Tags ------------------------------------------------------------------------------*/ #poststuff .tagsdiv .ajaxtag { margin-top: 1em; display: flex; gap: 8px; align-items: center; } #poststuff .tagsdiv .howto { margin: 1em 0 6px; } .ajaxtag .newtag { position: relative; } .tagsdiv .newtag { flex: 1; min-width: 0; } .tagsdiv .the-tags { display: block; height: 60px; margin: 0 auto; overflow: auto; width: 260px; } #post-body-content .tagsdiv .the-tags { margin: 0 5px; } p.popular-tags { border: none; line-height: 2em; padding: 8px 12px 12px; text-align: justify; } p.popular-tags a { padding: 0 3px; } .tagcloud { width: 97%; margin: 0 0 40px; text-align: justify; } .tagcloud h2 { margin: 2px 0 12px; } #poststuff .inside .the-tagcloud { margin: 5px 0 10px; padding: 8px; border: 1px solid #dcdcde; line-height: 1.2; word-spacing: 3px; } .the-tagcloud ul { margin: 0; } .the-tagcloud ul li { display: inline-block; } /* Back-compat styles from deprecated jQuery.suggest, see ticket #40260. */ .ac_results { display: none; margin: -1px 0 0; padding: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; background-color: #fff; } .wp-customizer .ac_results { z-index: 500000; } .ac_results li { margin: 0; padding: 5px 10px; white-space: nowrap; text-align: right; } .ac_results .ac_over, .ac_over .ac_match { background-color: #2271b1; color: #fff; cursor: pointer; } .ac_match { text-decoration: underline; } #addtag .spinner { float: none; vertical-align: top; } #edittag { max-width: 800px; } .edit-tag-actions { display: flex; align-items: center; gap: 8px; margin-top: 20px; } /* Comments */ .comment-php .wp-editor-area { height: 200px; } .comment-ays th, .comment-ays td { padding: 10px 15px; } .comment-ays .comment-content ul { list-style: initial; margin-right: 2em; } .comment-ays .comment-content a[href]:after { content: "(" attr( href ) ")"; display: inline-block; padding: 0 4px; color: #646970; font-size: 13px; word-break: break-all; } .comment-ays .comment-content p.edit-comment { margin-top: 10px; } .comment-ays .comment-content p.edit-comment a[href]:after { content: ""; padding: 0; } .comment-ays-submit .button-cancel { margin-right: 1em; } .trash-undo-inside, .spam-undo-inside { margin: 1px 0 1px 8px; line-height: 1.23076923; } .spam-undo-inside .avatar, .trash-undo-inside .avatar { height: 20px; width: 20px; margin-left: 8px; vertical-align: middle; } .stuffbox .editcomment { clear: none; margin-top: 0; } #namediv.stuffbox .editcomment input { width: 100%; } #namediv.stuffbox .editcomment.form-table td { padding: 10px; } #comment-status-radio p { margin: 3px 0 5px; } #comment-status-radio input { margin: 2px 0 5px 3px; vertical-align: middle; } #comment-status-radio label { padding: 5px 0; } /* links tables */ table.links-table { width: 100%; border-spacing: 0; } .links-table th { font-weight: 400; text-align: right; vertical-align: top; min-width: 80px; width: 20%; word-wrap: break-word; } .links-table th, .links-table td { padding: 5px 0; } .links-table td label { margin-left: 8px; } .links-table td input[type="text"], .links-table td textarea { width: 100%; } .links-table #link_rel { max-width: 280px; } /* DFW 2 -------------------------------------------------------------- */ #qt_content_dfw { display: none; } .wp-editor-expand #qt_content_dfw { display: inline-block; } .focus-on .wrap > h1, .focus-on .page-title-action, .focus-on #wpfooter, .focus-on .postbox-container > *, .focus-on div.updated, .focus-on div.error, .focus-on div.notice, .focus-on .update-nag, .focus-on #wp-toolbar, .focus-on #screen-meta-links, .focus-on #screen-meta { opacity: 0; transition-duration: 0.6s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-on #wp-toolbar { opacity: 0.3; } .focus-off .wrap > h1, .focus-off .page-title-action, .focus-off #wpfooter, .focus-off .postbox-container > *, .focus-off div.updated, .focus-off div.error, .focus-off div.notice, .focus-off .update-nag, .focus-off #wp-toolbar, .focus-off #screen-meta-links, .focus-off #screen-meta { opacity: 1; transition-duration: 0.2s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-off #wp-toolbar { -webkit-transform: translate(0, 0); } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transition-duration: 0.6s; transition-property: transform; transition-timing-function: ease-in-out; } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transform: translateX( 100% ); } .focus-off #adminmenuback, .focus-off #adminmenuwrap { transform: translateX( 0 ); transition-duration: 0.2s; transition-property: transform; transition-timing-function: ease-in-out; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { background: transparent url(../images/resize-2x.gif) no-repeat scroll left bottom; background-size: 11px 11px; } /*rtl:ignore*/ .rtl #content-resize-handle, .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize { background-image: url(../images/resize-rtl-2x.gif); background-position: left bottom; } } /* * The edit attachment screen auto-switches to one column layout when the * viewport is smaller than 1200 pixels. */ @media only screen and (max-width: 1200px) { .post-type-attachment #poststuff { min-width: 0; } .post-type-attachment #wpbody-content #poststuff #post-body { margin: 0; } .post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-left: 0; width: 100%; } .post-type-attachment #poststuff #postbox-container-1 .empty-container, .post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty { outline: none; height: 0; min-height: 0; } .post-type-attachment #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } .is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables { border: none; background: transparent; min-height: 0; margin-bottom: 0; } /* hide the radio buttons for column prefs */ .post-type-attachment .screen-layout, .post-type-attachment .columns-prefs { display: none; } } /* one column on the post write/edit screen */ @media only screen and (max-width: 850px) { #poststuff { min-width: 0; } #wpbody-content #poststuff #post-body { margin: 0; } #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-left: 0; width: 100%; } #poststuff #postbox-container-1 .empty-container, #poststuff #postbox-container-1 #side-sortables:empty { height: 0; min-height: 0; } #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } /* Increase min-height while dragging for the #side-sortables and any potential sortables area with custom ID. */ .is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container, .is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty, .is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables, .is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables { height: auto; min-height: 60px; } /* hide the radio buttons for column prefs */ .screen-layout, .columns-prefs { display: none; } } @media screen and (max-width: 782px) { .wp-core-ui .edit-tag-actions .button-primary { margin-bottom: 0; } #post-body-content { min-width: 0; } #titlediv #title-prompt-text { padding: 10px; } #poststuff .stuffbox .inside { padding: 0 0 4px 2px; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { padding: 12px; } #namediv.stuffbox .editcomment.form-table td { padding: 5px 10px; } .post-format-options { padding-left: 0; } .post-format-options a { margin-left: 5px; margin-bottom: 5px; min-width: 52px; } .post-format-options .post-format-title { font-size: 11px; } .post-format-options a div { height: 28px; width: 28px; } .post-format-options a div:before { font-size: 26px !important; } /* Publish Metabox Options */ #post-visibility-select { line-height: 280%; } .wp-core-ui .save-post-visibility, .wp-core-ui .save-timestamp { vertical-align: middle; margin-left: 15px; } .timestamp-wrap select#mm { display: block; width: 100%; margin-bottom: 10px; } .timestamp-wrap #jj, .timestamp-wrap #aa, .timestamp-wrap #hh, .timestamp-wrap #mn { padding: 12px 3px; font-size: 14px; margin-bottom: 5px; width: auto; text-align: center; } /* Categories Metabox */ ul.category-tabs { margin: 30px 0 15px; } ul.category-tabs li.tabs { padding: 15px; } ul.categorychecklist li { margin-bottom: 15px; } ul.categorychecklist ul { margin-top: 15px; } .category-add input[type=text], .category-add select { max-width: none; margin-bottom: 15px; } /* Tags Metabox */ .tagsdiv .newtag { flex: 1; min-width: 0; height: auto; margin-bottom: 0; } .tagchecklist { margin: 25px 10px; } .tagchecklist > li { font-size: 16px; line-height: 1.4; } /* Discussion */ #commentstatusdiv p { line-height: 2.8; } /* TinyMCE Adjustments */ .mceToolbar * { white-space: normal !important; } .mceToolbar tr, .mceToolbar td { float: right !important; } .wp_themeSkin a.mceButton { width: 30px; height: 30px; } .wp_themeSkin .mceButton .mceIcon { margin-top: 5px; margin-right: 5px; } .wp_themeSkin .mceSplitButton { margin-top: 1px; } .wp_themeSkin .mceSplitButton td a.mceAction { padding: 6px 6px 6px 3px; } .wp_themeSkin .mceSplitButton td a.mceOpen, .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen { padding-top: 6px; padding-bottom: 6px; background-position: 1px 6px; } .wp_themeSkin table.mceListBox { margin: 5px; } div.quicktags-toolbar input { padding: 10px 20px; } button.wp-switch-editor { font-size: 16px; line-height: 1; margin: 7px 7px 0 0; padding: 8px 12px; } #wp-content-media-buttons a { font-size: 14px; padding: 6px 10px; } .wp-media-buttons span.wp-media-buttons-icon, .wp-media-buttons span.jetpack-contact-form-icon { width: 22px !important; margin-right: -2px !important; } .wp-media-buttons .add_media span.wp-media-buttons-icon:before, .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before { font-size: 20px !important; } #content_wp_fullscreen { display: none; } .misc-pub-section { padding: 12px 10px; } #delete-action, #publishing-action { line-height: 3.61538461; } #publishing-action .spinner { float: none; margin-top: -2px; /* Half of the Publish button's bottom margin. */ } /* Moderate Comment */ .comment-ays th, .comment-ays td { padding-bottom: 0; } .comment-ays td { padding-top: 6px; } /* Links */ .links-table #link_rel { max-width: none; } .links-table th, .links-table td { padding: 10px 0; } .edit-term-notes { display: none; } .privacy-text-box { width: auto; } .privacy-text-box-toc { float: none; width: auto; height: 100%; display: flex; flex-direction: column; } .privacy-text-section .return-to-top { margin: 2em 0 0; } } css/list-tables.css000066600000131220152330733730010302 0ustar00.response-links { display: block; margin-bottom: 1em; } .response-links a { display: block; } .response-links a.comments-edit-item-link { font-weight: 600; } .response-links a.comments-view-item-link { font-size: 12px; } .post-com-count-wrapper strong { font-weight: 400; } .comments-view-item-link { display: inline-block; clear: both; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: nowrap; word-wrap: normal; } /* comments bubble common */ .column-response .post-com-count, .column-comments .post-com-count { display: inline-block; vertical-align: top; } /* comments bubble approved */ .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 5px; } .column-response .comment-count-no-comments, .column-response .comment-count-approved, .column-comments .comment-count-no-comments, .column-comments .comment-count-approved { box-sizing: border-box; display: block; padding: 0 8px; min-width: 24px; height: 2em; border-radius: 5px; background-color: #646970; color: #fff; font-size: 11px; line-height: 1.90909090; text-align: center; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: ""; display: block; margin-left: 8px; width: 0; height: 0; border-top: 5px solid #646970; border-right: 5px solid transparent; } .column-response a.post-com-count-approved:hover .comment-count-approved, .column-response a.post-com-count-approved:focus .comment-count-approved, .column-comments a.post-com-count-approved:hover .comment-count-approved, .column-comments a.post-com-count-approved:focus .comment-count-approved { background: #3858e9; } .column-response a.post-com-count-approved:hover:after, .column-response a.post-com-count-approved:focus:after, .column-comments a.post-com-count-approved:hover:after, .column-comments a.post-com-count-approved:focus:after { border-top-color: #3858e9; } /* @todo: consider to use a single rule for these counters and the admin menu counters. */ .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: relative; left: -3px; padding: 0 5px; min-width: 7px; height: 17px; border: 2px solid #fff; border-radius: 11px; background: #d63638; color: #fff; font-size: 9px; line-height: 1.88888888; text-align: center; } .column-response .post-com-count-no-pending, .column-comments .post-com-count-no-pending { display: none; } /* comments */ .commentlist li { padding: 1em 1em .2em; margin: 0; border-bottom: 1px solid #c3c4c7; } .commentlist li li { border-bottom: 0; padding: 0; } .commentlist p { padding: 0; margin: 0 0 .8em; } #submitted-on, .submitted-on { color: #50575e; } /* reply to comments */ #replyrow td { padding: 2px; } #replysubmit { margin: 0; padding: 5px 7px 10px; overflow: hidden; } #replysubmit .reply-submit-buttons { margin-bottom: 0; } #replysubmit .button { margin-right: 5px; } #replysubmit .spinner { float: none; margin: -4px 0 0; } #replyrow.inline-edit-row fieldset.comment-reply { font-size: inherit; line-height: inherit; } #replyrow legend { margin: 0; padding: .2em 5px 0; font-size: 13px; line-height: 1.4; font-weight: 600; } #replyrow.inline-edit-row label { display: inline; vertical-align: baseline; line-height: inherit; } #edithead .inside, #commentsdiv #edithead .inside { float: left; padding: 3px 0 2px 5px; margin: 0; text-align: center; } #edithead .inside input { width: 180px; } #edithead label { padding: 2px 0; } #replycontainer { padding: 5px; } #replycontent { height: 120px; box-shadow: none; } #replyerror { border-color: #dcdcde; background-color: #f6f7f7; } /* @todo: is this used? */ .commentlist .avatar { vertical-align: text-top; } #the-comment-list tr.undo, #the-comment-list div.undo { background-color: #f6f7f7; } #the-comment-list .unapproved th, #the-comment-list .unapproved td { background-color: #fcf9e8; } #the-comment-list .unapproved th.check-column { border-left: 4px solid #d63638; } #the-comment-list .unapproved th.check-column input { margin-left: 4px; } #the-comment-list .approve a { color: #007017; } #the-comment-list .unapprove a { color: #996800; } #the-comment-list th, #the-comment-list td { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #the-comment-list tr:last-child th, #the-comment-list tr:last-child td { box-shadow: none; } #the-comment-list tr.unapproved + tr.approved th, #the-comment-list tr.unapproved + tr.approved td { border-top: 1px solid rgba(0, 0, 0, 0.03); } /* table vim shortcuts */ .vim-current, .vim-current th, .vim-current td { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08) !important; } th .comment-grey-bubble { width: 16px; /* Make sure the link clickable area fills the entire table header. */ position: relative; top: 2px; } th .comment-grey-bubble:before { content: "\f101"; content: "\f101" / ''; font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; left: -4px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } /*------------------------------------------------------------------------------ 10.0 - List Posts (/Pages/etc) ------------------------------------------------------------------------------*/ table.fixed { table-layout: fixed; } .fixed .column-rating, .fixed .column-visible { width: 8%; } .fixed .column-posts, .fixed .column-parent, .fixed .column-links, .fixed .column-author, .fixed .column-format { width: 10%; } .fixed .column-date { width: 14%; } .column-date span[title] { -webkit-text-decoration: dotted underline; text-decoration: dotted underline; } .fixed .column-posts { width: 74px; } .fixed .column-role, .fixed .column-posts { hyphens: auto; } .fixed .column-comment .comment-author { display: none; } .fixed .column-response, .fixed .column-categories, .fixed .column-tags, .fixed .column-rel, .fixed .column-role { width: 15%; } .fixed .column-slug { width: 25%; } .fixed .column-locations { width: 35%; } .fixed .column-comments { width: 5.5em; text-align: left; } .fixed .column-comments .vers { padding-left: 3px; } td.column-title strong, td.plugin-title strong { display: block; margin-bottom: .2em; font-size: 14px; } td.column-title p, td.plugin-title p { margin: 6px 0; } /* Media file column */ table.media .column-title .media-icon { float: left; min-height: 60px; margin: 0 9px 0 0; } table.media .column-title .media-icon img { max-width: 60px; height: auto; vertical-align: top; /* Remove descender white-space. */ } table.media .column-title .has-media-icon ~ .row-actions { margin-left: 70px; /* 60px image + margin */ } table.media .column-title .filename { margin-bottom: 0.2em; } /* Media Copy to clipboard row action */ .media .row-actions .copy-to-clipboard-container { display: inline; position: relative; } .media .row-actions .copy-to-clipboard-container .success { position: absolute; left: 50%; transform: translate(-50%, -100%); background: #000; color: #fff; border-radius: 5px; margin: 0; padding: 2px 5px; } /* @todo: pick a consistent list table selector */ .wp-list-table a { transition: none; } #the-list tr:last-child td, #the-list tr:last-child th { border-bottom: none !important; box-shadow: none; } #comments-form .fixed .column-author { width: 20%; } #commentsdiv.postbox .inside { margin: 0; padding: 0; } #commentsdiv .inside .row-actions { line-height: 1.38461538; } #commentsdiv .inside .column-author { width: 25%; } #commentsdiv .column-comment p { margin: 0.6em 0; padding: 0; } #commentsdiv #replyrow td { padding: 0; } #commentsdiv p { padding: 8px 10px; margin: 0; } #commentsdiv .comments-box { border: 0 none; } #commentsdiv .comments-box thead th, #commentsdiv .comments-box thead td { background: transparent; padding: 0 7px 4px; } #commentsdiv .comments-box tr:last-child td { border-bottom: 0 none; } #commentsdiv #edithead .inside input { width: 160px; } .sorting-indicators { display: grid; } .sorting-indicator { display: block; width: 10px; height: 4px; margin-top: 4px; margin-left: 7px; } .sorting-indicator:before { font: normal 20px/1 dashicons; display: inline-block; padding: 0; top: -4px; left: -8px; line-height: 0.5; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #a7aaad; } .sorting-indicator.asc:before { content: "\f142"; content: "\f142" / ''; } .sorting-indicator.desc:before { content: "\f140"; content: "\f140" / ''; } th.sorted.desc .sorting-indicator.desc:before { color: #1d2327; } th.sorted.asc .sorting-indicator.asc:before { color: #1d2327; } th.sorted.asc a:focus .sorting-indicator.asc:before, th.sorted.asc:hover .sorting-indicator.asc:before, th.sorted.desc a:focus .sorting-indicator.desc:before, th.sorted.desc:hover .sorting-indicator.desc:before { color: #a7aaad; } th.sorted.asc a:focus .sorting-indicator.desc:before, th.sorted.asc:hover .sorting-indicator.desc:before, th.sorted.desc a:focus .sorting-indicator.asc:before, th.sorted.desc:hover .sorting-indicator.asc:before { color: #1d2327; } .wp-list-table .toggle-row { position: absolute; right: 8px; top: 10px; display: none; padding: 0; width: 40px; height: 40px; border: none; outline: none; background: transparent; } .wp-list-table .toggle-row:hover { cursor: pointer; } .wp-list-table .toggle-row:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-list-table .toggle-row:active { box-shadow: none; } .wp-list-table .toggle-row:before { position: absolute; top: -5px; left: 10px; border-radius: 50%; display: block; padding: 1px 2px 1px 0; color: #3c434a; /* same as table headers sort arrows */ content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-list-table .is-expanded .toggle-row:before { content: "\f142"; content: "\f142" / ''; } .check-column { position: relative; } .check-column label { box-sizing: border-box; width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0; } .check-column input { position: relative; z-index: 1; } .check-column .label-covers-full-cell:hover + input:not(:disabled) { box-shadow: 0 0 0 1px #2271b1; } .check-column label:hover, .check-column input:hover + label { background: rgba(0, 0, 0, 0.05); } .locked-indicator { display: none; margin-left: 6px; height: 20px; width: 16px; } .locked-indicator-icon:before { color: #8c8f94; content: "\f160"; content: "\f160" / ''; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .locked-info { display: none; margin-top: 4px; } .locked-text { vertical-align: top; } .wp-locked .locked-indicator, .wp-locked .locked-info { display: block; } tr.wp-locked .check-column label, tr.wp-locked .check-column input[type="checkbox"], tr.wp-locked .row-actions .inline, tr.wp-locked .row-actions .trash { display: none; } #menu-locations-wrap .widefat { width: 60%; } .widefat th.sortable, .widefat th.sorted { padding: 0; } th.sortable a, th.sorted a { display: block; overflow: hidden; padding: 8px; } th.sortable a:focus, th.sorted a:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } th.sortable a span, th.sorted a span { float: left; cursor: pointer; } .tablenav-pages .current-page { vertical-align: top; margin: 0 2px 0 0; font-size: 13px; text-align: center; min-height: 32px; padding: 0 8px; } .tablenav .total-pages { margin-right: 2px; } .tablenav #table-paging { margin-left: 2px; } .tablenav { clear: both; height: 32px; margin: 6px 0 4px; vertical-align: middle; } .tablenav.themes { max-width: 98%; } .tablenav .tablenav-pages { float: right; margin: 0 0 9px; } .tablenav .no-pages, .tablenav .one-page .pagination-links { display: none; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { display: inline-block; vertical-align: baseline; min-width: 32px; min-height: 32px; margin: 0; padding: 0 4px; font-size: 16px; line-height: 1.875; /* 30px for 32px height */ text-align: center; } .tablenav .displaying-num { margin-right: 7px; } .tablenav .one-page .displaying-num { display: inline-block; margin: 5px 0; } .tablenav .actions { padding: 0 8px 0 0; } .wp-filter .actions { display: inline-block; vertical-align: middle; } .tablenav .delete { margin-right: 20px; } /* This view-switcher is still used on multisite. */ .tablenav .view-switch { float: right; margin: 0 5px; padding-top: 3px; } .wp-filter .view-switch { display: inline-block; vertical-align: middle; padding: 12px 0; margin: 0 8px 0 2px; } .media-toolbar.wp-filter .view-switch { margin: 0 12px 0 2px; } .view-switch a { float: left; width: 28px; height: 28px; text-align: center; line-height: 1.84615384; text-decoration: none; } .view-switch a:before { color: #c3c4c7; display: inline-block; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .view-switch a:hover:before, .view-switch a:focus:before { color: #787c82; } .view-switch a.current:before { color: #2271b1; } .view-switch .view-list:before { content: "\f163"; content: "\f163" / ''; } .view-switch .view-excerpt:before { content: "\f164"; content: "\f164" / ''; } .view-switch .view-grid:before { content: "\f509"; content: "\f509" / ''; } .filter { float: left; margin: -5px 0 0 10px; } .filter .subsubsub { margin-left: -10px; margin-top: 13px; } .screen-per-page { width: 4em; } #posts-filter .wp-filter { margin-bottom: 0; } #posts-filter fieldset { float: left; margin: 0 1.5ex 1em 0; padding: 0; } #posts-filter fieldset legend { padding: 0 0 .2em 1px; } p.pagenav { margin: 0; display: inline; } .pagenav span { font-weight: 600; margin: 0 6px; } .row-title { font-size: 14px !important; font-weight: 600; } .column-comment .comment-author { margin-bottom: 0.6em; } .column-author img, .column-username img, .column-comment .comment-author img { float: left; margin-right: 10px; margin-top: 1px; } .row-actions { color: #646970; font-size: 13px; padding: 2px 0 0; position: relative; left: -9999em; } /* ticket #34150 */ .rtl .row-actions a { display: inline-block; } .row-actions .network_only, .row-actions .network_active { color: #000; } .no-js .row-actions, tr:hover .row-actions, .mobile .row-actions, .row-actions.visible, .comment-item:hover .row-actions { position: static; } /* deprecated */ .row-actions-visible { padding: 2px 0 0; } /*------------------------------------------------------------------------------ 10.1 - Inline Editing ------------------------------------------------------------------------------*/ /* .quick-edit* is for Quick Edit .bulk-edit* is for Bulk Edit .inline-edit* is for everything */ /* Layout */ #wpbody-content .inline-edit-row fieldset { float: left; margin: 0; padding: 0 12px 0 0; width: 100%; box-sizing: border-box; } #wpbody-content .inline-edit-row td fieldset:last-of-type { padding-right: 0; } tr.inline-edit-row td { padding: 0; /* Prevents the focus style on .inline-edit-wrapper from being cut-off */ position: relative; } .inline-edit-wrapper { display: flow-root; padding: 0 12px; border: 1px solid transparent; border-radius: 4px; } .inline-edit-wrapper:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #wpbody-content .quick-edit-row-post .inline-edit-col-left { width: 40%; } #wpbody-content .quick-edit-row-post .inline-edit-col-right { width: 39%; } #wpbody-content .inline-edit-row-post .inline-edit-col-center { width: 20%; } #wpbody-content .quick-edit-row-page .inline-edit-col-left { width: 50%; } #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right { width: 50%; } #wpbody-content .bulk-edit-row .inline-edit-col-left { width: 30%; } #wpbody-content .bulk-edit-row-page .inline-edit-col-right { width: 69%; } #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: right; width: 69%; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 27px; } .inline-edit-row fieldset .inline-edit-group { clear: both; line-height: 2.5; } .inline-edit-row .submit { display: flex; flex-wrap: wrap; align-items: center; clear: both; margin: 0; padding: 0.5em 0 1em; } .inline-edit-save.submit .button { margin-right: 8px; } .inline-edit-save .spinner { float: none; margin: 0; } .inline-edit-row .notice-error { box-sizing: border-box; min-width: 100%; margin-top: 1em; } .inline-edit-row .notice-error .error { margin: 0.5em 0; padding: 2px; } /* Positioning */ /* Needs higher specificity for the padding */ #the-list .inline-edit-row .inline-edit-legend { margin: 0; padding: 0.2em 0; line-height: 2.5; font-weight: 600; } .inline-edit-row fieldset span.title, .inline-edit-row fieldset span.checkbox-title { margin: 0; padding: 0; } .inline-edit-row fieldset label, .inline-edit-row fieldset span.inline-edit-categories-label { display: block; margin: .2em 0; line-height: 2.5; } .inline-edit-row fieldset.inline-edit-date label { display: inline-block; margin: 0; vertical-align: baseline; line-height: 2; } .inline-edit-row fieldset label.inline-edit-tags { margin-top: 0; } .inline-edit-row fieldset label.inline-edit-tags span.title { margin: .2em 0; width: auto; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { display: block; float: left; width: 6em; line-height: 2.5; } #posts-filter fieldset.inline-edit-date legend { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { display: block; margin-left: 6em; } .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; padding-right: 0.5em; } .inline-edit-row .inline-edit-or { margin: .2em 6px .2em 0; line-height: 2.5; } .inline-edit-row .input-text-wrap input[type=text] { width: 100%; } .inline-edit-row fieldset label input[type=checkbox] { vertical-align: middle; } .inline-edit-row fieldset label textarea { width: 100%; height: 4em; vertical-align: top; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 32px; padding: 0 8px 0 8px; } .inline-edit-row select { line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding-right: 24px; } #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: 50%; } #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child { margin-right: 0.5em } .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input { width: 6em; } /* Styling */ .inline-edit-row .inline-edit-legend { text-transform: uppercase; } /* Specific Elements */ .inline-edit-row fieldset .inline-edit-date { float: left; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { vertical-align: middle; text-align: center; padding: 0 4px; } .inline-edit-row fieldset label input.inline-edit-password-input { width: 8em; } #bulk-titles-list, #bulk-titles-list li, .inline-edit-row fieldset ul.cat-checklist li, .inline-edit-row fieldset ul.cat-checklist input { margin: 0; position: relative; /* RTL fix, #WP27629 */ } .inline-edit-row fieldset ul.cat-checklist input { margin-top: -1px; margin-left: 3px; } .inline-edit-row fieldset label input.inline-edit-menu-order-input { width: 3em; } .inline-edit-row fieldset label input.inline-edit-slug-input { width: 75%; } .inline-edit-row select[name="post_parent"], .inline-edit-row select[name="page_template"] { max-width: 80%; } .quick-edit-row-post fieldset label.inline-edit-status { float: left; } #bulk-titles, ul.cat-checklist { height: 14em; border: 1px solid #ddd; margin: 0 0 5px; padding: 0.2em 5px; overflow-y: scroll; } ul.cat-checklist input[name="post_category[]"]:indeterminate::before { content: ''; border-top: 2px solid grey; width: 65%; height: 2px; position: absolute; top: calc( 50% + 1px ); left: 50%; transform: translate( -50%, -50% ); } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { display: inline-block; margin: 0; padding: 3px 0; line-height: 20px; vertical-align: top; } #bulk-titles .ntdelitem { padding-left: 23px; } #bulk-titles .ntdelbutton { width: 26px; height: 26px; margin: 0 0 0 -26px; text-align: center; border-radius: 3px; } #bulk-titles .ntdelbutton:before { display: inline-block; vertical-align: top; } #bulk-titles .ntdelbutton:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; /* Reset inherited offset from Gutenberg */ outline-offset: 0; } /*------------------------------------------------------------------------------ 17.0 - Plugins ------------------------------------------------------------------------------*/ .plugins tbody th.check-column, .plugins tbody { padding: 8px 0 0 2px; } .plugins tbody th.check-column input[type=checkbox] { margin-top: 4px; } .updates-table .plugin-title p { margin-top: 0; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-left: 6px; } .plugins, .plugins th, .plugins td { color: #000; } .plugins tr { background: #fff; } .plugins p { margin: 0 4px; padding: 0; } .plugins .desc p { margin: 0 0 8px; } .plugins td.desc { line-height: 1.5; } .plugins .desc ul, .plugins .desc ol { margin: 0 0 0 2em; } .plugins .desc ul { list-style-type: disc; } .plugins .row-actions { font-size: 13px; padding: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th { padding: 10px 9px; } .plugins .active td, .plugins .active th { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .plugins .update th, .plugins .update td { border-bottom: 0; } .plugins .inactive td, .plugins .inactive th, .plugins .active td, .plugins .active th, .plugin-install #the-list td, .upgrade .plugins td, .upgrade .plugins th { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active.plugin-update-tr + tr.inactive th, .plugins tr.active.plugin-update-tr + tr.inactive td, .plugins tr.active + tr.inactive th, .plugins tr.active + tr.inactive td { border-top: 1px solid rgba(0, 0, 0, 0.03); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02), inset 0 -1px 0 #dcdcde; } .plugins .update td, .plugins .update th, .upgrade .plugins tr:last-of-type td, .upgrade .plugins tr:last-of-type th, .plugins tr.active + tr.inactive.update th, .plugins tr.active + tr.inactive.update td, .plugins .updated td, .plugins .updated th, .plugins tr.active + tr.inactive.updated th, .plugins tr.active + tr.inactive.updated td { box-shadow: none; } .plugins .active th.check-column, .plugin-update-tr.active td { border-left: 4px solid var(--wp-admin-theme-color); } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-right: 12px; white-space: nowrap; } .plugins .plugin-title .dashicons, .plugins .plugin-title img.plugin-icon, .plugins .plugin-title img.updates-table-screenshot { float: left; padding: 0 10px 0 0; width: 64px; height: 64px; } .plugins .plugin-title .dashicons:before { padding: 2px; background-color: #f0f0f1; box-shadow: inset 0 0 10px rgba(167, 170, 173, 0.15); font-size: 60px; color: #c3c4c7; } #update-themes-table .plugin-title img.updates-table-screenshot, #update-themes-table .plugin-title .dashicons { width: 85px; } .plugins .column-auto-updates { width: 14.2em; } .plugins .inactive .plugin-title strong { font-weight: 400; } .plugins .second, .plugins .row-actions { padding: 0 0 5px; } .plugins .row-actions { white-space: normal; min-width: 12em; } .plugins .update .second, .plugins .update .row-actions, .plugins .updated .second, .plugins .updated .row-actions { padding-bottom: 0; } .plugins-php .widefat tfoot th, .plugins-php .widefat tfoot td { border-top-style: solid; border-top-width: 1px; } .plugins .plugin-update-tr .plugin-update { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); overflow: hidden; /* clearfix */ padding: 0; } .plugins .plugin-update-tr .notice, .plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */ margin: 5px 20px 15px 40px; } .plugins .notice p { margin: 0.5em 0; } .plugins .plugin-description a, .plugins .plugin-update a, .updates-table .plugin-title a { text-decoration: underline; } .plugins tr.paused th.check-column { border-left: 4px solid #b32d2e; } .plugins tr.paused th, .plugins tr.paused td { background-color: #f6f7f7; } .plugins tr.paused .plugin-title, .plugins .paused .dashicons-warning { color: #b32d2e; } .plugins .paused .error-display p, .plugins .paused .error-display code { font-size: 90%; color: rgba(0, 0, 0, 0.7); } .plugins .resume-link { color: #b32d2e; } .plugin-card .update-now:before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 16px/1.875 dashicons; /* line-height 1.875 = 30px to match button */ margin: 0 5px 0 -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .plugin-card .updating-message:before { content: "\f463"; content: "\f463" / ''; animation: rotation 2s infinite linear; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } .plugin-card .updated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } .plugin-card .updated-message:before, .plugin-card .updating-message:before { line-height: 1; position: relative; top: -2px; vertical-align: middle; } .plugin-install-php #the-list { display: flex; flex-wrap: wrap; } .plugin-install-php .plugin-card { display: flex; flex-direction: column; justify-content: space-between; } .plugin-install-php h2 { clear: both; } .plugin-install-php h3 { margin: 2.5em 0 8px; } .plugin-install-php .wp-filter { margin-bottom: 0; } /* Plugin card table view */ .plugin-group { overflow: hidden; /* clearfix */ margin-top: 1.5em; } .plugin-group h3 { margin-top: 0; } .plugin-card { float: left; margin: 0 8px 16px; width: 48.5%; width: calc( 50% - 8px ); background-color: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .plugin-card:nth-child(odd) { clear: both; margin-left: 0; } .plugin-card:nth-child(even) { margin-right: 0; } @media screen and (min-width: 1600px) and ( max-width: 2299px ) { .plugin-card { width: 30%; width: calc( 33.1% - 8px ); } .plugin-card:nth-child(odd) { clear: none; margin-left: 8px; } .plugin-card:nth-child(even) { margin-right: 8px; } .plugin-card:nth-child(3n+1) { clear: both; margin-left: 0; } .plugin-card:nth-child(3n) { margin-right: 0; } } @media screen and (min-width: 2300px) { .plugin-card { width: 25%; width: calc( 25% - 12px ); } .plugin-card:nth-child(odd) { clear: none; margin-left: 8px; } .plugin-card:nth-child(even) { margin-right: 8px; } .plugin-card:nth-child(4n+1) { clear: both; margin-left: 0; } .plugin-card:nth-child(4n) { margin-right: 0; } } .plugin-card-top { position: relative; padding: 16px; min-height: 135px; } div.action-links, .plugin-action-buttons { margin: 0; /* Override existing margins */ } .plugin-card h3 { margin: 0 12px 16px 0; font-size: 18px; line-height: 1.3; } .plugin-card .desc { margin-inline: 0; } .plugin-card .name, .plugin-card .desc > p { margin-left: 148px; } @media (min-width: 1101px) { .plugin-card .name, .plugin-card .desc > p { margin-right: 128px; } } @media (min-width: 481px) and (max-width: 781px) { .plugin-card .name, .plugin-card .desc > p { margin-right: 128px; } } .plugin-card .column-description { display: flex; flex-direction: column; justify-content: flex-start; } .plugin-card .column-description > p { margin-top: 0; } .plugin-card .column-description p:empty { display: none; } .plugin-card .notice.plugin-dependencies { margin: auto 20px 20px; padding: 15px; } .plugin-card .plugin-dependencies-explainer-text { margin-block: 0; } .plugin-card .plugin-dependency { align-items: center; display: flex; flex-wrap: wrap; margin-top: .5em; column-gap: 1%; row-gap: .5em; } .plugin-card .plugin-dependency:nth-child(2), .plugin-card .plugin-dependency:last-child { margin-top: 1em; } .plugin-card .plugin-dependency-name { flex-basis: 74%; } .plugin-card .plugin-dependency .more-details-link { margin-left: auto; } .rtl .plugin-card .plugin-dependency .more-details-link { margin-right: auto; } @media (max-width: 939px) { .plugin-card .plugin-dependency-name { flex-basis: 69%; } } .plugins #the-list .required-by, .plugins #the-list .requires { margin-top: 1em; } .plugin-card .action-links { position: absolute; top: 20px; right: 20px; width: 120px; } .plugin-action-buttons { clear: right; float: right; margin-bottom: 1em; text-align: right; } .plugin-action-buttons li { margin-bottom: 10px; } .plugin-card-bottom { clear: both; padding: 16px; background-color: #f6f7f7; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; } .plugin-card-bottom .star-rating { display: inline; } .plugin-card-update-failed .update-now { font-weight: 600; } .plugin-card-update-failed .notice-error { margin: 0; padding-left: 16px; box-shadow: 0 -1px 0 #dcdcde; } .plugin-card-update-failed .plugin-card-bottom { display: none; } .plugin-card .column-rating { line-height: 1.76923076; } .plugin-card .column-rating, .plugin-card .column-updated { margin-bottom: 4px; } .plugin-card .column-rating, .plugin-card .column-downloaded { float: left; clear: left; max-width: 180px; } .plugin-card .column-updated, .plugin-card .column-compatibility { text-align: right; float: right; clear: right; width: 65%; width: calc( 100% - 180px ); } .plugin-card .column-compatibility span:before { font: normal 20px/.5 dashicons; display: inline-block; padding: 0; top: 4px; left: -2px; position: relative; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #3c434a; } .plugin-card .column-compatibility .compatibility-incompatible:before { content: "\f158"; content: "\f158" / ''; color: #d63638; } .plugin-card .column-compatibility .compatibility-compatible:before { content: "\f147"; content: "\f147" / ''; color: #007017; } .plugin-card .notice { margin: 20px 20px 0; } .plugin-card .plugin-icon { position: absolute; top: 20px; left: 20px; width: 128px; height: 128px; margin: 0 20px 20px 0; } .no-plugin-results { color: #646970; /* same as no themes and no media */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; width: 100%; text-align: center; } /* ms */ /* Background Color for Site Status */ .wp-list-table .site-deleted, .wp-list-table tr.site-deleted, .wp-list-table .site-archived, .wp-list-table tr.site-archived { background: #fcf0f1; } .wp-list-table .site-spammed, .wp-list-table tr.site-spammed, .wp-list-table .site-mature, .wp-list-table tr.site-mature { background: #fcf9e8; } .sites.fixed .column-lastupdated, .sites.fixed .column-registered { width: 20%; } .sites.fixed .column-users { width: 80px; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 1100px) and (min-width: 782px), (max-width: 480px) { .plugin-card .action-links { position: static; margin-left: 148px; width: auto; } .plugin-action-buttons { float: none; margin: 1em 0 0; text-align: left; } .plugin-action-buttons li { display: inline-block; vertical-align: middle; } .plugin-action-buttons li .button { margin-right: 20px; } .plugin-card h3 { margin-right: 24px; } .plugin-card .name, .plugin-card .desc { margin-right: 0; } .plugin-card .desc p:first-of-type { margin-top: 0; } } @media screen and (max-width: 782px) { /* WP List Table Options & Filters */ .tablenav { height: auto; } .tablenav.top { margin: 20px 0 5px; } .tablenav.bottom { position: relative; margin-top: 15px; } .tablenav br { display: none; } .tablenav br.clear { display: block; } .tablenav.top .actions, .tablenav .view-switch { display: none; } .view-switch a { width: 36px; height: 36px; line-height: 2.53846153; } /* Pagination */ .tablenav.top .displaying-num { display: none; } .tablenav.bottom .displaying-num { position: absolute; right: 0; top: 11px; margin: 0; font-size: 14px; } .tablenav .tablenav-pages { width: 100%; text-align: center; margin: 0 0 25px; } .tablenav.bottom .tablenav-pages { margin-top: 25px; } .tablenav.top .tablenav-pages.one-page { display: none; } .tablenav.bottom .actions select { margin-bottom: 5px; } .tablenav.bottom .actions.alignleft + .actions.alignleft { clear: left; margin-top: 10px; } .tablenav.bottom .tablenav-pages.one-page { margin-top: 15px; height: 0; } .tablenav-pages .pagination-links { font-size: 16px; } .tablenav .tablenav-pages .button, .tablenav .tablenav-pages .tablenav-pages-navspan { min-width: 40px; min-height: 40px; padding: 10px 8px; font-size: 18px; line-height: 1; } .tablenav-pages .pagination-links .current-page { min-width: 40px; padding: 10px 6px; font-size: 16px; line-height: 1.125; } /* WP List Table Adjustments: General */ .form-wrap > p { display: none; } .wp-list-table th.column-primary ~ th, .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { display: none; } .wp-list-table thead th.column-primary { width: 100%; } /* Checkboxes need to show */ .wp-list-table tr th.check-column { display: table-cell; } .wp-list-table .check-column { width: 2.5em; } .wp-list-table .column-primary .toggle-row { display: block; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { position: relative; clear: both; width: auto !important; /* needs to override some columns that are more specifically targeted */ } .wp-list-table td.column-primary { padding-right: 50px; /* space for toggle button */ } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) { padding: 3px 8px 3px 35%; } .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before { position: absolute; left: 10px; /* match padding of regular table cell */ display: block; overflow: hidden; width: 32%; /* leave a little space for a gutter */ content: attr(data-colname); white-space: nowrap; text-overflow: ellipsis; } .wp-list-table .is-expanded td:not(.hidden) { display: block !important; overflow: hidden; /* clearfix */ } /* Special cases */ .widefat .num, .column-posts { text-align: left; } #comments-form .fixed .column-author, #commentsdiv .fixed .column-author { display: none !important; } .fixed .column-comment .comment-author { display: block; } /* Comment author hidden via Screen Options */ .fixed .column-author.hidden ~ .column-comment .comment-author { display: none; } #the-comment-list .is-expanded td { box-shadow: none; } #the-comment-list .is-expanded td:last-child { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } /* Show comment bubble as text instead */ .post-com-count .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .column-response .post-com-count-no-comments:after, .column-response .post-com-count-approved:after, .column-comments .post-com-count-no-comments:after, .column-comments .post-com-count-approved:after { content: none; } .column-response .post-com-count [aria-hidden="true"], .column-comments .post-com-count [aria-hidden="true"] { display: none; } .column-response .post-com-count-wrapper, .column-comments .post-com-count-wrapper { white-space: normal; } .column-response .post-com-count-wrapper > a, .column-comments .post-com-count-wrapper > a { display: block; } .column-response .post-com-count-no-comments, .column-response .post-com-count-approved, .column-comments .post-com-count-no-comments, .column-comments .post-com-count-approved { margin-top: 0; margin-right: 0.5em; } .column-response .post-com-count-pending, .column-comments .post-com-count-pending { position: static; height: auto; min-width: 0; padding: 0; border: none; border-radius: 0; background: none; color: #b32d2e; font-size: inherit; line-height: inherit; text-align: left; } .column-response .post-com-count-pending:hover, .column-comments .post-com-count-pending:hover { color: #d63638; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 10px; } .row-actions { margin-right: -8px; padding-top: 4px; } /* Make row actions more easy to select on mobile */ body:not(.plugins-php) .row-actions { display: flex; flex-wrap: wrap; gap: 8px; color: transparent; } .row-actions span { font-size: 0; } .row-actions span a, .row-actions span .button-link { display: inline-block; padding: 4px 16px 4px 0; font-size: 13px; line-height: 1.5; } .row-actions span.approve:before, .row-actions span.unapprove:before { content: "| "; } /* Quick Edit and Bulk Edit */ #wpbody-content .quick-edit-row-post .inline-edit-col-left, #wpbody-content .quick-edit-row-post .inline-edit-col-right, #wpbody-content .inline-edit-row-post .inline-edit-col-center, #wpbody-content .quick-edit-row-page .inline-edit-col-left, #wpbody-content .quick-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row-post .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-left, #wpbody-content .bulk-edit-row-page .inline-edit-col-right, #wpbody-content .bulk-edit-row .inline-edit-col-bottom { float: none; width: 100%; padding: 0; } #the-list .inline-edit-row .inline-edit-legend, .inline-edit-row span.title { font-size: 16px; } .inline-edit-row p.howto { font-size: 14px; } #wpbody-content .inline-edit-row-page .inline-edit-col-right { margin-top: 0; } #wpbody-content .quick-edit-row fieldset .inline-edit-col label, #wpbody-content .quick-edit-row fieldset .inline-edit-group label, #wpbody-content .bulk-edit-row fieldset .inline-edit-col label, #wpbody-content .bulk-edit-row fieldset .inline-edit-group label { max-width: none; float: none; margin-bottom: 5px; } #wpbody .bulk-edit-row fieldset select { display: block; width: 100%; max-width: none; box-sizing: border-box; } .inline-edit-row select, .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { min-height: 40px; } .inline-edit-row fieldset input[name=jj], .inline-edit-row fieldset input[name=hh], .inline-edit-row fieldset input[name=mn], .inline-edit-row fieldset input[name=aa] { font-size: 16px; line-height: 2; padding: 3px 4px; } #bulk-titles .ntdelbutton, #bulk-titles .ntdeltitle, .inline-edit-row fieldset ul.cat-checklist label { padding: 6px 0; font-size: 16px; line-height: 28px; } #bulk-titles .ntdelitem { padding-left: 37px; } #bulk-titles .ntdelbutton { width: 40px; height: 40px; margin: 0 0 0 -40px; overflow: hidden; } #bulk-titles .ntdelbutton:before { font-size: 20px; line-height: 28px; } .inline-edit-row fieldset label span.title, .inline-edit-row fieldset.inline-edit-date legend { float: none; } .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags { padding: 0; } .inline-edit-row fieldset label span.input-text-wrap, .inline-edit-row fieldset .timestamp-wrap { margin-left: 0; } .inline-edit-row .inline-edit-or { margin: 0 6px 0 0; } #edithead .inside, #commentsdiv #edithead .inside { float: none; text-align: left; padding: 3px 5px; } #commentsdiv #edithead .inside input, #edithead .inside input { width: 100%; } #edithead label { display: block; } /* Updates */ #wpbody-content .updates-table .plugin-title { width: auto; white-space: normal; } /* Links */ .link-manager-php #posts-filter { margin-top: 25px; } .link-manager-php .tablenav.bottom { overflow: hidden; } /* List tables that don't toggle rows */ .comments-box .toggle-row, .wp-list-table.plugins .toggle-row { display: none; } /* Plugin/Theme Management */ #wpbody-content .wp-list-table.plugins td { display: block; width: auto; padding: 10px 9px; /* reset from other list tables that have a label at this width */ } #wpbody-content .wp-list-table.plugins .plugin-deleted-tr td, #wpbody-content .wp-list-table.plugins .no-items td { display: table-cell; } /* Plugin description hidden via Screen Options */ #wpbody-content .wp-list-table.plugins .desc.hidden { display: none; } #wpbody-content .wp-list-table.plugins .column-description { padding-top: 2px; } #wpbody-content .wp-list-table.plugins .plugin-title, #wpbody-content .wp-list-table.plugins .theme-title { padding-right: 12px; white-space: normal; } .wp-list-table.plugins .plugin-title, .wp-list-table.plugins .theme-title { padding-top: 13px; padding-bottom: 4px; } .plugins #the-list tr > td:not(:last-child), .plugins #the-list .update th, .plugins #the-list .update td, .wp-list-table.plugins #the-list .theme-title { box-shadow: none; border-top: none; } .plugins #the-list tr td { border-top: none; } .plugins tbody { padding: 1px 0 0; } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td.column-description, .plugins .plugin-update-tr:before { box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugins tr.active + tr.inactive th.check-column, .plugins tr.active + tr.inactive td { border-top: none; } /* mimic the checkbox th */ .plugins .plugin-update-tr:before { content: ""; display: table-cell; } .plugins #the-list .plugin-update-tr .plugin-update { border-left: none; } .plugin-update-tr .update-message { margin-left: 0; } .plugins .active.update + .plugin-update-tr:before, .plugins .active.updated + .plugin-update-tr:before { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-left: 4px solid var(--wp-admin-theme-color); } .plugins .plugin-update-tr .update-message { margin-left: 0; } .wp-list-table.plugins .plugin-title strong, .wp-list-table.plugins .theme-title strong { font-size: 1.4em; line-height: 1.5; } .plugins tbody th.check-column { padding: 8px 0 0 5px; } .plugins thead td.check-column, .plugins tfoot td.check-column, .plugins .inactive th.check-column { padding-left: 9px; } /* Add New plugins page */ table.plugin-install .column-name, table.plugin-install .column-version, table.plugin-install .column-rating, table.plugin-install .column-description { display: block; width: auto; } table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description { display: none; } table.plugin-install td.column-name strong { font-size: 1.4em; line-height: 1.6em; } table.plugin-install #the-list td { box-shadow: none; } table.plugin-install #the-list tr { display: block; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .plugin-card { margin-left: 0; margin-right: 0; width: 100%; } table.media .column-title .has-media-icon ~ .row-actions { margin-left: 0; clear: both; } } @media screen and (max-width: 480px) { .tablenav-pages .current-page { margin: 0; } .tablenav.bottom .displaying-num { position: relative; top: 0; display: block; text-align: right; padding-bottom: 0.5em; } .tablenav.bottom .tablenav-pages.one-page { height: auto; } .tablenav-pages .tablenav-paging-text { float: left; width: 100%; padding-top: 0.5em; } } css/l10n-rtl.min.css000066600000006204152330733730010215 0ustar00/*! This file is auto-generated */ body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}body[class*=locale-de-] .inline-edit-row fieldset label span.title,body[class*=locale-de-] .inline-edit-row fieldset.inline-edit-date legend{width:7em}body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:7em}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-right:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title,.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,body[class*=locale-de-] .quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-right:0}}css/install-rtl.min.css000066600000012220152330733730011104 0ustar00/*! This file is auto-generated */ html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:var(--wp-admin-theme-color)}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:var(--wp-admin-theme-color-darker-20);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:10px 0 10px 20px;width:115px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table .setup-description{margin:4px 0 0;line-height:1.6}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}.wp-pwd{margin-top:0}.form-table .wp-pwd{display:flex;column-gap:4px}.form-table .password-input-wrapper{width:100%}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:100%}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 0 16px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-right:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}#pwd{padding-left:2.5rem}.wp-pwd #pass1{padding-left:50px}.wp-pwd .button.wp-hide-pw{left:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:var(--wp-admin-theme-color-darker-20)}.language-chooser .step{text-align:left}.screen-reader-input,.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-left:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}css/dashboard-rtl.css000066600000073347152330733730010624 0ustar00/*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody-content #dashboard-widgets.columns-2 .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets.columns-2 #postbox-container-2, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 { float: left; width: 50.5%; } #wpbody-content #dashboard-widgets.columns-3 .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 { float: left; } #wpbody-content #dashboard-widgets.columns-4 .postbox-container { width: 25%; } #dashboard-widgets .postbox-container { width: 25%; } #dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container { border: none !important; } #dashboard-widgets-wrap { overflow: hidden; margin: 0 -8px; } #dashboard-widgets .postbox { border-radius: 8px; } #dashboard-widgets .postbox-header .hndle { padding: 12px 16px; } #dashboard-widgets .postbox .inside { margin-bottom: 0; } #dashboard-widgets .meta-box-sortables { display: flow-root; /* avoid margin collapsing between parent and first/last child elements */ /* Required min-height to make the jQuery UI Sortable drop zone work. */ min-height: 0; margin: 0 8px 20px; } #dashboard-widgets .meta-box-sortables:not(:empty) { margin-bottom: 16px; } #dashboard-widgets .postbox-container .empty-container { outline: 2px dashed rgb(0, 0, 0, 0.15); outline-offset: -2px; border-radius: 8px; height: 250px; margin: 4px; } /* Only highlight drop zones when dragging. */ .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); min-height: 100px; } .is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container { background: rgb(0, 0, 0, 0.01); } #dashboard-widgets .postbox-container .empty-container:after { content: attr(data-emptystring); margin: auto; position: absolute; top: 50%; right: 0; left: 0; transform: translateY( -50% ); padding: 0 2em; text-align: center; color: #646970; font-size: 16px; line-height: 1.5; display: none; } /* @todo: this was originally in this section, but likely belongs elsewhere */ #the-comment-list td.comment p.comment-author { margin-top: 0; margin-right: 0; } #the-comment-list p.comment-author img { float: right; margin-left: 8px; } #the-comment-list p.comment-author strong a { border: none; } #the-comment-list td { vertical-align: top; } #the-comment-list td.comment { word-wrap: break-word; } #the-comment-list td.comment img { max-width: 100%; } /* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */ .index-php #screen-meta-links { margin: 0 0 8px 20px; } /* Welcome Panel */ .welcome-panel { position: relative; overflow: auto; margin: 16px 0; border-radius: 8px; font-size: 14px; line-height: 1.3; clear: both; } .welcome-panel h2 { margin: 0; font-size: 48px; font-weight: 600; line-height: 1.25; } .welcome-panel h3 { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.4; } .welcome-panel p { font-size: inherit; line-height: inherit; } .welcome-panel-header { position: relative; color: #fff; } .welcome-panel-header-image { position: absolute !important; top: 0; left: 0; bottom: 0; right: 0; z-index: 0 !important; overflow: hidden; } .welcome-panel-header-image svg { display: block; margin: auto; width: 100%; height: 100%; } .rtl .welcome-panel-header-image svg { transform: scaleX(-1); } .welcome-panel-header * { color: inherit; position: relative; z-index: 1; } .welcome-panel-header a:focus, .welcome-panel-header a:hover { color: inherit; text-decoration: none; } .welcome-panel-header a:focus, .welcome-panel .welcome-panel-close:focus { outline-color: currentColor; outline-offset: 1px; box-shadow: none; } .welcome-panel-header p { margin: 0.5em 0 0; font-size: 20px; line-height: 1.4; } .welcome-panel .welcome-panel-close { display: flex; align-items: center; position: absolute; top: 10px; left: 10px; padding: 10px 15px; font-size: 13px; line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ text-decoration: none; z-index: 1; /* Raise above the version image. */ } .welcome-panel .welcome-panel-close:before { transition: all .1s ease-in-out; content: '\f335'; font-size: 24px; color: #fff; } .welcome-panel .welcome-panel-close { color: #fff; } .welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:focus::before { color: #fff972; } /* @deprecated 5.9.0 -- Button removed from panel. */ .wp-core-ui .welcome-panel .button.button-hero { margin: 15px 0 3px 13px; padding: 12px 36px; height: auto; line-height: 1.4285714; white-space: normal; } .welcome-panel-content { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; } .welcome-panel-header-wrap { background-color: #151515; } .welcome-panel-header { box-sizing: border-box; margin-right: auto; margin-left: auto; max-width: 1500px; width: 100%; padding: 48px 48px 80px 0; } .welcome-panel .welcome-panel-column-container { box-sizing: border-box; width: 100%; clear: both; display: grid; z-index: 1; padding: 24px; grid-template-columns: repeat(3, 1fr); gap: 32px; align-self: flex-end; background: #ffffff; border: 1px solid #c3c4c7; border-top: 0; border-radius: 0 0 8px 8px; } [class*="welcome-panel-icon"] { height: 60px; width: 60px; background-position: center; background-size: 24px 24px; background-repeat: no-repeat; border-radius: 100%; } .welcome-panel-column > svg { margin-top: 4px; } .welcome-panel-column { display: grid; grid-template-columns: min-content 1fr; gap: 24px; } .welcome-panel-icon-pages { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E"); } .welcome-panel-icon-layout { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E"); } .welcome-panel-icon-styles { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E"); } /* @deprecated 5.9.0 -- Section removed from welcome panel. */ .welcome-panel .welcome-widgets-menus { line-height: 1.14285714; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.8em 0 1em 1em; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li { font-size: 14px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li a { text-decoration: none; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { line-height: 1.14285714; list-style-type: none; padding: 0 0 8px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon { background: transparent !important; } /* Welcome Panel and Right Now common Icons style */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon:before, #dashboard_right_now li a:before, #dashboard_right_now li span:before, #dashboard_right_now .search-engines-info:before { color: #646970; font: normal 20px/1 dashicons; display: inline-block; padding: 0 0 0 10px; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; vertical-align: top; } /* Welcome Panel specific Icons styles */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-edit-page:before { content: "\f119"; content: "\f119" / ''; top: -3px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-add-page:before { content: "\f132"; content: "\f132" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-setup-home:before { content: "\f102"; content: "\f102" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-view-site:before { content: "\f115"; content: "\f115" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets-menus:before { content: "\f116"; content: "\f116" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets:before { content: "\f538"; content: "\f538" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-menus:before { content: "\f163"; content: "\f163" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-comments:before { content: "\f117"; content: "\f117" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-learn-more:before { content: "\f118"; content: "\f118" / ''; top: -1px; } /* Right Now specific Icons styles */ #dashboard_right_now .search-engines-info:before, #dashboard_right_now li a:before, #dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */ padding: 0 0 0 5px; /* generic icon for items added by CPTs ? */ content: "\f159"; content: "\f159" / ''; } #dashboard_right_now .page-count a:before, #dashboard_right_now .page-count span:before { content: "\f105"; content: "\f105" / ''; } #dashboard_right_now .post-count a:before, #dashboard_right_now .post-count span:before { content: "\f109"; content: "\f109" / ''; } #dashboard_right_now .comment-count a:before { content: "\f101"; content: "\f101" / ''; } #dashboard_right_now .comment-mod-count a:before { content: "\f125"; content: "\f125" / ''; } #dashboard_right_now .storage-count a:before { content: "\f104"; content: "\f104" / ''; } #dashboard_right_now .storage-count.warning a:before { content: "\f153"; content: "\f153" / ''; } #dashboard_right_now .search-engines-info:before { content: "\f348"; content: "\f348" / ''; color: #d63638; } /* Dashboard WordPress events */ .community-events-errors { margin: 0; } .community-events-loading { padding: 10px 12px 8px; } .community-events { margin-bottom: 6px; padding: 0 12px; } .community-events .spinner { margin: 0 2px 0; } .community-events-errors[aria-hidden="true"], .community-events-errors [aria-hidden="true"], .community-events-loading[aria-hidden="true"], .community-events[aria-hidden="true"], .community-events form[aria-hidden="true"] { display: none; } .community-events .activity-block:first-child, .community-events h2 { padding-top: 12px; padding-bottom: 10px; } .community-events-form { margin: 15px 0 5px; display: flex; gap: 5px; align-items: center; flex-wrap: wrap; } .community-events-form .regular-text { width: 40%; margin: 0; min-height: 32px; padding: 0 8px; } #dashboard-widgets .community-events-form .button { min-height: 32px; line-height: 2.30769231; padding: 0 12px; } .community-events li.event-none { border-right: 4px solid var(--wp-admin-theme-color, #3858e9); } #dashboard-widgets .community-events li.event-none a { text-decoration: underline; } .community-events-form label { line-height: 2.14285714; } .community-events .activity-block > p { margin-bottom: 0; display: inline; } .community-events-toggle-location { vertical-align: middle; } /* Needs higher specificity than #dashboard-widgets .button-link */ #dashboard-widgets .community-events-cancel.button-link { text-decoration: underline; } .community-events ul { background-color: rgba(var(--wp-admin-theme-color--rgb),.08); padding-right: 0; padding-left: 0; padding-bottom: 0; } .community-events li { margin: 0; padding: 8px 12px; color: #2c3338; } .community-events li:first-child { border-top: 1px solid #e9e9ed; } .community-events li ~ li { border-top: 1px solid #e9e9ed; } .community-events .activity-block.last { border-bottom: 1px solid #e9e9ed; padding-top: 0; margin-top: -1px; } .community-events .event-info { display: block; } .community-events .ce-separator::before { content: "\2022"; content: "\2022" / ''; } .event-icon { height: 18px; padding-left: 10px; width: 18px; display: none; /* Hide on smaller screens */ } .event-icon:before { color: #646970; font-size: 18px; } .event-meetup .event-icon:before { content: "\f484"; content: "\f484" / ''; } .event-wordcamp .event-icon:before { content: "\f486"; content: "\f486" / ''; } .community-events .event-title { font-weight: 600; display: block; } .community-events .event-date, .community-events .event-time { display: block; } .community-events-footer { margin-top: 0; margin-bottom: 0; padding: 12px; border-top: 1px solid #f0f0f1; color: #646970; } /* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */ .community-events-footer .screen-reader-text { height: inherit; white-space: nowrap; } /* Dashboard WordPress news */ #dashboard_primary .inside { margin: 0; padding: 0; } #dashboard_primary .widget-loading { padding: 12px 12px 0; margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */ } /* Notice when JS is off. */ #dashboard_primary .inside .notice { margin: 0; } body #dashboard-widgets .postbox form .submit { margin: 0; } /* Used only for configurable widgets. */ .dashboard-widget-control-form p { margin-top: 0; } .rssSummary { color: #646970; margin-top: 4px; } #dashboard_primary .rss-widget { font-size: 13px; padding: 0 12px; } #dashboard_primary .rss-widget:last-child { border-bottom: none; padding-bottom: 8px; } #dashboard_primary .rss-widget a { font-weight: 400; } #dashboard_primary .rss-widget span, #dashboard_primary .rss-widget span.rss-date { color: #646970; } #dashboard_primary .rss-widget span.rss-date { margin-right: 12px; } #dashboard_primary .rss-widget ul li { padding: 4px 0; margin: 0; } /* Dashboard right now */ #dashboard_right_now ul { margin: 0; /* contain floats but don't use overflow: hidden */ display: inline-block; width: 100%; } #dashboard_right_now li { width: 50%; float: right; margin-bottom: 10px; } #dashboard_right_now .main p { margin: 0; } #dashboard_right_now #wp-version-message .button { float: left; position: relative; top: -5px; margin-right: 5px; } #dashboard_right_now p.search-engines-info { margin: 1em 0; } .mu-storage { overflow: hidden; } #dashboard-widgets h3.mu-storage { margin: 0 0 10px; padding: 0; font-size: 14px; font-weight: 400; } #network_dashboard_right_now p input { margin: 2px 1px; vertical-align: middle; } /* Dashboard right now - Colors */ #dashboard_right_now .sub { color: #50575e; background: #f6f7f7; border-top: 1px solid #f0f0f1; padding: 10px 12px 6px; } #dashboard_right_now .sub h3 { color: #50575e; } #dashboard_right_now .sub p { margin: 0 0 1em; } #dashboard_right_now .warning a:before, #dashboard_right_now .warning span:before { color: #d63638; } /* Dashboard Quick Draft */ #dashboard_quick_press .inside { margin: 0; padding: 0; } #dashboard_quick_press div.updated { margin-bottom: 10px; border: 1px solid #f0f0f1; border-width: 1px 0 1px 1px; } #dashboard_quick_press form { margin: 12px; } #dashboard_quick_press .drafts { padding: 10px 0 0; } /* Dashboard Quick Draft - Form styling */ #dashboard_quick_press label { display: inline-block; margin-bottom: 4px; } #dashboard_quick_press input, #dashboard_quick_press textarea { box-sizing: border-box; margin: 0; } #dashboard-widgets .postbox form .submit { margin: -39px 0; float: left; } #description-wrap { margin-top: 12px; } #quick-press textarea#content { min-height: 90px; max-height: 1300px; margin: 0 0 8px; padding: 8px 12px; resize: none; } /* Dashboard Quick Draft - Drafts list */ .js #dashboard_quick_press .drafts { border-top: 1px solid #f0f0f1; } #dashboard_quick_press .drafts abbr { border: none; } #dashboard_quick_press .drafts .view-all { float: left; margin: 0 0 0 12px; } #dashboard_primary a.rsswidget { font-weight: 400; } #dashboard_quick_press .drafts ul { margin: 0 12px; } #dashboard_quick_press .drafts li { margin-bottom: 1em; } #dashboard_quick_press .drafts li time { color: #646970; } #dashboard_quick_press .drafts p { margin: 0; word-wrap: break-word; } #dashboard_quick_press .draft-title { word-wrap: break-word; } #dashboard_quick_press .draft-title a, #dashboard_quick_press .draft-title time { margin: 0 0 0 5px; } /* Dashboard common styles */ #dashboard-widgets h4, /* Back-compat for pre-4.4 */ #dashboard-widgets h3, #dashboard_quick_press .drafts h2 { margin: 0 12px 8px; padding: 0; font-size: 14px; font-weight: 400; color: #1d2327; } #dashboard_quick_press .drafts h2 { line-height: inherit; } #dashboard-widgets .inside h4, /* Back-compat for pre-4.4 */ #dashboard-widgets .inside h3 { margin-right: 0; margin-left: 0; } /* Dashboard activity widget */ #dashboard_activity .comment-meta span.approve:before { content: "\f227"; content: "\f227" / ''; font: 20px/.5 dashicons; margin-right: 5px; vertical-align: middle; position: relative; top: -1px; margin-left: 2px; } #dashboard_activity .inside { margin: 0; padding: 0 12px; } #dashboard_activity .no-activity { overflow: hidden; padding: 12px 0; text-align: center; } #dashboard_activity .no-activity p { color: #646970; font-size: 16px; } #dashboard_activity .subsubsub { float: none; border-top: 1px solid #f0f0f1; margin: 0 -12px; padding: 8px 12px 4px; } #dashboard_activity .subsubsub a .count, #dashboard_activity .subsubsub a.current .count { color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */ } #future-posts ul, #published-posts ul { margin: 8px -12px 0 -12px; } #future-posts li, #published-posts li { display: grid; grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; column-gap: 10px; color: #646970; padding: 4px 12px; } #future-posts li:nth-child(odd), #published-posts li:nth-child(odd) { background-color: #f6f7f7; } .activity-block { border-bottom: 1px solid #f0f0f1; margin: 0 -12px 6px -12px; padding: 8px 12px 4px; } .activity-block:last-child { border-bottom: none; margin-bottom: 0; } .activity-block .subsubsub li { color: #646970; } /* Dashboard activity widget - Comments */ /* @todo: needs serious de-duplication */ #activity-widget #the-comment-list tr.undo, #activity-widget #the-comment-list div.undo { background: none; padding: 6px 0; margin-right: 12px; } #activity-widget #the-comment-list .comment-item { background: #f6f7f7; padding: 12px; position: relative; } #activity-widget #the-comment-list .avatar { position: absolute; top: 12px; } #activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar { padding-right: 63px; } #activity-widget #the-comment-list .dashboard-comment-wrap blockquote { margin: 1em 0; } #activity-widget #the-comment-list .comment-item p.row-actions { margin: 4px 0 0; } #activity-widget #the-comment-list .comment-item:first-child { border-top: 1px solid #f0f0f1; } #activity-widget #the-comment-list .unapproved { background-color: #fcf9e8; } #activity-widget #the-comment-list .unapproved:before { content: ""; display: block; position: absolute; right: 0; top: 0; bottom: 0; background: #d63638; width: 4px; } #activity-widget #the-comment-list .spam-undo-inside .avatar, #activity-widget #the-comment-list .trash-undo-inside .avatar { position: relative; top: 0; } /* Browse happy box */ #dashboard-widgets #dashboard_browser_nag.postbox .inside { margin: 10px; } .postbox .button-link .edit-box { display: none; } .edit-box { opacity: 0; } .hndle:hover .edit-box, .edit-box:focus { opacity: 1; } #dashboard-widgets form .input-text-wrap input { width: 100%; } #dashboard-widgets form .textarea-wrap textarea { width: 100%; } #dashboard-widgets .postbox form .submit { float: none; margin: .5em 0 0; padding: 0; border: none; } #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { min-width: 0; } #dashboard-widgets li a, #dashboard-widgets .button-link, .community-events-footer a { text-decoration: none; } #dashboard-widgets h2 a { text-decoration: underline; } #dashboard-widgets .hndle .postbox-title-action { float: left; line-height: 1.2; } #dashboard_plugins h5 { font-size: 14px; } /* Recent Comments */ #latest-comments #the-comment-list { position: relative; margin: 0 -12px; } #activity-widget #the-comment-list .comment, #activity-widget #the-comment-list .pingback { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); } #activity-widget .comments #the-comment-list .alt { background-color: transparent; } #activity-widget #latest-comments #the-comment-list .comment-item { /* the row-actions paragraph is output only for users with 'edit_comment' capabilities, for other users this needs a min height equal to the gravatar image */ min-height: 50px; margin: 0; padding: 12px; } #latest-comments #the-comment-list .pingback { padding-right: 12px !important; } #latest-comments #the-comment-list .comment-item:first-child { border-top: none; } #latest-comments #the-comment-list .comment-meta { line-height: 1.5; margin: 0; color: #646970; } #latest-comments #the-comment-list .comment-meta cite { font-style: normal; font-weight: 400; } #latest-comments #the-comment-list .comment-item blockquote, #latest-comments #the-comment-list .comment-item blockquote p { margin: 0; padding: 0; display: inline; } #latest-comments #the-comment-list .comment-item p.row-actions { margin: 3px 0 0; padding: 0; font-size: 13px; } /* Feeds */ .rss-widget ul { margin: 0; padding: 0; list-style: none; } a.rsswidget { font-size: 13px; font-weight: 600; line-height: 1.4; } .rss-widget ul li { line-height: 1.5; margin-bottom: 12px; } .rss-widget span.rss-date { color: #646970; font-size: 13px; margin-right: 3px; } .rss-widget cite { display: block; text-align: left; margin: 0 0 1em; padding: 0; } .rss-widget cite:before { content: "\2014"; content: "\2014" / ''; } .dashboard-comment-wrap { word-wrap: break-word; } /* Browser Nag */ #dashboard_browser_nag a.update-browser-link { font-size: 1.2em; font-weight: 600; } #dashboard_browser_nag a { text-decoration: underline; } #dashboard_browser_nag p.browser-update-nag.has-browser-icon { padding-left: 128px; } #dashboard_browser_nag .browser-icon { margin-top: -32px; } #dashboard_browser_nag.postbox { background-color: #b32d2e; background-image: none; border-color: #b32d2e; color: #fff; box-shadow: none; } #dashboard_browser_nag.postbox h2 { border-bottom-color: transparent; background: transparent none; color: #fff; box-shadow: none; } #dashboard_browser_nag a { color: #fff; } #dashboard_browser_nag.postbox .postbox-header { border-color: transparent; } #dashboard_browser_nag h2.hndle { border: none; font-weight: 600; font-size: 20px; padding-top: 10px; } .postbox#dashboard_browser_nag p a.dismiss { font-size: 14px; } .postbox#dashboard_browser_nag p, .postbox#dashboard_browser_nag a, .postbox#dashboard_browser_nag p.browser-update-nag { font-size: 16px; } /* PHP Nag */ #dashboard_php_nag .dashicons-warning { color: #dba617; padding-left: 6px; } #dashboard_php_nag.php-no-security-updates .dashicons-warning, #dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning { color: #d63638; } #dashboard_php_nag h2 { display: inline-block; } #dashboard_php_nag p { margin: 12px 0; } .bigger-bolder-text { font-weight: 600; font-size: 14px; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 1600px) { .welcome-panel .welcome-panel-column-container { display: flex; justify-content: center; } .welcome-panel-column { width: 100%; max-width: 460px; } } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content #dashboard-widgets .postbox-container { width: 100%; } #dashboard-widgets .meta-box-sortables { min-height: 0; } .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { min-height: 100px; } #dashboard-widgets .meta-box-sortables.empty-container { margin-bottom: 0; } } /* two columns on the dash, but keep the setting if one is selected */ @media only screen and (min-width: 800px) and (max-width: 1499px) { #wpbody-content #dashboard-widgets .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets #postbox-container-2, #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: left; width: 50.5%; } #dashboard-widgets #postbox-container-3 .empty-container, #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-3 .empty-container:after, #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; } /* show the radio buttons for column prefs only for one or two columns */ .index-php .screen-layout, .index-php .columns-prefs { display: block; } .columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* three columns on the dash */ @media only screen and (min-width: 1500px) and (max-width: 1800px) { #wpbody-content #dashboard-widgets .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: left; } #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* Always show the "Drag boxes here" CSS generated content on large screens. */ @media only screen and (min-width: 1801px) { #dashboard-widgets .postbox-container .empty-container:after { display: block; } } @media screen and (max-width: 870px) { /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { display: inline-block; margin-left: 13px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.4em 0 0; } } @media screen and (max-width: 1180px) and (min-width: 783px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (max-width: 782px) { .welcome-panel .welcome-panel-column-container { grid-template-columns: 1fr; box-sizing: border-box; padding: 32px; width: 100%; } .welcome-panel .welcome-panel-column-content { max-width: 520px; } /* Keep the close icon from overlapping the Welcome text. */ .welcome-panel .welcome-panel-close { overflow: hidden; text-indent: 40px; white-space: nowrap; width: 20px; height: 20px; padding: 5px; top: 5px; left: 5px; } .welcome-panel .welcome-panel-close::before { position: absolute; top: 5px; right: -35px; } #dashboard-widgets h2 { padding: 12px; } #dashboard_recent_comments #the-comment-list .comment-item .avatar { height: 30px; width: 30px; margin: 4px 0 5px 10px; } .community-events-toggle-location { height: 38px; vertical-align: baseline; } #community-events-submit { margin-bottom: 0; } .community-events-form label, #dashboard-widgets .community-events-cancel.button-link { /* Same properties as the submit button for cross-browsers alignment. */ font-size: 14px; line-height: normal; padding: 6px 0; border: 1px solid transparent; } } /* Smartphone */ @media screen and (max-width: 600px) { .welcome-panel-header { padding: 32px 32px 64px; } .welcome-panel-header-image { display: none; } } @media screen and (max-width: 480px) { .welcome-panel-column { gap: 16px; } } @media screen and (max-width: 360px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (min-width: 355px) { .community-events .event-info { display: table-row; float: right; max-width: 59%; } .event-icon, .event-icon[aria-hidden="true"] { display: table-cell; } .event-info-inner { display: table-cell; } .community-events .event-date-time { float: left; max-width: 39%; } .community-events .event-date, .community-events .event-time { text-align: left; } } css/l10n.css000066600000010674152330733730006642 0ustar00/*------------------------------------------------------------------------------ 27.0 - Localization ------------------------------------------------------------------------------*/ /* RTL except Hebrew (see below): Tahoma as the first font; */ body.rtl, body.rtl .press-this a.wp-switch-editor { font-family: Tahoma, Arial, sans-serif; } /* Arial is best for RTL headings. */ .rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6 { font-family: Arial, sans-serif; font-weight: 600; } /* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */ body.locale-he-il, body.locale-he-il .press-this a.wp-switch-editor { font-family: Arial, sans-serif; } /* he_IL: Have be bold rather than italic. */ .locale-he-il em { font-style: normal; font-weight: 600; } /* zh_CN: Remove italic properties. */ .locale-zh-cn .howto, .locale-zh-cn .tablenav .displaying-num, .locale-zh-cn .js .input-with-default-title, .locale-zh-cn .link-to-original, .locale-zh-cn .inline-edit-row fieldset span.title, .locale-zh-cn .inline-edit-row fieldset span.checkbox-title, .locale-zh-cn #utc-time, .locale-zh-cn #local-time, .locale-zh-cn p.install-help, .locale-zh-cn p.help, .locale-zh-cn p.description, .locale-zh-cn span.description, .locale-zh-cn .form-wrap p { font-style: normal; } /* zh_CN: Enlarge dashboard widget 'Configure' link */ .locale-zh-cn .hdnle a { font-size: 12px; } /* zn_CH: Enlarge font size, set font-size: normal */ .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; } /* zh_CN: Enlarge font-size. */ .locale-zh-cn #sort-buttons { font-size: 1em !important; } /* de_DE: Text needs more space for translation */ .locale-de-de #customize-header-actions .button, .locale-de-de-formal #customize-header-actions .button { padding: 0 5px 1px; /* default 0 10px 1px */ } .locale-de-de #customize-header-actions .spinner, .locale-de-de-formal #customize-header-actions .spinner { margin: 16px 3px 0; /* default 16px 4px 0 5px */ } body[class*="locale-de-"] .inline-edit-row fieldset label span.title, body[class*="locale-de-"] .inline-edit-row fieldset.inline-edit-date legend { width: 7em; /* default 6em */ } body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap, body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap { margin-left: 7em; /* default 6em */ } /* ru_RU: Text needs more room to breathe. */ .locale-ru-ru #adminmenu { width: inherit; /* back-compat for pre-3.2 */ } .locale-ru-ru #adminmenu, .locale-ru-ru #wpbody { margin-left: 0; /* back-compat for pre-3.2 */ } .locale-ru-ru .inline-edit-row fieldset label span.title, .locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend { width: 8em; /* default 6em */ } .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap, .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap { margin-left: 8em; /* default 6em */ } .locale-ru-ru.post-php .tagsdiv .newtag, .locale-ru-ru.post-new-php .tagsdiv .newtag { width: 165px; /* default 180px - 15px */ } .locale-ru-ru.press-this .posting { margin-right: 277px; /* default 252px + 25px */ } .locale-ru-ru .press-this-sidebar { width: 265px; /* default 240px + 25px */ } .locale-ru-ru #customize-header-actions .button { padding: 0 5px 1px; /* default 0 10px 1px */ } .locale-ru-ru #customize-header-actions .spinner { margin: 16px 3px 0; /* default 16px 4px 0 5px */ } /* lt_LT: QuickEdit */ .locale-lt-lt .inline-edit-row fieldset label span.title, .locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend { width: 8em; /* default 6em */ } .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap, .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap { margin-left: 8em; /* default 6em */ } /* Fix overridden width for adjusted locales */ body[class*="locale-de-"] .quick-edit-row-post fieldset.inline-edit-col-right label span.title, .locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title, .locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; } @media screen and (max-width: 782px) { body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap, body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap, .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap, .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap, .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap, .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap { margin-left: 0; } } css/view-transitions.min.css000066600000000300152330733730012160 0ustar00/*! This file is auto-generated */ @media (prefers-reduced-motion:no-preference){@view-transition{navigation:auto}#adminmenu>.menu-top{view-transition-name:attr(id type(),none)}}css/l10n-rtl.css000066600000010743152330733730007436 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 27.0 - Localization ------------------------------------------------------------------------------*/ /* RTL except Hebrew (see below): Tahoma as the first font; */ body.rtl, body.rtl .press-this a.wp-switch-editor { font-family: Tahoma, Arial, sans-serif; } /* Arial is best for RTL headings. */ .rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6 { font-family: Arial, sans-serif; font-weight: 600; } /* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */ body.locale-he-il, body.locale-he-il .press-this a.wp-switch-editor { font-family: Arial, sans-serif; } /* he_IL: Have be bold rather than italic. */ .locale-he-il em { font-style: normal; font-weight: 600; } /* zh_CN: Remove italic properties. */ .locale-zh-cn .howto, .locale-zh-cn .tablenav .displaying-num, .locale-zh-cn .js .input-with-default-title, .locale-zh-cn .link-to-original, .locale-zh-cn .inline-edit-row fieldset span.title, .locale-zh-cn .inline-edit-row fieldset span.checkbox-title, .locale-zh-cn #utc-time, .locale-zh-cn #local-time, .locale-zh-cn p.install-help, .locale-zh-cn p.help, .locale-zh-cn p.description, .locale-zh-cn span.description, .locale-zh-cn .form-wrap p { font-style: normal; } /* zh_CN: Enlarge dashboard widget 'Configure' link */ .locale-zh-cn .hdnle a { font-size: 12px; } /* zn_CH: Enlarge font size, set font-size: normal */ .locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; } /* zh_CN: Enlarge font-size. */ .locale-zh-cn #sort-buttons { font-size: 1em !important; } /* de_DE: Text needs more space for translation */ .locale-de-de #customize-header-actions .button, .locale-de-de-formal #customize-header-actions .button { padding: 0 5px 1px; /* default 0 10px 1px */ } .locale-de-de #customize-header-actions .spinner, .locale-de-de-formal #customize-header-actions .spinner { margin: 16px 3px 0; /* default 16px 4px 0 5px */ } body[class*="locale-de-"] .inline-edit-row fieldset label span.title, body[class*="locale-de-"] .inline-edit-row fieldset.inline-edit-date legend { width: 7em; /* default 6em */ } body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap, body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap { margin-right: 7em; /* default 6em */ } /* ru_RU: Text needs more room to breathe. */ .locale-ru-ru #adminmenu { width: inherit; /* back-compat for pre-3.2 */ } .locale-ru-ru #adminmenu, .locale-ru-ru #wpbody { margin-right: 0; /* back-compat for pre-3.2 */ } .locale-ru-ru .inline-edit-row fieldset label span.title, .locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend { width: 8em; /* default 6em */ } .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap, .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap { margin-right: 8em; /* default 6em */ } .locale-ru-ru.post-php .tagsdiv .newtag, .locale-ru-ru.post-new-php .tagsdiv .newtag { width: 165px; /* default 180px - 15px */ } .locale-ru-ru.press-this .posting { margin-left: 277px; /* default 252px + 25px */ } .locale-ru-ru .press-this-sidebar { width: 265px; /* default 240px + 25px */ } .locale-ru-ru #customize-header-actions .button { padding: 0 5px 1px; /* default 0 10px 1px */ } .locale-ru-ru #customize-header-actions .spinner { margin: 16px 3px 0; /* default 16px 4px 0 5px */ } /* lt_LT: QuickEdit */ .locale-lt-lt .inline-edit-row fieldset label span.title, .locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend { width: 8em; /* default 6em */ } .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap, .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap { margin-right: 8em; /* default 6em */ } /* Fix overridden width for adjusted locales */ body[class*="locale-de-"] .quick-edit-row-post fieldset.inline-edit-col-right label span.title, .locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title, .locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title { width: auto; } @media screen and (max-width: 782px) { body[class*="locale-de-"] .inline-edit-row fieldset label span.input-text-wrap, body[class*="locale-de-"] .inline-edit-row fieldset .timestamp-wrap, .locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap, .locale-ru-ru .inline-edit-row fieldset .timestamp-wrap, .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap, .locale-lt-lt .inline-edit-row fieldset .timestamp-wrap { margin-right: 0; } } css/dashboard.min.css000066600000055514152330733730010603 0ustar00/*! This file is auto-generated */ #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:right}#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:none!important}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox{border-radius:8px}#dashboard-widgets .postbox-header .hndle{padding:12px 16px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{display:flow-root;min-height:0;margin:0 8px 20px}#dashboard-widgets .meta-box-sortables:not(:empty){margin-bottom:16px}#dashboard-widgets .postbox-container .empty-container{outline:2px dashed rgb(0,0,0,.15);outline-offset:-2px;border-radius:8px;height:250px;margin:4px}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{border-radius:8px;background:rgb(var(--wp-admin-theme-color--rgb),.04);min-height:100px}.is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container{background:rgb(0,0,0,.01)}#dashboard-widgets .postbox-container .empty-container:after{content:attr(data-emptystring);margin:auto;position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);padding:0 2em;text-align:center;color:#646970;font-size:16px;line-height:1.5;display:none}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:none}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.index-php #screen-meta-links{margin:0 20px 8px 0}.welcome-panel{position:relative;overflow:auto;margin:16px 0;border-radius:8px;font-size:14px;line-height:1.3;clear:both}.welcome-panel h2{margin:0;font-size:48px;font-weight:600;line-height:1.25}.welcome-panel h3{margin:0;font-size:20px;font-weight:400;line-height:1.4}.welcome-panel p{font-size:inherit;line-height:inherit}.welcome-panel-header{position:relative;color:#fff}.welcome-panel-header-image{position:absolute!important;top:0;right:0;bottom:0;left:0;z-index:0!important;overflow:hidden}.welcome-panel-header-image svg{display:block;margin:auto;width:100%;height:100%}.rtl .welcome-panel-header-image svg{transform:scaleX(-1)}.welcome-panel-header *{color:inherit;position:relative;z-index:1}.welcome-panel-header a:focus,.welcome-panel-header a:hover{color:inherit;text-decoration:none}.welcome-panel .welcome-panel-close:focus,.welcome-panel-header a:focus{outline-color:currentColor;outline-offset:1px;box-shadow:none}.welcome-panel-header p{margin:.5em 0 0;font-size:20px;line-height:1.4}.welcome-panel .welcome-panel-close{display:flex;align-items:center;position:absolute;top:10px;right:10px;padding:10px 15px;font-size:13px;line-height:1.23076923;text-decoration:none;z-index:1}.welcome-panel .welcome-panel-close:before{transition:all .1s ease-in-out;content:'\f335';font-size:24px;color:#fff}.welcome-panel .welcome-panel-close{color:#fff}.welcome-panel .welcome-panel-close:focus,.welcome-panel .welcome-panel-close:focus::before,.welcome-panel .welcome-panel-close:hover,.welcome-panel .welcome-panel-close:hover::before{color:#fff972}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 13px 3px 0;padding:12px 36px;height:auto;line-height:1.4285714;white-space:normal}.welcome-panel-content{min-height:400px;display:flex;flex-direction:column;justify-content:space-between}.welcome-panel-header-wrap{background-color:#151515}.welcome-panel-header{box-sizing:border-box;margin-left:auto;margin-right:auto;max-width:1500px;width:100%;padding:48px 0 80px 48px}.welcome-panel .welcome-panel-column-container{box-sizing:border-box;width:100%;clear:both;display:grid;z-index:1;padding:24px;grid-template-columns:repeat(3,1fr);gap:32px;align-self:flex-end;background:#fff;border:1px solid #c3c4c7;border-top:0;border-radius:0 0 8px 8px}[class*=welcome-panel-icon]{height:60px;width:60px;background-position:center;background-size:24px 24px;background-repeat:no-repeat;border-radius:100%}.welcome-panel-column>svg{margin-top:4px}.welcome-panel-column{display:grid;grid-template-columns:min-content 1fr;gap:24px}.welcome-panel-icon-pages{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E")}.welcome-panel-icon-layout{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E")}.welcome-panel-icon-styles{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E")}.welcome-panel .welcome-widgets-menus{line-height:1.14285714}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel li{font-size:14px}.welcome-panel li a{text-decoration:none}.welcome-panel .welcome-panel-column li{line-height:1.14285714;list-style-type:none;padding:0 0 8px}.welcome-panel .welcome-icon{background:0 0!important}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li span:before,.welcome-panel .welcome-icon:before{color:#646970;font:normal 20px/1 dashicons;display:inline-block;padding:0 10px 0 0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:"\f119";content:"\f119"/'';top:-3px}.welcome-panel .welcome-add-page:before{content:"\f132";content:"\f132"/'';top:-1px}.welcome-panel .welcome-setup-home:before{content:"\f102";content:"\f102"/'';top:-1px}.welcome-panel .welcome-view-site:before{content:"\f115";content:"\f115"/'';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:"\f116";content:"\f116"/'';top:-2px}.welcome-panel .welcome-widgets:before{content:"\f538";content:"\f538"/'';top:-2px}.welcome-panel .welcome-menus:before{content:"\f163";content:"\f163"/'';top:-2px}.welcome-panel .welcome-comments:before{content:"\f117";content:"\f117"/'';top:-1px}.welcome-panel .welcome-learn-more:before{content:"\f118";content:"\f118"/'';top:-1px}#dashboard_right_now .search-engines-info:before,#dashboard_right_now li a:before,#dashboard_right_now li>span:before{padding:0 5px 0 0;content:"\f159";content:"\f159"/''}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:"\f105";content:"\f105"/''}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:"\f109";content:"\f109"/''}#dashboard_right_now .comment-count a:before{content:"\f101";content:"\f101"/''}#dashboard_right_now .comment-mod-count a:before{content:"\f125";content:"\f125"/''}#dashboard_right_now .storage-count a:before{content:"\f104";content:"\f104"/''}#dashboard_right_now .storage-count.warning a:before{content:"\f153";content:"\f153"/''}#dashboard_right_now .search-engines-info:before{content:"\f348";content:"\f348"/'';color:#d63638}.community-events-errors{margin:0}.community-events-loading{padding:10px 12px 8px}.community-events{margin-bottom:6px;padding:0 12px}.community-events .spinner{margin:0 2px 0}.community-events form[aria-hidden=true],.community-events-errors [aria-hidden=true],.community-events-errors[aria-hidden=true],.community-events-loading[aria-hidden=true],.community-events[aria-hidden=true]{display:none}.community-events .activity-block:first-child,.community-events h2{padding-top:12px;padding-bottom:10px}.community-events-form{margin:15px 0 5px;display:flex;gap:5px;align-items:center;flex-wrap:wrap}.community-events-form .regular-text{width:40%;margin:0;min-height:32px;padding:0 8px}#dashboard-widgets .community-events-form .button{min-height:32px;line-height:2.30769231;padding:0 12px}.community-events li.event-none{border-left:4px solid var(--wp-admin-theme-color,#3858e9)}#dashboard-widgets .community-events li.event-none a{text-decoration:underline}.community-events-form label{line-height:2.14285714}.community-events .activity-block>p{margin-bottom:0;display:inline}.community-events-toggle-location{vertical-align:middle}#dashboard-widgets .community-events-cancel.button-link{text-decoration:underline}.community-events ul{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);padding-left:0;padding-right:0;padding-bottom:0}.community-events li{margin:0;padding:8px 12px;color:#2c3338}.community-events li:first-child{border-top:1px solid #e9e9ed}.community-events li~li{border-top:1px solid #e9e9ed}.community-events .activity-block.last{border-bottom:1px solid #e9e9ed;padding-top:0;margin-top:-1px}.community-events .event-info{display:block}.community-events .ce-separator::before{content:"\2022";content:"\2022"/''}.event-icon{height:18px;padding-right:10px;width:18px;display:none}.event-icon:before{color:#646970;font-size:18px}.event-meetup .event-icon:before{content:"\f484";content:"\f484"/''}.event-wordcamp .event-icon:before{content:"\f486";content:"\f486"/''}.community-events .event-title{font-weight:600;display:block}.community-events .event-date,.community-events .event-time{display:block}.community-events-footer{margin-top:0;margin-bottom:0;padding:12px;border-top:1px solid #f0f0f1;color:#646970}.community-events-footer .screen-reader-text{height:inherit;white-space:nowrap}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .widget-loading{padding:12px 12px 0;margin-bottom:1em!important}#dashboard_primary .inside .notice{margin:0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form p{margin-top:0}.rssSummary{color:#646970;margin-top:4px}#dashboard_primary .rss-widget{font-size:13px;padding:0 12px}#dashboard_primary .rss-widget:last-child{border-bottom:none;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#646970}#dashboard_primary .rss-widget span.rss-date{margin-left:12px}#dashboard_primary .rss-widget ul li{padding:4px 0;margin:0}#dashboard_right_now ul{margin:0;display:inline-block;width:100%}#dashboard_right_now li{width:50%;float:left;margin-bottom:10px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{float:right;position:relative;top:-5px;margin-left:5px}#dashboard_right_now p.search-engines-info{margin:1em 0}.mu-storage{overflow:hidden}#dashboard-widgets h3.mu-storage{margin:0 0 10px;padding:0;font-size:14px;font-weight:400}#network_dashboard_right_now p input{margin:2px 1px;vertical-align:middle}#dashboard_right_now .sub{color:#50575e;background:#f6f7f7;border-top:1px solid #f0f0f1;padding:10px 12px 6px}#dashboard_right_now .sub h3{color:#50575e}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d63638}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #f0f0f1;border-width:1px 1px 1px 0}#dashboard_quick_press form{margin:12px}#dashboard_quick_press .drafts{padding:10px 0 0}#dashboard_quick_press label{display:inline-block;margin-bottom:4px}#dashboard_quick_press input,#dashboard_quick_press textarea{box-sizing:border-box;margin:0}#dashboard-widgets .postbox form .submit{margin:-39px 0;float:right}#description-wrap{margin-top:12px}#quick-press textarea#content{min-height:90px;max-height:1300px;margin:0 0 8px;padding:8px 12px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #f0f0f1}#dashboard_quick_press .drafts abbr{border:none}#dashboard_quick_press .drafts .view-all{float:right;margin:0 12px 0 0}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#646970}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{word-wrap:break-word}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{margin:0 5px 0 0}#dashboard-widgets h3,#dashboard-widgets h4,#dashboard_quick_press .drafts h2{margin:0 12px 8px;padding:0;font-size:14px;font-weight:400;color:#1d2327}#dashboard_quick_press .drafts h2{line-height:inherit}#dashboard-widgets .inside h3,#dashboard-widgets .inside h4{margin-left:0;margin-right:0}#dashboard_activity .comment-meta span.approve:before{content:"\f227";content:"\f227"/'';font:20px/.5 dashicons;margin-left:5px;vertical-align:middle;position:relative;top:-1px;margin-right:2px}#dashboard_activity .inside{margin:0;padding:0 12px}#dashboard_activity .no-activity{overflow:hidden;padding:12px 0;text-align:center}#dashboard_activity .no-activity p{color:#646970;font-size:16px}#dashboard_activity .subsubsub{float:none;border-top:1px solid #f0f0f1;margin:0 -12px;padding:8px 12px 4px}#dashboard_activity .subsubsub a .count,#dashboard_activity .subsubsub a.current .count{color:#646970}#future-posts ul,#published-posts ul{margin:8px -12px 0 -12px}#future-posts li,#published-posts li{display:grid;grid-template-columns:clamp(160px,calc(2vw + 140px),200px) auto;column-gap:10px;color:#646970;padding:4px 12px}#future-posts li:nth-child(odd),#published-posts li:nth-child(odd){background-color:#f6f7f7}.activity-block{border-bottom:1px solid #f0f0f1;margin:0 -12px 6px -12px;padding:8px 12px 4px}.activity-block:last-child{border-bottom:none;margin-bottom:0}.activity-block .subsubsub li{color:#646970}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0;margin-left:12px}#activity-widget #the-comment-list .comment-item{background:#f6f7f7;padding:12px;position:relative}#activity-widget #the-comment-list .avatar{position:absolute;top:12px}#activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar{padding-left:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #f0f0f1}#activity-widget #the-comment-list .unapproved{background-color:#fcf9e8}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;left:0;top:0;bottom:0;background:#d63638;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.postbox .button-link .edit-box{display:none}.edit-box{opacity:0}.edit-box:focus,.hndle:hover .edit-box{opacity:1}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:none}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets .button-link,#dashboard-widgets li a,.community-events-footer a{text-decoration:none}#dashboard-widgets h2 a{text-decoration:underline}#dashboard-widgets .hndle .postbox-title-action{float:right;line-height:1.2}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative;margin:0 -12px}#activity-widget #the-comment-list .comment,#activity-widget #the-comment-list .pingback{box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{min-height:50px;margin:0;padding:12px}#latest-comments #the-comment-list .pingback{padding-left:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:none}#latest-comments #the-comment-list .comment-meta{line-height:1.5;margin:0;color:#646970}#latest-comments #the-comment-list .comment-meta cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;font-weight:600;line-height:1.4}.rss-widget ul li{line-height:1.5;margin-bottom:12px}.rss-widget span.rss-date{color:#646970;font-size:13px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:"\2014";content:"\2014"/''}.dashboard-comment-wrap{word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:128px}#dashboard_browser_nag .browser-icon{margin-top:-32px}#dashboard_browser_nag.postbox{background-color:#b32d2e;background-image:none;border-color:#b32d2e;color:#fff;box-shadow:none}#dashboard_browser_nag.postbox h2{border-bottom-color:transparent;background:transparent none;color:#fff;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.postbox .postbox-header{border-color:transparent}#dashboard_browser_nag h2.hndle{border:none;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}#dashboard_php_nag .dashicons-warning{color:#dba617;padding-right:6px}#dashboard_php_nag.php-no-security-updates .dashicons-warning,#dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning{color:#d63638}#dashboard_php_nag h2{display:inline-block}#dashboard_php_nag p{margin:12px 0}.bigger-bolder-text{font-weight:600;font-size:14px}@media only screen and (min-width:1600px){.welcome-panel .welcome-panel-column-container{display:flex;justify-content:center}.welcome-panel-column{width:100%;max-width:460px}}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#dashboard-widgets .meta-box-sortables{min-height:0}.is-dragging-metaboxes #dashboard-widgets .meta-box-sortables{min-height:100px}#dashboard-widgets .meta-box-sortables.empty-container{margin-bottom:0}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-3 .empty-container:after,#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container{border:none;height:0;min-height:0;margin-bottom:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right}#dashboard-widgets #postbox-container-4 .empty-container{border:none;height:0;min-height:0;margin-bottom:0;display:none}#dashboard-widgets #postbox-container-4 .empty-container:after{display:none}#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media only screen and (min-width:1801px){#dashboard-widgets .postbox-container .empty-container:after{display:block}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:1180px) and (min-width:783px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (max-width:782px){.welcome-panel .welcome-panel-column-container{grid-template-columns:1fr;box-sizing:border-box;padding:32px;width:100%}.welcome-panel .welcome-panel-column-content{max-width:520px}.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:40px;white-space:nowrap;width:20px;height:20px;padding:5px;top:5px;right:5px}.welcome-panel .welcome-panel-close::before{position:absolute;top:5px;left:-35px}#dashboard-widgets h2{padding:12px}#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 10px 5px 0}.community-events-toggle-location{height:38px;vertical-align:baseline}#community-events-submit{margin-bottom:0}#dashboard-widgets .community-events-cancel.button-link,.community-events-form label{font-size:14px;line-height:normal;padding:6px 0;border:1px solid transparent}}@media screen and (max-width:600px){.welcome-panel-header{padding:32px 32px 64px}.welcome-panel-header-image{display:none}}@media screen and (max-width:480px){.welcome-panel-column{gap:16px}}@media screen and (max-width:360px){.welcome-panel-column{grid-template-columns:1fr}.welcome-panel-column>svg,[class*=welcome-panel-icon]{display:none}}@media screen and (min-width:355px){.community-events .event-info{display:table-row;float:left;max-width:59%}.event-icon,.event-icon[aria-hidden=true]{display:table-cell}.event-info-inner{display:table-cell}.community-events .event-date-time{float:right;max-width:39%}.community-events .event-date,.community-events .event-time{text-align:right}}css/widgets-rtl.min.css000066600000034436152330733730011121 0ustar00/*! This file is auto-generated */ .widget{margin:0 auto 10px;position:relative;box-sizing:border-box}.widget.open{z-index:99}.widget.open:focus-within{z-index:100}.widget-top{font-size:13px;font-weight:600;background:#f6f7f7}.widget-top .widget-action{border:0;margin:0;padding:10px;background:0 0;cursor:pointer}.widget-title h3,.widget-title h4{margin:0;padding:15px;font-size:1em;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:none;padding:1px 15px 15px;line-height:1.23076923}.widget.widget-dirty .widget-control-close-wrapper{display:none}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#646970}.deleting .widget-title,.deleting .widget-top .widget-action .toggle-indicator:before{color:#a7aaad}.wp-core-ui .media-widget-control .selected,.wp-core-ui .media-widget-control.selected .not-selected,.wp-core-ui .media-widget-control.selected .placeholder{display:none}.media-widget-control.selected .selected{display:inline-block}.media-widget-buttons{text-align:right;margin-top:0}.media-widget-control .media-widget-buttons .button{width:auto;height:auto;margin-top:12px;white-space:normal}.media-widget-buttons .button:first-child{margin-left:8px}.media-widget-control .attachment-media-view .button-add-media,.media-widget-control .placeholder{border:1px dashed #c3c4c7;box-sizing:border-box;cursor:pointer;line-height:1.6;padding:9px 0;position:relative;text-align:center;width:100%}.media-widget-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.media-widget-control .attachment-media-view .button-add-media:hover{background-color:#fff}.media-widget-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-style:solid;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent;outline-offset:-2px}.media-widget-control .media-widget-preview{background:0 0;text-align:center}.media-widget-control .media-widget-preview .notice{text-align:initial}.media-frame .media-widget-embed-notice p code,.media-widget-control .notice p code{padding:0 0 0 3px}.media-frame .media-widget-embed-notice{margin-top:16px}.media-widget-control .media-widget-preview img{max-width:100%;vertical-align:middle;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.media-widget-control .media-widget-preview .wp-video-shortcode{background:#000}.media-frame.media-widget .media-toolbar-secondary{min-width:300px}.media-frame.media-widget .attachment-display-settings .setting.align,.media-frame.media-widget .checkbox-setting.autoplay,.media-frame.media-widget .embed-link-settings .setting.link-text,.media-frame.media-widget .embed-media-settings .legend-inline,.media-frame.media-widget .embed-media-settings .setting.align,.media-frame.media-widget .image-details .embed-media-settings .setting.align,.media-frame.media-widget .replace-attachment{display:none}.media-widget-video-preview{width:100%}.media-widget-video-link{display:inline-block;min-height:132px;width:100%;background:#000}.media-widget-video-link .dashicons{font:normal 60px/1 dashicons;position:relative;width:100%;top:-90px;color:#fff;text-decoration:none}.media-widget-video-link.no-poster .dashicons{top:30px}.media-frame #embed-url-field.invalid,.media-widget-image-link>.link:invalid{border:1px solid #d63638}.media-widget-image-link{margin:1em 0}.media-widget-gallery-preview{display:flex;justify-content:flex-start;flex-wrap:wrap;margin:-1.79104477%}.media-widget-preview.media_gallery,.media-widget-preview.media_image{cursor:pointer}.media-widget-preview .placeholder{background:#f0f0f1}.media-widget-gallery-preview .gallery-item{box-sizing:border-box;width:50%;margin:0;background:0 0}.media-widget-gallery-preview .gallery-item .gallery-icon{margin:4.5%}.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+5),.media-widget-gallery-preview .gallery-item:nth-last-child(n+5)~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+6),.media-widget-gallery-preview .gallery-item:nth-last-child(n+6)~.gallery-item{max-width:33.33%}.media-widget-gallery-preview .gallery-item img{height:auto;vertical-align:bottom}.media-widget-gallery-preview .gallery-icon{position:relative}.media-widget-gallery-preview .gallery-icon-placeholder{position:absolute;top:0;bottom:0;width:100%;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,.5)}.media-widget-gallery-preview .gallery-icon-placeholder-text{font-weight:600;font-size:2em;color:#fff}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #c3c4c7;margin:0 auto 10px;height:45px;width:100%;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;box-sizing:border-box}.js .sidebar-name{cursor:pointer}.sidebar-name .handlediv{float:left;width:38px;height:38px;border:0;margin:0;padding:8px;background:0 0;cursor:pointer;outline:0}#widgets-right .sidebar-name .handlediv{margin:5px 0 0 3px}.sidebar-name .handlediv:focus{box-shadow:none;outline:1px solid transparent}#widgets-left .sidebar-name .toggle-indicator{display:none}#widgets-left .sidebar-name .handlediv:focus .toggle-indicator,#widgets-left .sidebar-name:hover .toggle-indicator,#widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator{display:block}.sidebar-name .toggle-indicator:before{padding:1px 0 1px 2px;border-radius:50%}.sidebar-name .handlediv:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.sidebar-name h2,.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:normal;line-height:1.5}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#646970}.inactive-sidebar .description,.widget-holder .description{color:#50575e}#widgets-right .widgets-holder-wrap .description{padding-right:7px;padding-left:7px}div.widget-liquid-left{margin:0;width:38%;float:right}div.widget-liquid-right{float:left;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h2,div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 0 0 10px}#widgets-left .widgets-holder-wrap,div#widgets-left .widget-holder{background:0 0;border:none}#widgets-left .widgets-holder-wrap{border:none;box-shadow:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{right:auto}.widget-title-action{float:left;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h2,div#widgets-right .sidebar-name h3{padding:15px 7px 15px 15px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.remove-inactive-widgets .spinner,.sidebar-name .spinner{float:none;position:relative;top:-2px;margin:-5px 5px}.sidebar-name .spinner{position:absolute;top:18px;left:30px}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#787c82;box-shadow:0 1px 2px rgba(0,0,0,.3)}.widget-access-link{float:left;margin:-5px 10px 10px 0}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#dcdcde}#available-widgets .widget-action .edit,#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-action .add,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-action .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#646970;background:#f0f0f1;padding:0 15px;line-height:3.30769230;border-right:1px solid #dcdcde}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#3c434a;border-right:0;outline:1px solid #3c434a}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.widget-control-actions{display:flex;align-items:center;justify-content:space-between}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .description,.js .widgets-holder-wrap.closed .remove-inactive-widgets,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget{display:none}.js .widgets-holder-wrap.closed .widget.ui-sortable-helper{display:block}.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}.widget-inside select{max-width:100%}#removing-widget{display:none;font-weight:400;padding-right:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#72aee6}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .handlediv,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{transition:opacity .1s linear}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #c3c4c7}.widgets-chooser li{border-bottom:1px solid #c3c4c7;background:#fff;margin:0;position:relative}.widgets-chooser .widgets-chooser-button{width:100%;padding:10px 35px 10px 15px;background:0 0;border:0;box-sizing:border-box;text-align:right;cursor:pointer;transition:background .2s ease-in-out}.widgets-chooser .widgets-chooser-button:focus,.widgets-chooser .widgets-chooser-button:hover{outline:0;text-decoration:underline}.widgets-chooser li:last-child{border:none}.widgets-chooser .widgets-chooser-selected .widgets-chooser-button{background:var(--wp-admin-theme-color,#3858e9);color:#fff}.widgets-chooser .widgets-chooser-selected:before{content:"\f147";content:"\f147"/'';display:block;-webkit-font-smoothing:antialiased;font:normal 26px/1 dashicons;color:#fff;position:absolute;top:7px;right:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}#available-widgets .widget .widget-top{cursor:pointer}#available-widgets .widget.ui-draggable-dragging .widget-top{cursor:move}.text-widget-fields{position:relative}.text-widget-fields [hidden]{display:none}.text-widget-fields .wp-pointer.wp-pointer-top{position:absolute;z-index:3;top:100px;left:10px;right:10px}.text-widget-fields .wp-pointer .wp-pointer-arrow{right:auto;left:15px}.text-widget-fields .wp-pointer .wp-pointer-buttons{line-height:1.4}.custom-html-widget-fields>p>.CodeMirror{border:1px solid #dcdcde}.custom-html-widget-fields code{padding-top:1px;padding-bottom:1px}ul.CodeMirror-hints{z-index:101}.widget-control-actions .custom-html-widget-save-button.button.validation-blocked{cursor:not-allowed}@media screen and (max-width:782px){.editwidget .widget-inside input[type=checkbox],.editwidget .widget-inside input[type=radio],.widgets-holder-wrap .widget-inside input[type=checkbox],.widgets-holder-wrap .widget-inside input[type=radio]{margin:.25rem 0 .25rem .25rem}}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-left:none;padding-left:0}#widgets-left .sidebar-name{margin-left:0}#widgets-left #available-widgets .widget-top{margin-left:0}#widgets-left .inactive-sidebar .widgets-sortables{margin-left:0}div.widget-liquid-right{width:100%;float:none}div.widget{max-width:480px}.widget-access-link{float:none;margin:15px 0 0}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:right}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(2n){float:left}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:right;width:49%}#widgets-right .sidebars-column-1{margin-left:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}css/install.min.css000066600000012222152330733730010307 0ustar00/*! This file is auto-generated */ html{background:#f0f0f1;margin:0 20px}body{background:#fff;border:1px solid #c3c4c7;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;box-shadow:0 1px 1px rgba(0,0,0,.04)}a{color:var(--wp-admin-theme-color)}a:active,a:hover{color:var(--wp-admin-theme-color-darker-20)}a:focus{color:var(--wp-admin-theme-color-darker-20);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}h1,h2{border-bottom:1px solid #dcdcde;clear:both;color:#646970;font-size:24px;padding:0 0 7px;font-weight:400}h3{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}fieldset{border:0;padding:0;margin:0}#logo{margin:-130px auto 25px;padding:0 0 25px;width:84px;height:84px;overflow:hidden;background-image:url(../images/w-logo-gray.png?ver=20260303);background-image:none,url(../images/wordpress-logo-gray.svg?ver=20260303);background-size:84px;background-position:center top;background-repeat:no-repeat;color:#3c434a;font-size:20px;font-weight:400;line-height:1.3em;text-decoration:none;text-align:center;text-indent:-9999px;outline:0}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.language-chooser.wp-core-ui .step .button.button-large{font-size:14px}textarea{border:1px solid #dcdcde;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:100%;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:10px 20px 10px 0;width:115px;vertical-align:top}.form-table code{line-height:1.28571428;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table .setup-description{margin:4px 0 0;line-height:1.6}.form-table input{line-height:1.33333333;font-size:15px;padding:3px 5px}.wp-pwd{margin-top:0}.form-table .wp-pwd{display:flex;column-gap:4px}.form-table .password-input-wrapper{width:100%}input,submit{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}#pass-strength-result,.form-table input[type=email],.form-table input[type=password],.form-table input[type=text],.form-table input[type=url]{width:100%}.form-table th p{font-weight:400}.form-table.install-success td,.form-table.install-success th{vertical-align:middle;padding:16px 20px 16px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:1.28571428;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}.message{border-left:4px solid #d63638;padding:.7em .6em;background-color:#fcf0f1}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td input[type=url],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;box-sizing:border-box}#pwd{padding-right:2.5rem}.wp-pwd #pass1{padding-right:50px}.wp-pwd .button.wp-hide-pw{right:0}#pass-strength-result{width:100%}}body.language-chooser{max-width:300px}.language-chooser select{padding:8px;width:100%;display:block;border:1px solid #dcdcde;background:#fff;color:#2c3338;font-size:16px;font-family:Arial,sans-serif;font-weight:400}.language-chooser select:focus{color:#2c3338}.language-chooser select option:focus,.language-chooser select option:hover{color:var(--wp-admin-theme-color-darker-20)}.language-chooser .step{text-align:right}.screen-reader-input,.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.spinner{background:url(../images/spinner.gif) no-repeat;background-size:20px 20px;visibility:hidden;opacity:.7;width:20px;height:20px;margin:2px 5px 0}.step .spinner{display:inline-block;vertical-align:middle;margin-right:15px}.button.hide-if-no-js,.hide-if-no-js{display:none}@media print,(min-resolution:120dpi){.spinner{background-image:url(../images/spinner-2x.gif)}}css/wp-admin.css000066600000000613152330733730007574 0ustar00@import url(common.css); @import url(forms.css); @import url(admin-menu.css); @import url(dashboard.css); @import url(list-tables.css); @import url(edit.css); @import url(revisions.css); @import url(media.css); @import url(themes.css); @import url(about.css); @import url(nav-menus.css); @import url(widgets.css); @import url(site-icon.css); @import url(l10n.css); @import url(site-health.css); css/nav-menus.css000066600000043241152330733730007775 0ustar00/* nav-menu */ /* @todo: determine if this is truly for nav menus only */ .no-js #message { display: block; } ul.add-menu-item-tabs li { padding: 3px 5px 4px 8px; } .accordion-section ul.category-tabs, .accordion-section ul.add-menu-item-tabs, .accordion-section ul.wp-tab-bar { margin: 0; } .accordion-section .categorychecklist { margin: 13px 0; } #nav-menu-meta .accordion-section-content { padding: 18px 13px; resize: vertical; } #nav-menu-meta .button-controls { margin-bottom: 0; } .has-no-menu-item .button-controls { display: none; } #nav-menus-frame { margin-left: 300px; margin-top: 23px; } #wpbody-content #menu-settings-column { display: inline; width: 281px; margin-left: -300px; clear: both; float: left; padding-top: 0; } #menu-settings-column .inside { clear: both; margin: 10px 0 0; height: 100%; max-height: inherit; } #menu-settings-column .categorydiv, #menu-settings-column .customlinkdiv, #menu-settings-column .posttypediv, #menu-settings-column .taxonomydiv { max-height: inherit; height: 100%; } #menu-settings-column .wp-tab-panel, #menu-settings-column .categorydiv div.tabs-panel, #menu-settings-column .customlinkdiv div.tabs-panel, #menu-settings-column .posttypediv div.tabs-panel, #menu-settings-column .taxonomydiv div.tabs-panel { /* Allow space for content after tab panels in nav menu editor. */ max-height: calc( 100% - 75px ); height: 100%; } .metabox-holder-disabled .postbox, .metabox-holder-disabled .accordion-section-content, .metabox-holder-disabled .accordion-section-title { opacity: 0.5; filter: alpha(opacity=50); } .metabox-holder-disabled .button-controls .select-all { display: none; } #wpbody { position: relative; } .is-submenu { color: #50575e; /* #fafafa background */ font-style: italic; font-weight: 400; margin-left: 4px; } .manage-menus { margin-top: 23px; padding: 10px; overflow: hidden; background: #fff; } .manage-menus .selected-menu, .manage-menus select, .manage-menus .submit-btn, .nav-menus-php .add-new-menu-action { display: inline-block; margin-right: 3px; vertical-align: middle; } .manage-menus select, .menu-location-menus select { max-width: 100%; } .menu-edit #post-body-content h3 { margin: 1em 0 10px; } #nav-menu-bulk-actions-top { margin: 1em 0; } #nav-menu-bulk-actions-bottom { margin: 1em 0; margin: calc( 1em + 9px ) 0; } .bulk-actions input.button { margin-right: 12px; } .bulk-select-button { position: relative; display: inline-block; padding: 0 10px; font-size: 13px; line-height: 2.15384615; height: auto; min-height: 30px; background: #f6f7f7; vertical-align: top; border: 1px solid #dcdcde; margin: 0; cursor: pointer; border-radius: 3px; white-space: nowrap; box-sizing: border-box; } .bulk-selection .bulk-select-button { color: #2271b1; border-color: #2271b1; background: #f6f7f7; vertical-align: top; } #pending-menu-items-to-delete { display: none; } .bulk-selection #pending-menu-items-to-delete { display: block; margin-top: 1em; } #pending-menu-items-to-delete p { margin-bottom: 0; } #pending-menu-items-to-delete ul { margin-top: 0; list-style: none; } #pending-menu-items-to-delete ul li { display: inline; } input.bulk-select-switcher + .bulk-select-button-label { vertical-align: inherit; } label.bulk-select-button:hover, label.bulk-select-button:active, label.bulk-select-button:focus-within { background: #f0f0f1; border-color: #0a4b78; color: #0a4b78; } input.bulk-select-switcher:focus + .bulk-select-button-label { color: #0a4b78; } .bulk-actions input.menu-items-delete { appearance: none; font-size: inherit; border: 0; line-height: 2.1em; background: none; cursor: pointer; text-decoration: underline; color: #b32d2e; } .bulk-actions input.menu-items-delete:hover { color: #b32d2e; border: none; } .bulk-actions input.menu-items-delete.disabled { display: none; } .menu-settings { border-top: 1px solid #f0f0f1; margin-top: 2em; } .menu-settings-group { margin: 0 0 10px; padding-left: 20%; } .menu-settings-group:last-of-type { margin-bottom: 0; } .menu-settings-input { float: left; margin: 0; width: 100%; } .menu-settings-group-name { float: left; clear: both; width: 25%; padding: 3px 0 0; margin-left: -25%; /* 20 container left padding x ( 100 container % width / 80 this % width ) */ } .menu-settings label { vertical-align: baseline; } .menu-edit .checkbox-input { margin-top: 4px; } .theme-location-set { color: #646970; font-size: 11px; } /* Menu Container */ /* @todo: responsive view. */ #menu-management-liquid { float: left; min-width: 100%; margin-top: 3px; } /* @todo: responsive view. */ #menu-management { position: relative; margin-right: 20px; margin-top: -3px; width: 100%; } #menu-management .menu-edit { margin-bottom: 20px; } .nav-menus-php #post-body { padding: 0 10px; border-top: 1px solid #fff; border-bottom: 1px solid #dcdcde; background: #fff; } #nav-menu-header, #nav-menu-footer { padding: 0 10px; background: #f6f7f7; } #nav-menu-header { border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #nav-menu-header .menu-name-label { display: inline-block; vertical-align: middle; margin-right: 7px; } .nav-menus-php #post-body div.updated, .nav-menus-php #post-body div.error { margin: 0; } .nav-menus-php #post-body-content { position: relative; float: none; } .nav-menus-php #post-body-content .post-body-plain { margin-bottom: 0; } #menu-management .menu-add-new abbr { font-weight: 600; } #select-nav-menu-container { text-align: right; padding: 0 10px 3px; margin-bottom: 5px; } #select-nav-menu { width: 100px; display: inline; } #menu-name-label { margin-top: -2px; } .widefat .menu-locations .menu-location-title { padding: 13px 10px 0; } .menu-location-title label { font-weight: 600; } .menu-location-menus select { float: left; } #locations-nav-menu-wrapper { padding: 5px 0; } .locations-nav-menu-select select { float: left; width: 160px; margin-right: 5px; } .locations-row-links { float: left; margin: 6px 0 0 6px; } .locations-edit-menu-link, .locations-add-menu-link { margin: 0 3px; } .locations-edit-menu-link { padding-right: 3px; border-right: 1px solid #c3c4c7; } #menu-management .inside { padding: 0 10px; } /* Add Menu Item Boxes */ .postbox .howto input { width: 180px; float: right; } .accordion-container .outer-border { margin: 0; } .customlinkdiv p { margin-top: 0 } #nav-menu-theme-locations .howto select { width: 100%; } #nav-menu-theme-locations .button-controls { text-align: right; } .add-menu-item-view-all { height: 400px; } /* Button Primary Actions */ #menu-container .submit { margin: 0 0 10px; padding: 0; } /* @todo: is this actually used? */ #cancel-save { text-decoration: underline; font-size: 12px; margin-left: 20px; margin-top: 5px; } .button.right, .button-secondary.right, .button-primary.right { float: right; } /* Button Secondary Actions */ .list-controls { float: left; } .add-to-menu { float: right; } .button-controls { clear: both; margin: 10px 0; } .show-all, .hide-all { cursor: pointer; } .hide-all { display: none; } /* Create Menu */ #menu-name { width: 270px; vertical-align: middle; } #manage-menu .inside { padding: 0; } /* Custom Links */ #available-links dt { display: block; } #add-custom-link .howto { font-size: 12px; } #add-custom-link label span { display: block; float: left; margin-top: 5px; padding-right: 5px; } .menu-item-textbox { width: 180px; } .customlinkdiv .menu-item-textbox { width: 100%; } .nav-menus-php .howto span { float: left; margin-top: 6px; } /* Menu item types */ .quick-search { width: 190px; } .quick-search-wrap .spinner { float: none; margin: -3px -10px 0 0; } .nav-menus-php .list-wrap { display: none; clear: both; margin-bottom: 10px; } .nav-menus-php .postbox p.submit { margin-bottom: 0; } /* Listings */ .nav-menus-php .list li { display: none; margin: 0 0 5px; } .nav-menus-php .list li .menu-item-title { cursor: pointer; display: block; } .nav-menus-php .list li .menu-item-title input { margin-right: 3px; margin-top: -3px; } .menu-item-title input[type=checkbox] { display: inline-block; margin-top: -4px; } .menu-item-title .post-state { font-weight: 600; } /* Nav Menu */ #menu-container .inside { padding-bottom: 10px; } .menu { padding-top: 1em; } #menu-to-edit { margin: 0; padding: 0.1em 0; } .menu ul { width: 100%; } .menu li { margin-bottom: 0; position: relative; } .menu-item-bar { clear: both; line-height: 1.5; position: relative; margin: 9px 0 0; } .menu-item-bar .menu-item-handle { border: 1px solid #dcdcde; position: relative; padding: 10px 15px; height: auto; min-height: 20px; max-width: 382px; line-height: 2.30769230; overflow: hidden; word-wrap: break-word; } .menu-item-bar .menu-item-handle:hover { border-color: #8c8f94; } #menu-to-edit .menu-item-invalid .menu-item-handle { background: #fcf0f1; border-color: #d63638; } .no-js .menu-item-edit-active .item-edit { display: none; } .js .menu-item-handle { cursor: move; } .menu li.deleting .menu-item-handle { background-image: none; background-color: #f86368; } .menu-item-handle .item-title { font-size: 13px; font-weight: 600; line-height: 1.53846153; display: block; /* @todo: responsive view. */ margin-right: 13em; } .menu-item-handle .menu-item-checkbox { display: none; } .bulk-selection .menu-item-handle .menu-item-checkbox { display: inline-block; margin-right: 6px; } .menu-item-handle .menu-item-title.no-title { color: #646970; } /* Sortables */ li.menu-item.ui-sortable-helper .menu-item-bar { margin-top: 0; } li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar { margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } .menu .sortable-placeholder { height: 35px; width: 410px; margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } /* Hide the transport list when it's empty */ .menu-item .menu-item-transport:empty { display: none; } /* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */ .menu-item-depth-0 { margin-left: 0; } .menu-item-depth-1 { margin-left: 30px; } .menu-item-depth-2 { margin-left: 60px; } .menu-item-depth-3 { margin-left: 90px; } .menu-item-depth-4 { margin-left: 120px; } .menu-item-depth-5 { margin-left: 150px; } .menu-item-depth-6 { margin-left: 180px; } .menu-item-depth-7 { margin-left: 210px; } .menu-item-depth-8 { margin-left: 240px; } .menu-item-depth-9 { margin-left: 270px; } .menu-item-depth-10 { margin-left: 300px; } .menu-item-depth-11 { margin-left: 330px; } .menu-item-depth-0 .menu-item-transport { margin-left: 0; } .menu-item-depth-1 .menu-item-transport { margin-left: -30px; } .menu-item-depth-2 .menu-item-transport { margin-left: -60px; } .menu-item-depth-3 .menu-item-transport { margin-left: -90px; } .menu-item-depth-4 .menu-item-transport { margin-left: -120px; } .menu-item-depth-5 .menu-item-transport { margin-left: -150px; } .menu-item-depth-6 .menu-item-transport { margin-left: -180px; } .menu-item-depth-7 .menu-item-transport { margin-left: -210px; } .menu-item-depth-8 .menu-item-transport { margin-left: -240px; } .menu-item-depth-9 .menu-item-transport { margin-left: -270px; } .menu-item-depth-10 .menu-item-transport { margin-left: -300px; } .menu-item-depth-11 .menu-item-transport { margin-left: -330px; } body.menu-max-depth-0 { min-width: 950px !important; } body.menu-max-depth-1 { min-width: 980px !important; } body.menu-max-depth-2 { min-width: 1010px !important; } body.menu-max-depth-3 { min-width: 1040px !important; } body.menu-max-depth-4 { min-width: 1070px !important; } body.menu-max-depth-5 { min-width: 1100px !important; } body.menu-max-depth-6 { min-width: 1130px !important; } body.menu-max-depth-7 { min-width: 1160px !important; } body.menu-max-depth-8 { min-width: 1190px !important; } body.menu-max-depth-9 { min-width: 1220px !important; } body.menu-max-depth-10 { min-width: 1250px !important; } body.menu-max-depth-11 { min-width: 1280px !important; } /* Menu item controls */ .item-type { display: inline-block; padding: 12px 16px; color: #646970; font-size: 12px; line-height: 1.5; } .item-controls { font-size: 12px; position: absolute; right: 20px; top: -1px; } .item-controls a { text-decoration: none; } .item-controls a:hover { cursor: pointer; } .item-controls .item-order { padding-right: 10px; } .nav-menus-php .item-edit { position: absolute; right: -20px; top: 0; display: block; width: 30px; height: 40px; outline: none; } .no-js.nav-menus-php .item-edit { position: static; float: right; width: auto; height: auto; margin: 12px -10px 12px 0; padding: 0; color: #2271b1; text-decoration: underline; font-size: 12px; line-height: 1.5; } .no-js.nav-menus-php .item-edit .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .nav-menus-php .item-edit:before { margin-top: 10px; margin-left: 4px; width: 20px; border-radius: 50%; text-indent: -1px; /* account for the dashicon alignment */ } .no-js.nav-menus-php .item-edit:before { display: none; } .rtl .nav-menus-php .item-edit:before { text-indent: 1px; /* account for the dashicon alignment */ } .js.nav-menus-php .item-edit:focus { box-shadow: none; } .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Menu editing */ .menu-instructions-inactive { display: none; } .menu-item-settings { display: block; max-width: 392px; padding: 10px; position: relative; z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .menu-item-settings .field-move { margin: 3px 0 5px; line-height: 1.5; } .field-move-visual-label { float: left; margin-right: 4px; } .menu-item-settings .field-move .button-link { display: none; margin: 0 2px; } .menu-item-edit-active .menu-item-settings { display: block; } .menu-item-edit-inactive .menu-item-settings { display: none; } .add-menu-item-pagelinks { margin: .5em -10px; text-align: center; } .add-menu-item-pagelinks .page-numbers { display: inline-block; min-width: 20px; } .add-menu-item-pagelinks .page-numbers.dots { min-width: 0; } .link-to-original { display: block; margin: 0 0 15px; padding: 3px 5px 5px; border: 1px solid #dcdcde; color: #646970; font-size: 12px; } .link-to-original a { padding-left: 4px; font-style: normal; } .hidden-field { display: none; } .description-group { display: flex; column-gap: 10px; } .description-group > * { flex-grow: 1; } .menu-item-actions { padding-top: 15px; padding-bottom: 7px; } #cancel-save { cursor: pointer; } /* Major/minor publishing actions (classes) */ .nav-menus-php .major-publishing-actions { padding: 10px 0; display: flex; align-items: center; } .nav-menus-php .major-publishing-actions > * { margin-right: 10px; } .nav-menus-php .major-publishing-actions .form-invalid { padding-left: 4px; margin-left: -4px; } #nav-menus-frame, #menu-item-url-wrap, #menu-item-name-wrap { display: block; } .button-controls { display: flex; align-items: center; justify-content: space-between; } .button-controls-customlinkdiv { justify-content: flex-end; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 769px) and (max-width: 1000px) { body.menu-max-depth-0 { min-width: 0 !important; } #menu-management-liquid { width: 100%; } .nav-menus-php #post-body-content { min-width: 0; } } @media screen and (max-width: 782px) { body.nav-menus-php, body.wp-customizer { min-width: 0 !important; } #nav-menus-frame { margin-left: 0; float: none; width: 100%; } #wpbody-content #menu-settings-column { display: block; width: 100%; float: none; margin-left: 0; } #side-sortables .add-menu-item-tabs { margin: 15px 0 14px; } ul.add-menu-item-tabs li.tabs { padding: 13px 15px 14px; } .nav-menus-php .customlinkdiv .howto input { width: 65%; } .nav-menus-php .quick-search { width: 85%; } #menu-management-liquid { margin-top: 25px; } .nav-menus-php .menu-name-label.howto span { margin-top: 13px } #menu-name { width: 100%; } .nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action { padding-top: 1em; } .nav-menus-php .delete-action { font-size: 14px; line-height: 2.14285714; } .menu-item-bar .menu-item-handle, .menu-item-settings { width: auto; } .menu-item-settings { padding: 10px; } .menu-item-settings .description-group { display: block; } .menu-item-settings input { width: 100%; } .menu-item-settings input[type="checkbox"], .menu-item-settings input[type="radio"] { width: 25px; } .menu-settings-group { padding-left: 0; overflow: visible; } .menu-settings-group-name { float: none; width: auto; margin-left: 0; margin-bottom: 15px; } .menu-settings-input { float: none; margin-bottom: 15px; } .menu-edit .checkbox-input { margin-top: 0; } .manage-menus select { margin: 0.5em 0; } .wp-core-ui .manage-menus .button { margin-bottom: 0; } .widefat .menu-locations .menu-location-title { padding-top: 16px; } } @media only screen and (min-width: 783px) { @supports (position: sticky) and (scroll-margin-bottom: 130px) { #nav-menu-footer { position: sticky; bottom: 0; z-index: 10; box-shadow: 0 -1px 0 0 #ddd; } #save_menu_header { display: none; } } } @media only screen and (max-width: 768px) { /* menu locations */ #menu-locations-wrap .widefat { width: 100%; } .bulk-select-button { padding: 5px 10px; } } css/color-picker.css000066600000007517152330733730010463 0ustar00/* rtl:ignore */ .wp-color-picker { width: 80px; direction: ltr; } .wp-picker-container .hidden { display: none; } /* Needs higher specificity to override `.wp-core-ui .button`. */ .wp-picker-container .wp-color-result.button { min-height: 32px; margin: 0 6px 6px 0; padding: 0 0 0 30px; font-size: 11px; } .wp-color-result-text { background: #f6f7f7; border-radius: 0 2px 2px 0; border-left: 1px solid #c3c4c7; color: #50575e; display: block; line-height: 2.72727273; /* 30px */ padding: 0 6px; text-align: center; } .wp-color-result:hover, .wp-color-result:focus { background: #f6f7f7; border-color: #8c8f94; color: #1d2327; } .wp-color-result:hover:after, .wp-color-result:focus:after { color: #1d2327; border-color: #a7aaad; border-left: 1px solid #8c8f94; } .wp-picker-container { display: inline-block; } .wp-color-result:focus { border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); } .wp-color-result:active { /* See Trac ticket #39662 */ transform: none !important; } .wp-picker-open + .wp-picker-input-wrap { display: inline-block; vertical-align: top; } .wp-picker-input-wrap label { display: inline-block; vertical-align: top; } /* For the old `custom-background` page, to override the inline-block and margins from `.form-table td fieldset label`. */ .form-table .wp-picker-input-wrap label { margin: 0 !important; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear, .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { margin-left: 6px; padding: 0 8px; line-height: 2.72727273; /* 30px */ min-height: 32px; } .wp-picker-container .iris-square-slider .ui-slider-handle:focus { background-color: #50575e } .wp-picker-container .iris-picker { border-radius: 0; border-color: #dcdcde; margin-top: 6px; } .wp-picker-container input[type="text"].wp-color-picker { width: 4rem; font-size: 12px; font-family: monospace; margin: 0; padding: 0 5px; vertical-align: top; min-height: 32px; } .wp-color-picker::-webkit-input-placeholder { color: #646970; } .wp-color-picker::-moz-placeholder { color: #646970; } .wp-picker-container input[type="text"].iris-error { background-color: #fcf0f1; border-color: #d63638; color: #000; } .iris-picker .ui-square-handle:focus, .iris-picker .iris-strip .ui-slider-handle:focus { border-color: var(--wp-admin-theme-color, #3858e9); border-style: solid; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .iris-picker .iris-palette:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } @media screen and (max-width: 782px) { .wp-picker-container input[type="text"].wp-color-picker { width: 5rem; font-size: 16px; line-height: 1.875; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-container input[type="text"].wp-color-picker { padding: 0 5px; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; font-size: 14px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-picker-container .wp-color-result.button { padding: 0 0 0 40px; font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-customizer .wp-picker-container .wp-color-result.button { font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-picker-container .wp-color-result-text { padding: 0 14px; font-size: inherit; line-height: inherit; } .wp-customizer .wp-picker-container .wp-color-result-text { padding: 0 10px; } } css/wp-admin.min.css000066600000000752152330733730010362 0ustar00/*! This file is auto-generated */ @import url(common.min.css); @import url(forms.min.css); @import url(admin-menu.min.css); @import url(dashboard.min.css); @import url(list-tables.min.css); @import url(edit.min.css); @import url(revisions.min.css); @import url(media.min.css); @import url(themes.min.css); @import url(about.min.css); @import url(nav-menus.min.css); @import url(widgets.min.css); @import url(site-icon.min.css); @import url(l10n.min.css); @import url(site-health.min.css); css/site-health-rtl.css000066600000014547152330733730011101 0ustar00/*! This file is auto-generated */ /* Note: Any Site Health selectors that use duplicate styling from the Privacy settings screen are styled in the Privacy section of edit.css */ .health-check-body h2 { line-height: 1.4; } .health-check-body h3 { padding: 0; font-weight: 400; } .site-health-progress-wrapper { margin-bottom: 1rem; } .site-health-progress { display: inline-block; height: 20px; width: 20px; margin: 0; border-radius: 100%; position: relative; font-weight: 600; font-size: 0.4rem; } .site-health-progress-count { position: absolute; display: block; height: 80px; width: 80px; right: 50%; top: 50%; margin-top: -40px; margin-right: -40px; border-radius: 100%; line-height: 6.3; font-size: 2em; } .loading .site-health-progress svg #bar { stroke-dashoffset: 0; stroke: #c3c4c7; animation: loadingPulse 3s infinite ease-in-out; } .site-health-progress svg circle { stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; stroke: #c3c4c7; stroke-width: 2em; } .site-health-progress svg #bar { stroke-dashoffset: 565; stroke: #d63638; } .green .site-health-progress #bar { stroke: #00a32a; } .green .site-health-progress .site-health-progress-label { color: #00a32a; } .orange .site-health-progress #bar { stroke: #dba617; } .orange .site-health-progress .site-health-progress-label { color: #dba617; } .site-health-progress-label { font-weight: 600; line-height: 20px; margin-right: 0.3rem; } @keyframes loadingPulse { 0% { stroke: #c3c4c7; } 50% { stroke: var(--wp-admin-theme-color); } 100% { stroke: #c3c4c7; } } .health-check-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr 1fr 1fr; } .health-check-tabs-wrapper.tab-count-1 { grid-template-columns: 1fr; } .health-check-tabs-wrapper.tab-count-2 { grid-template-columns: 1fr 1fr; } .health-check-tabs-wrapper.tab-count-3 { grid-template-columns: 1fr 1fr 1fr; } .health-check-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .health-check-offscreen-nav-wrapper { position: relative; background: transparent; border: none; } .health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav { right: initial; } .health-check-offscreen-nav { display: none; position: absolute; padding-top: 10px; left: 0; top: 100%; width: 13rem; } .health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav { display: inline-block; } .health-check-offscreen-nav:before { position: absolute; content: ""; width: 0; height: 0; border-style: solid; border-width: 0 10px 5px; border-color: transparent transparent #ffffff; left: 20px; top: 5px; } .health-check-offscreen-nav .health-check-tab { background: #fff; box-shadow: 0 2px 5px 0 rgba( 0, 0, 0, 0.75 ); } .health-check-offscreen-nav .health-check-tab.active { box-shadow: inset -3px 0 #3582c4; font-weight: 600; } .health-check-body { max-width: 800px; margin: 0 auto; } .widefat.health-check-table th { font-size: 13px; } .health-check-table td:first-child { width: 30%; } .health-check-table td { width: 70%; } .health-check-table ul, .health-check-table ol { margin: 0; } .health-check-body li { line-height: 1.5; } .health-check-body .pass::before, .health-check-body .good::before { content: "\f147"; content: "\f147" / ''; color: #00a32a; } .health-check-body .warning::before { content: "\f460"; content: "\f460" / ''; color: #dba617; } .health-check-body .info::before { content: "\f348"; content: "\f348" / ''; color: #72aee6; } .health-check-body .fail::before, .health-check-body .error::before { content: "\f335"; content: "\f335" / ''; color: #d63638; } .site-health-copy-buttons { margin: 1rem 0; } .site-health-copy-buttons .copy-button-wrapper { display: inline-flex; align-items: center; margin: 0.5rem 0 1rem; } .site-health-copy-buttons .success { color: #007017; margin-right: 0.5rem; } .site-status-has-issues.hide { display: none; } .site-health-view-more { text-align: center; } .site-health-issues-wrapper:first-of-type { margin-top: 3rem; } .site-health-issues-wrapper { margin-bottom: 3rem; margin-top: 2rem; } .site-status-all-clear { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; width: 100%; margin: 0 0 3rem; } @media all and (min-width: 784px) { .site-status-all-clear { margin: 2rem 0 5rem; } } .site-status-all-clear.hide { display: none; } .site-status-all-clear .dashicons { font-size: 150px; height: 150px; margin-bottom: 2rem; width: 150px; } .site-status-all-clear .encouragement { font-size: 1.5rem; font-weight: 600; } .site-status-all-clear p { margin: 0; } .wp-core-ui .button.site-health-view-passed { position: relative; padding-left: 40px; padding-right: 20px; } .health-check-wp-paths-sizes.spinner { visibility: visible; float: none; margin: 0 4px; flex-shrink: 0; } /* Styling unique to the dashboard widget. */ #dashboard_site_health .site-health-details { padding-right: 16px; } #dashboard_site_health .site-health-details p:first-child { margin-top: 0; } #dashboard_site_health .site-health-details p:last-child { margin-bottom: 0; } #dashboard_site_health .health-check-widget { display: grid; grid-template-columns: 1fr 2fr; grid-auto-rows: minmax(64px, auto); column-gap: 16px; align-items: center; } #dashboard_site_health .site-health-progress-label { margin-right: 0; } .health-check-widget-title-section { margin-bottom: 0; text-align: center; } @media screen and (max-width: 480px) { #dashboard_site_health .health-check-widget { grid-template-columns: 100%; } } @media screen and (max-width: 782px) { .site-health-issues-wrapper .health-check-accordion-trigger { flex-direction: column; align-items: flex-start; } .health-check-accordion-trigger .badge { margin: 1em 0 0; } .health-check-table { table-layout: fixed; } .health-check-table th, .health-check-table td { box-sizing: border-box; display: block; width: 100%; word-wrap: break-word; } .widefat.health-check-table th, .health-check-table td:first-child { width: 100%; padding-bottom: 0; font-weight: 600; } .wp-core-ui .site-health-copy-buttons .copy-button { margin-bottom: 0; } } css/wp-admin-rtl.min.css000066600000001046152330733730011156 0ustar00/*! This file is auto-generated */ @import url(common-rtl.min.css); @import url(forms-rtl.min.css); @import url(admin-menu-rtl.min.css); @import url(dashboard-rtl.min.css); @import url(list-tables-rtl.min.css); @import url(edit-rtl.min.css); @import url(revisions-rtl.min.css); @import url(media-rtl.min.css); @import url(themes-rtl.min.css); @import url(about-rtl.min.css); @import url(nav-menus-rtl.min.css); @import url(widgets-rtl.min.css); @import url(site-icon-rtl.min.css); @import url(l10n-rtl.min.css); @import url(site-health-rtl.min.css); css/colors/midnight/colors.css000066600000061453152330733730012476 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #363b3f; } .wp-core-ui .wp-ui-text-primary { color: #363b3f; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #e14d43; } .wp-core-ui .wp-ui-text-highlight { color: #e14d43; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #69a8bb; } .wp-core-ui .wp-ui-text-notification { color: #69a8bb; } .wp-core-ui .wp-ui-text-icon { color: hsl(206.6666666667, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #363b3f; } .view-switch a:hover:before { color: #69a8bb; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #363b3f; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(206.6666666667, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #e14d43; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(194.7, 196.2, 197.4); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(194.7, 196.2, 197.4); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #e14d43; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #e14d43; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #e14d43; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #69a8bb; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(206.6666666667, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #e14d43; } /* Admin Bar */ #wpadminbar { color: #fff; background: #363b3f; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #e14d43; background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #e14d43; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #e14d43; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(75.8214230769, 76.4087307692, 76.8785769231); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(194.7, 196.2, 197.4); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #e14d43; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #e14d43; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(206.6666666667, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(70.4769230769, 77.0025641026, 82.2230769231); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #69a8bb; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(94.5, 151.2, 168.3); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231); background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #e14d43; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(194.7, 196.2, 197.4); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #e14d43; border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119); } .wp-pointer .wp-pointer-content h3:before { color: #e14d43; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #e14d43; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #e14d43; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #e14d43; } .attachment.details .check { background-color: #e14d43; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #e14d43; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #e14d43; } .theme-section.current, .theme-filter.current { border-bottom-color: #363b3f; } body.more-filters-opened .more-filters { color: #fff; background-color: #363b3f; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #e14d43; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #e14d43; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(206.6666666667, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #e14d43; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(206.6666666667, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #e14d43; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #e14d43; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e14d43; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #e14d43; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #e14d43; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e14d43; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e14d43; border-style: solid; box-shadow: 0 0 0 1px #e14d43; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e14d43; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e14d43; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e14d43; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e14d43; color: #0073aa; }css/colors/midnight/colors.scss000066600000000523152330733730012650 0ustar00@use "sass:color"; $base-color: #363b3f; $highlight-color: #e14d43; $notification-color: #69a8bb; @use "../_admin.scss" with ( $scheme-name: "midnight", $base-color: $base-color, $highlight-color: $highlight-color, $notification-color: $notification-color, $dashboard-accent-2: color.mix($base-color, $notification-color, 90%), ); css/colors/midnight/colors.min.css000066600000052675152330733730013266 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#363b3f}.wp-core-ui .wp-ui-text-primary{color:#363b3f}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#e14d43}.wp-core-ui .wp-ui-text-highlight{color:#e14d43}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#69a8bb}.wp-core-ui .wp-ui-text-notification{color:#69a8bb}.wp-core-ui .wp-ui-text-icon{color:hsl(206.6666666667,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#363b3f}.view-switch a:hover:before{color:#69a8bb}#adminmenu,#adminmenuback,#adminmenuwrap{background:#363b3f}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(206.6666666667,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#e14d43}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(37.5230769231,40.9974358974,43.7769230769)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(37.5230769231,40.9974358974,43.7769230769)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(194.7,196.2,197.4)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(194.7,196.2,197.4)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#e14d43}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#e14d43}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#e14d43}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#69a8bb}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(37.5230769231,40.9974358974,43.7769230769)}#collapse-button{color:hsl(206.6666666667,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:#e14d43}#wpadminbar{color:#fff;background:#363b3f}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#e14d43;background:rgb(37.5230769231,40.9974358974,43.7769230769)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#e14d43}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#e14d43}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(37.5230769231,40.9974358974,43.7769230769)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(75.8214230769,76.4087307692,76.8785769231)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(194.7,196.2,197.4)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(206.6666666667,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#e14d43}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#e14d43}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(70.4769230769,77.0025641026,82.2230769231)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#69a8bb}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(94.5,151.2,168.3)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(70.4769230769,77.0025641026,82.2230769231);background-color:rgb(70.4769230769,77.0025641026,82.2230769231)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#e14d43}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(194.7,196.2,197.4)}.wp-pointer .wp-pointer-content h3{background-color:#e14d43;border-color:rgb(221.4908256881,56.1788990826,45.0091743119)}.wp-pointer .wp-pointer-content h3:before{color:#e14d43}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#e14d43}.media-item .bar,.media-progress-bar div{background-color:#e14d43}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #e14d43}.attachment.details .check{background-color:#e14d43;box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #e14d43}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#e14d43}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#e14d43}.theme-filter.current,.theme-section.current{border-bottom-color:#363b3f}body.more-filters-opened .more-filters{color:#fff;background-color:#363b3f}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#e14d43;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#e14d43;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}div#wp-responsive-toggle a:before{color:hsl(206.6666666667,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#e14d43}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(37.5230769231,40.9974358974,43.7769230769)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(206.6666666667,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#e14d43}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#e14d43}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e14d43}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#e14d43}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#e14d43;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e14d43}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e14d43;border-style:solid;box-shadow:0 0 0 1px #e14d43;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e14d43}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e14d43}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e14d43}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e14d43;color:#0073aa}css/colors/midnight/colors-rtl.css000066600000061454152330733730013276 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #363b3f; } .wp-core-ui .wp-ui-text-primary { color: #363b3f; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #e14d43; } .wp-core-ui .wp-ui-text-highlight { color: #e14d43; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #69a8bb; } .wp-core-ui .wp-ui-text-notification { color: #69a8bb; } .wp-core-ui .wp-ui-text-icon { color: hsl(206.6666666667, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #363b3f; } .view-switch a:hover:before { color: #69a8bb; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #363b3f; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(206.6666666667, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #e14d43; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(194.7, 196.2, 197.4); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(194.7, 196.2, 197.4); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #e14d43; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #e14d43; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #e14d43; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #69a8bb; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(206.6666666667, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #e14d43; } /* Admin Bar */ #wpadminbar { color: #fff; background: #363b3f; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #e14d43; background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #e14d43; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #e14d43; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(75.8214230769, 76.4087307692, 76.8785769231); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(194.7, 196.2, 197.4); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #e14d43; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #e14d43; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(206.6666666667, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(206.6666666667, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(70.4769230769, 77.0025641026, 82.2230769231); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #69a8bb; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(94.5, 151.2, 168.3); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(70.4769230769, 77.0025641026, 82.2230769231); background-color: rgb(70.4769230769, 77.0025641026, 82.2230769231); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #e14d43; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(194.7, 196.2, 197.4); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #e14d43; border-color: rgb(221.4908256881, 56.1788990826, 45.0091743119); } .wp-pointer .wp-pointer-content h3:before { color: #e14d43; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #e14d43; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #e14d43; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #e14d43; } .attachment.details .check { background-color: #e14d43; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #e14d43; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #e14d43; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #e14d43; } .theme-section.current, .theme-filter.current { border-bottom-color: #363b3f; } body.more-filters-opened .more-filters { color: #fff; background-color: #363b3f; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #e14d43; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #e14d43; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(206.6666666667, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #e14d43; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(37.5230769231, 40.9974358974, 43.7769230769); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(206.6666666667, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #e14d43; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #e14d43; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e14d43; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #e14d43; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #e14d43; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e14d43; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e14d43; border-style: solid; box-shadow: 0 0 0 1px #e14d43; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e14d43; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e14d43; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e14d43; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.0183486239, 118.6422018349, 110.9816513761), 0 0 2px 1px #e14d43; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e14d43; color: #0073aa; }css/colors/midnight/colors-rtl.min.css000066600000052676152330733730014066 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#363b3f}.wp-core-ui .wp-ui-text-primary{color:#363b3f}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#e14d43}.wp-core-ui .wp-ui-text-highlight{color:#e14d43}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#69a8bb}.wp-core-ui .wp-ui-text-notification{color:#69a8bb}.wp-core-ui .wp-ui-text-icon{color:hsl(206.6666666667,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#363b3f}.view-switch a:hover:before{color:#69a8bb}#adminmenu,#adminmenuback,#adminmenuwrap{background:#363b3f}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(206.6666666667,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#e14d43}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(37.5230769231,40.9974358974,43.7769230769)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(37.5230769231,40.9974358974,43.7769230769)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(194.7,196.2,197.4)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(194.7,196.2,197.4)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#e14d43}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#e14d43}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#e14d43}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#69a8bb}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(37.5230769231,40.9974358974,43.7769230769)}#collapse-button{color:hsl(206.6666666667,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:#e14d43}#wpadminbar{color:#fff;background:#363b3f}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#e14d43;background:rgb(37.5230769231,40.9974358974,43.7769230769)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#e14d43}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#e14d43}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(37.5230769231,40.9974358974,43.7769230769)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(75.8214230769,76.4087307692,76.8785769231)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(194.7,196.2,197.4)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(206.6666666667,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#e14d43}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#e14d43}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(206.6666666667,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(70.4769230769,77.0025641026,82.2230769231)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#69a8bb}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(94.5,151.2,168.3)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(70.4769230769,77.0025641026,82.2230769231);background-color:rgb(70.4769230769,77.0025641026,82.2230769231)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#e14d43}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(194.7,196.2,197.4)}.wp-pointer .wp-pointer-content h3{background-color:#e14d43;border-color:rgb(221.4908256881,56.1788990826,45.0091743119)}.wp-pointer .wp-pointer-content h3:before{color:#e14d43}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#e14d43}.media-item .bar,.media-progress-bar div{background-color:#e14d43}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #e14d43}.attachment.details .check{background-color:#e14d43;box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #e14d43}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#e14d43}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#e14d43}.theme-filter.current,.theme-section.current{border-bottom-color:#363b3f}body.more-filters-opened .more-filters{color:#fff;background-color:#363b3f}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#e14d43;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#e14d43;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}div#wp-responsive-toggle a:before{color:hsl(206.6666666667,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#e14d43}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(37.5230769231,40.9974358974,43.7769230769)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(206.6666666667,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#e14d43}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#e14d43}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e14d43}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#e14d43}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#e14d43;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e14d43}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e14d43;border-style:solid;box-shadow:0 0 0 1px #e14d43;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e14d43}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e14d43}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e14d43}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.0183486239,118.6422018349,110.9816513761),0 0 2px 1px #e14d43}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e14d43;color:#0073aa}css/colors/light/colors.css000066600000060555152330733730012004 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f5f5f5; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #333; background-color: #e5e5e5; } .wp-core-ui .wp-ui-text-primary { color: #e5e5e5; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #888; } .wp-core-ui .wp-ui-text-highlight { color: #888; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #d64e07; } .wp-core-ui .wp-ui-text-notification { color: #d64e07; } .wp-core-ui .wp-ui-text-icon { color: #999; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #e5e5e5; } .view-switch a:hover:before { color: #d64e07; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #e5e5e5; } #adminmenu a { color: #333; } #adminmenu div.wp-menu-image:before { color: #999; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #888; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #ccc; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f5f5f5; border-bottom-color: #f5f5f5; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #fff; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: #fff; } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #04a4cc; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #333; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #04a4cc; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f5f5f5; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #888; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #ccc; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #d64e07; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #333; background: #fff; } /* Admin Menu: collapse button */ #collapse-button { color: #777; } #collapse-button:hover, #collapse-button:focus { color: #04a4cc; } /* Admin Bar */ #wpadminbar { color: #333; background: #e5e5e5; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #333; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #999; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #04a4cc; background: #fff; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #04a4cc; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #04a4cc; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #fff; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(246.85, 246.85, 246.85); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(104.4, 104.4, 104.4); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #999; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #04a4cc; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #04a4cc; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #999; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #999; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #333; background: rgb(246.85, 246.85, 246.85); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #d64e07; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(192.6, 70.2, 6.3); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(246.85, 246.85, 246.85); background-color: rgb(246.85, 246.85, 246.85); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #333; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #04a4cc; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(104.4, 104.4, 104.4); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #04a4cc; border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154); } .wp-pointer .wp-pointer-content h3:before { color: #04a4cc; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #04a4cc; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #04a4cc; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #04a4cc; } .attachment.details .check { background-color: #04a4cc; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #04a4cc; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #04a4cc; } .theme-section.current, .theme-filter.current { border-bottom-color: #e5e5e5; } body.more-filters-opened .more-filters { color: #333; background-color: #e5e5e5; } body.more-filters-opened .more-filters:before { color: #333; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #888; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #888; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #999; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #888; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #fff; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #999; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #04a4cc; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #04a4cc; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #04a4cc; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #04a4cc; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #04a4cc; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #04a4cc; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #04a4cc; border-style: solid; box-shadow: 0 0 0 1px #04a4cc; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #04a4cc; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #04a4cc; color: #0073aa; } /* Override the theme filter highlight color for this scheme */ .theme-section.current, .theme-filter.current { border-bottom-color: #04a4cc; }css/colors/light/colors.scss000066600000001557152330733730012164 0ustar00@use "sass:color"; $highlight-color: #04a4cc; $text-color: #333; $menu-avatar-frame: #aaa; @use "../_admin.scss" with ( $scheme-name: "light", $base-color: #e5e5e5, $icon-color: #999, $text-color: $text-color, $highlight-color: $highlight-color, $notification-color: #d64e07, $body-background: #f5f5f5, $menu-highlight-text: #fff, $menu-highlight-icon: #ccc, $menu-highlight-background: #888, $menu-bubble-text: #fff, $menu-submenu-background: #fff, $menu-collapse-text: #777, $menu-collapse-focus-icon: #555, $dashboard-accent-1: $highlight-color, $dashboard-accent-2: color.adjust(color.adjust($highlight-color, $lightness: 7%), $saturation: -15%), $dashboard-icon-background: $text-color ); /* Override the theme filter highlight color for this scheme */ .theme-section.current, .theme-filter.current { border-bottom-color: admin.$highlight-color; } css/colors/light/colors.min.css000066600000051723152330733730012563 0ustar00/*! This file is auto-generated */ body{background:#f5f5f5}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#333;background-color:#e5e5e5}.wp-core-ui .wp-ui-text-primary{color:#e5e5e5}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#888}.wp-core-ui .wp-ui-text-highlight{color:#888}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d64e07}.wp-core-ui .wp-ui-text-notification{color:#d64e07}.wp-core-ui .wp-ui-text-icon{color:#999}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#e5e5e5}.view-switch a:hover:before{color:#d64e07}#adminmenu,#adminmenuback,#adminmenuwrap{background:#e5e5e5}#adminmenu a{color:#333}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#888}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#ccc}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f5f5f5;border-bottom-color:#f5f5f5}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#fff}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:#fff}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(104.4,104.4,104.4)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(104.4,104.4,104.4)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#04a4cc}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#333}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#04a4cc}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f5f5f5}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#888}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#ccc}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#d64e07}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#333;background:#fff}#collapse-button{color:#777}#collapse-button:focus,#collapse-button:hover{color:#04a4cc}#wpadminbar{color:#333;background:#e5e5e5}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#333}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#999}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#04a4cc;background:#fff}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#04a4cc}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#04a4cc}#wpadminbar .menupop .ab-sub-wrapper{background:#fff}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(246.85,246.85,246.85)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(104.4,104.4,104.4)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#999}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#04a4cc}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#04a4cc}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#999}#wpadminbar #adminbarsearch:before{color:#999}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#333;background:rgb(246.85,246.85,246.85)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d64e07}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(192.6,70.2,6.3)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(246.85,246.85,246.85);background-color:rgb(246.85,246.85,246.85)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#333}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#04a4cc}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(104.4,104.4,104.4)}.wp-pointer .wp-pointer-content h3{background-color:#04a4cc;border-color:rgb(3.5096153846,143.8942307692,178.9903846154)}.wp-pointer .wp-pointer-content h3:before{color:#04a4cc}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#04a4cc}.media-item .bar,.media-progress-bar div{background-color:#04a4cc}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #04a4cc}.attachment.details .check{background-color:#04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #04a4cc}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#04a4cc}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#04a4cc}.theme-filter.current,.theme-section.current{border-bottom-color:#e5e5e5}body.more-filters-opened .more-filters{color:#333;background-color:#e5e5e5}body.more-filters-opened .more-filters:before{color:#333}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#888;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#888;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}div#wp-responsive-toggle a:before{color:#999}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#888}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#fff}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#999}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#04a4cc}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#04a4cc}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#04a4cc}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#04a4cc}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#04a4cc;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#04a4cc}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#04a4cc;border-style:solid;box-shadow:0 0 0 1px #04a4cc;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#04a4cc}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#04a4cc}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#04a4cc}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#04a4cc;color:#0073aa}.theme-filter.current,.theme-section.current{border-bottom-color:#04a4cc}css/colors/light/colors-rtl.css000066600000060556152330733730012604 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f5f5f5; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #333; background-color: #e5e5e5; } .wp-core-ui .wp-ui-text-primary { color: #e5e5e5; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #888; } .wp-core-ui .wp-ui-text-highlight { color: #888; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #d64e07; } .wp-core-ui .wp-ui-text-notification { color: #d64e07; } .wp-core-ui .wp-ui-text-icon { color: #999; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #e5e5e5; } .view-switch a:hover:before { color: #d64e07; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #e5e5e5; } #adminmenu a { color: #333; } #adminmenu div.wp-menu-image:before { color: #999; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #888; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #ccc; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f5f5f5; border-bottom-color: #f5f5f5; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #fff; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #fff; } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(104.4, 104.4, 104.4); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #04a4cc; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #333; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #04a4cc; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f5f5f5; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #888; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #ccc; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #d64e07; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #333; background: #fff; } /* Admin Menu: collapse button */ #collapse-button { color: #777; } #collapse-button:hover, #collapse-button:focus { color: #04a4cc; } /* Admin Bar */ #wpadminbar { color: #333; background: #e5e5e5; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #333; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #999; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #04a4cc; background: #fff; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #04a4cc; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #04a4cc; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #fff; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(246.85, 246.85, 246.85); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(104.4, 104.4, 104.4); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #999; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #04a4cc; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #04a4cc; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #999; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #999; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #333; background: rgb(246.85, 246.85, 246.85); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #d64e07; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(192.6, 70.2, 6.3); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(246.85, 246.85, 246.85); background-color: rgb(246.85, 246.85, 246.85); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #333; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #04a4cc; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(104.4, 104.4, 104.4); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #04a4cc; border-color: rgb(3.5096153846, 143.8942307692, 178.9903846154); } .wp-pointer .wp-pointer-content h3:before { color: #04a4cc; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #04a4cc; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #04a4cc; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #04a4cc; } .attachment.details .check { background-color: #04a4cc; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #04a4cc; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #04a4cc; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #04a4cc; } .theme-section.current, .theme-filter.current { border-bottom-color: #e5e5e5; } body.more-filters-opened .more-filters { color: #333; background-color: #e5e5e5; } body.more-filters-opened .more-filters:before { color: #333; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #888; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #888; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #999; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #888; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #fff; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #999; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #04a4cc; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #04a4cc; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #04a4cc; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #04a4cc; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #04a4cc; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #04a4cc; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #04a4cc; border-style: solid; box-shadow: 0 0 0 1px #04a4cc; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #04a4cc; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #04a4cc; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(8.8269230769, 201.9038461538, 250.1730769231), 0 0 2px 1px #04a4cc; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #04a4cc; color: #0073aa; } /* Override the theme filter highlight color for this scheme */ .theme-section.current, .theme-filter.current { border-bottom-color: #04a4cc; }css/colors/light/colors-rtl.min.css000066600000051724152330733730013363 0ustar00/*! This file is auto-generated */ body{background:#f5f5f5}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#333;background-color:#e5e5e5}.wp-core-ui .wp-ui-text-primary{color:#e5e5e5}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#888}.wp-core-ui .wp-ui-text-highlight{color:#888}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d64e07}.wp-core-ui .wp-ui-text-notification{color:#d64e07}.wp-core-ui .wp-ui-text-icon{color:#999}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#e5e5e5}.view-switch a:hover:before{color:#d64e07}#adminmenu,#adminmenuback,#adminmenuwrap{background:#e5e5e5}#adminmenu a{color:#333}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#888}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#ccc}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f5f5f5;border-bottom-color:#f5f5f5}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#fff}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:#fff}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(104.4,104.4,104.4)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(104.4,104.4,104.4)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#04a4cc}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#333}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#04a4cc}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f5f5f5}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#888}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#ccc}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#d64e07}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#333;background:#fff}#collapse-button{color:#777}#collapse-button:focus,#collapse-button:hover{color:#04a4cc}#wpadminbar{color:#333;background:#e5e5e5}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#333}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#999}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#04a4cc;background:#fff}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#04a4cc}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#04a4cc}#wpadminbar .menupop .ab-sub-wrapper{background:#fff}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(246.85,246.85,246.85)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(104.4,104.4,104.4)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#999}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#04a4cc}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#04a4cc}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#999}#wpadminbar #adminbarsearch:before{color:#999}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#333;background:rgb(246.85,246.85,246.85)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d64e07}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(192.6,70.2,6.3)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(246.85,246.85,246.85);background-color:rgb(246.85,246.85,246.85)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#333}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#04a4cc}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(104.4,104.4,104.4)}.wp-pointer .wp-pointer-content h3{background-color:#04a4cc;border-color:rgb(3.5096153846,143.8942307692,178.9903846154)}.wp-pointer .wp-pointer-content h3:before{color:#04a4cc}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#04a4cc}.media-item .bar,.media-progress-bar div{background-color:#04a4cc}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #04a4cc}.attachment.details .check{background-color:#04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #04a4cc}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#04a4cc}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#04a4cc}.theme-filter.current,.theme-section.current{border-bottom-color:#e5e5e5}body.more-filters-opened .more-filters{color:#333;background-color:#e5e5e5}body.more-filters-opened .more-filters:before{color:#333}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#888;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#888;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}div#wp-responsive-toggle a:before{color:#999}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#888}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#fff}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#999}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#04a4cc}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#04a4cc}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#04a4cc}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#04a4cc}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#04a4cc;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#04a4cc}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#04a4cc;border-style:solid;box-shadow:0 0 0 1px #04a4cc;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#04a4cc}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#04a4cc}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#04a4cc}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(8.8269230769,201.9038461538,250.1730769231),0 0 2px 1px #04a4cc}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#04a4cc;color:#0073aa}.theme-filter.current,.theme-section.current{border-bottom-color:#04a4cc}css/colors/coffee/colors.css000066600000061452152330733730012121 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #59524c; } .wp-core-ui .wp-ui-text-primary { color: #59524c; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #c7a589; } .wp-core-ui .wp-ui-text-highlight { color: #c7a589; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #9ea476; } .wp-core-ui .wp-ui-text-notification { color: #9ea476; } .wp-core-ui .wp-ui-text-icon { color: hsl(27.6923076923, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #59524c; } .view-switch a:hover:before { color: #9ea476; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #59524c; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(27.6923076923, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #c7a589; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(205.2, 203.1, 201.3); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(205.2, 203.1, 201.3); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #c7a589; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #c7a589; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #c7a589; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #9ea476; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(27.6923076923, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #c7a589; } /* Admin Bar */ #wpadminbar { color: #fff; background: #59524c; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #c7a589; background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #c7a589; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #c7a589; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(101.2318636364, 100.2821643357, 99.4681363636); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(205.2, 203.1, 201.3); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #c7a589; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #c7a589; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(27.6923076923, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(108.2563636364, 99.7418181818, 92.4436363636); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #9ea476; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(142.2, 147.6, 106.2); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636); background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #c7a589; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(205.2, 203.1, 201.3); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #c7a589; border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517); } .wp-pointer .wp-pointer-content h3:before { color: #c7a589; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #c7a589; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #c7a589; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #c7a589; } .attachment.details .check { background-color: #c7a589; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #c7a589; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #c7a589; } .theme-section.current, .theme-filter.current { border-bottom-color: #59524c; } body.more-filters-opened .more-filters { color: #fff; background-color: #59524c; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #c7a589; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #c7a589; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(27.6923076923, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #c7a589; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(27.6923076923, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #c7a589; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #c7a589; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #c7a589; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #c7a589; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #c7a589; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #c7a589; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #c7a589; border-style: solid; box-shadow: 0 0 0 1px #c7a589; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #c7a589; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #c7a589; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #c7a589; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #c7a589; color: #0073aa; }css/colors/coffee/colors.scss000066600000000341152330733730012272 0ustar00$base-color: #59524c; @use "../_admin.scss" with ( $scheme-name: "coffee", $base-color: $base-color, $highlight-color: #c7a589, $notification-color: #9ea476, $form-checked: $base-color, $low-contrast-theme: "true" ); css/colors/coffee/colors.min.css000066600000052674152330733730012711 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#59524c}.wp-core-ui .wp-ui-text-primary{color:#59524c}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#c7a589}.wp-core-ui .wp-ui-text-highlight{color:#c7a589}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#9ea476}.wp-core-ui .wp-ui-text-notification{color:#9ea476}.wp-core-ui .wp-ui-text-icon{color:hsl(27.6923076923,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#59524c}.view-switch a:hover:before{color:#9ea476}#adminmenu,#adminmenuback,#adminmenuwrap{background:#59524c}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(27.6923076923,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#c7a589}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(69.7436363636,64.2581818182,59.5563636364)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(69.7436363636,64.2581818182,59.5563636364)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(205.2,203.1,201.3)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(205.2,203.1,201.3)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#c7a589}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#c7a589}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#c7a589}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#9ea476}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(69.7436363636,64.2581818182,59.5563636364)}#collapse-button{color:hsl(27.6923076923,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:#c7a589}#wpadminbar{color:#fff;background:#59524c}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#c7a589;background:rgb(69.7436363636,64.2581818182,59.5563636364)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#c7a589}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#c7a589}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(69.7436363636,64.2581818182,59.5563636364)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(101.2318636364,100.2821643357,99.4681363636)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(205.2,203.1,201.3)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(27.6923076923,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#c7a589}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#c7a589}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(108.2563636364,99.7418181818,92.4436363636)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#9ea476}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(142.2,147.6,106.2)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(108.2563636364,99.7418181818,92.4436363636);background-color:rgb(108.2563636364,99.7418181818,92.4436363636)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#c7a589}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(205.2,203.1,201.3)}.wp-pointer .wp-pointer-content h3{background-color:#c7a589;border-color:rgb(190.7931034483,151.8103448276,119.7068965517)}.wp-pointer .wp-pointer-content h3:before{color:#c7a589}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#c7a589}.media-item .bar,.media-progress-bar div{background-color:#c7a589}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #c7a589}.attachment.details .check{background-color:#c7a589;box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #c7a589}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#c7a589}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#c7a589}.theme-filter.current,.theme-section.current{border-bottom-color:#59524c}body.more-filters-opened .more-filters{color:#fff;background-color:#59524c}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#c7a589;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#c7a589;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}div#wp-responsive-toggle a:before{color:hsl(27.6923076923,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#c7a589}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(69.7436363636,64.2581818182,59.5563636364)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(27.6923076923,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#c7a589}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#c7a589}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#c7a589}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#c7a589}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#c7a589;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#c7a589}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#c7a589;border-style:solid;box-shadow:0 0 0 1px #c7a589;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#c7a589}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#c7a589}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#c7a589}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#c7a589;color:#0073aa}css/colors/coffee/colors-rtl.css000066600000061453152330733730012721 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #59524c; } .wp-core-ui .wp-ui-text-primary { color: #59524c; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #c7a589; } .wp-core-ui .wp-ui-text-highlight { color: #c7a589; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #9ea476; } .wp-core-ui .wp-ui-text-notification { color: #9ea476; } .wp-core-ui .wp-ui-text-icon { color: hsl(27.6923076923, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #59524c; } .view-switch a:hover:before { color: #9ea476; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #59524c; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(27.6923076923, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #c7a589; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(205.2, 203.1, 201.3); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(205.2, 203.1, 201.3); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #c7a589; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #c7a589; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #c7a589; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #9ea476; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(27.6923076923, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #c7a589; } /* Admin Bar */ #wpadminbar { color: #fff; background: #59524c; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #c7a589; background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #c7a589; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #c7a589; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(101.2318636364, 100.2821643357, 99.4681363636); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(205.2, 203.1, 201.3); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #c7a589; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #c7a589; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(27.6923076923, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(27.6923076923, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(108.2563636364, 99.7418181818, 92.4436363636); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #9ea476; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(142.2, 147.6, 106.2); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(108.2563636364, 99.7418181818, 92.4436363636); background-color: rgb(108.2563636364, 99.7418181818, 92.4436363636); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #c7a589; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(205.2, 203.1, 201.3); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #c7a589; border-color: rgb(190.7931034483, 151.8103448276, 119.7068965517); } .wp-pointer .wp-pointer-content h3:before { color: #c7a589; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #c7a589; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #c7a589; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #c7a589; } .attachment.details .check { background-color: #c7a589; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c7a589; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #c7a589; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #c7a589; } .theme-section.current, .theme-filter.current { border-bottom-color: #59524c; } body.more-filters-opened .more-filters { color: #fff; background-color: #59524c; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #c7a589; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #c7a589; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(27.6923076923, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #c7a589; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(69.7436363636, 64.2581818182, 59.5563636364); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(27.6923076923, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #c7a589; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #c7a589; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #c7a589; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #c7a589; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #c7a589; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #c7a589; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #c7a589; border-style: solid; box-shadow: 0 0 0 1px #c7a589; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #c7a589; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #c7a589; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #c7a589; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(215.4137931034, 191.3793103448, 171.5862068966), 0 0 2px 1px #c7a589; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #c7a589; color: #0073aa; }css/colors/coffee/colors-rtl.min.css000066600000052675152330733730013511 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#59524c}.wp-core-ui .wp-ui-text-primary{color:#59524c}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#c7a589}.wp-core-ui .wp-ui-text-highlight{color:#c7a589}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#9ea476}.wp-core-ui .wp-ui-text-notification{color:#9ea476}.wp-core-ui .wp-ui-text-icon{color:hsl(27.6923076923,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#59524c}.view-switch a:hover:before{color:#9ea476}#adminmenu,#adminmenuback,#adminmenuwrap{background:#59524c}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(27.6923076923,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#c7a589}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(69.7436363636,64.2581818182,59.5563636364)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(69.7436363636,64.2581818182,59.5563636364)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(205.2,203.1,201.3)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(205.2,203.1,201.3)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#c7a589}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#c7a589}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#c7a589}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#9ea476}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(69.7436363636,64.2581818182,59.5563636364)}#collapse-button{color:hsl(27.6923076923,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:#c7a589}#wpadminbar{color:#fff;background:#59524c}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#c7a589;background:rgb(69.7436363636,64.2581818182,59.5563636364)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#c7a589}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#c7a589}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(69.7436363636,64.2581818182,59.5563636364)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(101.2318636364,100.2821643357,99.4681363636)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(205.2,203.1,201.3)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(27.6923076923,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#c7a589}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#c7a589}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(27.6923076923,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(108.2563636364,99.7418181818,92.4436363636)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#9ea476}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(142.2,147.6,106.2)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(108.2563636364,99.7418181818,92.4436363636);background-color:rgb(108.2563636364,99.7418181818,92.4436363636)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#c7a589}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(205.2,203.1,201.3)}.wp-pointer .wp-pointer-content h3{background-color:#c7a589;border-color:rgb(190.7931034483,151.8103448276,119.7068965517)}.wp-pointer .wp-pointer-content h3:before{color:#c7a589}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#c7a589}.media-item .bar,.media-progress-bar div{background-color:#c7a589}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #c7a589}.attachment.details .check{background-color:#c7a589;box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #c7a589}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#c7a589}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#c7a589}.theme-filter.current,.theme-section.current{border-bottom-color:#59524c}body.more-filters-opened .more-filters{color:#fff;background-color:#59524c}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#c7a589;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#c7a589;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}div#wp-responsive-toggle a:before{color:hsl(27.6923076923,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#c7a589}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(69.7436363636,64.2581818182,59.5563636364)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(27.6923076923,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#c7a589}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#c7a589}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#c7a589}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#c7a589}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#c7a589;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#c7a589}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#c7a589;border-style:solid;box-shadow:0 0 0 1px #c7a589;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#c7a589}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#c7a589}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#c7a589}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(215.4137931034,191.3793103448,171.5862068966),0 0 2px 1px #c7a589}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#c7a589;color:#0073aa}css/colors/blue/colors.css000066600000060367152330733730011625 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #52accc; } .wp-core-ui .wp-ui-text-primary { color: #52accc; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #096484; } .wp-core-ui .wp-ui-text-highlight { color: #096484; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #e1a948; } .wp-core-ui .wp-ui-text-notification { color: #e1a948; } .wp-core-ui .wp-ui-text-icon { color: #e5f8ff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #52accc; } .view-switch a:hover:before { color: #e1a948; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #52accc; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #e5f8ff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #096484; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #4796b3; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: #4796b3; } #adminmenu .wp-submenu .wp-submenu-head { color: #e2ecf1; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: #e2ecf1; } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #fff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #fff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #096484; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #e1a948; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: #4796b3; } /* Admin Menu: collapse button */ #collapse-button { color: #e5f8ff; } #collapse-button:hover, #collapse-button:focus { color: #fff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #52accc; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #e5f8ff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #fff; background: #4796b3; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #fff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #fff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #4796b3; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(116.162375, 182.0949364754, 205.537625); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: #e2ecf1; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #e5f8ff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #fff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #fff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #e5f8ff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #e5f8ff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(109.571875, 185.228125, 212.128125); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #e1a948; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(202.5, 152.1, 64.8); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(109.571875, 185.228125, 212.128125); background-color: rgb(109.571875, 185.228125, 212.128125); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info .username { color: #e2ecf1; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #096484; border-color: rgb(7.3723404255, 81.914893617, 108.1276595745); } .wp-pointer .wp-pointer-content h3:before { color: #096484; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #096484; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #096484; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484; } .attachment.details .check { background-color: #096484; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #096484; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #096484; } .theme-section.current, .theme-filter.current { border-bottom-color: #52accc; } body.more-filters-opened .more-filters { color: #fff; background-color: #52accc; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #096484; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #096484; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #e5f8ff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #096484; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #4796b3; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #e5f8ff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #096484; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #e1a948; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e1a948; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #e1a948; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #e1a948; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e1a948; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e1a948; border-style: solid; box-shadow: 0 0 0 1px #e1a948; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e1a948; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e1a948; color: #0073aa; }css/colors/blue/colors.scss000066600000000561152330733730011776 0ustar00$highlight-color: #096484; @use "../_admin.scss" with ( $scheme-name: "blue", $base-color: #52accc, $icon-color: #e5f8ff, $highlight-color: $highlight-color, $notification-color: #e1a948, $button-color: #e1a948, $menu-submenu-text: #e2ecf1, $menu-submenu-focus-text: #fff, $menu-submenu-background: #4796b3, $dashboard-icon-background: $highlight-color ); css/colors/blue/colors.min.css000066600000051657152330733730012411 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:#4796b3}#adminmenu .wp-submenu .wp-submenu-head{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-button{color:#e5f8ff}#collapse-button:focus,#collapse-button:hover{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(116.162375,182.0949364754,205.537625)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#fff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#e5f8ff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#e1a948}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(202.5,152.1,64.8)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(109.571875,185.228125,212.128125);background-color:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:rgb(7.3723404255,81.914893617,108.1276595745)}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #096484}.attachment.details .check{background-color:#096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#096484}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters{color:#fff;background-color:#52accc}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#096484;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#e5f8ff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#096484}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#e1a948}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e1a948}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#e1a948}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#e1a948;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e1a948}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e1a948;border-style:solid;box-shadow:0 0 0 1px #e1a948;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e1a948}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e1a948;color:#0073aa}css/colors/blue/colors-rtl.css000066600000060370152330733730012416 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #52accc; } .wp-core-ui .wp-ui-text-primary { color: #52accc; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #096484; } .wp-core-ui .wp-ui-text-highlight { color: #096484; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #e1a948; } .wp-core-ui .wp-ui-text-notification { color: #e1a948; } .wp-core-ui .wp-ui-text-icon { color: #e5f8ff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #52accc; } .view-switch a:hover:before { color: #e1a948; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #52accc; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #e5f8ff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #096484; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: #4796b3; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #4796b3; } #adminmenu .wp-submenu .wp-submenu-head { color: #e2ecf1; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: #e2ecf1; } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #fff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #fff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #096484; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #e1a948; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: #4796b3; } /* Admin Menu: collapse button */ #collapse-button { color: #e5f8ff; } #collapse-button:hover, #collapse-button:focus { color: #fff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #52accc; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #e5f8ff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #fff; background: #4796b3; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #fff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #fff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: #4796b3; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(116.162375, 182.0949364754, 205.537625); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: #e2ecf1; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #e5f8ff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #fff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #fff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #e5f8ff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #e5f8ff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(109.571875, 185.228125, 212.128125); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #e1a948; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(202.5, 152.1, 64.8); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(109.571875, 185.228125, 212.128125); background-color: rgb(109.571875, 185.228125, 212.128125); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info .username { color: #e2ecf1; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #096484; border-color: rgb(7.3723404255, 81.914893617, 108.1276595745); } .wp-pointer .wp-pointer-content h3:before { color: #096484; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #096484; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #096484; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #096484; } .attachment.details .check { background-color: #096484; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #096484; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #096484; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #096484; } .theme-section.current, .theme-filter.current { border-bottom-color: #52accc; } body.more-filters-opened .more-filters { color: #fff; background-color: #52accc; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #096484; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #096484; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #e5f8ff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #096484; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #4796b3; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #e5f8ff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #096484; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #e1a948; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #e1a948; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #e1a948; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #e1a948; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #e1a948; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #e1a948; border-style: solid; box-shadow: 0 0 0 1px #e1a948; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #e1a948; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #e1a948; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(232.1830985915, 189.5915492958, 115.8169014085), 0 0 2px 1px #e1a948; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #e1a948; color: #0073aa; }css/colors/blue/colors-rtl.min.css000066600000051660152330733730013202 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:#4796b3}#adminmenu .wp-submenu .wp-submenu-head{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-button{color:#e5f8ff}#collapse-button:focus,#collapse-button:hover{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(116.162375,182.0949364754,205.537625)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#fff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#e5f8ff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#e1a948}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(202.5,152.1,64.8)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(109.571875,185.228125,212.128125);background-color:rgb(109.571875,185.228125,212.128125)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:rgb(7.3723404255,81.914893617,108.1276595745)}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #096484}.attachment.details .check{background-color:#096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#096484}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters{color:#fff;background-color:#52accc}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#096484;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#e5f8ff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#096484}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#e1a948}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#e1a948}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#e1a948}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#e1a948;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#e1a948}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#e1a948;border-style:solid;box-shadow:0 0 0 1px #e1a948;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#e1a948}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#e1a948}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(232.1830985915,189.5915492958,115.8169014085),0 0 2px 1px #e1a948}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#e1a948;color:#0073aa}css/colors/sunrise/colors.css000066600000062256152330733730012365 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #cf4944; } .wp-core-ui .wp-ui-text-primary { color: #cf4944; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #dd823b; } .wp-core-ui .wp-ui-text-highlight { color: #dd823b; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #ccaf0b; } .wp-core-ui .wp-ui-text-notification { color: #ccaf0b; } .wp-core-ui .wp-ui-text-icon { color: hsl(2.1582733813, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #cf4944; } .view-switch a:hover:before { color: #ccaf0b; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #cf4944; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(2.1582733813, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #dd823b; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #dd823b; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #ccaf0b; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(190.4217021277, 53.969787234, 48.8782978723); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(2.1582733813, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar */ #wpadminbar { color: #fff; background: #cf4944; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(207.3164148936, 107.1221761059, 103.3835851064); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(240.6, 200.4, 198.9); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(214.2919148936, 100.6485106383, 96.4080851064); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #ccaf0b; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(183.6, 157.5, 9.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(240.6, 200.4, 198.9); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #dd823b; border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304); } .wp-pointer .wp-pointer-content h3:before { color: #dd823b; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #dd823b; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #dd823b; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #dd823b; } .attachment.details .check { background-color: #dd823b; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #dd823b; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #dd823b; } .theme-section.current, .theme-filter.current { border-bottom-color: #cf4944; } body.more-filters-opened .more-filters { color: #fff; background-color: #cf4944; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #dd823b; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #dd823b; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(2.1582733813, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #dd823b; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(2.1582733813, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #dd823b; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #dd823b; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #dd823b; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #dd823b; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #dd823b; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #dd823b; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #dd823b; border-style: solid; box-shadow: 0 0 0 1px #dd823b; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #dd823b; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #dd823b; color: #0073aa; }css/colors/sunrise/colors.scss000066600000000425152330733730012536 0ustar00@use "sass:color"; $highlight-color: #dd823b; @use "../_admin.scss" with ( $scheme-name: "sunrise", $base-color: #cf4944, $highlight-color: $highlight-color, $notification-color: #ccaf0b, $menu-submenu-focus-text: color.adjust($highlight-color, $lightness: 35%) ); css/colors/sunrise/colors.min.css000066600000053456152330733730013151 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:hsl(2.1582733813,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(2.1582733813,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(190.4217021277,53.969787234,48.8782978723)}#collapse-button{color:hsl(2.1582733813,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:rgb(247.3869565217,227.0108695652,211.1130434783);background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(207.3164148936,107.1221761059,103.3835851064)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(240.6,200.4,198.9)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(2.1582733813,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#ccaf0b}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(183.6,157.5,9.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(214.2919148936,100.6485106383,96.4080851064);background-color:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(240.6,200.4,198.9)}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:rgb(216.8782608696,116.1847826087,37.6217391304)}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #dd823b}.attachment.details .check{background-color:#dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters{color:#fff;background-color:#cf4944}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#dd823b;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}div#wp-responsive-toggle a:before{color:hsl(2.1582733813,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(190.4217021277,53.969787234,48.8782978723)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(2.1582733813,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#dd823b}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#dd823b}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#dd823b}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#dd823b}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#dd823b;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#dd823b}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#dd823b;border-style:solid;box-shadow:0 0 0 1px #dd823b;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#dd823b}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#dd823b;color:#0073aa}css/colors/sunrise/colors-rtl.css000066600000062257152330733730013165 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #cf4944; } .wp-core-ui .wp-ui-text-primary { color: #cf4944; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #dd823b; } .wp-core-ui .wp-ui-text-highlight { color: #dd823b; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #ccaf0b; } .wp-core-ui .wp-ui-text-notification { color: #ccaf0b; } .wp-core-ui .wp-ui-text-icon { color: hsl(2.1582733813, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #cf4944; } .view-switch a:hover:before { color: #ccaf0b; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #cf4944; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(2.1582733813, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #dd823b; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(190.4217021277, 53.969787234, 48.8782978723); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(240.6, 200.4, 198.9); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #dd823b; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #ccaf0b; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(190.4217021277, 53.969787234, 48.8782978723); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(2.1582733813, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar */ #wpadminbar { color: #fff; background: #cf4944; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(207.3164148936, 107.1221761059, 103.3835851064); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(240.6, 200.4, 198.9); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(2.1582733813, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(2.1582733813, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(214.2919148936, 100.6485106383, 96.4080851064); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #ccaf0b; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(183.6, 157.5, 9.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); background-color: rgb(214.2919148936, 100.6485106383, 96.4080851064); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: rgb(247.3869565217, 227.0108695652, 211.1130434783); } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(240.6, 200.4, 198.9); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #dd823b; border-color: rgb(216.8782608696, 116.1847826087, 37.6217391304); } .wp-pointer .wp-pointer-content h3:before { color: #dd823b; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #dd823b; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #dd823b; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #dd823b; } .attachment.details .check { background-color: #dd823b; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #dd823b; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #dd823b; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #dd823b; } .theme-section.current, .theme-filter.current { border-bottom-color: #cf4944; } body.more-filters-opened .more-filters { color: #fff; background-color: #cf4944; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #dd823b; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #dd823b; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(2.1582733813, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #dd823b; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(190.4217021277, 53.969787234, 48.8782978723); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(2.1582733813, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #dd823b; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #dd823b; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #dd823b; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #dd823b; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #dd823b; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #dd823b; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #dd823b; border-style: solid; box-shadow: 0 0 0 1px #dd823b; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #dd823b; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #dd823b; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(228.5391304348, 157.7173913043, 102.4608695652), 0 0 2px 1px #dd823b; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #dd823b; color: #0073aa; }css/colors/sunrise/colors-rtl.min.css000066600000053457152330733730013751 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:hsl(2.1582733813,7%,95%)}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:hsl(2.1582733813,7%,95%)}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(190.4217021277,53.969787234,48.8782978723)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(240.6,200.4,198.9)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(190.4217021277,53.969787234,48.8782978723)}#collapse-button{color:hsl(2.1582733813,7%,95%)}#collapse-button:focus,#collapse-button:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:rgb(247.3869565217,227.0108695652,211.1130434783);background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(190.4217021277,53.969787234,48.8782978723)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(207.3164148936,107.1221761059,103.3835851064)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(240.6,200.4,198.9)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:hsl(2.1582733813,7%,95%)}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar #adminbarsearch:before{color:hsl(2.1582733813,7%,95%)}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#ccaf0b}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(183.6,157.5,9.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(214.2919148936,100.6485106383,96.4080851064);background-color:rgb(214.2919148936,100.6485106383,96.4080851064)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:rgb(247.3869565217,227.0108695652,211.1130434783)}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(240.6,200.4,198.9)}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:rgb(216.8782608696,116.1847826087,37.6217391304)}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #dd823b}.attachment.details .check{background-color:#dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters{color:#fff;background-color:#cf4944}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#dd823b;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}div#wp-responsive-toggle a:before{color:hsl(2.1582733813,7%,95%)}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(190.4217021277,53.969787234,48.8782978723)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:hsl(2.1582733813,7%,95%)}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#dd823b}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#dd823b}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#dd823b}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#dd823b}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#dd823b;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#dd823b}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#dd823b;border-style:solid;box-shadow:0 0 0 1px #dd823b;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#dd823b}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#dd823b}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(228.5391304348,157.7173913043,102.4608695652),0 0 2px 1px #dd823b}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#dd823b;color:#0073aa}css/colors/ectoplasm/colors.css000066600000061162152330733730012657 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #523f6d; } .wp-core-ui .wp-ui-text-primary { color: #523f6d; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #a3b745; } .wp-core-ui .wp-ui-text-highlight { color: #a3b745; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #d46f15; } .wp-core-ui .wp-ui-text-notification { color: #d46f15; } .wp-core-ui .wp-ui-text-icon { color: #ece6f6; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #523f6d; } .view-switch a:hover:before { color: #d46f15; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #523f6d; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #ece6f6; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #a3b745; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(203.1, 197.4, 211.2); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(203.1, 197.4, 211.2); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #a3b745; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #a3b745; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #a3b745; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #d46f15; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } /* Admin Menu: collapse button */ #collapse-button { color: #ece6f6; } #collapse-button:hover, #collapse-button:focus { color: #a3b745; } /* Admin Bar */ #wpadminbar { color: #fff; background: #523f6d; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #ece6f6; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #a3b745; background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #a3b745; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #a3b745; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(100.2840283114, 83.3456627907, 124.3543372093); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(203.1, 197.4, 211.2); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #ece6f6; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #a3b745; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #a3b745; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #ece6f6; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #ece6f6; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(99.0197674419, 76.0761627907, 131.6238372093); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #d46f15; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(190.8, 99.9, 18.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093); background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #a3b745; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(203.1, 197.4, 211.2); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #a3b745; border-color: rgb(146.505952381, 164.4821428571, 62.0178571429); } .wp-pointer .wp-pointer-content h3:before { color: #a3b745; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #a3b745; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #a3b745; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #a3b745; } .attachment.details .check { background-color: #a3b745; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #a3b745; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #a3b745; } .theme-section.current, .theme-filter.current { border-bottom-color: #523f6d; } body.more-filters-opened .more-filters { color: #fff; background-color: #523f6d; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #a3b745; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #a3b745; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #ece6f6; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #a3b745; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #ece6f6; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #a3b745; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #a3b745; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #a3b745; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #a3b745; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #a3b745; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #a3b745; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #a3b745; border-style: solid; box-shadow: 0 0 0 1px #a3b745; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #a3b745; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #a3b745; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #a3b745; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #a3b745; color: #0073aa; }css/colors/ectoplasm/colors.scss000066600000000336152330733730013036 0ustar00$base-color: #523f6d; @use "../_admin.scss" with ( $scheme-name: "ectoplasm", $base-color: $base-color, $icon-color: #ece6f6, $highlight-color: #a3b745, $notification-color: #d46f15, $form-checked: $base-color, ); css/colors/ectoplasm/colors.min.css000066600000052426152330733730013444 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#523f6d}.wp-core-ui .wp-ui-text-primary{color:#523f6d}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#a3b745}.wp-core-ui .wp-ui-text-highlight{color:#a3b745}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d46f15}.wp-core-ui .wp-ui-text-notification{color:#d46f15}.wp-core-ui .wp-ui-text-icon{color:#ece6f6}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#523f6d}.view-switch a:hover:before{color:#d46f15}#adminmenu,#adminmenuback,#adminmenuwrap{background:#523f6d}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#ece6f6}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#a3b745}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(64.9802325581,49.9238372093,86.3761627907)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(64.9802325581,49.9238372093,86.3761627907)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(203.1,197.4,211.2)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(203.1,197.4,211.2)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#a3b745}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#a3b745}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#a3b745}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#d46f15}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(64.9802325581,49.9238372093,86.3761627907)}#collapse-button{color:#ece6f6}#collapse-button:focus,#collapse-button:hover{color:#a3b745}#wpadminbar{color:#fff;background:#523f6d}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#ece6f6}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#a3b745;background:rgb(64.9802325581,49.9238372093,86.3761627907)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#a3b745}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#a3b745}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(64.9802325581,49.9238372093,86.3761627907)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(100.2840283114,83.3456627907,124.3543372093)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(203.1,197.4,211.2)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#ece6f6}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#a3b745}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#a3b745}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#ece6f6}#wpadminbar #adminbarsearch:before{color:#ece6f6}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(99.0197674419,76.0761627907,131.6238372093)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d46f15}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(190.8,99.9,18.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(99.0197674419,76.0761627907,131.6238372093);background-color:rgb(99.0197674419,76.0761627907,131.6238372093)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#a3b745}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(203.1,197.4,211.2)}.wp-pointer .wp-pointer-content h3{background-color:#a3b745;border-color:rgb(146.505952381,164.4821428571,62.0178571429)}.wp-pointer .wp-pointer-content h3:before{color:#a3b745}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#a3b745}.media-item .bar,.media-progress-bar div{background-color:#a3b745}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #a3b745}.attachment.details .check{background-color:#a3b745;box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #a3b745}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#a3b745}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#a3b745}.theme-filter.current,.theme-section.current{border-bottom-color:#523f6d}body.more-filters-opened .more-filters{color:#fff;background-color:#523f6d}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#a3b745;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#a3b745;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}div#wp-responsive-toggle a:before{color:#ece6f6}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#a3b745}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(64.9802325581,49.9238372093,86.3761627907)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#ece6f6}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#a3b745}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#a3b745}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#a3b745}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#a3b745}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#a3b745;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#a3b745}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#a3b745;border-style:solid;box-shadow:0 0 0 1px #a3b745;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#a3b745}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#a3b745}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#a3b745}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#a3b745;color:#0073aa}css/colors/ectoplasm/colors-rtl.css000066600000061163152330733730013457 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #523f6d; } .wp-core-ui .wp-ui-text-primary { color: #523f6d; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #a3b745; } .wp-core-ui .wp-ui-text-highlight { color: #a3b745; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #d46f15; } .wp-core-ui .wp-ui-text-notification { color: #d46f15; } .wp-core-ui .wp-ui-text-icon { color: #ece6f6; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #523f6d; } .view-switch a:hover:before { color: #d46f15; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #523f6d; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #ece6f6; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #a3b745; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(203.1, 197.4, 211.2); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(203.1, 197.4, 211.2); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #a3b745; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #a3b745; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #a3b745; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #d46f15; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } /* Admin Menu: collapse button */ #collapse-button { color: #ece6f6; } #collapse-button:hover, #collapse-button:focus { color: #a3b745; } /* Admin Bar */ #wpadminbar { color: #fff; background: #523f6d; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #ece6f6; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #a3b745; background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #a3b745; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #a3b745; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(100.2840283114, 83.3456627907, 124.3543372093); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(203.1, 197.4, 211.2); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #ece6f6; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #a3b745; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #a3b745; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #ece6f6; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #ece6f6; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(99.0197674419, 76.0761627907, 131.6238372093); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #d46f15; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(190.8, 99.9, 18.9); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(99.0197674419, 76.0761627907, 131.6238372093); background-color: rgb(99.0197674419, 76.0761627907, 131.6238372093); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #a3b745; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(203.1, 197.4, 211.2); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #a3b745; border-color: rgb(146.505952381, 164.4821428571, 62.0178571429); } .wp-pointer .wp-pointer-content h3:before { color: #a3b745; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #a3b745; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #a3b745; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #a3b745; } .attachment.details .check { background-color: #a3b745; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #a3b745; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #a3b745; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #a3b745; } .theme-section.current, .theme-filter.current { border-bottom-color: #523f6d; } body.more-filters-opened .more-filters { color: #fff; background-color: #523f6d; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #a3b745; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #a3b745; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #ece6f6; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #a3b745; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(64.9802325581, 49.9238372093, 86.3761627907); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #ece6f6; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #a3b745; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #a3b745; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #a3b745; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #a3b745; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #a3b745; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #a3b745; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #a3b745; border-style: solid; box-shadow: 0 0 0 1px #a3b745; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #a3b745; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #a3b745; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #a3b745; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(181.8928571429, 198.3214285714, 104.6785714286), 0 0 2px 1px #a3b745; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #a3b745; color: #0073aa; }css/colors/ectoplasm/colors-rtl.min.css000066600000052427152330733730014244 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#523f6d}.wp-core-ui .wp-ui-text-primary{color:#523f6d}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#a3b745}.wp-core-ui .wp-ui-text-highlight{color:#a3b745}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d46f15}.wp-core-ui .wp-ui-text-notification{color:#d46f15}.wp-core-ui .wp-ui-text-icon{color:#ece6f6}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#523f6d}.view-switch a:hover:before{color:#d46f15}#adminmenu,#adminmenuback,#adminmenuwrap{background:#523f6d}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#ece6f6}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#a3b745}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(64.9802325581,49.9238372093,86.3761627907)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(64.9802325581,49.9238372093,86.3761627907)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(203.1,197.4,211.2)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(203.1,197.4,211.2)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#a3b745}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#a3b745}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#a3b745}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#d46f15}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(64.9802325581,49.9238372093,86.3761627907)}#collapse-button{color:#ece6f6}#collapse-button:focus,#collapse-button:hover{color:#a3b745}#wpadminbar{color:#fff;background:#523f6d}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#ece6f6}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#a3b745;background:rgb(64.9802325581,49.9238372093,86.3761627907)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#a3b745}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#a3b745}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(64.9802325581,49.9238372093,86.3761627907)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(100.2840283114,83.3456627907,124.3543372093)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(203.1,197.4,211.2)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#ece6f6}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#a3b745}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#a3b745}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#ece6f6}#wpadminbar #adminbarsearch:before{color:#ece6f6}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(99.0197674419,76.0761627907,131.6238372093)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#d46f15}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(190.8,99.9,18.9)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(99.0197674419,76.0761627907,131.6238372093);background-color:rgb(99.0197674419,76.0761627907,131.6238372093)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#a3b745}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(203.1,197.4,211.2)}.wp-pointer .wp-pointer-content h3{background-color:#a3b745;border-color:rgb(146.505952381,164.4821428571,62.0178571429)}.wp-pointer .wp-pointer-content h3:before{color:#a3b745}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#a3b745}.media-item .bar,.media-progress-bar div{background-color:#a3b745}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #a3b745}.attachment.details .check{background-color:#a3b745;box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #a3b745}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#a3b745}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#a3b745}.theme-filter.current,.theme-section.current{border-bottom-color:#523f6d}body.more-filters-opened .more-filters{color:#fff;background-color:#523f6d}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#a3b745;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#a3b745;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}div#wp-responsive-toggle a:before{color:#ece6f6}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#a3b745}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(64.9802325581,49.9238372093,86.3761627907)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#ece6f6}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#a3b745}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#a3b745}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#a3b745}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#a3b745}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#a3b745;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#a3b745}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#a3b745;border-style:solid;box-shadow:0 0 0 1px #a3b745;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#a3b745}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#a3b745}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#a3b745}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(181.8928571429,198.3214285714,104.6785714286),0 0 2px 1px #a3b745}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#a3b745;color:#0073aa}css/colors/_mixins.scss000066600000006223152330733730011215 0ustar00@use 'sass:color'; @use 'tokens'; /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ @mixin button( $button-text-color: #fff ) { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: tokens.$radius-s; color: $button-text-color; &:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: $button-text-color; } &:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: $button-text-color; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px tokens.$white; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } &:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: $button-text-color; } &:disabled, &.disabled { background: tokens.$gray-100; border-color: transparent; color: tokens.$gray-600; cursor: not-allowed; } &.active, &.active:focus, &.active:hover { background: var(--wp-admin-theme-color-darker-10); color: $button-text-color; border-color: transparent; box-shadow: none; } } /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ @mixin button-secondary() { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: tokens.$radius-s; color: var(--wp-admin-theme-color); &:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } &:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } &:disabled, &.disabled { background: transparent; border-color: tokens.$gray-300; color: tokens.$gray-600; cursor: not-allowed; } } /* * Tertiary button mixin - transparent background, gray text. */ @mixin button-tertiary() { background: transparent; border: 1px solid tokens.$gray-600; border-radius: tokens.$radius-s; color: tokens.$gray-900; &:hover { background: rgba(0, 0, 0, 0.05); border-color: tokens.$gray-700; color: tokens.$gray-900; } &:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: tokens.$gray-900; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:active { background: rgba(0, 0, 0, 0.1); border-color: tokens.$gray-700; color: tokens.$gray-900; } &:disabled, &.disabled { background: transparent; border-color: tokens.$gray-400; color: tokens.$gray-600; cursor: not-allowed; } } css/colors/_variables.scss000066600000005101152330733730011650 0ustar00@use "sass:color"; // Import design system tokens @use "tokens" as *; // assign default value to all undefined variables $scheme-name: "default" !default; // core variables $text-color: #fff !default; $base-color: #23282d !default; $icon-color: hsl(color.channel($base-color, "hue", $space: hsl), 7%, 95%) !default; $highlight-color: #0073aa !default; $notification-color: #d54e21 !default; // global $body-background: $gray-100 !default; $link: #0073aa !default; $link-focus: color.adjust($link, $lightness: 10%) !default; $button-color: $highlight-color !default; $button-text-color: $text-color !default; $form-checked: #7e8993 !default; // admin menu & admin-bar $menu-text: $text-color !default; $menu-icon: $icon-color !default; $menu-background: $base-color !default; $menu-highlight-text: $text-color !default; $menu-highlight-icon: $text-color !default; $menu-highlight-background: $highlight-color !default; $menu-current-text: $menu-highlight-text !default; $menu-current-icon: $menu-highlight-icon !default; $menu-current-background: $menu-highlight-background !default; $menu-submenu-text: color.mix( $base-color, $text-color, 30% ) !default; $menu-submenu-background: color.adjust($base-color, $lightness: -7%) !default; $menu-submenu-background-alt: color.adjust(color.adjust($menu-background, $lightness: 7%), $saturation: -7%) !default; $menu-submenu-focus-text: $highlight-color !default; $menu-submenu-current-text: $text-color !default; $menu-bubble-text: $text-color !default; $menu-bubble-background: $notification-color !default; $menu-bubble-current-text: $text-color !default; $menu-bubble-current-background: $menu-submenu-background !default; $menu-collapse-text: $menu-icon !default; $menu-collapse-icon: $menu-icon !default; $menu-collapse-focus-text: $text-color !default; $menu-collapse-focus-icon: $menu-highlight-icon !default; $adminbar-avatar-frame: color.adjust($menu-background, $lightness: 7%) !default; $adminbar-input-background: color.adjust($menu-background, $lightness: 7%) !default; $adminbar-recovery-exit-text: $menu-bubble-text !default; $adminbar-recovery-exit-background: $menu-bubble-background !default; $adminbar-recovery-exit-background-alt: color.mix(black, $adminbar-recovery-exit-background, 10%) !default; $menu-customizer-text: color.mix( $base-color, $text-color, 40% ) !default; // Dashboard Colors $custom-welcome-panel: "true" !default; $dashboard-accent-1: $menu-submenu-background !default; $dashboard-accent-2: $menu-background !default; $dashboard-icon-background: $dashboard-accent-2 !default; $low-contrast-theme: "false" !default; css/colors/ocean/colors.css000066600000061071152330733730011754 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #738e96; } .wp-core-ui .wp-ui-text-primary { color: #738e96; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #9ebaa0; } .wp-core-ui .wp-ui-text-highlight { color: #9ebaa0; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #aa9d88; } .wp-core-ui .wp-ui-text-notification { color: #aa9d88; } .wp-core-ui .wp-ui-text-icon { color: #f2fcff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #738e96; } .view-switch a:hover:before { color: #aa9d88; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #738e96; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #f2fcff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #9ebaa0; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #9ebaa0; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #9ebaa0; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #9ebaa0; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #aa9d88; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } /* Admin Menu: collapse button */ #collapse-button { color: #f2fcff; } #collapse-button:hover, #collapse-button:focus { color: #9ebaa0; } /* Admin Bar */ #wpadminbar { color: #fff; background: #738e96; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #f2fcff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #9ebaa0; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #9ebaa0; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #9ebaa0; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(142.7255, 154.4890142857, 157.9745); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(213, 221.1, 223.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #f2fcff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #9ebaa0; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #9ebaa0; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #f2fcff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #f2fcff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(135.4, 158.4657142857, 165.3); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #aa9d88; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(153, 141.3, 122.4); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(135.4, 158.4657142857, 165.3); background-color: rgb(135.4, 158.4657142857, 165.3); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #9ebaa0; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(213, 221.1, 223.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #9ebaa0; border-color: rgb(143.0993975904, 175.4006024096, 145.406626506); } .wp-pointer .wp-pointer-content h3:before { color: #9ebaa0; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #9ebaa0; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #9ebaa0; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #9ebaa0; } .attachment.details .check { background-color: #9ebaa0; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #9ebaa0; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #9ebaa0; } .theme-section.current, .theme-filter.current { border-bottom-color: #738e96; } body.more-filters-opened .more-filters { color: #fff; background-color: #738e96; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #9ebaa0; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #9ebaa0; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #f2fcff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #9ebaa0; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #f2fcff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #9ebaa0; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-left-color: #9ebaa0; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #9ebaa0; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-left-color: #9ebaa0; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #9ebaa0; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #9ebaa0; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #9ebaa0; border-style: solid; box-shadow: 0 0 0 1px #9ebaa0; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #9ebaa0; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #9ebaa0; color: #0073aa; }css/colors/ocean/colors.scss000066600000000367152330733730012140 0ustar00$base-color: #738e96; @use "../_admin.scss" with ( $scheme-name: "ocean", $base-color: $base-color, $icon-color: #f2fcff, $highlight-color: #9ebaa0, $notification-color: #aa9d88, $form-checked: $base-color, $low-contrast-theme: "true" ); css/colors/ocean/colors.min.css000066600000052335152330733730012541 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#collapse-button{color:#f2fcff}#collapse-button:focus,#collapse-button:hover{color:#9ebaa0}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(142.7255,154.4890142857,157.9745)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(213,221.1,223.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#9ebaa0}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f2fcff}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#aa9d88}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(153,141.3,122.4)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(135.4,158.4657142857,165.3);background-color:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(213,221.1,223.5)}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:rgb(143.0993975904,175.4006024096,145.406626506)}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters{color:#fff;background-color:#738e96}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#9ebaa0;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(98.2714285714,123.5412244898,131.0285714286)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f2fcff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#9ebaa0}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-left-color:#9ebaa0}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#9ebaa0}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-left-color:#9ebaa0}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#9ebaa0;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#9ebaa0}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#9ebaa0;border-style:solid;box-shadow:0 0 0 1px #9ebaa0;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#9ebaa0}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#9ebaa0;color:#0073aa}css/colors/ocean/colors-rtl.css000066600000061072152330733730012554 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #0073aa; } a:hover, a:active, a:focus { color: rgb(0, 149.5, 221); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(0, 149.5, 221); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #738e96; } .wp-core-ui .wp-ui-text-primary { color: #738e96; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #9ebaa0; } .wp-core-ui .wp-ui-text-highlight { color: #9ebaa0; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #aa9d88; } .wp-core-ui .wp-ui-text-notification { color: #aa9d88; } .wp-core-ui .wp-ui-text-icon { color: #f2fcff; } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #738e96; } .view-switch a:hover:before { color: #aa9d88; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #738e96; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: #f2fcff; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #9ebaa0; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(213, 221.1, 223.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #9ebaa0; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #9ebaa0; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #9ebaa0; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #aa9d88; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } /* Admin Menu: collapse button */ #collapse-button { color: #f2fcff; } #collapse-button:hover, #collapse-button:focus { color: #9ebaa0; } /* Admin Bar */ #wpadminbar { color: #fff; background: #738e96; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: #f2fcff; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #9ebaa0; background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #9ebaa0; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #9ebaa0; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(142.7255, 154.4890142857, 157.9745); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(213, 221.1, 223.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: #f2fcff; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #9ebaa0; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #9ebaa0; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: #f2fcff; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: #f2fcff; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(135.4, 158.4657142857, 165.3); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #aa9d88; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(153, 141.3, 122.4); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(135.4, 158.4657142857, 165.3); background-color: rgb(135.4, 158.4657142857, 165.3); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #9ebaa0; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(213, 221.1, 223.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #9ebaa0; border-color: rgb(143.0993975904, 175.4006024096, 145.406626506); } .wp-pointer .wp-pointer-content h3:before { color: #9ebaa0; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #9ebaa0; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #9ebaa0; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #9ebaa0; } .attachment.details .check { background-color: #9ebaa0; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #9ebaa0; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #9ebaa0; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #9ebaa0; } .theme-section.current, .theme-filter.current { border-bottom-color: #738e96; } body.more-filters-opened .more-filters { color: #fff; background-color: #738e96; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #9ebaa0; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #9ebaa0; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: #f2fcff; } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #9ebaa0; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(98.2714285714, 123.5412244898, 131.0285714286); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #f2fcff; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #9ebaa0; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #0073aa; border-right-color: #9ebaa0; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #0073aa; border-top-color: #9ebaa0; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #0073aa; border-right-color: #9ebaa0; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #0073aa; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #0073aa; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #9ebaa0; color: #0073aa; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #9ebaa0; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #0073aa; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #0073aa; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #9ebaa0; border-style: solid; box-shadow: 0 0 0 1px #9ebaa0; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #9ebaa0; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #9ebaa0; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(187.8012048193, 207.1987951807, 189.186746988), 0 0 2px 1px #9ebaa0; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #9ebaa0; color: #0073aa; }css/colors/ocean/colors-rtl.min.css000066600000052336152330733730013341 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#0073aa}a:active,a:focus,a:hover{color:rgb(0,149.5,221)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(0,149.5,221)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(98.2714285714,123.5412244898,131.0285714286)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(213,221.1,223.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#collapse-button{color:#f2fcff}#collapse-button:focus,#collapse-button:hover{color:#9ebaa0}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(98.2714285714,123.5412244898,131.0285714286)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(142.7255,154.4890142857,157.9745)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(213,221.1,223.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#9ebaa0}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f2fcff}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#aa9d88}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(153,141.3,122.4)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(135.4,158.4657142857,165.3);background-color:rgb(135.4,158.4657142857,165.3)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(213,221.1,223.5)}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:rgb(143.0993975904,175.4006024096,145.406626506)}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters{color:#fff;background-color:#738e96}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#9ebaa0;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(98.2714285714,123.5412244898,131.0285714286)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f2fcff}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#9ebaa0}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#0073aa;border-right-color:#9ebaa0}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#0073aa;border-top-color:#9ebaa0}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#0073aa;border-right-color:#9ebaa0}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#0073aa}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#0073aa}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#9ebaa0;color:#0073aa}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#9ebaa0}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#0073aa}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#0073aa}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#9ebaa0;border-style:solid;box-shadow:0 0 0 1px #9ebaa0;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#9ebaa0}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#9ebaa0}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(187.8012048193,207.1987951807,189.186746988),0 0 2px 1px #9ebaa0}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#9ebaa0;color:#0073aa}css/colors/_admin.scss000066600000055056152330733730011006 0ustar00@use 'sass:color'; @use 'sass:string'; @forward 'variables' show $scheme-name, $base-color, $body-background, $button-color, $custom-welcome-panel, $dashboard-accent-1, $dashboard-accent-2, $dashboard-icon-background, $form-checked, $highlight-color, $icon-color, $link, $link-focus, $low-contrast-theme, $menu-bubble-text, $menu-collapse-focus-icon, $menu-collapse-text, $menu-highlight-background, $menu-highlight-icon, $menu-highlight-text, $menu-submenu-text, $menu-submenu-focus-text, $menu-submenu-background, $notification-color, $text-color; @use 'variables'; @use 'mixins'; @use 'tokens'; /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ @function url-friendly-colour( $color ) { @return '%23' + string.slice( '#{ $color }', 2, -1 ); } body { background: variables.$body-background; } /* Links */ a { color: variables.$link; &:hover, &:active, &:focus { color: variables.$link-focus; } } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); &:hover, &:active { color: var(--wp-admin-theme-color-darker-20); } &:focus { color: var(--wp-admin-theme-color); border-radius: tokens.$radius-s; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } &:disabled, &[aria-disabled="true"] { color: tokens.$gray-600; } } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: tokens.$alert-red; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: color.adjust(tokens.$alert-red, $lightness: 10%); } /* Forms */ // Checkbox checked state - uses theme color input[type="checkbox"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } // Radio checked state - uses theme color input[type="radio"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active { color: variables.$link-focus; } // Text input focus - outset focus ring matching button focus style input[type="text"]:focus, input[type="password"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Checkbox/Radio focus - Gutenberg-style outset focus ring input[type="checkbox"]:focus, input[type="radio"]:focus { border-color: tokens.$gray-900; box-shadow: 0 0 0 2px tokens.$white, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } // Select focus (wp-core-ui styled selects) .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Autocomplete focus state .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected="true"] { background-color: var(--wp-admin-theme-color); } // Password field focus #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } // Password toggle button focus .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ .button { @include mixins.button-secondary(); } /* Secondary button - same as default */ .button-secondary { @include mixins.button-secondary(); } /* Primary button - theme color background */ .button-primary { @include mixins.button(); } .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-ui-primary { color: variables.$text-color; background-color: variables.$base-color; } .wp-ui-text-primary { color: variables.$base-color; } .wp-ui-highlight { color: variables.$menu-highlight-text; background-color: variables.$menu-highlight-background; } .wp-ui-text-highlight { color: variables.$menu-highlight-background; } .wp-ui-notification { color: variables.$menu-bubble-text; background-color: variables.$menu-bubble-background; } .wp-ui-text-notification { color: variables.$menu-bubble-background; } .wp-ui-text-icon { color: variables.$menu-icon; } } /* List tables */ // .page-title-action uses secondary button styling .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: tokens.$radius-s; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: variables.$menu-background; } .view-switch a:hover:before { color: variables.$menu-bubble-background; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: variables.$menu-background; } #adminmenu a { color: variables.$menu-text; } #adminmenu div.wp-menu-image:before { color: variables.$menu-icon; } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: variables.$menu-highlight-text; background-color: variables.$menu-highlight-background; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: variables.$menu-highlight-icon; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: variables.$body-background; border-bottom-color: variables.$body-background; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: variables.$menu-submenu-background; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: variables.$menu-submenu-background; } #adminmenu .wp-submenu .wp-submenu-head { color: variables.$menu-submenu-text; } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: variables.$menu-submenu-text; &:focus, &:hover { color: variables.$menu-submenu-focus-text; } } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: variables.$menu-submenu-current-text; &:hover, &:focus { color: variables.$menu-submenu-focus-text; } } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: variables.$body-background; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: variables.$menu-current-text; background: variables.$menu-current-background; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: variables.$menu-current-icon; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: variables.$menu-bubble-text; background: variables.$menu-bubble-background; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: variables.$menu-bubble-current-text; background: variables.$menu-bubble-current-background; } /* Admin Menu: collapse button */ #collapse-button { color: variables.$menu-collapse-text; } #collapse-button:hover, #collapse-button:focus { color: variables.$menu-submenu-focus-text; } /* Admin Bar */ #wpadminbar { color: variables.$menu-text; background: variables.$menu-background; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: variables.$menu-text; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: variables.$menu-icon; } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: variables.$menu-submenu-focus-text; background: variables.$menu-submenu-background; } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: variables.$menu-submenu-focus-text; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: variables.$menu-submenu-focus-text; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: variables.$menu-submenu-background; } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: variables.$menu-submenu-background-alt; } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: variables.$menu-submenu-text; } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: variables.$menu-icon; } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: variables.$menu-submenu-focus-text; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: variables.$menu-submenu-focus-text; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: variables.$menu-icon; } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: variables.$menu-icon; } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: variables.$menu-text; background: variables.$adminbar-input-background; } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: variables.$adminbar-recovery-exit-text; background-color: variables.$adminbar-recovery-exit-background; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: variables.$adminbar-recovery-exit-text; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover >.ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: variables.$adminbar-recovery-exit-text; background-color: variables.$adminbar-recovery-exit-background-alt; } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: variables.$adminbar-avatar-frame; background-color: variables.$adminbar-avatar-frame; } #wpadminbar #wp-admin-bar-user-info .display-name { color: variables.$menu-text; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: variables.$menu-submenu-focus-text; } #wpadminbar #wp-admin-bar-user-info .username { color: variables.$menu-submenu-text; } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: variables.$highlight-color; border-color: color.adjust(variables.$highlight-color, $lightness: -5%); } .wp-pointer .wp-pointer-content h3:before { color: variables.$highlight-color; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: variables.$highlight-color; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: variables.$highlight-color; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px variables.$highlight-color; } .attachment.details .check { background-color: variables.$highlight-color; box-shadow: 0 0 0 1px #fff, 0 0 0 2px variables.$highlight-color; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px variables.$highlight-color; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: variables.$highlight-color; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: variables.$highlight-color; } .theme-section.current, .theme-filter.current { border-bottom-color: variables.$menu-background; } body.more-filters-opened .more-filters { color: variables.$menu-text; background-color: variables.$menu-background; } body.more-filters-opened .more-filters:before { color: variables.$menu-text; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: variables.$menu-highlight-background; color: variables.$menu-highlight-text; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: variables.$menu-highlight-text; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: variables.$menu-highlight-background; color: variables.$menu-highlight-text; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: variables.$menu-highlight-text; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: variables.$menu-icon; } .wp-responsive-open div#wp-responsive-toggle a { // ToDo: make inset border border-color: transparent; background: variables.$menu-highlight-background; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: variables.$menu-submenu-background; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: variables.$menu-icon; } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: variables.$highlight-color; } /* Customizer */ .wp-core-ui { #customize-controls .control-section:hover > .accordion-section-title, #customize-controls .control-section .accordion-section-title:hover, #customize-controls .control-section.open .accordion-section-title, #customize-controls .control-section .accordion-section-title:focus { color: variables.$link; border-left-color: variables.$button-color; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { color: variables.$link; border-top-color: variables.$button-color; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { color: variables.$link; border-left-color: variables.$button-color; } .customize-screen-options-toggle:hover, .customize-screen-options-toggle:active, .customize-screen-options-toggle:focus, .active-menu-screen-options .customize-screen-options-toggle, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: variables.$link; } .customize-screen-options-toggle:focus:before, #customize-controls .customize-info .customize-help-toggle:focus:before, &.wp-customizer button:focus .toggle-indicator:before, .menu-item-bar .item-delete:focus:before, #available-menu-items .item-add:focus:before, #customize-save-button-wrapper .save:focus, #publish-settings:focus { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } #customize-controls .customize-info.open .customize-help-toggle, #customize-controls .customize-info .customize-help-toggle:focus, #customize-controls .customize-info .customize-help-toggle:hover { color: variables.$link; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { border-left-color: variables.$button-color; color: variables.$link; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: variables.$button-color; } .control-panel-themes .customize-themes-section-title.selected { color: variables.$link; } #customize-theme-controls .control-section:hover > .accordion-section-title:after, #customize-theme-controls .control-section .accordion-section-title:hover:after, #customize-theme-controls .control-section.open .accordion-section-title:after, #customize-theme-controls .control-section .accordion-section-title:focus:after, #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, #customize-outer-theme-controls .control-section.open .accordion-section-title:after, #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: variables.$link; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: variables.$button-color; border-style: solid; box-shadow: 0 0 0 1px variables.$button-color; outline: 2px solid transparent; } .wp-full-overlay-footer .devices button:focus, .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: variables.$button-color; } .wp-full-overlay-footer .devices button:hover:before, .wp-full-overlay-footer .devices button:focus:before { color: variables.$button-color; } .wp-full-overlay .collapse-sidebar:hover, .wp-full-overlay .collapse-sidebar:focus { color: variables.$button-color; } .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px color.adjust(variables.$button-color, $lightness: 10%), 0 0 2px 1px variables.$button-color; } &.wp-customizer .theme-overlay .theme-header .close:focus, &.wp-customizer .theme-overlay .theme-header .close:hover, &.wp-customizer .theme-overlay .theme-header .right:focus, &.wp-customizer .theme-overlay .theme-header .right:hover, &.wp-customizer .theme-overlay .theme-header .left:focus, &.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: variables.$button-color; color: variables.$link; } } css/colors/_tokens.scss000066600000020556152330733730011216 0ustar00// ========================================================================== // WordPress Design System Tokens // ========================================================================== // // These tokens are derived from the WordPress Design System in Figma: // https://www.figma.com/design/804HN2REV2iap2ytjRQ055/WordPress-Design-System // // IMPORTANT: Do NOT expose these as CSS custom properties. // Use these Sass variables to compile to static CSS values. // The only CSS custom properties available are those in wp-base-styles: // - --wp-admin-theme-color // - --wp-admin-theme-color--rgb // - --wp-admin-theme-color-darker-10 // - --wp-admin-theme-color-darker-20 // - --wp-admin-border-width-focus // // ========================================================================== // -------------------------------------------------------------------------- // Grid Units (Spacing) // -------------------------------------------------------------------------- // Based on 4px base unit. Use for padding, margin, and gap values. $grid-unit-05: 4px; // Scales/grid unit 05 $grid-unit-10: 8px; // Scales/grid unit 10 $grid-unit-15: 12px; // Scales/grid unit 15 $grid-unit-20: 16px; // Scales/grid unit 20 $grid-unit-30: 24px; // Scales/grid unit 30 $grid-unit-40: 32px; // Scales/grid unit 40 $grid-unit-50: 40px; // Scales/grid unit 50 $grid-unit-60: 48px; // Scales/grid unit 60 $grid-unit-70: 56px; // Scales/grid unit 70 // -------------------------------------------------------------------------- // Border Radius // -------------------------------------------------------------------------- $radius-xs: 1px; // radius-xs $radius-s: 2px; // radius-s - Buttons, inputs $radius-m: 4px; // radius-m - Focus rings $radius-l: 8px; // radius-l - Cards, dashboard widgets $radius-30: 12px; // Radius 30 $radius-full: 9999px; // radius-full - Pills, avatars, circles // -------------------------------------------------------------------------- // Gray Scale // -------------------------------------------------------------------------- // Neutral colors for backgrounds, borders, and text. $gray-100: #f0f0f0; // Scales/Grays/gray-100 - Page background, disabled inputs $gray-200: #e0e0e0; // Scales/Grays/gray-200 $gray-300: #dddddd; // Scales/Grays/gray-300 $gray-400: #cccccc; // Scales/Grays/gray-400 - Disabled borders $gray-600: #949494; // Scales/Grays/gray-600 - Input borders, disabled text $gray-700: #757575; // Scales/Grays/gray-700 $gray-800: #2f2f2f; // Scales/Grays/gray-800 $gray-900: #1e1e1e; // Scales/Grays/gray-900 - Primary text $white: #ffffff; // Scales/Black & White/white // -------------------------------------------------------------------------- // Theme Colors (Static reference values) // -------------------------------------------------------------------------- // For actual theme color usage, use var(--wp-admin-theme-color) instead. // These are provided for reference and for contexts where CSS vars aren't available. $theme-reference: #3858e9; // Scales/Theme/theme (modern scheme) $theme-darker-10-reference: #2145e6; // Scales/Theme/theme-darker-10 $theme-darker-20-reference: #183ad6; // Scales/Theme/theme-darker-20 $theme-alpha-04: rgba(56, 88, 233, 0.04); // Scales/Theme/theme-alpha-04 (4% opacity) $theme-alpha-08: rgba(56, 88, 233, 0.08); // Scales/Theme/theme-alpha-08 (8% opacity) $brand-9: #4465db; // Scales/brand-9 - Focus ring color (static, not theme-dependent) // -------------------------------------------------------------------------- // Semantic Colors // -------------------------------------------------------------------------- // Use these for notices, alerts, and status indicators. // These are intentionally NOT theme-dependent for consistency. $alert-yellow: #f0b849; // Scales/Yellow/alert-yellow - Warnings $alert-green: #4ab866; // Scales/Green/alert-green - Success $alert-red: #cc1818; // Scales/Red/alert-red - Errors $alert-blue: #3858e9; // Info notices (matches modern theme) // Background tints for notices $alert-yellow-bg: #fef8ee; // Warning notice background $alert-green-bg: #eff9f1; // Success notice background $alert-red-bg: #fcf0f0; // Error notice background $synced-color: #7a00df; // Scales/Purple/--wp-block-synced-color // -------------------------------------------------------------------------- // Text Colors // -------------------------------------------------------------------------- $text-primary: $gray-900; // Primary text color $text-secondary: $gray-700; // Secondary text $text-tertiary: #5d5d5d; // Alias/text/text-tertiary - Placeholder, hints $text-disabled: $gray-600; // Disabled text // -------------------------------------------------------------------------- // Component Tokens // -------------------------------------------------------------------------- // Inputs $input-bg: $white; // Alias/bg/bg-input $input-border-color: $gray-600; // Default input border $input-border-color-disabled: $gray-400; $input-bg-disabled: $gray-100; $input-border-width-default: 1px; // Input/Default $input-border-width-focus: 1.5px; // Input/Focus $field-spacing-horizontal: 8px; // Alias/field-spacing-horizontal // Checkboxes and Radios $checkbox-size: 16px; // Alias/checkbox $radio-size: 16px; // Alias/radio // Toggles $toggle-width: 32px; // Alias/toggle-width $toggle-height: 16px; // Alias/toggle-height // Buttons // Note: Gutenberg is transitioning to 40px as the default button size. // The "compact" size (32px) is available for space-constrained contexts. $button-height-default: 40px; // Default button height (next-default-40px) $button-height-compact: 32px; // Compact button height $button-height-small: 24px; // Small button height // Cards and Surfaces $card-bg: $white; $card-border-color: rgba(0, 0, 0, 0.1); $card-border-width: 1px; $card-border-radius: $radius-l; // 8px for dashboard widgets $card-border-radius-metabox: 0; // 0 for post editor metaboxes $card-divider-color: rgba(0, 0, 0, 0.1); // Card Padding Sizes $card-padding-xs: $grid-unit-10; // 8px - xSmall cards $card-padding-sm: $grid-unit-20; // 16px - Small cards (metaboxes, dashboard widgets) $card-padding-md-h: $grid-unit-30; // 24px - Medium cards horizontal $card-padding-md-v: $grid-unit-20; // 16px - Medium cards vertical $card-padding-lg-h: $grid-unit-40; // 32px - Large cards horizontal $card-padding-lg-v: $grid-unit-30; // 24px - Large cards vertical // Page Layout $page-padding-large: 48px; // Alias/page-large $page-padding-small: 24px; // Alias/page-small // -------------------------------------------------------------------------- // Typography Scale // -------------------------------------------------------------------------- // Font Sizes $font-size-xs: 11px; // xs - Small labels, button small $font-size-s: 12px; // s - Body small $font-size-m: 13px; // m - Base body text, buttons $font-size-l: 15px; // l - Body large, heading large $font-size-xl: 20px; // xl - Heading XL // Line Heights $line-height-xs: 16px; // xs $line-height-s: 20px; // s - Most UI elements $line-height-m: 24px; // m - Body large // Font Weights $font-weight-regular: 400; // Regular - Body text $font-weight-medium: 500; // Medium - Headings, buttons // -------------------------------------------------------------------------- // Elevation (Box Shadows) // -------------------------------------------------------------------------- $elevation-xs: 0 4px 4px rgba(0, 0, 0, 0.01), 0 3px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.02), 0 1px 1px rgba(0, 0, 0, 0.03); $elevation-s: 0 8px 8px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05); $elevation-m: 0 16px 16px rgba(0, 0, 0, 0.02), 0 4px 5px rgba(0, 0, 0, 0.03), 0 2px 3px rgba(0, 0, 0, 0.05); $elevation-l: 0 50px 43px rgba(0, 0, 0, 0.02), 0 30px 36px rgba(0, 0, 0, 0.04), 0 15px 27px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.08); // -------------------------------------------------------------------------- // Layout // -------------------------------------------------------------------------- $modal-width-small: 384px; // Layout/Modal small $modal-width-medium: 512px; // Layout/Modal medium $modal-width-large: 840px; // Layout/Modal large css/colors/modern/colors.css000066600000061003152330733730012146 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #3858e9; } a:hover, a:active, a:focus { color: rgb(23.6923076923, 58.1538461538, 214.3076923077); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(23.6923076923, 58.1538461538, 214.3076923077); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #1e1e1e; } .wp-core-ui .wp-ui-text-primary { color: #1e1e1e; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #3858e9; } .wp-core-ui .wp-ui-text-highlight { color: #3858e9; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #3858e9; } .wp-core-ui .wp-ui-text-notification { color: #3858e9; } .wp-core-ui .wp-ui-text-icon { color: hsl(0, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #1e1e1e; } .view-switch a:hover:before { color: #3858e9; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #1e1e1e; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(0, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #3858e9; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(12.15, 12.15, 12.15); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-right-color: rgb(12.15, 12.15, 12.15); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(187.5, 187.5, 187.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(187.5, 187.5, 187.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #7b90ff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #7b90ff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-right-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #3858e9; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #3858e9; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(12.15, 12.15, 12.15); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(0, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #7b90ff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #1e1e1e; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(0, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #7b90ff; background: rgb(12.15, 12.15, 12.15); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #7b90ff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #7b90ff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(12.15, 12.15, 12.15); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(47.85, 47.85, 47.85); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(187.5, 187.5, 187.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(0, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #7b90ff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #7b90ff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(0, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(0, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(47.85, 47.85, 47.85); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #3858e9; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(50.4, 79.2, 209.7); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(47.85, 47.85, 47.85); background-color: rgb(47.85, 47.85, 47.85); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #7b90ff; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(187.5, 187.5, 187.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #3858e9; border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615); } .wp-pointer .wp-pointer-content h3:before { color: #3858e9; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #3858e9; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #3858e9; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #3858e9; } .attachment.details .check { background-color: #3858e9; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #3858e9; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #3858e9; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #3858e9; } .theme-section.current, .theme-filter.current { border-bottom-color: #1e1e1e; } body.more-filters-opened .more-filters { color: #fff; background-color: #1e1e1e; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #3858e9; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #3858e9; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(0, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #3858e9; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(12.15, 12.15, 12.15); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(0, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #3858e9; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #3858e9; border-left-color: #3858e9; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #3858e9; border-top-color: #3858e9; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #3858e9; border-left-color: #3858e9; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #3858e9; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #3858e9; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-left-color: #3858e9; color: #3858e9; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #3858e9; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #3858e9; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #3858e9; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #3858e9; border-style: solid; box-shadow: 0 0 0 1px #3858e9; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #3858e9; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #3858e9; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #3858e9; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #3858e9; color: #3858e9; }css/colors/modern/colors.scss000066600000000544152330733730012334 0ustar00@use "sass:color"; $highlight-color: #3858e9; @use "../_admin.scss" with ( $scheme-name: "modern", $base-color: #1e1e1e, $highlight-color: #3858e9, $menu-submenu-focus-text: #7b90ff, $notification-color: $highlight-color, $link: $highlight-color, $link-focus: color.adjust($highlight-color, $lightness: -10%), $custom-welcome-panel: "false" ); css/colors/modern/colors.min.css000066600000052137152330733730012740 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#3858e9}a:active,a:focus,a:hover{color:rgb(23.6923076923,58.1538461538,214.3076923077)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(23.6923076923,58.1538461538,214.3076923077)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#1e1e1e}.wp-core-ui .wp-ui-text-primary{color:#1e1e1e}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#3858e9}.wp-core-ui .wp-ui-text-highlight{color:#3858e9}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#3858e9}.wp-core-ui .wp-ui-text-notification{color:#3858e9}.wp-core-ui .wp-ui-text-icon{color:#f3f1f1}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#1e1e1e}.view-switch a:hover:before{color:#3858e9}#adminmenu,#adminmenuback,#adminmenuwrap{background:#1e1e1e}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f1f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#3858e9}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(12.15,12.15,12.15)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-right-color:rgb(12.15,12.15,12.15)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(187.5,187.5,187.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(187.5,187.5,187.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#7b90ff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#7b90ff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#3858e9}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#3858e9}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(12.15,12.15,12.15)}#collapse-button{color:#f3f1f1}#collapse-button:focus,#collapse-button:hover{color:#7b90ff}#wpadminbar{color:#fff;background:#1e1e1e}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f1f1}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#7b90ff;background:rgb(12.15,12.15,12.15)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#7b90ff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#7b90ff}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(12.15,12.15,12.15)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(47.85,47.85,47.85)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(187.5,187.5,187.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f1f1}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#7b90ff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#7b90ff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f3f1f1}#wpadminbar #adminbarsearch:before{color:#f3f1f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(47.85,47.85,47.85)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#3858e9}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(50.4,79.2,209.7)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(47.85,47.85,47.85);background-color:rgb(47.85,47.85,47.85)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#7b90ff}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(187.5,187.5,187.5)}.wp-pointer .wp-pointer-content h3{background-color:#3858e9;border-color:rgb(33.0384615385,68.7307692308,230.4615384615)}.wp-pointer .wp-pointer-content h3:before{color:#3858e9}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#3858e9}.media-item .bar,.media-progress-bar div{background-color:#3858e9}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #3858e9}.attachment.details .check{background-color:#3858e9;box-shadow:0 0 0 1px #fff,0 0 0 2px #3858e9}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #3858e9}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#3858e9}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#3858e9}.theme-filter.current,.theme-section.current{border-bottom-color:#1e1e1e}body.more-filters-opened .more-filters{color:#fff;background-color:#1e1e1e}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#3858e9;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#3858e9;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}div#wp-responsive-toggle a:before{color:#f3f1f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#3858e9}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(12.15,12.15,12.15)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f3f1f1}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#3858e9}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#3858e9;border-left-color:#3858e9}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#3858e9;border-top-color:#3858e9}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#3858e9;border-left-color:#3858e9}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#3858e9}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#3858e9}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-left-color:#3858e9;color:#3858e9}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#3858e9}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#3858e9}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#3858e9}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#3858e9;border-style:solid;box-shadow:0 0 0 1px #3858e9;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#3858e9}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#3858e9}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#3858e9}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#3858e9;color:#3858e9}css/colors/modern/colors-rtl.css000066600000061004152330733730012746 0ustar00/*! This file is auto-generated */ /* * Button mixin - creates a primary button effect. * Uses CSS custom properties for theme color support across color schemes. */ /* * Secondary button mixin - outlined style with theme color. * Matches Gutenberg's .is-secondary button variant. */ /* * Tertiary button mixin - transparent background, gray text. */ /** * This function name uses British English to maintain backward compatibility, as developers * may use the function in their own admin CSS files. See #56811. */ body { background: #f0f0f0; } /* Links */ a { color: #3858e9; } a:hover, a:active, a:focus { color: rgb(23.6923076923, 58.1538461538, 214.3076923077); } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-revisions:before, span.wp-media-buttons-icon:before { color: currentColor; } /* Link button - appears as text link, no border or background */ /* Matches Gutenberg's .is-link button variant */ .wp-core-ui .button-link, .wp-core-ui .button.button-link { color: var(--wp-admin-theme-color); } .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, .wp-core-ui .button.button-link:hover, .wp-core-ui .button.button-link:active { color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-link:focus, .wp-core-ui .button.button-link:focus { color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], .wp-core-ui .button.button-link:disabled, .wp-core-ui .button.button-link[aria-disabled=true] { color: #949494; } .media-modal .delete-attachment, .media-modal .trash-attachment, .media-modal .untrash-attachment, .wp-core-ui .button-link-delete { color: #cc1818; } .media-modal .delete-attachment:hover, .media-modal .trash-attachment:hover, .media-modal .untrash-attachment:hover, .media-modal .delete-attachment:focus, .media-modal .trash-attachment:focus, .media-modal .untrash-attachment:focus, .wp-core-ui .button-link-delete:hover, .wp-core-ui .button-link-delete:focus { color: rgb(230.6842105263, 48.3157894737, 48.3157894737); } /* Forms */ input[type=checkbox]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type=radio]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } .wp-core-ui input[type=reset]:hover, .wp-core-ui input[type=reset]:active { color: rgb(23.6923076923, 58.1538461538, 214.3076923077); } input[type=text]:focus, input[type=password]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } input[type=checkbox]:focus, input[type=radio]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); outline: 2px solid transparent; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected=true] { background-color: var(--wp-admin-theme-color); } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .mailserver-pass-wrap .button.wp-hide-pw:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } /* Core UI */ .wp-core-ui { /* Default button - theme color border and text (matches secondary) */ } .wp-core-ui .button { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button:disabled, .wp-core-ui .button.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Secondary button - same as default */ } .wp-core-ui .button-secondary { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wp-core-ui .button-secondary:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wp-core-ui .button-secondary:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wp-core-ui .button-secondary:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { background: transparent; border-color: #dddddd; color: #949494; cursor: not-allowed; } .wp-core-ui { /* Primary button - theme color background */ } .wp-core-ui .button-primary { background: var(--wp-admin-theme-color); border-color: transparent; border-radius: 2px; color: #fff; } .wp-core-ui .button-primary:hover { background: var(--wp-admin-theme-color-darker-10); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:focus { background: var(--wp-admin-theme-color); border-color: transparent; color: #fff; /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; /* Visible in Windows High Contrast mode */ outline: 1px solid transparent; } .wp-core-ui .button-primary:active { background: var(--wp-admin-theme-color-darker-20); border-color: transparent; color: #fff; } .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { background: #f0f0f0; border-color: transparent; color: #949494; cursor: not-allowed; } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { background: var(--wp-admin-theme-color-darker-10); color: #fff; border-color: transparent; box-shadow: none; } .wp-core-ui .button-group > .button.active { border-color: var(--wp-admin-theme-color); background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } .wp-core-ui .wp-ui-primary { color: #fff; background-color: #1e1e1e; } .wp-core-ui .wp-ui-text-primary { color: #1e1e1e; } .wp-core-ui .wp-ui-highlight { color: #fff; background-color: #3858e9; } .wp-core-ui .wp-ui-text-highlight { color: #3858e9; } .wp-core-ui .wp-ui-notification { color: #fff; background-color: #3858e9; } .wp-core-ui .wp-ui-text-notification { color: #3858e9; } .wp-core-ui .wp-ui-text-icon { color: hsl(0, 7%, 95%); } /* List tables */ .wrap .page-title-action { background: transparent; border: 1px solid var(--wp-admin-theme-color); border-radius: 2px; color: var(--wp-admin-theme-color); } .wrap .page-title-action:hover { background: rgba(var(--wp-admin-theme-color--rgb), 0.04); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); } .wrap .page-title-action:focus { background: transparent; border-color: var(--wp-admin-theme-color); color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); outline: 1px solid transparent; } .wrap .page-title-action:active { background: rgba(var(--wp-admin-theme-color--rgb), 0.08); border-color: var(--wp-admin-theme-color-darker-20); color: var(--wp-admin-theme-color-darker-20); box-shadow: none; } .view-switch a.current:before { color: #1e1e1e; } .view-switch a:hover:before { color: #3858e9; } /* Admin Menu */ #adminmenuback, #adminmenuwrap, #adminmenu { background: #1e1e1e; } #adminmenu a { color: #fff; } #adminmenu div.wp-menu-image:before { color: hsl(0, 7%, 95%); } #adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { color: #fff; background-color: #3858e9; } #adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { color: #fff; } /* Active tabs use a bottom border color that matches the page background color. */ .about-wrap .nav-tab-active, .nav-tab-active, .nav-tab-active:hover { background-color: #f0f0f0; border-bottom-color: #f0f0f0; } /* Admin Menu: submenu */ #adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { background: rgb(12.15, 12.15, 12.15); } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: rgb(12.15, 12.15, 12.15); } #adminmenu .wp-submenu .wp-submenu-head { color: rgb(187.5, 187.5, 187.5); } #adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { color: rgb(187.5, 187.5, 187.5); } #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { color: #7b90ff; } /* Admin Menu: current */ #adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { color: #fff; } #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { color: #7b90ff; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { border-left-color: #f0f0f0; } #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top { color: #fff; background: #3858e9; } #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.current div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #fff; } /* Admin Menu: bubble */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { color: #fff; background: #3858e9; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins { color: #fff; background: rgb(12.15, 12.15, 12.15); } /* Admin Menu: collapse button */ #collapse-button { color: hsl(0, 7%, 95%); } #collapse-button:hover, #collapse-button:focus { color: #7b90ff; } /* Admin Bar */ #wpadminbar { color: #fff; background: #1e1e1e; } #wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon { color: #fff; } #wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after { color: hsl(0, 7%, 95%); } #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { color: #7b90ff; background: rgb(12.15, 12.15, 12.15); } #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { color: #7b90ff; } #wpadminbar:not(.mobile) li:hover .ab-icon:before, #wpadminbar:not(.mobile) li:hover .ab-item:before, #wpadminbar:not(.mobile) li:hover .ab-item:after, #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { color: #7b90ff; } /* Admin Bar: submenu */ #wpadminbar .menupop .ab-sub-wrapper { background: rgb(12.15, 12.15, 12.15); } #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { background: rgb(47.85, 47.85, 47.85); } #wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a { color: rgb(187.5, 187.5, 187.5); } #wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before { color: hsl(0, 7%, 95%); } #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li .ab-item:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li #adminbarsearch.adminbar-focused:before { color: #7b90ff; } #wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .quicklinks li a:focus .blavatar, #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before, #wpadminbar.mobile .quicklinks .hover .ab-icon:before, #wpadminbar.mobile .quicklinks .hover .ab-item:before { color: #7b90ff; } #wpadminbar.mobile .quicklinks .ab-icon:before, #wpadminbar.mobile .quicklinks .ab-item:before { color: hsl(0, 7%, 95%); } /* Admin Bar: search */ #wpadminbar #adminbarsearch:before { color: hsl(0, 7%, 95%); } #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { color: #fff; background: rgb(47.85, 47.85, 47.85); } /* Admin Bar: recovery mode */ #wpadminbar #wp-admin-bar-recovery-mode { color: #fff; background-color: #3858e9; } #wpadminbar #wp-admin-bar-recovery-mode .ab-item, #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { color: #fff; } #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { color: #fff; background-color: rgb(50.4, 79.2, 209.7); } /* Admin Bar: my account */ #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { border-color: rgb(47.85, 47.85, 47.85); background-color: rgb(47.85, 47.85, 47.85); } #wpadminbar #wp-admin-bar-user-info .display-name { color: #fff; } #wpadminbar #wp-admin-bar-user-info a:hover .display-name { color: #7b90ff; } #wpadminbar #wp-admin-bar-user-info .username { color: rgb(187.5, 187.5, 187.5); } /* Pointers */ .wp-pointer .wp-pointer-content h3 { background-color: #3858e9; border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615); } .wp-pointer .wp-pointer-content h3:before { color: #3858e9; } .wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { border-bottom-color: #3858e9; } /* Media */ .media-item .bar, .media-progress-bar div { background-color: #3858e9; } .details.attachment { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #3858e9; } .attachment.details .check { background-color: #3858e9; box-shadow: 0 0 0 1px #fff, 0 0 0 2px #3858e9; } .media-selection .attachment.selection.details .thumbnail { box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9; } /* Themes */ .theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { background: #3858e9; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { color: #3858e9; } .theme-section.current, .theme-filter.current { border-bottom-color: #1e1e1e; } body.more-filters-opened .more-filters { color: #fff; background-color: #1e1e1e; } body.more-filters-opened .more-filters:before { color: #fff; } body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus { background-color: #3858e9; color: #fff; } body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before { color: #fff; } /* Widgets */ .widgets-chooser li.widgets-chooser-selected { background-color: #3858e9; color: #fff; } .widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before { color: #fff; } /* Nav Menus */ .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } /* Responsive Component */ div#wp-responsive-toggle a:before { color: hsl(0, 7%, 95%); } .wp-responsive-open div#wp-responsive-toggle a { border-color: transparent; background: #3858e9; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: rgb(12.15, 12.15, 12.15); } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: hsl(0, 7%, 95%); } /* TinyMCE */ .mce-container.mce-menu .mce-menu-item:hover, .mce-container.mce-menu .mce-menu-item.mce-selected, .mce-container.mce-menu .mce-menu-item:focus, .mce-container.mce-menu .mce-menu-item-normal.mce-active, .mce-container.mce-menu .mce-menu-item-preview.mce-active { background: #3858e9; } /* Customizer */ .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, .wp-core-ui #customize-controls .control-section.open .accordion-section-title, .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { color: #3858e9; border-right-color: #3858e9; } .wp-core-ui .customize-controls-close:focus, .wp-core-ui .customize-controls-close:hover, .wp-core-ui .customize-controls-preview-toggle:focus, .wp-core-ui .customize-controls-preview-toggle:hover { color: #3858e9; border-top-color: #3858e9; } .wp-core-ui .customize-panel-back:hover, .wp-core-ui .customize-panel-back:focus, .wp-core-ui .customize-section-back:hover, .wp-core-ui .customize-section-back:focus { color: #3858e9; border-right-color: #3858e9; } .wp-core-ui .customize-screen-options-toggle:hover, .wp-core-ui .customize-screen-options-toggle:active, .wp-core-ui .customize-screen-options-toggle:focus, .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { color: #3858e9; } .wp-core-ui .customize-screen-options-toggle:focus:before, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, .wp-core-ui .menu-item-bar .item-delete:focus:before, .wp-core-ui #available-menu-items .item-add:focus:before, .wp-core-ui #customize-save-button-wrapper .save:focus, .wp-core-ui #publish-settings:focus { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { color: #3858e9; } .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { border-right-color: #3858e9; color: #3858e9; } .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { background: #3858e9; } .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { color: #3858e9; } .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { color: #3858e9; } .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { background-color: #fbfbfc; border-color: #3858e9; border-style: solid; box-shadow: 0 0 0 1px #3858e9; outline: 2px solid transparent; } .wp-core-ui .wp-full-overlay-footer .devices button:focus, .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #3858e9; } .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { color: #3858e9; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #3858e9; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; } .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { border-bottom-color: #3858e9; color: #3858e9; }css/colors/modern/colors-rtl.min.css000066600000052140152330733730013531 0ustar00/*! This file is auto-generated */ body{background:#f0f0f0}a{color:#3858e9}a:active,a:focus,a:hover{color:rgb(23.6923076923,58.1538461538,214.3076923077)}#post-body #visibility:before,#post-body .misc-pub-post-status:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:currentColor}.wp-core-ui .button-link,.wp-core-ui .button.button-link{color:var(--wp-admin-theme-color)}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover,.wp-core-ui .button.button-link:active,.wp-core-ui .button.button-link:hover{color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-link:focus,.wp-core-ui .button.button-link:focus{color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-link:disabled,.wp-core-ui .button-link[aria-disabled=true],.wp-core-ui .button.button-link:disabled,.wp-core-ui .button.button-link[aria-disabled=true]{color:#949494}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment,.wp-core-ui .button-link-delete{color:#cc1818}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover,.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:rgb(230.6842105263,48.3157894737,48.3157894737)}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:rgb(23.6923076923,58.1538461538,214.3076923077)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color)}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.mailserver-pass-wrap .button.wp-hide-pw:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui .button{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button.disabled,.wp-core-ui .button:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-secondary{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wp-core-ui .button-secondary:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wp-core-ui .button-secondary:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wp-core-ui .button-secondary:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled{background:0 0;border-color:#ddd;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary{background:var(--wp-admin-theme-color);border-color:transparent;border-radius:2px;color:#fff}.wp-core-ui .button-primary:hover{background:var(--wp-admin-theme-color-darker-10);border-color:transparent;color:#fff}.wp-core-ui .button-primary:focus{background:var(--wp-admin-theme-color);border-color:transparent;color:#fff;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color),inset 0 0 0 1px #fff;outline:1px solid transparent}.wp-core-ui .button-primary:active{background:var(--wp-admin-theme-color-darker-20);border-color:transparent;color:#fff}.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled{background:#f0f0f0;border-color:transparent;color:#949494;cursor:not-allowed}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover{background:var(--wp-admin-theme-color-darker-10);color:#fff;border-color:transparent;box-shadow:none}.wp-core-ui .button-group>.button.active{border-color:var(--wp-admin-theme-color);background:rgba(var(--wp-admin-theme-color--rgb),.08)}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#1e1e1e}.wp-core-ui .wp-ui-text-primary{color:#1e1e1e}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#3858e9}.wp-core-ui .wp-ui-text-highlight{color:#3858e9}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#3858e9}.wp-core-ui .wp-ui-text-notification{color:#3858e9}.wp-core-ui .wp-ui-text-icon{color:#f3f1f1}.wrap .page-title-action{background:0 0;border:1px solid var(--wp-admin-theme-color);border-radius:2px;color:var(--wp-admin-theme-color)}.wrap .page-title-action:hover{background:rgba(var(--wp-admin-theme-color--rgb),.04);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20)}.wrap .page-title-action:focus{background:0 0;border-color:var(--wp-admin-theme-color);color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:1px solid transparent}.wrap .page-title-action:active{background:rgba(var(--wp-admin-theme-color--rgb),.08);border-color:var(--wp-admin-theme-color-darker-20);color:var(--wp-admin-theme-color-darker-20);box-shadow:none}.view-switch a.current:before{color:#1e1e1e}.view-switch a:hover:before{color:#3858e9}#adminmenu,#adminmenuback,#adminmenuwrap{background:#1e1e1e}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f1f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#3858e9}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f0f0f0;border-bottom-color:#f0f0f0}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu{background:rgb(12.15,12.15,12.15)}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after,#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after{border-left-color:rgb(12.15,12.15,12.15)}#adminmenu .wp-submenu .wp-submenu-head{color:rgb(187.5,187.5,187.5)}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a{color:rgb(187.5,187.5,187.5)}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover{color:#7b90ff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#7b90ff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f0f0f0}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#3858e9}#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu li a:focus div.wp-menu-image:before,#adminmenu li.current div.wp-menu-image:before,#adminmenu li.opensub div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,#adminmenu li:hover div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .menu-counter,#adminmenu .update-plugins{color:#fff;background:#3858e9}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:rgb(12.15,12.15,12.15)}#collapse-button{color:#f3f1f1}#collapse-button:focus,#collapse-button:hover{color:#7b90ff}#wpadminbar{color:#fff;background:#1e1e1e}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f1f1}#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar.nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>li>.ab-item:focus{color:#7b90ff;background:rgb(12.15,12.15,12.15)}#wpadminbar:not(.mobile)>#wp-toolbar a:focus span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li.hover span.ab-label,#wpadminbar:not(.mobile)>#wp-toolbar li:hover span.ab-label{color:#7b90ff}#wpadminbar:not(.mobile) li:hover #adminbarsearch:before,#wpadminbar:not(.mobile) li:hover .ab-icon:before,#wpadminbar:not(.mobile) li:hover .ab-item:after,#wpadminbar:not(.mobile) li:hover .ab-item:before{color:#7b90ff}#wpadminbar .menupop .ab-sub-wrapper{background:rgb(12.15,12.15,12.15)}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:rgb(47.85,47.85,47.85)}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar.nojs .quicklinks .menupop:hover ul li a{color:rgb(187.5,187.5,187.5)}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f1f1}#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar li #adminbarsearch.adminbar-focused:before,#wpadminbar li .ab-item:focus .ab-icon:before,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#7b90ff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover>a .blavatar,#wpadminbar .quicklinks li a:focus .blavatar,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar.mobile .quicklinks .hover .ab-icon:before,#wpadminbar.mobile .quicklinks .hover .ab-item:before{color:#7b90ff}#wpadminbar.mobile .quicklinks .ab-icon:before,#wpadminbar.mobile .quicklinks .ab-item:before{color:#f3f1f1}#wpadminbar #adminbarsearch:before{color:#f3f1f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:rgb(47.85,47.85,47.85)}#wpadminbar #wp-admin-bar-recovery-mode{color:#fff;background-color:#3858e9}#wpadminbar #wp-admin-bar-recovery-mode .ab-item,#wpadminbar #wp-admin-bar-recovery-mode a.ab-item{color:#fff}#wpadminbar .ab-top-menu>#wp-admin-bar-recovery-mode.hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode:hover>.ab-item,#wpadminbar:not(.mobile) .ab-top-menu>#wp-admin-bar-recovery-mode>.ab-item:focus{color:#fff;background-color:rgb(50.4,79.2,209.7)}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:rgb(47.85,47.85,47.85);background-color:rgb(47.85,47.85,47.85)}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#7b90ff}#wpadminbar #wp-admin-bar-user-info .username{color:rgb(187.5,187.5,187.5)}.wp-pointer .wp-pointer-content h3{background-color:#3858e9;border-color:rgb(33.0384615385,68.7307692308,230.4615384615)}.wp-pointer .wp-pointer-content h3:before{color:#3858e9}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-top .wp-pointer-arrow-inner,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner{border-bottom-color:#3858e9}.media-item .bar,.media-progress-bar div{background-color:#3858e9}.details.attachment{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #3858e9}.attachment.details .check{background-color:#3858e9;box-shadow:0 0 0 1px #fff,0 0 0 2px #3858e9}.media-selection .attachment.selection.details .thumbnail{box-shadow:0 0 0 1px #fff,0 0 0 3px #3858e9}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{background:#3858e9}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{color:#3858e9}.theme-filter.current,.theme-section.current{border-bottom-color:#1e1e1e}body.more-filters-opened .more-filters{color:#fff;background-color:#1e1e1e}body.more-filters-opened .more-filters:before{color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:hover{background-color:#3858e9;color:#fff}body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover:before{color:#fff}.widgets-chooser li.widgets-chooser-selected{background-color:#3858e9;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}div#wp-responsive-toggle a:before{color:#f3f1f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#3858e9}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:rgb(12.15,12.15,12.15)}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{color:#f3f1f1}.mce-container.mce-menu .mce-menu-item-normal.mce-active,.mce-container.mce-menu .mce-menu-item-preview.mce-active,.mce-container.mce-menu .mce-menu-item.mce-selected,.mce-container.mce-menu .mce-menu-item:focus,.mce-container.mce-menu .mce-menu-item:hover{background:#3858e9}.wp-core-ui #customize-controls .control-section .accordion-section-title:focus,.wp-core-ui #customize-controls .control-section .accordion-section-title:hover,.wp-core-ui #customize-controls .control-section.open .accordion-section-title,.wp-core-ui #customize-controls .control-section:hover>.accordion-section-title{color:#3858e9;border-right-color:#3858e9}.wp-core-ui .customize-controls-close:focus,.wp-core-ui .customize-controls-close:hover,.wp-core-ui .customize-controls-preview-toggle:focus,.wp-core-ui .customize-controls-preview-toggle:hover{color:#3858e9;border-top-color:#3858e9}.wp-core-ui .customize-panel-back:focus,.wp-core-ui .customize-panel-back:hover,.wp-core-ui .customize-section-back:focus,.wp-core-ui .customize-section-back:hover{color:#3858e9;border-right-color:#3858e9}.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover,.wp-core-ui .active-menu-screen-options .customize-screen-options-toggle,.wp-core-ui .customize-screen-options-toggle:active,.wp-core-ui .customize-screen-options-toggle:focus,.wp-core-ui .customize-screen-options-toggle:hover{color:#3858e9}.wp-core-ui #available-menu-items .item-add:focus:before,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before,.wp-core-ui #customize-save-button-wrapper .save:focus,.wp-core-ui #publish-settings:focus,.wp-core-ui .customize-screen-options-toggle:focus:before,.wp-core-ui .menu-item-bar .item-delete:focus:before,.wp-core-ui.wp-customizer button:focus .toggle-indicator:before{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}.wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus,.wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover,.wp-core-ui #customize-controls .customize-info.open .customize-help-toggle{color:#3858e9}.wp-core-ui .control-panel-themes .customize-themes-section-title:focus,.wp-core-ui .control-panel-themes .customize-themes-section-title:hover{border-right-color:#3858e9;color:#3858e9}.wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after{background:#3858e9}.wp-core-ui .control-panel-themes .customize-themes-section-title.selected{color:#3858e9}.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-outer-theme-controls .control-section:hover>.accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after,.wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after,.wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after,.wp-core-ui #customize-theme-controls .control-section:hover>.accordion-section-title:after{color:#3858e9}.wp-core-ui .customize-control .attachment-media-view .button-add-media:focus{background-color:#fbfbfc;border-color:#3858e9;border-style:solid;box-shadow:0 0 0 1px #3858e9;outline:2px solid transparent}.wp-core-ui .wp-full-overlay-footer .devices button.active:hover,.wp-core-ui .wp-full-overlay-footer .devices button:focus{border-bottom-color:#3858e9}.wp-core-ui .wp-full-overlay-footer .devices button:focus:before,.wp-core-ui .wp-full-overlay-footer .devices button:hover:before{color:#3858e9}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#3858e9}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 1px rgb(101.9230769231,126.5384615385,238.0769230769),0 0 2px 1px #3858e9}.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus,.wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover{border-bottom-color:#3858e9;color:#3858e9}css/nav-menus-rtl.min.css000066600000033767152330733730011372 0ustar00/*! This file is auto-generated */ .no-js #message{display:block}ul.add-menu-item-tabs li{padding:3px 8px 4px 5px}.accordion-section ul.add-menu-item-tabs,.accordion-section ul.category-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px;resize:vertical}#nav-menu-meta .button-controls{margin-bottom:0}.has-no-menu-item .button-controls{display:none}#nav-menus-frame{margin-right:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-right:-300px;clear:both;float:right;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0;height:100%;max-height:inherit}#menu-settings-column .categorydiv,#menu-settings-column .customlinkdiv,#menu-settings-column .posttypediv,#menu-settings-column .taxonomydiv{max-height:inherit;height:100%}#menu-settings-column .categorydiv div.tabs-panel,#menu-settings-column .customlinkdiv div.tabs-panel,#menu-settings-column .posttypediv div.tabs-panel,#menu-settings-column .taxonomydiv div.tabs-panel,#menu-settings-column .wp-tab-panel{max-height:calc(100% - 75px);height:100%}.metabox-holder-disabled .accordion-section-content,.metabox-holder-disabled .accordion-section-title,.metabox-holder-disabled .postbox{opacity:.5}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.is-submenu{color:#50575e;font-style:italic;font-weight:400;margin-right:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;background:#fff}.manage-menus .selected-menu,.manage-menus .submit-btn,.manage-menus select,.nav-menus-php .add-new-menu-action{display:inline-block;margin-left:3px;vertical-align:middle}.manage-menus select,.menu-location-menus select{max-width:100%}.menu-edit #post-body-content h3{margin:1em 0 10px}#nav-menu-bulk-actions-top{margin:1em 0}#nav-menu-bulk-actions-bottom{margin:1em 0;margin:calc(1em + 9px) 0}.bulk-actions input.button{margin-left:12px}.bulk-select-button{position:relative;display:inline-block;padding:0 10px;font-size:13px;line-height:2.15384615;height:auto;min-height:30px;background:#f6f7f7;vertical-align:top;border:1px solid #dcdcde;margin:0;cursor:pointer;border-radius:3px;white-space:nowrap;box-sizing:border-box}.bulk-selection .bulk-select-button{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}#pending-menu-items-to-delete{display:none}.bulk-selection #pending-menu-items-to-delete{display:block;margin-top:1em}#pending-menu-items-to-delete p{margin-bottom:0}#pending-menu-items-to-delete ul{margin-top:0;list-style:none}#pending-menu-items-to-delete ul li{display:inline}input.bulk-select-switcher+.bulk-select-button-label{vertical-align:inherit}label.bulk-select-button:active,label.bulk-select-button:focus-within,label.bulk-select-button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}input.bulk-select-switcher:focus+.bulk-select-button-label{color:#0a4b78}.bulk-actions input.menu-items-delete{appearance:none;font-size:inherit;border:0;line-height:2.1em;background:0 0;cursor:pointer;text-decoration:underline;color:#b32d2e}.bulk-actions input.menu-items-delete:hover{color:#b32d2e;border:none}.bulk-actions input.menu-items-delete.disabled{display:none}.menu-settings{border-top:1px solid #f0f0f1;margin-top:2em}.menu-settings-group{margin:0 0 10px;padding-right:20%}.menu-settings-group:last-of-type{margin-bottom:0}.menu-settings-input{float:right;margin:0;width:100%}.menu-settings-group-name{float:right;clear:both;width:25%;padding:3px 0 0;margin-right:-25%}.menu-settings label{vertical-align:baseline}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{color:#646970;font-size:11px}#menu-management-liquid{float:right;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-left:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px;border-top:1px solid #fff;border-bottom:1px solid #dcdcde;background:#fff}#nav-menu-footer,#nav-menu-header{padding:0 10px;background:#f6f7f7}#nav-menu-header{border-bottom:1px solid #dcdcde;margin-bottom:0}#nav-menu-header .menu-name-label{display:inline-block;vertical-align:middle;margin-left:7px}.nav-menus-php #post-body div.error,.nav-menus-php #post-body div.updated{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}.nav-menus-php #post-body-content .post-body-plain{margin-bottom:0}#menu-management .menu-add-new abbr{font-weight:600}#select-nav-menu-container{text-align:left;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat .menu-locations .menu-location-title{padding:13px 10px 0}.menu-location-title label{font-weight:600}.menu-location-menus select{float:right}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:right;width:160px;margin-left:5px}.locations-row-links{float:right;margin:6px 6px 0 0}.locations-add-menu-link,.locations-edit-menu-link{margin:0 3px}.locations-edit-menu-link{padding-left:3px;border-left:1px solid #c3c4c7}#menu-management .inside{padding:0 10px}.postbox .howto input{width:180px;float:left}.accordion-container .outer-border{margin:0}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:left}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}#cancel-save{text-decoration:underline;font-size:12px;margin-right:20px;margin-top:5px}.button-primary.right,.button-secondary.right,.button.right{float:left}.list-controls{float:right}.add-to-menu{float:left}.button-controls{clear:both;margin:10px 0}.hide-all,.show-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px;vertical-align:middle}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:right;margin-top:5px;padding-left:5px}.menu-item-textbox{width:180px}.customlinkdiv .menu-item-textbox{width:100%}.nav-menus-php .howto span{float:right;margin-top:6px}.quick-search{width:190px}.quick-search-wrap .spinner{float:none;margin:-3px 0 0 -10px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0 0 5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-left:3px;margin-top:-3px}.menu-item-title input[type=checkbox]{display:inline-block;margin-top:-4px}.menu-item-title .post-state{font-weight:600}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5;position:relative;margin:9px 0 0}.menu-item-bar .menu-item-handle{border:1px solid #dcdcde;position:relative;padding:10px 15px;height:auto;min-height:20px;max-width:382px;line-height:2.30769230;overflow:hidden;word-wrap:break-word}.menu-item-bar .menu-item-handle:hover{border-color:#8c8f94}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fcf0f1;border-color:#d63638}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;background-color:#f86368}.menu-item-handle .item-title{font-size:13px;font-weight:600;line-height:1.53846153;display:block;margin-left:13em}.menu-item-handle .menu-item-checkbox{display:none}.bulk-selection .menu-item-handle .menu-item-checkbox{display:inline-block;margin-left:6px}.menu-item-handle .menu-item-title.no-title{color:#646970}li.menu-item.ui-sortable-helper .menu-item-bar{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar{margin-top:9px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:9px}.menu-item .menu-item-transport:empty{display:none}.menu-item-depth-0{margin-right:0}.menu-item-depth-1{margin-right:30px}.menu-item-depth-2{margin-right:60px}.menu-item-depth-3{margin-right:90px}.menu-item-depth-4{margin-right:120px}.menu-item-depth-5{margin-right:150px}.menu-item-depth-6{margin-right:180px}.menu-item-depth-7{margin-right:210px}.menu-item-depth-8{margin-right:240px}.menu-item-depth-9{margin-right:270px}.menu-item-depth-10{margin-right:300px}.menu-item-depth-11{margin-right:330px}.menu-item-depth-0 .menu-item-transport{margin-right:0}.menu-item-depth-1 .menu-item-transport{margin-right:-30px}.menu-item-depth-2 .menu-item-transport{margin-right:-60px}.menu-item-depth-3 .menu-item-transport{margin-right:-90px}.menu-item-depth-4 .menu-item-transport{margin-right:-120px}.menu-item-depth-5 .menu-item-transport{margin-right:-150px}.menu-item-depth-6 .menu-item-transport{margin-right:-180px}.menu-item-depth-7 .menu-item-transport{margin-right:-210px}.menu-item-depth-8 .menu-item-transport{margin-right:-240px}.menu-item-depth-9 .menu-item-transport{margin-right:-270px}.menu-item-depth-10 .menu-item-transport{margin-right:-300px}.menu-item-depth-11 .menu-item-transport{margin-right:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{display:inline-block;padding:12px 16px;color:#646970;font-size:12px;line-height:1.5}.item-controls{font-size:12px;position:absolute;left:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-left:10px}.nav-menus-php .item-edit{position:absolute;left:-20px;top:0;display:block;width:30px;height:40px;outline:0}.no-js.nav-menus-php .item-edit{position:static;float:left;width:auto;height:auto;margin:12px 0 12px -10px;padding:0;color:#2271b1;text-decoration:underline;font-size:12px;line-height:1.5}.no-js.nav-menus-php .item-edit .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.nav-menus-php .item-edit:before{margin-top:10px;margin-right:4px;width:20px;border-radius:50%;text-indent:-1px}.no-js.nav-menus-php .item-edit:before{display:none}.rtl .nav-menus-php .item-edit:before{text-indent:1px}.js.nav-menus-php .item-edit:focus{box-shadow:none}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;max-width:392px;padding:10px;position:relative;z-index:10;border:1px solid #c3c4c7;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04)}.menu-item-settings .field-move{margin:3px 0 5px;line-height:1.5}.field-move-visual-label{float:right;margin-left:4px}.menu-item-settings .field-move .button-link{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em -10px;text-align:center}.add-menu-item-pagelinks .page-numbers{display:inline-block;min-width:20px}.add-menu-item-pagelinks .page-numbers.dots{min-width:0}.link-to-original{display:block;margin:0 0 15px;padding:3px 5px 5px;border:1px solid #dcdcde;color:#646970;font-size:12px}.link-to-original a{padding-right:4px;font-style:normal}.hidden-field{display:none}.description-group{display:flex;column-gap:10px}.description-group>*{flex-grow:1}.menu-item-actions{padding-top:15px;padding-bottom:7px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{padding:10px 0;display:flex;align-items:center}.nav-menus-php .major-publishing-actions>*{margin-left:10px}.nav-menus-php .major-publishing-actions .form-invalid{padding-right:4px;margin-right:-4px}#menu-item-name-wrap,#menu-item-url-wrap,#nav-menus-frame{display:block}.button-controls{display:flex;align-items:center;justify-content:space-between}.button-controls-customlinkdiv{justify-content:flex-end}@media only screen and (min-width:769px) and (max-width:1000px){body.menu-max-depth-0{min-width:0!important}#menu-management-liquid{width:100%}.nav-menus-php #post-body-content{min-width:0}}@media screen and (max-width:782px){body.nav-menus-php,body.wp-customizer{min-width:0!important}#nav-menus-frame{margin-right:0;float:none;width:100%}#wpbody-content #menu-settings-column{display:block;width:100%;float:none;margin-right:0}#side-sortables .add-menu-item-tabs{margin:15px 0 14px}ul.add-menu-item-tabs li.tabs{padding:13px 15px 14px}.nav-menus-php .customlinkdiv .howto input{width:65%}.nav-menus-php .quick-search{width:85%}#menu-management-liquid{margin-top:25px}.nav-menus-php .menu-name-label.howto span{margin-top:13px}#menu-name{width:100%}.nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action{padding-top:1em}.nav-menus-php .delete-action{font-size:14px;line-height:2.14285714}.menu-item-bar .menu-item-handle,.menu-item-settings{width:auto}.menu-item-settings{padding:10px}.menu-item-settings .description-group{display:block}.menu-item-settings input{width:100%}.menu-item-settings input[type=checkbox],.menu-item-settings input[type=radio]{width:25px}.menu-settings-group{padding-right:0;overflow:visible}.menu-settings-group-name{float:none;width:auto;margin-right:0;margin-bottom:15px}.menu-settings-input{float:none;margin-bottom:15px}.menu-edit .checkbox-input{margin-top:0}.manage-menus select{margin:.5em 0}.wp-core-ui .manage-menus .button{margin-bottom:0}.widefat .menu-locations .menu-location-title{padding-top:16px}}@media only screen and (min-width:783px){@supports (position:sticky) and (scroll-margin-bottom:130px){#nav-menu-footer{position:sticky;bottom:0;z-index:10;box-shadow:0 -1px 0 0 #ddd}#save_menu_header{display:none}}}@media only screen and (max-width:768px){#menu-locations-wrap .widefat{width:100%}.bulk-select-button{padding:5px 10px}}css/site-icon.min.css000066600000007542152330733730010544 0ustar00/*! This file is auto-generated */ .site-icon-section{--site-icon-removal:#b32d2e}.site-icon-preview{--site-icon-input-border:#8c8f94;--site-icon-preview-background:#fff;--site-icon-preview-browser-top:#dcdcde;--site-icon-preview-browser-bottom:#a7aaad;--site-icon-preview-browser-border:rgba(255, 255, 255, 0.2);--site-icon-address-bar-background:#f0f0f1;--site-icon-address-bar-close:#646970;--site-icon-address-bar-text:#3c434a;--site-icon-shadow-1:rgba(0, 0, 0, 0.1);--site-icon-shadow-2:rgba(0, 0, 0, 0.2);--site-icon-shadow-3:rgba(0, 0, 0, 0.5);direction:initial;display:flex;height:60px;padding:8px 0 0 8px;align-items:flex-start;position:relative;overflow:hidden;box-sizing:border-box;border:1px solid var(--site-icon-input-border);border-radius:4px;background-color:var(--site-icon-preview-background);width:275px}@media (prefers-color-scheme:dark){.site-icon-preview{--site-icon-preview-browser-top:#2c3338;--site-icon-preview-browser-bottom:#111;--site-icon-address-bar-background:#3c434a;--site-icon-address-bar-close:#f0f0f1;--site-icon-address-bar-text:#f0f0f1}}.site-icon-preview.settings{height:88px;padding:16px 0 0 16px;width:350px;margin:0 0 16px 0}.site-icon-preview.crop{width:258px;height:100%;display:grid;grid-template-columns:8px 1fr;grid-template-rows:64px 1fr;padding-left:0;row-gap:16px;direction:inherit}.site-icon-preview.hidden{display:none}.site-icon-preview .direction-wrap{grid-template-columns:44px 1fr;gap:8px;display:grid;direction:ltr;height:100%;width:100%}.site-icon-preview.settings .direction-wrap{grid-template-columns:58px 1fr;gap:16px}.site-icon-preview:after{--after-size:150%;aspect-ratio:1/1;content:"";display:block;position:absolute;top:0;left:0;width:var(--after-size);transform:translate(calc(var(--after-size) * -.125),calc(var(--after-size) * -.125));filter:blur(5px);opacity:.5;background:var(--site-icon-url)}.site-icon-preview .app-icon-preview{aspect-ratio:1/1;border-radius:10px;box-shadow:0 1px 5px 0 var(--site-icon-shadow-3);flex-shrink:0;width:100%;z-index:1}.site-icon-preview-browser{display:flex;padding:4px 4px 0 12px;align-items:flex-start;gap:16px;flex:1 0 0;z-index:1;border-top-left-radius:10px;border-top:1px solid var(--site-icon-preview-browser-border);border-left:1px solid var(--site-icon-preview-browser-border);background:linear-gradient(180deg,var(--site-icon-preview-browser-top) 0,var(--site-icon-preview-browser-bottom) 100%);box-shadow:0 10px 22px 0 var(--site-icon-shadow-2)}.site-icon-preview .browser-buttons{width:48px;height:40px;fill:var(--site-icon-input-border)}.site-icon-preview-tab{padding:8px;align-items:center;gap:8px;flex:1 0 0;border-radius:4px;background-color:var(--site-icon-address-bar-background);box-shadow:0 1px 3px 0 var(--site-icon-shadow-1);display:grid;grid-template-columns:24px auto 24px}.site-icon-preview-browser .browser-icon-preview{box-shadow:0 0 20px 0 var(--site-icon-shadow-1)}.site-icon-preview-tab>img,.site-icon-preview-tab>svg{width:24px;height:24px}.site-icon-preview-tab>svg{fill:var(--site-icon-address-bar-close)}.site-icon-preview-site-title{color:var(--site-icon-address-bar-text);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-weight:500}.site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview{width:64px;height:64px;margin:0;grid-column:2}.site-icon-preview-crop-modal .site-icon-preview-browser{grid-column:2}.site-icon-preview-crop-modal .image-preview-wrap{overflow:hidden;aspect-ratio:1/1}.site-icon-preview-crop-modal .image-preview-wrap.browser{width:24px;height:24px}button.reset.remove-site-icon{color:var(--site-icon-removal);text-decoration:none;border-color:currentColor;box-shadow:none;background:0 0}button.reset.remove-site-icon:focus,button.reset.remove-site-icon:hover{background:var(--site-icon-removal);color:#fff;border-color:var(--site-icon-removal);box-shadow:0 0 0 1px var(--site-icon-removal)}.site-icon-action-buttons{display:flex;flex-wrap:wrap;gap:10px}css/install-rtl.css000066600000014541152330733730010332 0ustar00/*! This file is auto-generated */ html { background: #f0f0f1; margin: 0 20px; } body { background: #fff; border: 1px solid #c3c4c7; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 140px auto 25px; padding: 20px 20px 10px; max-width: 700px; -webkit-font-smoothing: subpixel-antialiased; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } a { color: var(--wp-admin-theme-color); } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: var(--wp-admin-theme-color-darker-20); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } h1, h2 { border-bottom: 1px solid #dcdcde; clear: both; color: #646970; font-size: 24px; padding: 0 0 7px; font-weight: 400; } h3 { font-size: 16px; } p, li, dd, dt { padding-bottom: 2px; font-size: 14px; line-height: 1.5; } code, .code { font-family: Consolas, Monaco, monospace; } ul, ol, dl { padding: 5px 22px 5px 5px; } a img { border: 0 } abbr { border: 0; font-variant: normal; } fieldset { border: 0; padding: 0; margin: 0; } #logo { margin: -130px auto 25px; padding: 0 0 25px; width: 84px; height: 84px; overflow: hidden; background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; /* same as login.css */ font-size: 20px; font-weight: 400; line-height: 1.3em; text-decoration: none; text-align: center; text-indent: -9999px; outline: none; } .step { margin: 20px 0 15px; } .step, th { text-align: right; padding: 0; } .language-chooser.wp-core-ui .step .button.button-large { font-size: 14px; } textarea { border: 1px solid #dcdcde; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; width: 100%; box-sizing: border-box; } .form-table { border-collapse: collapse; margin-top: 1em; width: 100%; } .form-table td { margin-bottom: 9px; padding: 10px 0 10px 20px; font-size: 14px; vertical-align: top } .form-table th { font-size: 14px; text-align: right; padding: 10px 0 10px 20px; width: 115px; vertical-align: top; } .form-table code { line-height: 1.28571428; font-size: 14px; } .form-table p { margin: 4px 0 0; font-size: 11px; } .form-table .setup-description { margin: 4px 0 0; line-height: 1.6; } .form-table input { line-height: 1.33333333; font-size: 15px; padding: 3px 5px; } .wp-pwd { margin-top: 0; } .form-table .wp-pwd { display: flex; column-gap: 4px; } .form-table .password-input-wrapper { width: 100%; } input, submit { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } .form-table input[type=text], .form-table input[type=email], .form-table input[type=url], .form-table input[type=password], #pass-strength-result { width: 100%; } .form-table th p { font-weight: 400; } .form-table.install-success th, .form-table.install-success td { vertical-align: middle; padding: 16px 0 16px 20px; } .form-table.install-success td p { margin: 0; font-size: 14px; } .form-table.install-success td code { margin: 0; font-size: 18px; } #error-page { margin-top: 50px; } #error-page p { font-size: 14px; line-height: 1.28571428; margin: 25px 0 20px; } #error-page code, .code { font-family: Consolas, Monaco, monospace; } .message { border-right: 4px solid #d63638; padding: .7em .6em; background-color: #fcf0f1; } /* rtl:ignore */ #dbname, #uname, #pwd, #dbhost, #prefix, #user_login, #admin_email, #pass1, #pass2 { direction: ltr; } /* localization */ body.rtl, .rtl textarea, .rtl input, .rtl submit { font-family: Tahoma, sans-serif; } :lang(he-il) body.rtl, :lang(he-il) .rtl textarea, :lang(he-il) .rtl input, :lang(he-il) .rtl submit { font-family: Arial, sans-serif; } @media only screen and (max-width: 799px) { body { margin-top: 115px; } #logo a { margin: -125px auto 30px; } } @media screen and (max-width: 782px) { .form-table { margin-top: 0; } .form-table th, .form-table td { display: block; width: auto; vertical-align: middle; } .form-table th { padding: 20px 0 0; } .form-table td { padding: 5px 0; border: 0; margin: 0; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="url"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description { width: 100%; font-size: 16px; line-height: 1.5; padding: 7px 10px; display: block; max-width: none; box-sizing: border-box; } #pwd { padding-left: 2.5rem; } .wp-pwd #pass1 { padding-left: 50px; } .wp-pwd .button.wp-hide-pw { left: 0; } #pass-strength-result { width: 100%; } } body.language-chooser { max-width: 300px; } .language-chooser select { padding: 8px; width: 100%; display: block; border: 1px solid #dcdcde; background: #fff; color: #2c3338; font-size: 16px; font-family: Arial, sans-serif; font-weight: 400; } .language-chooser select:focus { color: #2c3338; } .language-chooser select option:hover, .language-chooser select option:focus { color: var(--wp-admin-theme-color-darker-20); } .language-chooser .step { text-align: left; } .screen-reader-input, .screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; visibility: hidden; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 2px 5px 0; } .step .spinner { display: inline-block; vertical-align: middle; margin-left: 15px; } .button.hide-if-no-js, .hide-if-no-js { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .spinner { background-image: url(../images/spinner-2x.gif); } } css/customize-controls.css000066600000215453152330733730011755 0ustar00body { overflow: hidden; -webkit-text-size-adjust: 100%; } .customize-controls-close, .widget-control-actions a { text-decoration: none; } #customize-controls h3 { font-size: 14px; } #customize-controls img { max-width: 100%; } #customize-controls .submit { text-align: center; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { background-color: rgba(0, 0, 0, 0.7); padding: 25px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message { margin-left: auto; margin-right: auto; max-width: 366px; min-height: 64px; width: auto; padding: 25px; position: relative; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; overflow-y: auto; text-align: left; top: calc( 50% - 100px ); } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar { padding-left: 109px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing { margin-top: 0; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons { margin-bottom: 0; } .customize-changeset-locked-avatar { width: 64px; position: absolute; left: 25px; top: 25px; } .wp-core-ui.wp-customizer .customize-changeset-locked-message a.button { margin-right: 10px; margin-top: 0; } #customize-controls .description { color: #50575e; } #customize-save-button-wrapper { float: right; margin-top: 7px; /* Vertically center 32px button in 45px header */ } body:not(.ready) #customize-save-button-wrapper .save { visibility: hidden; } #customize-save-button-wrapper .save { float: left; border-radius: 3px; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ margin-top: 0; } #customize-save-button-wrapper .save.has-next-sibling { border-radius: 3px 0 0 3px; } #customize-sidebar-outer-content { position: absolute; top: 0; bottom: 0; left: 0; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 100%; margin: 0; z-index: -1; background: #f0f0f1; transition: left .18s; border-right: 1px solid #dcdcde; border-left: 1px solid #dcdcde; height: 100%; } @media (prefers-reduced-motion: reduce) { #customize-sidebar-outer-content { transition: none; } } #customize-theme-controls .control-section-outer { display: none !important; } #customize-outer-theme-controls .accordion-section-content { padding: 12px; } #customize-outer-theme-controls .accordion-section-content.open { display: block; } .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { visibility: visible; left: 100%; transition: left .18s; } @media (prefers-reduced-motion: reduce) { .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { transition: none; } } .customize-outer-pane-parent { margin: 0; } .outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main { left: 300px; opacity: 0.4; } .outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { left: 64%; } #customize-outer-theme-controls li.notice { padding-top: 8px; padding-bottom: 8px; margin-left: 0; margin-bottom: 10px; } #publish-settings { text-indent: 0; border-radius: 0 3px 3px 0; padding-left: 0; padding-right: 0; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ font-size: 14px; width: 30px; float: left; transform: none; margin-top: 0; line-height: 2; } body:not(.ready) #publish-settings, body.trashing #customize-save-button-wrapper .save, body.trashing #publish-settings { display: none; } #customize-header-actions .spinner { margin-top: 13px; /* Vertically center 20px spinner in 45px header */ margin-right: 4px; } .saving #customize-header-actions .spinner, .trashing #customize-header-actions .spinner { visibility: visible; } #customize-header-actions { border-bottom: 1px solid #dcdcde; } #customize-controls .wp-full-overlay-sidebar-content { overflow-y: auto; overflow-x: hidden; } .outer-section-open #customize-controls .wp-full-overlay-sidebar-content { background: #f0f0f1; } #customize-controls .customize-info { border: none; border-bottom: 1px solid #dcdcde; margin-bottom: 15px; } #customize-control-changeset_status .customize-inside-control-row, #customize-control-changeset_preview_link input { background-color: #fff; border-bottom: 1px solid #dcdcde; box-sizing: content-box; width: 100%; margin-left: -12px; padding-left: 12px; padding-right: 12px; } #customize-control-trash_changeset { margin-top: 20px; } #customize-control-trash_changeset .button-link { position: relative; padding-left: 24px; display: inline-block; } #customize-control-trash_changeset .button-link:before { content: "\f182"; content: "\f182" / ''; font: normal 22px dashicons; text-decoration: none; position: absolute; left: 0; top: -2px; } #customize-controls .date-input:invalid { border-color: #d63638; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 10px; padding-bottom: 10px; font-weight: 500; } #customize-control-changeset_status .customize-inside-control-row:first-of-type { border-top: 1px solid #dcdcde; } #customize-control-changeset_status .customize-control-title { margin-bottom: 6px; } #customize-control-changeset_status input { margin-left: 0; } #customize-control-changeset_preview_link { position: relative; display: block; } .preview-link-wrapper .customize-copy-preview-link.preview-control-element.button { margin: 0; position: absolute; top: 50%; transform: translateY(-50%) !important; right: 0; background: #fff !important; } .preview-link-wrapper { position: relative; } .customize-copy-preview-link:before, .customize-copy-preview-link:after { content: ""; height: 40px; position: absolute; background: #fff; top: 0; } .customize-copy-preview-link:before { left: -10px; width: 9px; opacity: 0.75; } .customize-copy-preview-link:after { left: -5px; width: 4px; opacity: 0.8; } #customize-control-changeset_preview_link input { line-height: 2.85714286; /* 40px */ border-top: 1px solid #dcdcde; border-left: none; border-right: none; text-indent: -999px; color: #fff; /* Only necessary for IE11 */ min-height: 40px; } #customize-control-changeset_preview_link label { position: relative; display: block; } #customize-control-changeset_preview_link a { display: inline-block; position: absolute; white-space: nowrap; overflow: hidden; width: 90%; bottom: 14px; font-size: 14px; text-decoration: none; } #customize-control-changeset_preview_link a.disabled, #customize-control-changeset_preview_link a.disabled:active, #customize-control-changeset_preview_link a.disabled:focus, #customize-control-changeset_preview_link a.disabled:visited { color: #000; opacity: 0.4; cursor: default; outline: none; box-shadow: none; } #sub-accordion-section-publish_settings .customize-section-description-container { display: none; } #customize-controls .customize-info.section-meta { margin-bottom: 15px; } .customize-control-date_time .customize-control-description + .date-time-fields.includes-time { margin-top: 10px; } .customize-control.customize-control-date_time .date-time-fields .date-input.day { margin-right: 0; } .date-time-fields .date-input.month { width: auto; margin: 0; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 46px; } .customize-control-date_time select { vertical-align: top; } .date-time-fields .date-input.year { width: 65px; } .date-time-fields .date-input.meridian { width: auto; margin: 0; } .date-time-fields .time-row { margin-top: 12px; } #customize-control-changeset_preview_link { margin-top: 6px; } #customize-control-changeset_status { margin-bottom: 0; padding-bottom: 0; } #customize-control-changeset_scheduled_date { box-sizing: content-box; width: 100%; margin-left: -12px; padding: 12px; background: #fff; border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #customize-control-site_icon .customize-control-description, #customize-control-changeset_scheduled_date .customize-control-description { font-style: normal; } #customize-controls .customize-info.is-in-view, #customize-controls .customize-section-title.is-in-view { position: absolute; z-index: 9; width: 100%; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } #customize-controls .customize-section-title.is-in-view { margin-top: 0; } #customize-controls .customize-info.is-in-view + .accordion-section { margin-top: 15px; } #customize-controls .customize-info.is-sticky, #customize-controls .customize-section-title.is-sticky { position: fixed; top: 46px; } #customize-controls .customize-info .accordion-section-title { background: #fff; color: #50575e; border-left: none; border-right: none; border-bottom: none; cursor: default; padding: 10px 10px 11px 14px; } #customize-controls .customize-info.open .accordion-section-title:after, #customize-controls .customize-info .accordion-section-title:hover:after, #customize-controls .customize-info .accordion-section-title:focus:after { color: #2c3338; } #customize-controls .customize-info .accordion-section-title:after { display: none; } #customize-controls .customize-info .preview-notice { font-size: 13px; line-height: 1.9; margin: 0; font-weight: 400; color: #50575e; } #customize-controls .customize-pane-child .customize-section-title h3, #customize-controls .customize-pane-child h3.customize-section-title, #customize-outer-theme-controls .customize-pane-child .customize-section-title h3, #customize-outer-theme-controls .customize-pane-child h3.customize-section-title, #customize-controls .customize-info .panel-title { font-size: 20px; font-weight: 200; line-height: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-section-title span.customize-action { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-info .customize-help-toggle { position: absolute; top: 4px; right: 1px; padding: 20px 20px 10px 10px; width: 20px; height: 20px; cursor: pointer; box-shadow: none; background: transparent; color: #50575e; border: none; } #customize-controls .customize-info .customize-help-toggle:before { position: absolute; top: 5px; left: 6px; } #customize-controls .customize-info .customize-panel-description, #customize-controls .customize-info .customize-section-description, #customize-outer-theme-controls .customize-info .customize-section-description, #customize-controls .no-widget-areas-rendered-notice { color: #50575e; display: none; background: #fff; padding: 12px 15px; border-top: 1px solid #dcdcde; } #customize-controls .customize-info .customize-panel-description.open + .no-widget-areas-rendered-notice { border-top: none; } .no-widget-areas-rendered-notice { font-style: italic; } .no-widget-areas-rendered-notice p:first-child { margin-top: 0; } .no-widget-areas-rendered-notice p:last-child { margin-bottom: 0; } #customize-controls .customize-info .customize-section-description { margin-bottom: 15px; } #customize-controls .customize-info .customize-panel-description p:first-child, #customize-controls .customize-info .customize-section-description p:first-child { margin-top: 0; } #customize-controls .customize-info .customize-panel-description p:last-child, #customize-controls .customize-info .customize-section-description p:last-child { margin-bottom: 0; } #customize-controls .current-panel .control-section > h3.accordion-section-title { padding-right: 30px; } #customize-theme-controls .control-section, #customize-outer-theme-controls .control-section { border: none; } #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { color: #50575e; background-color: #fff; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .accordion-section-title:has(button.accordion-trigger), #customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) { padding: 0; } .accordion-section-title button.accordion-trigger { all: unset; width: 100%; padding: 10px 30px 11px 14px; display: flex; align-items: center; box-sizing: border-box; } .accordion-section-title button.accordion-trigger:has(.menu-in-location) { display: block; } .accordion-section-title button.accordion-trigger .spinner { margin-top: 0; } @media (prefers-reduced-motion: reduce) { #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { transition: none; } } #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { color: #50575e; background-color: #fff; border-left: 4px solid #fff; } #customize-theme-controls .accordion-section-title:after, #customize-outer-theme-controls .accordion-section-title:after { content: "\f345"; content: "\f345" / ''; color: #a7aaad; pointer-events: none; } #customize-theme-controls .accordion-section-content, #customize-outer-theme-controls .accordion-section-content { color: #50575e; background: transparent; } #accordion-section-themes + .control-section { border-top: 1px solid #dcdcde; } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { background: #f6f7f7; } #customize-theme-controls .control-section.open { border-bottom: 1px solid #f0f0f1; } #customize-theme-controls .control-section.open .accordion-section-title, #customize-outer-theme-controls .control-section.open .accordion-section-title { border-bottom-color: #f0f0f1 !important; } #customize-theme-controls .control-section:last-of-type.open, #customize-theme-controls .control-section:last-of-type > .accordion-section-title { border-bottom-color: #dcdcde; } #customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2), #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu, #customize-theme-controls .control-section-nav_menu_locations .accordion-section-title { border-top: 1px solid #dcdcde; } #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu + .control-section-nav_menu { border-top: none; } #customize-theme-controls > ul { margin: 0; } #customize-theme-controls .accordion-section-content { position: absolute; top: 0; left: 100%; width: 100%; margin: 0; padding: 12px; box-sizing: border-box; } #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { overflow: visible; width: 100%; margin: 0; padding: 0; box-sizing: border-box; transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ } @media (prefers-reduced-motion: reduce) { #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { transition: none; } } #customize-theme-controls .customize-pane-child.skip-transition { transition: none; } #customize-info, #customize-theme-controls .customize-pane-parent { position: relative; visibility: visible; height: auto; max-height: none; overflow: auto; transform: none; } #customize-theme-controls .customize-pane-child { position: absolute; top: 0; left: 0; visibility: hidden; height: 0; max-height: none; overflow: hidden; transform: translateX(100%); } #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel { transform: none; } .section-open #customize-theme-controls .customize-pane-parent, .in-sub-panel #customize-theme-controls .customize-pane-parent, .section-open #customize-info, .in-sub-panel #customize-info, .in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel { visibility: hidden; height: 0; overflow: hidden; transform: translateX(-100%); } .section-open #customize-theme-controls .customize-pane-parent.busy, .in-sub-panel #customize-theme-controls .customize-pane-parent.busy, .section-open #customize-info.busy, .in-sub-panel #customize-info.busy, .busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.busy { visibility: visible; height: auto; overflow: auto; } #customize-theme-controls .customize-pane-child.accordion-section-content, #customize-theme-controls .customize-pane-child.accordion-sub-container { display: block; overflow-x: hidden; } #customize-theme-controls .customize-pane-child.accordion-section-content { padding: 12px; } #customize-theme-controls .customize-pane-child.menu li { position: static; } .customize-section-description-container, .control-section-nav_menu .customize-section-description-container, .control-section-new_menu .customize-section-description-container { margin-bottom: 15px; } .control-section-nav_menu .customize-control, .control-section-new_menu .customize-control { /* Override default `margin-bottom` for `.customize-control` */ margin-bottom: 0; } .customize-section-title { margin: -12px -12px 0; border-bottom: 1px solid #dcdcde; background: #fff; } div.customize-section-description { margin-top: 22px; } .customize-info div.customize-section-description { margin-top: 0; } div.customize-section-description p:first-child { margin-top: 0; } div.customize-section-description p:last-child { margin-bottom: 0; } #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { border-bottom: 1px solid #dcdcde; padding: 12px; } .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { padding: 12px 12px 13px; } .customize-section-title h3, h3.customize-section-title { padding: 10px 10px 12px 14px; margin: 0; line-height: 21px; color: #50575e; } .accordion-sub-container.control-panel-content { display: none; position: absolute; top: 0; width: 100%; } .accordion-sub-container.control-panel-content.busy { display: block; } .current-panel .accordion-sub-container.control-panel-content { width: 100%; } .customize-controls-close { display: block; position: absolute; top: 0; left: 0; width: 45px; height: 41px; padding: 0 2px 0 0; background: #f0f0f1; border: none; border-top: 4px solid #f0f0f1; border-right: 1px solid #dcdcde; color: #3c434a; text-align: left; cursor: pointer; box-sizing: content-box; } @media (prefers-reduced-motion: no-preference) { .customize-controls-close { transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } } .customize-panel-back, .customize-section-back { display: block; float: left; width: 48px; height: 71px; padding: 0 24px 0 0; margin: 0; background: #fff; border: none; border-right: 1px solid #dcdcde; border-left: 4px solid #fff; box-shadow: none; cursor: pointer; transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } .customize-section-back { height: 74px; } .ios .customize-panel-back { display: none; } .ios .expanded.in-sub-panel .customize-panel-back { display: block; } #customize-controls .panel-meta.customize-info .accordion-section-title { margin-left: 48px; border-left: none; } #customize-controls .panel-meta.customize-info .accordion-section-title:hover, #customize-controls .cannot-expand:hover .accordion-section-title { background: #fff; color: #50575e; border-left-color: #fff; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { background: #fff; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #customize-theme-controls .accordion-section-title:focus .customize-action { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: 1px; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .customize-controls-close:before { font: normal 22px/45px dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: -3px; left: 13px; } .customize-panel-back:before, .customize-section-back:before { font: normal 20px/72px dashicons; content: "\f341"; content: "\f341" / ''; position: relative; left: 9px; } .wp-full-overlay-sidebar .wp-full-overlay-header { background-color: #f0f0f1; transition: padding ease-in-out .18s; } .in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header { padding-left: 62px; } p.customize-section-description { font-style: normal; margin-top: 22px; margin-bottom: 0; } .customize-section-description ul { margin-left: 1em; } .customize-section-description ul > li { list-style: disc; } .section-description-buttons { text-align: right; } .customize-control { width: 100%; float: left; clear: both; margin-bottom: 12px; } .customize-control input[type="text"], .customize-control input[type="password"], .customize-control input[type="email"], .customize-control input[type="number"], .customize-control input[type="search"], .customize-control input[type="tel"], .customize-control input[type="url"], .customize-control input[type="range"] { width: 100%; margin: 0; } .customize-control-hidden { margin: 0; } .customize-control-textarea textarea { width: 100%; resize: vertical; } .customize-control select { width: 100%; } .customize-control select[multiple] { height: auto; } .customize-control-title { display: block; font-size: 14px; line-height: 1.75; font-weight: 600; margin-bottom: 4px; } .customize-control-description { display: block; font-style: italic; line-height: 1.4; margin-top: 0; margin-bottom: 5px; } .customize-section-description a.external-link:after { font: 16px/11px dashicons; content: "\f504"; content: "\f504" / ''; top: 3px; position: relative; padding-left: 3px; display: inline-block; text-decoration: none; } .customize-control-color .color-picker, .customize-control-upload div { line-height: 28px; } .customize-control .customize-inside-control-row { line-height: 1.6; display: block; margin-left: 24px; padding-top: 6px; padding-bottom: 6px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-right: 4px; margin-left: -24px; } .customize-control-radio { padding: 5px 0 10px; } .customize-control-radio .customize-control-title { margin-bottom: 0; line-height: 1.6; } .customize-control-radio .customize-control-title + .customize-control-description { margin-top: 7px; } .customize-control-radio label, .customize-control-checkbox label { vertical-align: top; } .customize-control .attachment-thumb.type-icon { float: left; margin: 10px; width: auto; } .customize-control .attachment-title { font-weight: 600; margin: 0; padding: 5px 10px; } .customize-control .attachment-meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; padding: 0 10px; } .customize-control .attachment-meta-title { padding-top: 7px; } /* Remove descender space. */ .customize-control .thumbnail-image, .customize-control-header .current, .customize-control .wp-media-wrapper.wp-video { line-height: 0; } .customize-control .thumbnail-image img { cursor: pointer; } #customize-controls .thumbnail-audio .thumbnail { max-width: 64px; max-height: 64px; margin: 10px; float: left; } #available-menu-items .accordion-section-content .new-content-item-wrapper, .customize-control-dropdown-pages .new-content-item-wrapper { width: calc(100% - 30px); padding: 8px 15px; position: absolute; bottom: 0; z-index: 10; background: #f0f0f1; } .customize-control-dropdown-pages .new-content-item-wrapper { width: 100%; padding: 0; position: static; } #available-menu-items .new-content-item-wrapper > label, .customize-control-dropdown-pages .new-content-item-wrapper > label { margin-bottom: 4px; display: block; } #available-menu-items .accordion-section-content .new-content-item, .customize-control-dropdown-pages .new-content-item { display: flex; } .customize-control-dropdown-pages .new-content-item { width: 100%; padding: 5px 0 5px 1px; position: relative; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item { padding: 0; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label { line-height: 1.6; } #available-menu-items .new-content-item .create-item-input, .customize-control-dropdown-pages .new-content-item .create-item-input { flex-grow: 10; width: 100%; } #available-menu-items .new-content-item .create-item-input { min-height: 32px; line-height: 2.15384615; /* 28px for 32px min-height with 13px font */ } #available-menu-items .new-content-item .add-content, .customize-control-dropdown-pages .new-content-item .add-content { margin: 0 0 0 6px; flex-grow: 1; } #available-menu-items .new-content-item .add-content { min-height: 32px; line-height: 2.30769231; /* 30px for 32px min-height with 13px font */ } .customize-control-dropdown-pages .new-content-item .create-item-input.invalid { border: 1px solid #d63638; } .customize-control-dropdown-pages .add-new-toggle { margin-left: 1px; font-weight: 600; line-height: 2.2; } #customize-preview iframe { width: 100%; height: 100%; position: absolute; } #customize-preview iframe + iframe { visibility: hidden; } .wp-full-overlay-sidebar { background: #f0f0f1; border-right: 1px solid #dcdcde; } /** * Notifications */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ margin: 4px 0 8px; padding: 0; cursor: default; } #customize-controls .customize-control-widget_form.has-error .widget .widget-top, .customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle { box-shadow: inset 0 0 0 2px #d63638; transition: .15s box-shadow linear; } #customize-controls .customize-control-notifications-container li.notice { list-style: none; margin: 0 0 6px; padding: 9px 14px; overflow: hidden; } #customize-controls .customize-control-notifications-container .notice.is-dismissible { padding-right: 38px; } .customize-control-notifications-container li.notice:last-child { margin-bottom: 0; } #customize-controls .customize-control-nav_menu_item .customize-control-notifications-container { margin-top: 0; } #customize-controls .customize-control-widget_form .customize-control-notifications-container { margin-top: 8px; } .customize-control-text.has-error input { outline: 2px solid #d63638; } #customize-controls #customize-notifications-area { position: absolute; top: 46px; width: 100%; border-bottom: 1px solid #dcdcde; display: block; padding: 0; margin: 0; } .wp-full-overlay.collapsed #customize-controls #customize-notifications-area { display: none !important; } #customize-controls #customize-notifications-area:not(.has-overlay-notifications), #customize-controls .customize-section-title > .customize-control-notifications-container:not(.has-overlay-notifications), #customize-controls .panel-meta > .customize-control-notifications-container:not(.has-overlay-notifications) { max-height: 210px; overflow-x: hidden; overflow-y: auto; } #customize-controls #customize-notifications-area > ul, #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { margin: 0; } #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container { border-top: 1px solid #dcdcde; } #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { padding: 9px 14px; } #customize-controls #customize-notifications-area .notice.is-dismissible, #customize-controls .panel-meta > .customize-control-notifications-container .notice.is-dismissible, #customize-controls .customize-section-title > .customize-control-notifications-container .notice.is-dismissible { padding-right: 38px; } #customize-controls #customize-notifications-area .notice + .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice + .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice + .notice { margin-top: 1px; } @keyframes customize-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } #customize-controls .notice.notification-overlay, #customize-controls #customize-notifications-area .notice.notification-overlay { margin: 0; border-left: 0; /* @todo Appropriate styles could be added for notice-error, notice-warning, notice-success, etc */ } #customize-controls .customize-control-notifications-container.has-overlay-notifications { animation: customize-fade-in 0.5s; z-index: 30; } /* Note: Styles for this are also defined in themes.css */ #customize-controls #customize-notifications-area .notice.notification-overlay .notification-message { clear: both; color: #1d2327; font-size: 18px; font-style: normal; margin: 0; padding: 2em 0; text-align: center; width: 100%; display: block; top: 50%; position: relative; } /* Style for custom settings */ /** * Static front page */ #customize-control-show_on_front.has-error { margin-bottom: 0; } #customize-control-show_on_front.has-error .customize-control-notifications-container { margin-top: 12px; } /** * Dropdowns */ .accordion-section .dropdown { float: left; display: block; position: relative; cursor: pointer; } .accordion-section .dropdown-content { overflow: hidden; float: left; min-width: 30px; height: 16px; line-height: 16px; margin-right: 16px; padding: 4px 5px; border: 2px solid #f0f0f1; -webkit-user-select: none; user-select: none; } /* @todo maybe no more used? */ .customize-control .dropdown-arrow { position: absolute; top: 0; bottom: 0; right: 0; width: 20px; background: #f0f0f1; } .customize-control .dropdown-arrow:after { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; padding: 0; text-indent: 0; text-align: center; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #2c3338; } .customize-control .dropdown-status { color: #2c3338; background: #f0f0f1; display: none; max-width: 112px; } .customize-control-color .dropdown { margin-right: 5px; margin-bottom: 5px; } .customize-control-color .dropdown .dropdown-content { background-color: #50575e; border: 1px solid rgba(0, 0, 0, 0.15); } .customize-control-color .dropdown:hover .dropdown-content { border-color: rgba(0, 0, 0, 0.25); } /** * iOS can't scroll iframes, * instead it expands the iframe size to match the size of the content */ .ios .wp-full-overlay { position: relative; } .ios #customize-controls .wp-full-overlay-sidebar-content { -webkit-overflow-scrolling: touch; } /* Media controls */ .customize-control .actions .button { margin-top: 12px; } .customize-control-header .actions, .customize-control-header .uploaded { margin-bottom: 18px; } .customize-control-header .uploaded button:not(.random), .customize-control-header .default button:not(.random) { width: 100%; padding: 0; margin: 0; background: none; border: none; color: inherit; cursor: pointer; } .customize-control-header button img { display: block; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control .attachment-media-view .upload-button, .customize-control-header button.new, .customize-control-header button.remove { width: auto; height: auto; white-space: normal; } .customize-control .attachment-media-view .upload-button { width: 100%; text-align: center; } .customize-control .attachment-media-view .upload-button.control-focus { width: auto; } .customize-control.customize-control-header .actions .upload-button.button.new { width: 100%; text-align: center; } .customize-control .attachment-media-view .thumbnail, .customize-control-header .current .container { overflow: hidden; } .customize-control .attachment-media-view .placeholder, .customize-control .attachment-media-view .button-add-media, .customize-control-header .placeholder { width: 100%; position: relative; text-align: center; cursor: default; border: 1px dashed #c3c4c7; box-sizing: border-box; padding: 9px 0; line-height: 1.6; } .customize-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .customize-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-color: #3582c4; border-style: solid; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .inner { display: none; position: absolute; width: 100%; color: #50575e; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .customize-control-header .inner, .customize-control-header .inner .dashicons { line-height: 20px; top: 8px; } .customize-control-header .list .inner, .customize-control-header .list .inner .dashicons { top: 9px; } .customize-control-header .header-view { position: relative; width: 100%; margin-bottom: 12px; } .customize-control-header .header-view:last-child { margin-bottom: 0; } /* Convoluted, but 'outline' support isn't good enough yet */ .customize-control-header .header-view:after { border: 0; } .customize-control-header .header-view.selected .choice:focus { outline: none; } .customize-control-header .header-view.selected:after { content: ""; position: absolute; height: auto; top: 0; left: 0; bottom: 0; right: 0; border: 4px solid #72aee6; border-radius: 2px; } .customize-control-header .header-view.button.selected { border: 0; } /* Header control: overlay "close" button */ .customize-control-header .uploaded .header-view .close { font-size: 20px; color: #fff; background: #50575e; background: rgba(0, 0, 0, 0.5); position: absolute; top: 10px; left: -999px; z-index: 1; width: 26px; height: 26px; cursor: pointer; } .customize-control-header .header-view:hover .close, .customize-control-header .header-view .close:focus { left: auto; right: 10px; } .customize-control-header .header-view .close:focus { outline: 1px solid #4f94d4; } /* Header control: randomiz(s)er */ .customize-control-header .random.placeholder { cursor: pointer; border-radius: 2px; height: 40px; } .customize-control-header button.random { width: 100%; height: auto; min-height: 40px; white-space: normal; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-header .placeholder:hover .dice, .customize-control-header .header-view:hover > button.random .dice { animation: dice-color-change 3s infinite; } .button-see-me { animation: bounce .7s 1; transform-origin: center bottom; } @keyframes bounce { from, 20%, 53%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); transform: translate3d(0,0,0); } 40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -12px, 0); } 70% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -6px, 0); } 90% { transform: translate3d(0,-1px,0); } } .customize-control-header .choice { position: relative; display: block; margin-bottom: 9px; } .customize-control-header .choice:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .uploaded div:last-child > .choice { margin-bottom: 0; } .customize-control .attachment-media-view .thumbnail-image img, .customize-control-header img { max-width: 100%; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control-header .remove { margin-right: 8px; } /* Background position control */ .customize-control-background_position .background-position-control .button-group { display: block; } /** * Code Editor Control and Custom CSS Section * * Modifications to the Section Container to make the textarea full-width and * full-height, if the control is the only control in the section. */ .customize-control-code_editor textarea { width: 100%; font-family: Consolas, Monaco, monospace; font-size: 12px; padding: 6px 8px; tab-size: 2; } .customize-control-code_editor textarea, .customize-control-code_editor .CodeMirror { height: 14em; } #customize-controls .customize-section-description-container.section-meta.customize-info { border-bottom: none; } #sub-accordion-section-custom_css .customize-control-notifications-container { margin-bottom: 15px; } #customize-control-custom_css textarea { display: block; height: 500px; } .customize-section-description-container + #customize-control-custom_css .customize-control-title { margin-left: 12px; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { border-right: 0; border-left: 0; height: calc( 100vh - 185px ); resize: none; } .customize-section-description-container + #customize-control-custom_css:last-child { margin-left: -12px; width: 299px; width: calc( 100% + 24px ); margin-bottom: -12px; } .customize-section-description-container + #customize-control-custom_css:last-child .CodeMirror { height: calc( 100vh - 185px ); } .CodeMirror-lint-tooltip, .CodeMirror-hints { z-index: 500000 !important; } .customize-section-description-container + #customize-control-custom_css:last-child .customize-control-notifications-container { margin-left: 12px; margin-right: 12px; } .theme-browser .theme.active .theme-actions, .wp-customizer .theme-browser .theme .theme-actions { padding: 9px 15px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } @media screen and (max-width: 640px) { .customize-section-description-container + #customize-control-custom_css:last-child { margin-right: 0; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { height: calc( 100vh - 140px ); } } /** * Themes */ #customize-theme-controls .control-panel-themes { border-bottom: none; } #customize-theme-controls .control-panel-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-panel-themes > .accordion-section-title { cursor: default; background: #fff; color: #50575e; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; border-left: none; border-right: none; margin: 0 0 15px; padding: 12px 100px 15px 15px; /* Space for the button */ } #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child { border-top: 0; } #customize-theme-controls .control-section-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes > .accordion-section-title { margin: 0 0 15px; } #customize-controls .customize-themes-panel .accordion-section-title:hover, #customize-controls .customize-themes-panel .accordion-section-title { margin: 15px -8px; } #customize-controls .control-section-themes .accordion-section-title, #customize-controls .customize-themes-panel .accordion-section-title { padding-right: 100px; /* Space for the button */ } .control-panel-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action, #customize-controls .control-section-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action { font-size: 13px; display: block; font-weight: 400; } #customize-theme-controls .control-panel-themes .accordion-section-title .change-theme { position: absolute; right: 10px; top: 50%; margin-top: -20px; /* Half of 40px button height for vertical centering */ font-weight: 400; } #customize-notifications-area .notification-message button.switch-to-editor { display: block; margin-top: 6px; font-weight: 400; } #customize-theme-controls .control-panel-themes > .accordion-section-title:after { display: none; } .control-panel-themes .customize-themes-full-container { position: fixed; top: 0; left: 0; transition: .18s left ease-in-out; margin: 0 0 0 300px; padding: 71px 0 25px; overflow-y: scroll; width: calc(100% - 300px); height: calc(100% - 96px); background: #f0f0f1; z-index: 20; } @media (prefers-reduced-motion: reduce) { .control-panel-themes .customize-themes-full-container { transition: none; } } @media screen and (min-width: 1670px) { .control-panel-themes .customize-themes-full-container { width: 82%; right: 0; left: initial; } } .modal-open .control-panel-themes .customize-themes-full-container { overflow-y: visible; } /* Animations for opening the themes panel */ #customize-save-button-wrapper, #customize-header-actions .spinner, #customize-header-actions .customize-controls-preview-toggle { transition: .18s margin ease-in-out; } #customize-footer-actions, #customize-footer-actions .collapse-sidebar { bottom: 0; transition: .18s bottom ease-in-out; } .in-themes-panel:not(.animating) #customize-header-actions .spinner, .in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle, .in-themes-panel:not(.animating) #customize-preview, .in-themes-panel:not(.animating) #customize-footer-actions { visibility: hidden; } .wp-full-overlay.in-themes-panel { background: #f0f0f1; /* Prevents a black flash when fading in the panel */ } .in-themes-panel #customize-save-button-wrapper, .in-themes-panel #customize-header-actions .spinner, .in-themes-panel #customize-header-actions .customize-controls-preview-toggle { margin-top: -46px; /* Height of header actions bar */ } .in-themes-panel #customize-footer-actions, .in-themes-panel #customize-footer-actions .collapse-sidebar { bottom: -45px; } /* Don't show the theme count while the panel opens, as it's in the wrong place during the animation */ .in-themes-panel.animating .control-panel-themes .filter-themes-count { display: none; } .in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content { bottom: 0; } .themes-filter-bar .feature-filter-toggle { min-height: 32px; line-height: 2.30769231; } .themes-filter-bar .feature-filter-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 5px 0 0; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .feature-filter-toggle.open { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } .themes-filter-bar .feature-filter-toggle .filter-count-filters { display: none; } .filter-drawer { box-sizing: border-box; width: 100%; position: absolute; top: 46px; left: 0; padding: 25px 0 25px 25px; border-top: 0; margin: 0; background: #f0f0f1; border-bottom: 1px solid #dcdcde; } .filter-drawer .filter-group { margin: 0 25px 0 0; width: calc( (100% - 75px) / 3); min-width: 200px; max-width: 320px; } /* Adds a delay before fading in to avoid it "jumping" */ @keyframes themes-fade-in { 0% { opacity: 0; } 50% { opacity: 0; } 100% { opacity: 1; } } .control-panel-themes .customize-themes-full-container.animate { animation: .6s themes-fade-in 1; } .in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count { animation: .6s themes-fade-in 1; } .control-panel-themes .filter-themes-count .themes-displayed { font-weight: 600; color: #50575e; } .customize-themes-notifications { margin: 0; } .control-panel-themes .customize-themes-notifications .notice { margin: 0 0 25px; } .customize-themes-full-container .customize-themes-section { display: none !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ overflow: hidden; } .customize-themes-full-container .customize-themes-section.current-section { display: list-item !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ } .control-section .customize-section-text-before { padding: 0 0 8px 15px; margin: 15px 0 0; line-height: 16px; border-bottom: 1px solid #dcdcde; color: #50575e; } .control-panel-themes .customize-themes-section-title { width: 100%; background: #fff; box-shadow: none; outline: none; border-top: none; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; border-right: none; cursor: pointer; padding: 10px 15px; position: relative; text-align: left; font-size: 14px; font-weight: 600; color: #50575e; text-shadow: none; } .control-panel-themes #accordion-section-installed_themes { border-top: 1px solid #dcdcde; } .control-panel-themes .theme-section { margin: 0; position: relative; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { background: #f6f7f7; } .customize-themes-section-title:not(.selected):after { content: ""; display: block; position: absolute; top: 9px; right: 15px; width: 18px; height: 18px; border-radius: 100%; border: 1px solid #c3c4c7; background: #fff; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { content: "\f147"; content: "\f147" / ''; font: 16px/1 dashicons; box-sizing: border-box; width: 20px; height: 20px; padding: 3px 3px 1px 1px; /* Re-align the icon to the smaller grid */ border-radius: 100%; position: absolute; top: 9px; right: 15px; color: #fff; } #customize-theme-controls .themes.accordion-section-content { position: relative; left: 0; padding: 0; width: 100%; } .loading .customize-themes-section .spinner { display: block; visibility: visible; position: relative; clear: both; width: 20px; height: 20px; left: calc(50% - 10px); float: none; margin-top: 50px; } .customize-themes-section .no-themes, .customize-themes-section .no-themes-local { display: none; } .themes-section-installed_themes .theme .notice-success:not(.updated-message) { display: none; /* Hide "installed" notice on installed themes tab. */ } .customize-control-theme .theme { width: 100%; margin: 0; border: 1px solid #dcdcde; background: #fff; } .customize-control-theme .theme .theme-name, .customize-control-theme .theme .theme-actions { background: #fff; border: none; } .customize-control.customize-control-theme { /* override most properties on .customize-control */ box-sizing: border-box; width: 25%; max-width: 600px; /* Max. screenshot size / 2 */ margin: 0 25px 25px 0; padding: 0; clear: none; } /* 5 columns above 2100px */ @media screen and (min-width: 2101px) { .customize-control.customize-control-theme { width: calc( ( 100% - 125px ) / 5 - 1px ); /* 1px offset accounts for browser rounding, typical all grids */ } } /* 4 columns up to 2100px */ @media screen and (min-width: 1601px) and (max-width: 2100px) { .customize-control.customize-control-theme { width: calc( ( 100% - 100px ) / 4 - 1px ); } } /* 3 columns up to 1600px */ @media screen and (min-width: 1201px) and (max-width: 1600px) { .customize-control.customize-control-theme { width: calc( ( 100% - 75px ) / 3 - 1px ); } } /* 2 columns up to 1200px */ @media screen and (min-width: 851px) and (max-width: 1200px) { .customize-control.customize-control-theme { width: calc( ( 100% - 50px ) / 2 - 1px ); } } /* 1 column up to 850 px */ @media screen and (max-width: 850px) { .customize-control.customize-control-theme { width: 100%; } } .wp-customizer .theme-browser .themes { padding: 0 0 25px 25px; transition: .18s margin-top linear; } .wp-customizer .theme-browser .theme .theme-actions { opacity: 1; } #customize-controls h3.theme-name { font-size: 15px; } #customize-controls .theme-overlay .theme-name { font-size: 32px; } .customize-preview-header.themes-filter-bar { position: fixed; top: 0; left: 300px; width: calc(100% - 300px); height: 46px; background: #f0f0f1; z-index: 10; padding: 6px 25px; box-sizing: border-box; border-bottom: 1px solid #dcdcde; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .customize-preview-header.themes-filter-bar .search-form-input { position: relative; } .customize-preview-header .filter-themes-wrapper { display: grid; align-items: center; gap: 10px; grid-template-columns: auto 1fr; } .customize-preview-header .filter-themes-wrapper .filter-themes-count { justify-self: end; } @media screen and (min-width: 1670px) { .customize-preview-header.themes-filter-bar { width: 82%; right: 0; left: initial; } } .themes-filter-bar .themes-filter-container { margin: 0; padding: 0; display: flex; align-items: center; gap: 10px; } .themes-filter-bar .wp-filter-search { padding: 0 10px 0 30px; max-width: 100%; width: 40%; min-width: 300px; height: 32px; min-height: 32px; /* Override global 40px min-height for compact bar */ margin: 1px 0; top: 0; left: 0; } /* Unstick the filter bar on short windows/screens. This breakpoint is based on the current length of .org feature filters assuming translations do not wrap lines. */ @media screen and (max-height: 540px), screen and (max-width: 1018px) { .customize-preview-header.themes-filter-bar { position: relative; left: 0; width: 100%; margin: 0 0 25px; } .filter-drawer { top: 46px; } .wp-customizer .theme-browser .themes { padding: 0 0 25px 25px; overflow: hidden; } .control-panel-themes .customize-themes-full-container { margin-top: 0; padding: 0; height: 100%; width: calc(100% - 300px); } } @media screen and (max-width: 1018px) { .filter-drawer .filter-group { width: calc( (100% - 50px) / 2); } } @media screen and (max-width: 960px) { .customize-preview-header.themes-filter-bar { height: 96px; } } @media screen and (max-width: 900px) { .themes-filter-bar .wp-filter-search { width: 100%; margin: 0; min-width: 200px; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container { display: grid; gap: 4px; } .customize-preview-header.themes-filter-bar .search-form-input { display: flex; flex-grow: 1; } .filter-drawer { top: 86px; } .control-panel-themes .filter-themes-count { float: left; } } @media screen and (max-width: 792px) { .filter-drawer .filter-group { width: calc( 100% - 25px); } } .control-panel-themes .customize-themes-mobile-back { display: none; } /* Mobile - toggle between themes and filters */ @media screen and (max-width: 600px) { .filter-drawer { top: 132px; } .wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes { display: block; float: right; } .control-panel-themes .customize-themes-full-container { width: 100%; margin: 0; padding-top: 46px; height: calc(100% - 46px); z-index: 1; display: none; } .showing-themes .control-panel-themes .customize-themes-full-container { display: block; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back { display: block; position: fixed; top: 0; left: 0; background: #f0f0f1; color: #3c434a; border-radius: 0; box-shadow: none; border: none; height: 46px; width: 100%; z-index: 10; text-align: left; text-shadow: none; border-bottom: 1px solid #dcdcde; border-left: 4px solid transparent; margin: 0; padding: 0; font-size: 0; overflow: hidden; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before { left: 0; top: 0; height: 46px; width: 26px; display: block; line-height: 2.3; padding: 0 8px; border-right: 1px solid #dcdcde; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover, .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .showing-themes #customize-header-actions { display: none; } #customize-controls { width: 100%; } } /* Details View */ .wp-customizer .theme-overlay { display: none; } .wp-customizer.modal-open .theme-overlay { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 109; } /* Avoid a z-index war by resetting elements that should be under the overlay. This is likely required because of the way that sections and panels are positioned. */ .wp-customizer.modal-open #customize-header-actions, .wp-customizer.modal-open .control-panel-themes .filter-themes-count, .wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after { z-index: -1; } .wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; } .wp-customizer .theme-overlay .theme-backdrop { background: rgba(240, 240, 241, 0.75); position: fixed; z-index: 110; } .wp-customizer .theme-overlay .star-rating { float: left; margin-right: 8px; } .wp-customizer .theme-rating .num-ratings { line-height: 20px; } .wp-customizer .theme-overlay .theme-wrap { left: 90px; right: 90px; top: 45px; bottom: 45px; z-index: 120; } .wp-customizer .theme-overlay .theme-actions { text-align: right; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ padding: 10px 25px 5px; background: #f0f0f1; border-top: 1px solid #dcdcde; } .wp-customizer .theme-overlay .theme-actions .theme-install.preview { margin-left: 8px; } .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ } .wp-customizer .theme-header { background: #f0f0f1; } .wp-customizer .theme-overlay .theme-header button, .wp-customizer .theme-overlay .theme-header .close:before { color: #3c434a; } .wp-customizer .theme-overlay .theme-header .close:focus, .wp-customizer .theme-overlay .theme-header .close:hover, .wp-customizer .theme-overlay .theme-header .right:focus, .wp-customizer .theme-overlay .theme-header .right:hover, .wp-customizer .theme-overlay .theme-header .left:focus, .wp-customizer .theme-overlay .theme-header .left:hover { background: #fff; } .wp-customizer .theme-overlay .theme-header .close:focus:before, .wp-customizer .theme-overlay .theme-header .close:hover:before { color: var(--wp-admin-theme-color); } .wp-customizer .theme-overlay .theme-header button.disabled, .wp-customizer .theme-overlay .theme-header button.disabled:hover, .wp-customizer .theme-overlay .theme-header button.disabled:focus { border-bottom: none; background: transparent; color: #c3c4c7; } /* Small Screens */ @media (max-width: 850px), (max-height: 472px) { .wp-customizer .theme-overlay .theme-wrap { left: 0; right: 0; top: 0; bottom: 0; } .wp-customizer .theme-browser .themes { padding-right: 25px; } } /* Handle cheaters. */ body.cheatin { font-size: medium; height: auto; background: #fff; border: 1px solid #c3c4c7; margin: 50px auto 2em; padding: 1em 2em; max-width: 700px; min-width: 0; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } body.cheatin h1 { border-bottom: 1px solid #dcdcde; clear: both; color: #50575e; font-size: 24px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 30px 0 0; padding: 0 0 7px; } body.cheatin p { font-size: 14px; line-height: 1.5; margin: 25px 0 20px; } /** * Widgets and Menus common styles */ /* higher specificity than .wp-core-ui .button */ #customize-theme-controls .add-new-widget, #customize-theme-controls .add-new-menu-item { cursor: pointer; float: right; margin: 0 0 0 10px; transition: all 0.2s; -webkit-user-select: none; user-select: none; outline: none; } .reordering .add-new-widget, .reordering .add-new-menu-item { opacity: 0.2; pointer-events: none; cursor: not-allowed; /* doesn't work in conjunction with pointer-events */ } .add-new-widget:before, .add-new-menu-item:before, #available-menu-items .new-content-item .add-content:before { content: "\f132"; content: "\f132" / ''; display: inline-block; position: relative; left: -2px; top: 0; font: normal 20px/1 dashicons; vertical-align: middle; transition: all 0.2s; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Reordering */ .reorder-toggle { float: right; padding: 5px 8px; text-decoration: none; cursor: pointer; outline: none; } .reorder, .reordering .reorder-done { display: block; padding: 5px 8px; } .reorder-done, .reordering .reorder { display: none; } .widget-reorder-nav span, .menu-item-reorder-nav button { position: relative; overflow: hidden; float: left; display: block; width: 33px; /* was 42px for mobile */ height: 43px; color: #8c8f94; text-indent: -9999px; cursor: pointer; outline: none; } .menu-item-reorder-nav button { width: 30px; height: 40px; background: transparent; border: none; box-shadow: none; } .widget-reorder-nav span:before, .menu-item-reorder-nav button:before { display: inline-block; position: absolute; top: 0; right: 0; width: 100%; height: 100%; font: normal 20px/43px dashicons; text-align: center; text-indent: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .widget-reorder-nav span:hover, .widget-reorder-nav span:focus, .menu-item-reorder-nav button:hover, .menu-item-reorder-nav button:focus { color: #1d2327; background: #f0f0f1; } .move-widget-down:before, .menus-move-down:before { content: "\f347"; content: "\f347" / ''; } .move-widget-up:before, .menus-move-up:before { content: "\f343"; content: "\f343" / ''; } #customize-theme-controls .first-widget .move-widget-up, #customize-theme-controls .last-widget .move-widget-down, .move-up-disabled .menus-move-up, .move-down-disabled .menus-move-down, .move-right-disabled .menus-move-right, .move-left-disabled .menus-move-left { color: #dcdcde; background-color: #fff; cursor: default; pointer-events: none; } /** * New widget and Add-menu-items modes and panels */ .wp-full-overlay-main { right: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */ width: 100%; } body.adding-widget .add-new-widget, body.adding-widget .add-new-widget:hover, .adding-menu-items .add-new-menu-item, .adding-menu-items .add-new-menu-item:hover, .add-menu-toggle.open, .add-menu-toggle.open:hover { background: #f0f0f1; border-color: #8c8f94; color: #2c3338; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } body.adding-widget .add-new-widget:before, .adding-menu-items .add-new-menu-item:before, #accordion-section-add_menu .add-new-menu-item.open:before { transform: rotate(45deg); } #available-widgets, #available-menu-items { position: absolute; top: 0; bottom: 0; left: -301px; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 300px; margin: 0; z-index: 4; background: #f0f0f1; transition: left .18s; border-right: 1px solid #dcdcde; } #available-widgets .accordion-section-title, #available-menu-items .accordion-section-title { z-index: 2; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: none; } #available-widgets-list { top: 82px; position: absolute; overflow: auto; bottom: 0; width: 100%; border-top: 1px solid #dcdcde; } .no-widgets-found #available-widgets-list { border-top: none; } #available-widgets-filter { position: fixed; top: 0; z-index: 1; width: 300px; background: #f0f0f1; } /* search field container */ #available-widgets-filter, #available-menu-items-search .accordion-section-title { padding: 13px 15px; box-sizing: border-box; } #available-widgets-filter input, #available-menu-items-search input { width: 100%; min-height: 40px; margin: 1px 0; padding: 0 30px; } #available-widgets-filter input::-ms-clear, #available-menu-items-search input::-ms-clear { display: none; /* remove the "x" in IE, which conflicts with the "x" icon on button.clear-results */ } #available-menu-items-search .search-icon, #available-widgets-filter .search-icon { display: block; position: absolute; bottom: 19px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ left: 16px; width: 30px; height: 30px; line-height: 2.1; text-align: center; color: #646970; } #available-widgets-filter .clear-results, #available-menu-items-search .accordion-section-title .clear-results { position: absolute; top: 40px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ right: 16px; width: 30px; height: 30px; padding: 0; border: 0; cursor: pointer; background: none; color: #d63638; text-decoration: none; outline: 0; } #available-widgets-filter .clear-results, #available-menu-items-search .clear-results, #available-menu-items-search.loading .clear-results.is-visible { display: none; } #available-widgets-filter .clear-results.is-visible, #available-menu-items-search .clear-results.is-visible { display: block; } #available-widgets-filter .clear-results:before, #available-menu-items-search .clear-results:before { content: "\f335"; content: "\f335" / ''; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #available-widgets-filter .clear-results:hover, #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:hover, #available-menu-items-search .clear-results:focus { color: #d63638; } #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #available-menu-items-search .search-icon:after, #available-widgets-filter .search-icon:after, .themes-filter-bar .search-icon:after { content: "\f179"; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .search-icon { position: absolute; top: 2px; left: 2px; z-index: 1; color: #646970; height: 30px; width: 30px; line-height: 2; text-align: center; } .no-widgets-found-message { display: none; margin: 0; padding: 0 15px; line-height: inherit; } .no-widgets-found .no-widgets-found-message { display: block; } #available-widgets .widget-top, #available-widgets .widget-top:hover, #available-menu-items .item-top, #available-menu-items .item-top:hover { border: none; background: transparent; box-shadow: none; } #available-widgets .widget-tpl, #available-menu-items .item-tpl { position: relative; padding: 15px 15px 15px 60px; background: #fff; border-bottom: 1px solid #dcdcde; border-left: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; cursor: pointer; display: none; } #available-widgets .widget, #available-menu-items .item { position: static; } /* Responsive */ .customize-controls-preview-toggle { display: none; } @media only screen and (max-width: 782px) { .wp-customizer .theme:not(.active):hover .theme-actions, .wp-customizer .theme:not(.active):focus .theme-actions { display: block; } .wp-customizer .theme-browser .theme.active .theme-name span { display: inline; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-radio .customize-inside-control-row, .customize-control-checkbox .customize-inside-control-row, .customize-control-nav_menu_auto_add .customize-inside-control-row { margin-left: 32px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-left: -32px; } .customize-control input[type="radio"] + label + br, .customize-control input[type="checkbox"] + label + br { line-height: 2.5; /* For widgets checkboxes */ } .customize-control .date-time-fields select { height: 39px; } .date-time-fields .date-input.month { width: 79px; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 55px; } .date-time-fields .date-input.year { width: 80px; } #customize-control-changeset_preview_link a { bottom: 16px; } .media-widget-control .media-widget-buttons .button.edit-media, .media-widget-control .media-widget-buttons .button.change-media, .media-widget-control .media-widget-buttons .button.select-media { margin-top: 12px; } .customize-preview-header.themes-filter-bar .search-icon { top: 6px; } } @media screen and (max-width: 1200px) { .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { left: 67%; } } @media screen and (max-width: 640px) { /* when the sidebar is collapsed and switching to responsive view, bring it back see ticket #35220 */ .wp-full-overlay.collapsed #customize-controls { margin-left: 0; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { bottom: 0; } .customize-controls-preview-toggle { display: block; position: absolute; top: 0; left: 48px; line-height: 2.6; font-size: 14px; padding: 0 12px 4px; margin: 0; height: 45px; background: #f0f0f1; border: 0; border-right: 1px solid #dcdcde; border-top: 4px solid #f0f0f1; color: #50575e; cursor: pointer; transition: color .1s ease-in-out, background .1s ease-in-out; } #customize-footer-actions, /*#customize-preview,*/ .customize-controls-preview-toggle .controls, .preview-only .wp-full-overlay-sidebar-content, .preview-only .customize-controls-preview-toggle .preview { display: none; } .preview-only #customize-save-button-wrapper { margin-top: -46px; } .customize-controls-preview-toggle .preview:before, .customize-controls-preview-toggle .controls:before { font: normal 20px/1 dashicons; content: "\f177"; content: "\f177" / ''; position: relative; top: 4px; margin-right: 6px; } .customize-controls-preview-toggle .controls:before { content: "\f540"; content: "\f540" / ''; } .preview-only #customize-controls { height: 45px; } .preview-only #customize-preview, .preview-only .customize-controls-preview-toggle .controls { display: block; } .wp-core-ui.wp-customizer .button { padding: 0 14px; line-height: 2.14285714; /* 30px */ font-size: 14px; vertical-align: middle; } .customize-control .attachment-media-view .upload-button { text-align: center; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 15px; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { width: 100%; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: none; height: inherit; margin: 0; overflow: hidden; padding: 0; width: auto; position: static; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: block; } #available-widgets .customize-section-back, #available-menu-items .customize-section-back { height: 69px; } #available-widgets .customize-section-title h3, #available-menu-items .customize-section-title h3 { font-size: 20px; font-weight: 200; padding: 9px 10px 12px 14px; margin: 0; line-height: 24px; color: #50575e; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets .customize-section-title .customize-action, #available-menu-items .customize-section-title .customize-action { font-size: 13px; display: block; font-weight: 400; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets-filter { position: relative; width: 100%; height: auto; } #available-widgets-list { top: 152px; } #available-menu-items-search .clear-results { top: 40px; right: 16px; } .reorder, .reordering .reorder-done { padding: 8px; } } @media screen and (max-width: 600px) { .wp-full-overlay.expanded { margin-left: 0; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { top: 46px; z-index: 10; } body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content { left: -100%; } body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { left: 0; } } css/themes.min.css000066600000103001152330733730010122 0ustar00/*! This file is auto-generated */ .themes-php{overflow-y:scroll}.themes-php #adminmenuwrap{z-index:10001}body.js .theme-browser.search-loading{display:none}.theme-browser .themes{clear:both}.themes-php .wrap h1 .button{margin-left:20px}.themes-php .search-form{display:inline-flex;align-items:center;position:relative;top:0;gap:.5rem;width:100%;justify-content:end}.themes-php .wp-filter-search{position:relative;margin:0;width:280px}.theme .notice,.theme .notice.is-dismissible{left:0;margin:0;position:absolute;right:0;top:0}.theme-browser .theme{cursor:pointer;float:left;margin:0 4% 4% 0;position:relative;width:30.6%;background:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.theme-browser .theme:nth-child(3n){margin-right:0}.theme-browser .theme.focus,.theme-browser .theme:hover{cursor:pointer}.theme-browser .theme .theme-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:16px 15px;border-top:1px solid rgb(0,0,0,.1);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff}.theme-browser .theme .theme-actions{opacity:0;transition:opacity .1s ease-in-out;height:auto;background:rgba(246,247,247,.7);border-left:1px solid rgba(0,0,0,.05)}.theme-browser .theme.focus .theme-actions,.theme-browser .theme:hover .theme-actions{opacity:1}.theme-browser .theme .theme-actions .button-primary{margin-right:3px}.theme-browser .theme .theme-actions .button,.theme-browser .theme .theme-actions .button.updated-message,.theme-browser .theme .theme-actions .button.updating-message{float:none;margin-left:3px}.theme-browser .theme .theme-actions .button.updated-message::before,.theme-browser .theme .theme-actions .button.updating-message::before{line-height:1;vertical-align:text-bottom;position:relative;top:2px}.theme-browser .theme .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-screenshot{display:block;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;transition:opacity .2s ease-in-out}.theme-browser .theme .theme-screenshot:after{content:"";display:block;padding-top:66.66666%}.theme-browser .theme .theme-screenshot img{height:auto;position:absolute;left:0;top:0;width:100%;transition:opacity .2s ease-in-out}.theme-browser .theme.focus .theme-screenshot,.theme-browser .theme:hover .theme-screenshot{background:#fff}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:.4}.theme-browser .theme .more-details{opacity:0;position:absolute;top:35%;right:20%;left:20%;width:60%;background:#1d2327;background:rgba(0,0,0,.7);color:#fff;font-size:15px;text-shadow:0 1px 0 rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;font-weight:600;padding:15px 12px;text-align:center;border-radius:3px;border:none;transition:opacity .1s ease-in-out;cursor:pointer}.theme-browser .theme .more-details:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}.theme-browser .theme.focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.theme-browser .theme.focus .more-details{opacity:1}.theme-browser .theme.active.focus .theme-actions{display:block}.theme-browser.rendered .theme.focus .more-details,.theme-browser.rendered .theme:hover .more-details{opacity:1}.theme-browser .theme.active .theme-name{background:#1d2327;color:#fff;padding-right:115px;font-weight:300;box-shadow:inset 0 1px 1px rgba(0,0,0,.5)}.theme-browser .customize-control .theme.active .theme-name{padding-right:15px}.theme-browser .theme.active .theme-name span{font-weight:600}.theme-browser .theme.active .theme-actions{background:0 0;border-left:none;opacity:1}.theme-browser .theme.active .theme-actions .button-primary{border-color:#fff}.theme-id-container{position:relative}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{position:absolute;top:50%;transform:translateY(-50%);right:0;padding:9px 12px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}.theme-browser .theme.active .theme-actions .button-primary{margin-right:0}.theme-browser .theme.active .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme.active .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme.active .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-author{background:#1d2327;color:#f0f0f1;display:none;font-size:14px;margin:0 10px;padding:5px 10px;position:absolute;bottom:56px}.theme-browser .theme.display-author .theme-author{display:block}.theme-browser .theme.display-author .theme-author a{color:inherit}.theme-browser .theme.add-new-theme{background:0 0;border:none;overflow:visible}.theme-browser .theme.add-new-theme a{text-decoration:none;display:block;position:relative;z-index:1}.theme-browser .theme.add-new-theme a:after{display:block;content:"";background:0 0;background:rgba(0,0,0,0);position:absolute;top:0;left:0;right:0;bottom:0;padding:0;text-shadow:none;border:5px dashed #dcdcde;border:5px dashed rgba(0,0,0,.1);box-sizing:border-box}.theme-browser .theme.add-new-theme span:after{background:#dcdcde;background:rgba(140,143,148,.1);border-radius:50%;display:inline-block;content:"\f132";content:"\f132"/'';-webkit-font-smoothing:antialiased;font:normal 74px/115px dashicons;width:100px;height:100px;vertical-align:middle;text-align:center;color:#8c8f94;position:absolute;top:30%;left:50%;margin-left:-50px;text-indent:-4px;padding:0;text-shadow:none;z-index:4}.rtl .theme-browser .theme.add-new-theme span:after{text-indent:4px}.theme-browser .theme.add-new-theme a:focus .theme-screenshot,.theme-browser .theme.add-new-theme a:hover .theme-screenshot{background:0 0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{background:#fff;color:#2271b1}.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{border-color:transparent;color:#fff;background:#2271b1;content:""}.theme-browser .theme.add-new-theme .theme-name{background:0 0;border:none;text-align:center;font-weight:400;position:relative;top:0;margin-top:-18px;padding-top:0;padding-bottom:48px}.theme-browser .theme.add-new-theme a:focus .theme-name,.theme-browser .theme.add-new-theme a:hover .theme-name{color:#fff;z-index:2}.theme-overlay .theme-backdrop{position:absolute;left:-20px;right:0;top:0;bottom:0;background:#f0f0f1;background:rgba(240,240,241,.9);z-index:10000;min-height:calc(100vh - var(--wp-admin--admin-bar--height,32px))}.theme-overlay .theme-header{position:absolute;top:0;left:0;right:0;height:48px;border-bottom:1px solid #dcdcde}.theme-overlay .theme-header button{padding:0}.theme-overlay .theme-header .close{cursor:pointer;height:48px;width:50px;text-align:center;float:right;border:0;border-left:1px solid #dcdcde;background-color:transparent;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:before{font:normal 22px/50px dashicons!important;color:#787c82;display:inline-block;content:"\f335";content:"\f335"/'';font-weight:300}.theme-overlay .theme-header .left,.theme-overlay .theme-header .right{cursor:pointer;color:#787c82;background-color:transparent;height:48px;width:54px;float:left;text-align:center;border:0;border-right:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:focus,.theme-overlay .theme-header .right:hover{background:#dcdcde;border-color:#c3c4c7;color:#000}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#000}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .right:focus{box-shadow:none;outline:0}.theme-overlay .theme-header .left.disabled,.theme-overlay .theme-header .left.disabled:hover,.theme-overlay .theme-header .right.disabled,.theme-overlay .theme-header .right.disabled:hover{color:#c3c4c7;background:inherit;cursor:inherit}.theme-overlay .theme-header .left:before,.theme-overlay .theme-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.theme-overlay .theme-header .left:before{content:"\f341";content:"\f341"/''}.theme-overlay .theme-header .right:before{content:"\f345";content:"\f345"/''}.theme-overlay .theme-wrap{clear:both;position:fixed;top:9%;left:190px;right:30px;bottom:3%;background:#fff;box-shadow:0 1px 20px 5px rgba(0,0,0,.1);z-index:10000;box-sizing:border-box;-webkit-overflow-scrolling:touch}body.folded .theme-browser~.theme-overlay .theme-wrap{left:70px}.theme-overlay .theme-about{position:absolute;top:49px;bottom:57px;left:0;right:0;overflow:auto;padding:2% 4%}.theme-overlay .theme-actions{position:absolute;text-align:center;bottom:0;left:0;right:0;padding:10px 25px 5px;background:#f6f7f7;z-index:30;box-sizing:border-box;border-top:1px solid #f0f0f1;display:flex;justify-content:center;gap:5px}.theme-overlay .theme-actions .button{margin-bottom:5px}.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"],.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"]{display:none}.broken-themes a.delete-theme,.theme-overlay .theme-actions .delete-theme{color:#b32d2e;text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}.broken-themes a.delete-theme:focus,.broken-themes a.delete-theme:hover,.theme-overlay .theme-actions .delete-theme:focus,.theme-overlay .theme-actions .delete-theme:hover{background:#b32d2e;color:#fff;border-color:#b32d2e;box-shadow:0 0 0 1px #b32d2e}.theme-overlay .theme-actions .active-theme,.theme-overlay.active .theme-actions .inactive-theme{display:none}.theme-overlay .theme-actions .inactive-theme,.theme-overlay.active .theme-actions .active-theme{display:block}.theme-overlay .theme-screenshots{float:left;margin:0 30px 0 0;width:55%;max-width:1200px;text-align:center}.theme-overlay .screenshot{border:1px solid #fff;box-sizing:border-box;overflow:hidden;position:relative;box-shadow:0 0 0 1px rgba(0,0,0,.2)}.theme-overlay .screenshot:after{content:"";display:block;padding-top:75%}.theme-overlay .screenshot img{height:auto;position:absolute;left:0;top:0;width:100%}.theme-overlay.small-screenshot .theme-screenshots{position:absolute;width:302px}.theme-overlay.small-screenshot .theme-info{margin-left:350px;width:auto}.theme-overlay .screenshot.thumb{background:#c3c4c7;border:1px solid #f0f0f1;float:none;display:inline-block;margin:10px 5px 0;width:140px;height:80px;cursor:pointer}.theme-overlay .screenshot.thumb:after{content:"";display:block;padding-top:100%}.theme-overlay .screenshot.thumb img{cursor:pointer;height:auto;position:absolute;left:0;top:0;width:100%;height:auto}.theme-overlay .screenshot.selected{background:0 0;border:2px solid #72aee6}.theme-overlay .screenshot.selected img{opacity:.8}.theme-browser .theme .theme-screenshot.blank,.theme-overlay .screenshot.blank{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=)}.theme-overlay .theme-info{width:40%;float:left}.theme-overlay .current-label{background:#2c3338;color:#fff;font-size:11px;display:inline-block;padding:2px 8px;border-radius:2px;margin:0 0 -10px;-webkit-user-select:none;user-select:none}.theme-overlay .theme-name{color:#1d2327;font-size:32px;font-weight:100;margin:10px 0 0;line-height:1.3;word-wrap:break-word;overflow-wrap:break-word}.theme-overlay .theme-version{color:#646970;font-size:13px;font-weight:400;float:none;display:inline-block;margin-left:10px}.theme-overlay .theme-author{margin:15px 0 25px;color:#646970;font-size:16px;font-weight:400;line-height:inherit}.theme-overlay .toggle-auto-update{display:inline-flex;align-items:center;min-height:20px;vertical-align:top}.theme-overlay .theme-autoupdate .toggle-auto-update{text-decoration:none}.theme-overlay .theme-autoupdate .toggle-auto-update .label{text-decoration:underline}.theme-overlay .theme-description{color:#50575e;font-size:15px;font-weight:400;line-height:1.5;margin:30px 0 0}.theme-overlay .theme-tags{border-top:3px solid #f0f0f1;color:#646970;font-size:13px;font-weight:400;margin:30px 0 0;padding-top:20px}.theme-overlay .theme-tags span{color:#3c434a;font-weight:600;margin-right:5px}.theme-overlay .parent-theme{background:#fff;border:1px solid #f0f0f1;border-left:4px solid #72aee6;font-size:14px;font-weight:400;margin-top:30px;padding:10px 10px 10px 20px}.theme-overlay .parent-theme strong{font-weight:600}.single-theme .theme,.single-theme .theme-overlay .theme-backdrop,.single-theme .theme-overlay .theme-header{display:none}.single-theme .theme-overlay .theme-wrap{clear:both;min-height:330px;position:relative;left:auto;right:auto;top:auto;bottom:auto;z-index:10}.single-theme .theme-overlay .theme-about{padding:30px 30px 70px;position:static}.single-theme .theme-overlay .theme-actions{position:absolute}@media only screen and (min-width:2000px){#wpwrap .theme-browser .theme{width:17.6%;margin:0 3% 3% 0}#wpwrap .theme-browser .theme:nth-child(3n),#wpwrap .theme-browser .theme:nth-child(4n){margin-right:3%}#wpwrap .theme-browser .theme:nth-child(5n){margin-right:0}}@media only screen and (min-width:1680px){.theme-overlay .theme-wrap{width:1450px;margin:0 auto}}@media only screen and (min-width:1640px){.theme-browser .theme{width:22.7%;margin:0 3% 3% 0}.theme-browser .theme .theme-screenshot:after{padding-top:75%}.theme-browser .theme:nth-child(3n){margin-right:3%}.theme-browser .theme:nth-child(4n){margin-right:0}}@media only screen and (max-width:1120px){.theme-browser .theme{width:47.5%;margin-right:0}.theme-browser .theme:nth-child(2n){margin-right:0}.theme-browser .theme:nth-child(odd){margin-right:5%}}@media only screen and (max-width:960px){.theme-overlay .theme-wrap{left:65px}}@media only screen and (max-width:782px){.theme-overlay .theme-wrap,body.folded .theme-overlay .theme-wrap{top:0;right:0;bottom:0;left:0;padding:70px 20px 20px;border:none;z-index:100000;position:fixed}.theme-browser .theme.active .theme-name span{display:none}.theme-overlay .theme-screenshots{width:40%}.theme-overlay .theme-info{width:50%}.single-theme .theme-wrap{padding:10px}.theme-browser .theme .theme-actions{padding:5px 10px 4px}.theme-overlay.small-screenshot .theme-screenshots{position:static;float:none;max-width:302px}.theme-overlay.small-screenshot .theme-info{margin-left:0;width:auto}.theme.focus .more-details,.theme:hover .more-details,.theme:not(.active):focus .theme-actions,.theme:not(.active):hover .theme-actions{display:none}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:1}}@media only screen and (max-width:480px){.theme-browser .theme{width:100%;margin-right:0}.theme-browser .theme:nth-child(2n),.theme-browser .theme:nth-child(3n){margin-right:0}.theme-overlay .theme-about{bottom:105px}.theme-overlay .theme-actions{padding-left:4%;padding-right:4%}.theme-install-php .wp-filter .filter-count{margin-top:10px}}@media only screen and (max-width:650px){.theme-overlay .theme-description{margin-left:0}.theme-overlay .theme-actions .delete-theme{position:relative;right:auto;bottom:auto}.theme-overlay .theme-actions .inactive-theme{display:inline}.theme-overlay .theme-screenshots{width:100%;float:none;margin:0}.theme-overlay .theme-info{width:100%}.theme-overlay .theme-author{margin:5px 0 15px}.theme-overlay .current-label{margin-top:10px;font-size:13px}.themes-php .wp-filter-search{width:100%}.theme-install-php .wp-filter p.search-box{display:grid;row-gap:.5rem}.theme-browser .theme.add-new-theme span:after{font:normal 60px/90px dashicons;width:80px;height:80px;top:30%;left:50%;text-indent:0;margin-left:-40px}.single-theme .theme-wrap{margin:0 -12px 0 -10px;padding:10px}.single-theme .theme-overlay .theme-about{padding:10px;overflow:visible}.single-theme .current-label{display:none}.single-theme .theme-overlay .theme-actions{position:static}}.broken-themes{clear:both}.broken-themes table{text-align:left;width:50%;border-spacing:3px;padding:3px}.update-php .wrap{max-width:40rem}.theme-browser .theme .theme-installed{background:#2271b1}.theme-browser .theme .notice-success p:before{color:#68de7c;content:"\f147";content:"\f147"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.theme-install.updated-message:before{content:""}.theme-install-php .wp-filter{padding-left:20px}@media only screen and (max-width:1000px){.theme-install-php .wp-filter p.search-box{column-gap:.5rem}}.theme-install-php a.browse-themes,.theme-install-php a.upload{cursor:pointer}.plugin-install-tab-upload .upload-view-toggle .upload,.upload-view-toggle .browse{display:none}.plugin-install-tab-upload .upload-view-toggle .browse{display:inline}.upload-plugin,.upload-theme{box-sizing:border-box;display:none;margin:0;padding:50px 0;width:100%;overflow:hidden;position:relative;top:10px;text-align:center}.plugin-install-tab-upload .upload-plugin,.show-upload-view .upload-plugin,.show-upload-view .upload-plugin-wrap,.show-upload-view .upload-theme{display:block}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{position:relative;margin:30px;display:inline-flex;justify-content:space-between;align-items:center;border:1px solid #c3c4c7;background:#f6f7f7}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{background:0 0;margin:0;padding:30px 0 30px 30px}.wp-upload-form input[type=submit].button{margin-right:30px}.upload-plugin .install-help,.upload-theme .install-help{color:#50575e;font-size:18px;font-style:normal;margin:0;padding:0;text-align:center}p.no-themes,p.no-themes-local{clear:both;color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0;text-align:center;display:none}.no-results p.no-themes{display:block}.theme-install-php .add-new-theme{display:none!important}@media only screen and (max-width:1120px){.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{margin:20px 0;max-width:100%}.upload-theme .install-help{font-size:15px;padding:20px 0 0}}.theme-details .theme-rating{line-height:1.9}.theme-details .star-rating{display:inline}.theme-details .no-rating,.theme-details .num-ratings{font-size:11px;color:#646970}.theme-details .no-rating{display:block;line-height:1.9}.update-from-upload-comparison{border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;text-align:left;margin:1rem 0 1.4rem;border-collapse:collapse;width:100%}.update-from-upload-comparison tr:last-child td{height:1.4rem;vertical-align:top}.update-from-upload-comparison tr:first-child th{font-weight:700;height:1.4rem;vertical-align:bottom}.update-from-upload-comparison td.name-label{text-align:right}.update-from-upload-comparison td,.update-from-upload-comparison th{padding:.4rem 1.4rem}.update-from-upload-comparison td.warning{color:#d63638}.update-from-upload-actions{margin-top:1.4rem}.appearance_page_custom-header #headimg{border:1px solid #dcdcde;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dcdcde}div#custom-background-image img{max-width:400px;max-height:300px}.background-position-control input[type=radio]:checked~.button{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);z-index:1}.background-position-control input[type=radio]:focus~.button{border-color:#4f94d4;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(34,113,177,.8);color:#1d2327}.background-position-control .background-position-center-icon,.background-position-control .background-position-center-icon:before{display:inline-block;line-height:1;text-align:center;transition:background-color .1s ease-in}.background-position-control .background-position-center-icon{height:20px;margin-top:13px;vertical-align:top;width:20px}.background-position-control .background-position-center-icon:before{background-color:#50575e;border-radius:50%;content:"";height:12px;width:12px}.background-position-control .button:hover .background-position-center-icon:before,.background-position-control input[type=radio]:focus~.button .background-position-center-icon:before{background-color:#1d2327}.background-position-control .button-group{display:block}.background-position-control .button-group .button{border-radius:0;box-shadow:none;height:40px!important;line-height:2.9!important;margin:0 -1px 0 0!important;padding:0 10px 1px!important;position:relative}.background-position-control .button-group .button:active,.background-position-control .button-group .button:focus,.background-position-control .button-group .button:hover{z-index:1}.background-position-control .button-group:last-child .button{box-shadow:0 1px 0 #c3c4c7}.background-position-control .button-group>label{margin:0!important}.background-position-control .button-group:first-child>label:first-child .button{border-radius:3px 0 0}.background-position-control .button-group:first-child>label:first-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group:first-child>label:last-child .button{border-radius:0 3px 0 0}.background-position-control .button-group:first-child>label:last-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group:last-child>label:first-child .button{border-radius:0 0 0 3px}.background-position-control .button-group:last-child>label:first-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group:last-child>label:last-child .button{border-radius:0 0 3px}.background-position-control .button-group:last-child>label:last-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group+.button-group{margin-top:-1px}body.full-overlay-active{overflow:hidden;visibility:hidden}.wp-full-overlay{background:0 0;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{box-sizing:border-box;position:fixed;min-width:300px;max-width:600px;width:18%;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;background:#f0f0f1;border-right:none}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}@media screen and (min-width:1667px){.wp-full-overlay.expanded{margin-left:18%}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-18%}}@media screen and (min-width:3333px){.wp-full-overlay.expanded{margin-left:600px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-600px}}.wp-full-overlay-sidebar:after{content:"";display:block;position:absolute;top:0;bottom:0;right:0;width:3px;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 15px;line-height:3.2;z-index:10;margin:0;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-header a.back{margin-top:3px}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:none;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header{padding:0}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{display:block;position:relative;float:left;width:45px;height:45px;background:#f0f0f1;border-right:1px solid #dcdcde;color:#3c434a;cursor:pointer;text-decoration:none;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-install-overlay .close-full-overlay:focus,.theme-install-overlay .close-full-overlay:hover,.theme-install-overlay .next-theme:focus,.theme-install-overlay .next-theme:hover,.theme-install-overlay .previous-theme:focus,.theme-install-overlay .previous-theme:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.theme-install-overlay .close-full-overlay:before{font:normal 22px/1 dashicons;content:"\f335";content:"\f335"/'';position:relative;top:7px;left:13px}.theme-install-overlay .previous-theme:before{font:normal 20px/1 dashicons;content:"\f341";content:"\f341"/'';position:relative;top:6px;left:14px}.theme-install-overlay .next-theme:before{font:normal 20px/1 dashicons;content:"\f345";content:"\f345"/'';position:relative;top:6px;left:13px}.theme-install-overlay .next-theme.disabled,.theme-install-overlay .next-theme.disabled:focus,.theme-install-overlay .next-theme.disabled:hover,.theme-install-overlay .previous-theme.disabled,.theme-install-overlay .previous-theme.disabled:focus,.theme-install-overlay .previous-theme.disabled:hover{color:#c3c4c7;background:#f0f0f1;cursor:default;pointer-events:none}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{border-left:0;border-top:0;border-bottom:0}.theme-install-overlay .close-full-overlay:before,.theme-install-overlay .next-theme:before,.theme-install-overlay .previous-theme:before{top:2px;left:0}.wp-core-ui .wp-full-overlay .collapse-sidebar{position:fixed;bottom:0;left:0;padding:9px 0 9px 10px;height:45px;color:#646970;outline:0;line-height:1;background-color:transparent!important;border:none!important;box-shadow:none!important;border-radius:0!important}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#2271b1}.wp-full-overlay .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar-label{display:inline-block;vertical-align:middle;line-height:1.6}.wp-full-overlay .collapse-sidebar-arrow{width:20px;height:20px;margin:0 2px;border-radius:50%;overflow:hidden}.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-full-overlay .collapse-sidebar-label{margin-left:3px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar-arrow:before{display:block;content:"\f148";content:"\f148"/'';background:#f0f0f1;font:normal 20px/1 dashicons;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar{padding:9px 10px}.rtl .wp-full-overlay .collapse-sidebar-arrow:before,.wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:rotate(180.001deg)}.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:none}@media (prefers-reduced-motion:no-preference){.wp-full-overlay,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main,.wp-full-overlay-sidebar{transition-property:left,right,top,bottom,width,margin;transition-duration:.2s}}.wp-full-overlay{background:#1d2327}.wp-full-overlay-main{background-color:#f0f0f1}.expanded .wp-full-overlay-footer{position:fixed;bottom:0;left:0;min-width:299px;max-width:599px;width:18%;width:calc(18% - 1px);height:45px;border-top:1px solid #dcdcde;background:#f0f0f1}.wp-full-overlay-footer .devices-wrapper{float:right}.wp-full-overlay-footer .devices{position:relative;background:#f0f0f1;box-shadow:-20px 0 10px -5px #f0f0f1}.wp-full-overlay-footer .devices button{cursor:pointer;background:0 0;border:none;height:45px;padding:0 3px;margin:0 0 0 -4px;box-shadow:none;border-top:1px solid transparent;border-bottom:4px solid transparent;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}.wp-full-overlay-footer .devices button:focus{box-shadow:none;outline:0}.wp-full-overlay-footer .devices button:before{display:inline-block;-webkit-font-smoothing:antialiased;font:normal 20px/30px dashicons;vertical-align:top;margin:3px 0;padding:4px 8px;color:#646970}.wp-full-overlay-footer .devices button.active{border-bottom-color:#1d2327}.wp-full-overlay-footer .devices button:focus,.wp-full-overlay-footer .devices button:hover{background-color:#fff}.wp-full-overlay-footer .devices button.active:hover,.wp-full-overlay-footer .devices button:focus{border-bottom-color:#2271b1}.wp-full-overlay-footer .devices button.active:before{color:#1d2327}.wp-full-overlay-footer .devices button:focus:before,.wp-full-overlay-footer .devices button:hover:before{color:#2271b1}.wp-full-overlay-footer .devices .preview-desktop:before{content:"\f472";content:"\f472"/''}.wp-full-overlay-footer .devices .preview-tablet:before{content:"\f471";content:"\f471"/''}.wp-full-overlay-footer .devices .preview-mobile:before{content:"\f470";content:"\f470"/''}@media screen and (max-width:1024px){.wp-full-overlay-footer .devices{display:none}}.collapsed .wp-full-overlay-footer .devices button:before{display:none}.preview-mobile .wp-full-overlay-main{margin:auto 0 auto -160px;width:320px;height:480px;max-height:100%;max-width:100%;left:50%}.preview-tablet .wp-full-overlay-main{margin:auto 0 auto -360px;width:720px;height:1080px;max-height:100%;max-width:100%;left:50%}.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#customize-container,#customize-controls .notice.notification-overlay{background:#f0f0f1;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}#customize-container{display:none}#customize-container,.theme-install-overlay{visibility:visible}.customize-loading #customize-container iframe{opacity:0}#customize-container iframe,.theme-install-overlay iframe{height:100%;width:100%;z-index:20;transition:opacity .3s}#customize-controls{margin-top:0}.theme-install-overlay{display:none}.theme-install-overlay.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 60px}.single-theme .install-theme-info{padding-top:15px}.theme-install-overlay .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:1.5;margin-bottom:0;margin-top:0}.install-theme-info .theme-screenshot{margin:15px 0;width:258px;border:1px solid #c3c4c7;position:relative;overflow:hidden}.install-theme-info .theme-screenshot>img{width:100%;height:auto;position:absolute;left:0;top:0}.install-theme-info .theme-screenshot:after{content:"";display:block;padding-top:66.66666666%}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0}.theme-details .theme-description{float:left;color:#646970;line-height:1.6;max-width:100%}.theme-install-overlay .wp-full-overlay-header .button{float:right;margin:7px 10px 0 0;min-height:32px;line-height:2.30769231}.theme-install-overlay .wp-full-overlay-sidebar{background:#f0f0f1;border-right:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-sidebar-content{background:#fff;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-main{position:absolute;z-index:0;background-color:#f0f0f1}.customize-loading #customize-container{background-color:#f0f0f1}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{content:"";display:block;width:20px;height:20px;position:absolute;left:50%;top:50%;z-index:-1;margin:-10px 0 0 -10px;transform:translateZ(0);background:transparent url(../images/spinner.gif) no-repeat center center;background-size:20px 20px}#customize-preview.wp-full-overlay-main.iframe-ready:before,.theme-install-overlay.iframe-ready .wp-full-overlay-main:before{background-image:none}@media print,(min-resolution:120dpi){.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);background-size:15px 123px}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.available-theme .action-links .delete-theme{float:none;margin:0;padding:0;clear:both}.available-theme .action-links .delete-theme a{padding:0}.broken-themes table{width:100%}.theme-install-overlay .wp-full-overlay-header .button{font-size:13px}.theme-browser .theme .theme-actions .button{margin-bottom:0}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{padding-top:4px;padding-bottom:4px}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{width:100%;box-sizing:border-box}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{padding:30px 0 30px 30px;width:100%}}css/l10n.min.css000066600000006200152330733730007412 0ustar00/*! This file is auto-generated */ body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}.rtl h1,.rtl h2,.rtl h3,.rtl h4,.rtl h5,.rtl h6{font-family:Arial,sans-serif;font-weight:600}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:600}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de #customize-header-actions .button,.locale-de-de-formal #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner,.locale-de-de-formal #customize-header-actions .spinner{margin:16px 3px 0}body[class*=locale-de-] .inline-edit-row fieldset label span.title,body[class*=locale-de-] .inline-edit-row fieldset.inline-edit-date legend{width:7em}body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-left:7em}.locale-ru-ru #adminmenu{width:inherit}.locale-ru-ru #adminmenu,.locale-ru-ru #wpbody{margin-left:0}.locale-ru-ru .inline-edit-row fieldset label span.title,.locale-ru-ru .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-new-php .tagsdiv .newtag,.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title,.locale-lt-lt .inline-edit-row fieldset.inline-edit-date legend{width:8em}.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-lt-lt .quick-edit-row-post fieldset.inline-edit-col-right label span.title,.locale-ru-ru .quick-edit-row-post fieldset.inline-edit-col-right label span.title,body[class*=locale-de-] .quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto}@media screen and (max-width:782px){.locale-lt-lt .inline-edit-row fieldset .timestamp-wrap,.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap,.locale-ru-ru .inline-edit-row fieldset .timestamp-wrap,.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap,body[class*=locale-de-] .inline-edit-row fieldset .timestamp-wrap,body[class*=locale-de-] .inline-edit-row fieldset label span.input-text-wrap{margin-left:0}}css/media.css000066600000067274152330733730007157 0ustar00/*------------------------------------------------------------------------------ 14.0 - Media Screen ------------------------------------------------------------------------------*/ .media-item .describe { border-collapse: collapse; width: 100%; border-top: 1px solid #dcdcde; clear: both; cursor: default; } .media-item.media-blank .describe { border: 0; } .media-item .describe th { vertical-align: top; text-align: left; padding: 5px 10px 10px; width: 140px; } .media-item .describe .align th { padding-top: 0; } .media-item .media-item-info tr { background-color: transparent; } .media-item .describe td { padding: 0 8px 8px 0; vertical-align: top; } .media-item thead.media-item-info td { padding: 4px 10px 0; } .media-item .media-item-info .A1B1 { padding: 0 0 0 10px; } .media-item td.savesend { padding-bottom: 15px; } .media-item .thumbnail { max-height: 128px; max-width: 128px; } .media-list-subtitle { display: block; } .media-list-title { display: block; } #wpbody-content #async-upload-wrap a { display: none; } .media-upload-form { margin-top: 20px; } .media-upload-form td label { margin-right: 6px; margin-left: 2px; } .media-upload-form .align .field label { display: inline; padding: 0 0 0 23px; margin: 0 1em 0 3px; font-weight: 600; } .media-upload-form tr.image-size label { margin: 0 0 0 5px; font-weight: 600; } .media-upload-form th.label label { font-weight: 600; margin: 0.5em; font-size: 13px; } .media-upload-form th.label label span { padding: 0 5px; } .media-item .describe input[type="text"], .media-item .describe textarea { width: 460px; } .media-item .describe p.help { margin: 0; padding: 0 0 0 5px; } .describe-toggle-on, .describe-toggle-off { display: block; line-height: 2.76923076; float: right; margin-right: 10px; } .media-item .attachment-tools { display: flex; align-items: center; } .media-item .edit-attachment { padding: 14px 0; display: block; margin-right: 10px; } .media-item .edit-attachment.copy-to-clipboard-container { display: flex; margin-top: 0; } .media-item-copy-container .success { line-height: 0; } .media-item button .copy-attachment-url { margin-top: 14px; } .media-item .copy-to-clipboard-container { margin-top: 7px; } .media-item .describe-toggle-off, .media-item.open .describe-toggle-on { display: none; } .media-item.open .describe-toggle-off { display: block; } .media-upload-form .media-item { min-height: 70px; margin-bottom: 1px; position: relative; width: 100%; background: #fff; } .media-upload-form .media-item, .media-upload-form .media-item .error { box-shadow: 0 1px 0 #dcdcde; } #media-items:empty { border: 0 none; } .media-item .filename { padding: 14px 2px; overflow: hidden; margin-left: 4px; } .media-item .pinkynail { float: left; margin: 14px; max-height: 70px; max-width: 70px; } .media-item .startopen, .media-item .startclosed { display: none; } .media-item .progress { display: inline-block; height: 22px; margin: 0 6px 7px; width: 200px; line-height: 2em; padding: 0; overflow: hidden; border-radius: 22px; background: #dcdcde; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .media-item .bar { z-index: 9; width: 0; height: 100%; margin-top: -22px; border-radius: 22px; background-color: #2271b1; box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3); } .media-item .progress .percent { z-index: 10; position: relative; width: 200px; padding: 0; color: #fff; text-align: center; line-height: 22px; font-weight: 400; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .upload-php .fixed .column-parent { width: 15%; } .js .html-uploader #plupload-upload-ui { display: none; } .js .html-uploader #html-upload-ui { display: block; } #html-upload-ui #async-upload { font-size: 1em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { width: auto; margin: 0 0 1px; } .media-upload-form .media-item .error { padding: 10px 0 10px 14px; min-height: 50px; } .media-item .error-div button.dismiss { float: right; margin: 0 10px 0 15px; } /*------------------------------------------------------------------------------ 14.1 - Media Library ------------------------------------------------------------------------------*/ .find-box { background-color: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); width: 600px; overflow: hidden; margin-left: -300px; position: fixed; top: 30px; bottom: 30px; left: 50%; z-index: 100105; } .find-box-head { background: #fff; border-bottom: 1px solid #dcdcde; height: 36px; font-size: 18px; font-weight: 600; line-height: 2; padding: 0 36px 0 16px; position: absolute; top: 0; left: 0; right: 0; } .find-box-inside { overflow: auto; padding: 16px; background-color: #fff; position: absolute; top: 37px; bottom: 45px; overflow-y: scroll; width: 100%; box-sizing: border-box; } .find-box-search { padding-bottom: 16px; } .find-box-search .spinner { float: none; left: 105px; position: absolute; } .find-box-search, #find-posts-response { position: relative; /* RTL fix, #WP28010 */ } #find-posts-input, #find-posts-search { float: left; } #find-posts-input { width: 140px; height: 28px; margin: 0 4px 0 0; } .widefat .found-radio { padding-right: 0; width: 16px; } #find-posts-close { width: 36px; height: 36px; border: none; padding: 0; position: absolute; top: 0; right: 0; cursor: pointer; text-align: center; background: none; color: #646970; } #find-posts-close:hover, #find-posts-close:focus { color: var(--wp-admin-theme-color-darker-20, #183ad6); } #find-posts-close:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } #find-posts-close:before { font: normal 20px/36px dashicons; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: "\f158"; content: "\f158" / ''; } .find-box-buttons { padding: 8px 16px; background: #fff; border-top: 1px solid #dcdcde; position: absolute; bottom: 0; left: 0; right: 0; } @media screen and (max-width: 782px) { .find-box-inside { bottom: 57px; } #delete_all { margin-bottom: 0; } } @media screen and (max-width: 660px) { .find-box { top: 0; bottom: 0; left: 0; right: 0; margin: 0; width: 100%; } } .ui-find-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 100100; } .drag-drop #drag-drop-area { border: 4px dashed #c3c4c7; height: 200px; } .drag-drop .drag-drop-inside { margin: 60px auto 0; width: 250px; } .drag-drop-inside p { font-size: 14px; margin: 5px 0; display: none; } .drag-drop .drag-drop-inside p { text-align: center; } .drag-drop-inside p.drag-drop-info { font-size: 20px; } .drag-drop .drag-drop-inside p, .drag-drop-inside p.drag-drop-buttons { display: block; } /* #drag-drop-area:-moz-drag-over { border-color: #83b4d8; } border color while dragging a file over the uploader drop area */ .drag-drop.drag-over #drag-drop-area { border-color: #9ec2e6; } #plupload-upload-ui { position: relative; } .post-type-attachment .wp-filter select { margin: 0 6px 0 0; } /** * Media Library grid view */ .media-frame.mode-grid, .media-frame.mode-grid .media-frame-content, .media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments, .media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper, .media-frame.mode-grid .uploader-inline-content { position: static; } /* Regions we don't use at all */ .media-frame.mode-grid .media-frame-title, .media-frame.mode-grid .media-frame-router, .media-frame.mode-grid .media-frame-menu { display: none; } .media-frame.mode-grid .media-frame-content { background-color: transparent; border: none; } .upload-php .mode-grid .media-sidebar { position: relative; width: auto; margin-top: 12px; padding: 0 16px; border-left: 4px solid #d63638; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); background-color: #fff; } .upload-php .mode-grid .hide-sidebar .media-sidebar { display: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status { border-bottom: none; padding-bottom: 0; max-width: 100%; } .upload-php .mode-grid .media-sidebar .upload-error { margin: 12px 0; padding: 4px 0 0; border: none; box-shadow: none; background: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2 { display: none; } .media-frame.mode-grid .uploader-inline { position: relative; top: auto; right: auto; left: auto; bottom: auto; padding-top: 0; margin-top: 20px; border: 4px dashed #c3c4c7; } .media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments, .media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper { position: relative; top: 94px; /* prevent jumping up when the toolbar becomes fixed */ padding-bottom: 94px; /* offset for above so the bottom doesn't get cut off */ } .media-frame.mode-grid .attachment:focus, .media-frame.mode-grid .selected.attachment:focus, .media-frame.mode-grid .attachment.details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -6px; } .media-frame.mode-grid .selected.attachment { box-shadow: inset 0 0 0 5px #f0f0f1, inset 0 0 0 7px #c3c4c7; } .media-frame.mode-grid .attachment.details { box-shadow: inset 0 0 0 3px #f0f0f1, inset 0 0 0 7px var(--wp-admin-theme-color, #3858e9); } .media-frame.mode-grid.mode-select .attachment .thumbnail { opacity: 0.65; } .media-frame.mode-select .attachment.selected .thumbnail { opacity: 1; } .media-frame.mode-grid .media-toolbar { margin-bottom: 15px; height: auto; } .media-frame.mode-grid .media-toolbar label:not(.media-search-input-label) { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .media-frame.mode-grid .media-toolbar select { margin: 0 10px 0 0; min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 24px 0 8px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 32px; padding: 0 8px; } .media-frame.mode-grid .media-toolbar-secondary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .media-frame.mode-grid.mode-edit .media-toolbar-secondary > .select-mode-toggle-button { margin: 0 8px 0 0; height: 100%; } .media-frame.mode-grid .attachments-browser .bulk-select { display: inline-block; margin: 0 10px 0 0; } .media-frame.mode-grid .search { margin-top: 0; } .media-frame-content .media-search-input-label { vertical-align: baseline; } .attachments-browser .media-toolbar-secondary > .media-button { margin-right: 10px; } .media-frame.mode-select .attachments-browser.fixed .media-toolbar { position: fixed; top: 32px; left: auto; right: 20px; margin-top: 0; } .media-frame.mode-grid .attachments-browser { padding: 0; } .media-frame.mode-grid .attachments-browser .attachments { padding: 2px; } .media-frame.mode-grid .attachments-browser .no-media { color: #646970; /* same as no plugins and no themes */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; text-align: center; } /** * Attachment details modal */ .edit-attachment-frame { display: block; height: 100%; width: 100%; } .edit-attachment-frame .edit-media-header { overflow: hidden; } .upload-php .media-modal-close .media-modal-icon:before { content: "\f335"; content: "\f335" / ''; font-size: 22px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { cursor: pointer; color: #787c82; background-color: transparent; height: 50px; width: 50px; padding: 0; position: absolute; text-align: center; border: 0; border-left: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .upload-php .media-modal-close { top: 0; right: 0; } .edit-attachment-frame .edit-media-header .left { right: 102px; } .edit-attachment-frame .edit-media-header .right { right: 51px; } .edit-attachment-frame .media-frame-title { left: 0; right: 150px; /* leave space for prev/next/close */ } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .upload-php .media-modal-close:hover, .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:hover, .edit-attachment-frame .edit-media-header .right:hover, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .upload-php .media-modal-close:focus .media-modal-icon:before, .upload-php .media-modal-close:hover .media-modal-icon:before { color: #000; } .edit-attachment-frame .edit-media-header .left:before { content: "\f341"; content: "\f341" / ''; } .edit-attachment-frame .edit-media-header .right:before { content: "\f345"; content: "\f345" / ''; } .edit-attachment-frame .edit-media-header [disabled], .edit-attachment-frame .edit-media-header [disabled]:hover { color: #c3c4c7; background: inherit; cursor: default; } .edit-attachment-frame .media-frame-content, .edit-attachment-frame .media-frame-router { left: 0; } .edit-attachment-frame .media-frame-content { border-bottom: none; bottom: 0; top: 50px; } .edit-attachment-frame .attachment-details { position: absolute; overflow: auto; top: 0; bottom: 0; right: 0; left: 0; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); } .edit-attachment-frame .attachment-media-view { float: left; width: 65%; height: 100%; } .edit-attachment-frame .attachment-media-view .thumbnail { box-sizing: border-box; padding: 16px; height: 100%; } .edit-attachment-frame .attachment-media-view .details-image { display: block; margin: 0 auto 16px; max-width: 100%; max-height: 90%; max-height: calc( 100% - 56px ); /* leave space for actions underneath */ background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .edit-attachment-frame .attachment-media-view .details-image.icon { background: none; } .edit-attachment-frame .attachment-media-view .attachment-actions { text-align: center; } .edit-attachment-frame .wp-media-wrapper { margin-bottom: 12px; } .edit-attachment-frame input, .edit-attachment-frame textarea { padding: 4px 8px; line-height: 1.42857143; } .edit-attachment-frame .attachment-info { overflow: auto; box-sizing: border-box; margin-bottom: 0; padding: 12px 16px 0; width: 35%; height: 100%; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); border-bottom: 0; border-left: 1px solid #dcdcde; background: #f6f7f7; } .edit-attachment-frame .attachment-info .details, .edit-attachment-frame .attachment-info .settings { position: relative; /* RTL fix, #WP29352 */ overflow: hidden; float: none; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #dcdcde; } .edit-attachment-frame .attachment-info .filename { font-weight: 400; color: #646970; } .edit-attachment-frame .attachment-info .thumbnail { margin-bottom: 12px; } .attachment-info .actions { margin-bottom: 16px; } .attachment-info .actions a { display: inline; text-decoration: none; } .copy-to-clipboard-container { display: flex; align-items: center; margin-top: 8px; clear: both; } .copy-to-clipboard-container .copy-attachment-url { white-space: normal; } .copy-to-clipboard-container .success { color: #007017; margin-left: 8px; } /*------------------------------------------------------------------------------ 14.2 - Image Editor ------------------------------------------------------------------------------*/ .wp_attachment_details .attachment-alt-text { margin-bottom: 5px; } .wp_attachment_details #attachment_alt { max-width: 500px; height: 3.28571428em; } .wp_attachment_details .attachment-alt-text-description { margin-top: 5px; } .wp_attachment_details label[for="content"] { font-size: 13px; line-height: 1.5; margin: 1em 0; } .wp_attachment_details #attachment_caption { height: 4em; } .describe .image-editor { vertical-align: top; } .imgedit-wrap { position: relative; padding-top: 10px; } .image-editor p, .image-editor fieldset { margin: 8px 0; } .image-editor legend { margin-bottom: 5px; } .describe .imgedit-wrap .image-editor { padding: 0 5px; } .wp_attachment_holder div.updated { margin-top: 0; } .wp_attachment_holder .imgedit-wrap > div { height: auto; } .imgedit-panel-content { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .imgedit-settings { max-width: 240px; /* Prevent reflow when help info is expanded. */ } .imgedit-group-controls > * { display: none; } .imgedit-panel-active .imgedit-group-controls > * { display: block; } .imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply { display: flex; } .imgedit-crop-apply { gap: 4px; flex-wrap: wrap; } .wp_attachment_holder .imgedit-wrap .image-editor { float: right; width: 250px; } .image-editor input { margin-top: 0; vertical-align: middle; } .imgedit-wait { position: absolute; top: 0; bottom: 0; width: 100%; background: #fff; opacity: 0.7; filter: alpha(opacity=70); display: none; } .imgedit-wait:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; margin: -10px 0 0 -10px; background: transparent url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } .no-float { float: none; } .media-disabled, .image-editor .disabled { /* WCAG 1.4.3 Text or images of text that are part of an inactive user interface component ... have no contrast requirement. */ color: #a7aaad; } .A1B1 { overflow: hidden; } .wp_attachment_image .button, .A1B1 .button { float: left; } .no-js .wp_attachment_image .button { display: none; } .wp_attachment_image .spinner, .A1B1 .spinner { float: left; } .imgedit-menu .note-no-rotate { clear: both; margin: 0; padding: 1em 0 0; } .imgedit-menu .button:after, .imgedit-menu .button:before { font: normal 16px/1 dashicons; margin-right: 8px; vertical-align: middle; position: relative; top: -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .imgedit-menu .imgedit-rotate.button:after { content: '\f140'; margin-left: 2px; margin-right: 0; } .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { content: '\f142'; } .imgedit-menu .button.disabled { color: #a7aaad; border-color: #dcdcde; background: #f6f7f7; box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .imgedit-crop:before { content: "\f165"; content: "\f165" / ''; } .imgedit-scale:before { content: "\f211"; content: "\f211" / ''; } .imgedit-rotate:before { content: "\f167"; content: "\f167" / ''; } .imgedit-undo:before { content: "\f171"; content: "\f171" / ''; } .imgedit-redo:before { content: "\f172"; content: "\f172" / ''; } .imgedit-crop-wrap { position: relative; } .imgedit-crop-wrap img { background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop-wrap { padding: 20px; background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop { margin: 0 8px 0 0; } .imgedit-rotate { margin: 0 8px 0 3px; } .imgedit-undo { margin: 0 3px; } .imgedit-redo { margin: 0 8px 0 3px; } .imgedit-thumbnail-preview-group { display: flex; flex-wrap: wrap; column-gap: 10px; } .imgedit-thumbnail-preview { margin: 10px 8px 0 0; } .imgedit-thumbnail-preview-caption { display: block; } #poststuff .imgedit-group-top h2 { display: inline-block; margin: 0; padding: 0; font-size: 14px; line-height: 1.4; } #poststuff .imgedit-group-top .button-link { text-decoration: none; color: #1d2327; } .imgedit-applyto .imgedit-label { display: block; padding: .5em 0 0; } .imgedit-popup-menu, .imgedit-help { display: none; padding-bottom: 8px; } .imgedit-panel-tools > .imgedit-menu { display: flex; column-gap: 4px; align-items: flex-start; flex-wrap: wrap; } .imgedit-popup-menu { width: calc( 100% - 20px ); position: absolute; background: #fff; padding: 10px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); } .image-editor .imgedit-menu .imgedit-popup-menu button { display: block; margin: 2px 0; width: 100%; white-space: break-spaces; line-height: 1.5; padding-top: 3px; padding-bottom: 2px; } .imgedit-rotate-menu-container { position: relative; } .imgedit-help.imgedit-restore { padding-bottom: 0; } /* higher specificity than buttons */ .image-editor .imgedit-settings .imgedit-help-toggle, .image-editor .imgedit-settings .imgedit-help-toggle:hover, .image-editor .imgedit-settings .imgedit-help-toggle:active { border: 1px solid transparent; margin: -1px 0 0 -1px; padding: 0; background: transparent; color: var(--wp-admin-theme-color); font-size: 20px; line-height: 1; cursor: pointer; box-sizing: content-box; box-shadow: none; } .image-editor .imgedit-settings .imgedit-help-toggle:focus { color: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .form-table td.imgedit-response { padding: 0; } .imgedit-submit-btn { margin-left: 20px; } .imgedit-wrap .nowrap { white-space: nowrap; font-size: 12px; line-height: inherit; } span.imgedit-scale-warn { display: flex; align-items: center; margin: 4px; gap: 4px; color: #b32d2e; font-style: normal; visibility: hidden; vertical-align: middle; } .imgedit-save-target { margin: 8px 0; } .imgedit-save-target legend { font-weight: 600; } .imgedit-group { margin-bottom: 20px; } .image-editor .imgedit-original-dimensions { display: inline-block; } .image-editor .imgedit-scale-controls input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"], .image-editor .imgedit-scale-controls input[type="number"], .image-editor .imgedit-crop-ratio input[type="number"], .image-editor .imgedit-crop-sel input[type="number"] { width: 80px; font-size: 14px; padding: 0 8px; } .imgedit-separator { display: inline-block; width: 7px; text-align: center; font-size: 13px; color: #3c434a; } .image-editor .imgedit-scale-button-wrapper { margin-top: 0.3077em; display: block; } .image-editor .imgedit-scale-controls .button { margin-bottom: 0; } audio, video { display: inline-block; max-width: 100%; } .wp-core-ui .mejs-container { width: 100%; max-width: 100%; } .wp-core-ui .mejs-container * { box-sizing: border-box; } .wp-core-ui .mejs-time { box-sizing: content-box; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .imgedit-wait:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .edit-attachment-frame input, .edit-attachment-frame textarea { line-height: 1.5; } .wp_attachment_details label[for="content"] { font-size: 14px; line-height: 1.5; } .wp_attachment_details textarea { line-height: 1.5; } .wp_attachment_details #attachment_alt { height: 3.375em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { font-size: 13px; line-height: 1.5; } .media-upload-form .media-item.error { padding: 1px 10px; } .media-upload-form .media-item .error { padding: 10px 0 10px 12px; } .image-editor .imgedit-scale input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"] { font-size: 16px; padding: 6px 10px; } .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, .wp_attachment_holder .imgedit-wrap .image-editor { float: none; width: auto; max-width: none; padding-bottom: 16px; } .copy-to-clipboard-container .success { font-size: 14px; } /* Restructure image editor on narrow viewports. */ .imgedit-crop-wrap img{ width: 100%; } .media-modal .imgedit-wrap .imgedit-panel-content, .media-modal .imgedit-wrap .image-editor { position: initial !important; } .media-modal .imgedit-wrap .image-editor { box-sizing: border-box; width: 100% !important; } .image-editor .imgedit-scale-button-wrapper { display: inline-block; } } @media only screen and (max-width: 600px) { .media-item-wrapper { grid-template-columns: 1fr; } } /** * Media queries for media grid. */ @media only screen and (max-width: 1120px) { /* override for media-views.css */ #wp-media-grid .wp-filter .attachment-filters { max-width: 100%; } } @media only screen and (max-width: 1000px) { /* override for forms.css */ .wp-filter p.search-box { float: none; width: 100%; display: flex; flex-wrap: nowrap; column-gap: 0; } .wp-filter p.search-box #media-search-input { width: 100%; } } @media only screen and (max-width: 782px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 46px; right: 10px; } .media-frame.mode-grid .media-toolbar select { min-height: 40px; padding: 0 24px 0 12px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter p.search-box { margin-bottom: 0; } } @media only screen and (max-width: 600px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 0; } } @media only screen and (max-width: 480px) { .edit-attachment-frame .media-frame-title { right: 110px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { width: 40px; height: 40px; } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { line-height: 40px !important; } .edit-attachment-frame .edit-media-header .left { right: 82px; } .edit-attachment-frame .edit-media-header .right { right: 41px; } .edit-attachment-frame .media-frame-content { top: 40px; } .edit-attachment-frame .attachment-media-view { float: none; height: auto; width: 100%; } .edit-attachment-frame .attachment-info { height: auto; width: 100%; } } @media only screen and (max-width: 640px), screen and (max-height: 400px) { .upload-php .mode-grid .media-sidebar{ max-width: 100%; } } @media only screen and (max-width: 375px) { .media-item .attachment-tools { align-items: baseline; } .media-item .edit-attachment.copy-to-clipboard-container { flex-direction: column; } .copy-to-clipboard-container .success { line-height: normal; margin-top: 10px; } } css/site-icon-rtl.css000066600000011050152330733730010546 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 28.0 - Site Icon ------------------------------------------------------------------------------*/ .site-icon-section { --site-icon-removal: #b32d2e; } .site-icon-preview { --site-icon-input-border: #8c8f94; --site-icon-preview-background: #fff; --site-icon-preview-browser-top: #dcdcde; --site-icon-preview-browser-bottom: #a7aaad; --site-icon-preview-browser-border: rgba(255, 255, 255, 0.2); --site-icon-address-bar-background: #f0f0f1; --site-icon-address-bar-close: #646970; --site-icon-address-bar-text: #3c434a; --site-icon-shadow-1: rgba(0, 0, 0, 0.1); --site-icon-shadow-2: rgba(0, 0, 0, 0.2); --site-icon-shadow-3: rgba(0, 0, 0, 0.5); direction: initial; display: flex; height: 60px; padding: 8px 8px 0 0; align-items: flex-start; position: relative; overflow: hidden; box-sizing: border-box; border: 1px solid var(--site-icon-input-border); border-radius: 4px; background-color: var(--site-icon-preview-background); width: 275px; } @media (prefers-color-scheme: dark) { .site-icon-preview { --site-icon-preview-browser-top: #2c3338; --site-icon-preview-browser-bottom: #111; --site-icon-address-bar-background: #3c434a; --site-icon-address-bar-close: #f0f0f1; --site-icon-address-bar-text: #f0f0f1; } } .site-icon-preview.settings { height: 88px; padding: 16px 16px 0 0; width: 350px; margin: 0 0 16px 0; } .site-icon-preview.crop { width: 258px; height: 100%; display: grid; grid-template-columns: 8px 1fr; grid-template-rows: 64px 1fr; padding-right: 0; row-gap: 16px; direction: inherit; } .site-icon-preview.hidden { display: none; } .site-icon-preview .direction-wrap { grid-template-columns: 44px 1fr; gap: 8px; display: grid; direction: rtl; height: 100%; width: 100%; } .site-icon-preview.settings .direction-wrap { grid-template-columns: 58px 1fr; gap: 16px; } .site-icon-preview:after { --after-size: 150%; aspect-ratio: 1/1; content: ""; display: block; position: absolute; top: 0; right: 0; width: var(--after-size);; transform: translate(calc(-1*(var(--after-size) * -0.125)), calc(var(--after-size) * -0.125)); filter: blur(5px); opacity: 0.5; background: var(--site-icon-url); } .site-icon-preview .app-icon-preview { aspect-ratio: 1/1; border-radius: 10px; box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3); flex-shrink: 0; width: 100%; z-index: 1; } .site-icon-preview-browser { display: flex; padding: 4px 12px 0 4px; align-items: flex-start; gap: 16px; flex: 1 0 0; z-index: 1; border-top-right-radius: 10px; border-top: 1px solid var(--site-icon-preview-browser-border); border-right: 1px solid var(--site-icon-preview-browser-border); background: linear-gradient(-180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%); box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2); } .site-icon-preview .browser-buttons { width: 48px; height: 40px; fill: var(--site-icon-input-border); } .site-icon-preview-tab { padding: 8px; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 4px; background-color: var(--site-icon-address-bar-background); box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1); display: grid; grid-template-columns: 24px auto 24px; } .site-icon-preview-browser .browser-icon-preview { box-shadow: 0 0 20px 0 var(--site-icon-shadow-1); } .site-icon-preview-tab > img, .site-icon-preview-tab > svg { width: 24px; height: 24px; } .site-icon-preview-tab > svg { fill: var(--site-icon-address-bar-close); } .site-icon-preview-site-title { color: var(--site-icon-address-bar-text); text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-weight: 500; } .site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview { width: 64px; height: 64px; margin: 0; grid-column: 2; } .site-icon-preview-crop-modal .site-icon-preview-browser { grid-column: 2; } .site-icon-preview-crop-modal .image-preview-wrap { overflow: hidden; aspect-ratio: 1/1; } .site-icon-preview-crop-modal .image-preview-wrap.browser { width: 24px; height: 24px; } button.reset.remove-site-icon { color: var(--site-icon-removal); text-decoration: none; border-color: currentColor; box-shadow: none; background: transparent; } button.reset.remove-site-icon:focus, button.reset.remove-site-icon:hover { background: var(--site-icon-removal); color: #fff; border-color: var(--site-icon-removal); box-shadow: 0 0 0 1px var(--site-icon-removal); } .site-icon-action-buttons { display: flex; flex-wrap: wrap; gap: 10px; } css/site-health-rtl.min.css000066600000012400152330733730011645 0ustar00/*! This file is auto-generated */ .health-check-body h2{line-height:1.4}.health-check-body h3{padding:0;font-weight:400}.site-health-progress-wrapper{margin-bottom:1rem}.site-health-progress{display:inline-block;height:20px;width:20px;margin:0;border-radius:100%;position:relative;font-weight:600;font-size:.4rem}.site-health-progress-count{position:absolute;display:block;height:80px;width:80px;right:50%;top:50%;margin-top:-40px;margin-right:-40px;border-radius:100%;line-height:6.3;font-size:2em}.loading .site-health-progress svg #bar{stroke-dashoffset:0;stroke:#c3c4c7;animation:loadingPulse 3s infinite ease-in-out}.site-health-progress svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#c3c4c7;stroke-width:2em}.site-health-progress svg #bar{stroke-dashoffset:565;stroke:#d63638}.green .site-health-progress #bar{stroke:#00a32a}.green .site-health-progress .site-health-progress-label{color:#00a32a}.orange .site-health-progress #bar{stroke:#dba617}.orange .site-health-progress .site-health-progress-label{color:#dba617}.site-health-progress-label{font-weight:600;line-height:20px;margin-right:.3rem}@keyframes loadingPulse{0%{stroke:#c3c4c7}50%{stroke:var(--wp-admin-theme-color)}100%{stroke:#c3c4c7}}.health-check-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr 1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr 1fr 1fr}.health-check-tabs-wrapper.tab-count-1{grid-template-columns:1fr}.health-check-tabs-wrapper.tab-count-2{grid-template-columns:1fr 1fr}.health-check-tabs-wrapper.tab-count-3{grid-template-columns:1fr 1fr 1fr}.health-check-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-offscreen-nav-wrapper{position:relative;background:0 0;border:none}.health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav{right:initial}.health-check-offscreen-nav{display:none;position:absolute;padding-top:10px;left:0;top:100%;width:13rem}.health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav{display:inline-block}.health-check-offscreen-nav:before{position:absolute;content:"";width:0;height:0;border-style:solid;border-width:0 10px 5px;border-color:transparent transparent #fff;left:20px;top:5px}.health-check-offscreen-nav .health-check-tab{background:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.health-check-offscreen-nav .health-check-tab.active{box-shadow:inset -3px 0 #3582c4;font-weight:600}.health-check-body{max-width:800px;margin:0 auto}.widefat.health-check-table th{font-size:13px}.health-check-table td:first-child{width:30%}.health-check-table td{width:70%}.health-check-table ol,.health-check-table ul{margin:0}.health-check-body li{line-height:1.5}.health-check-body .good::before,.health-check-body .pass::before{content:"\f147";content:"\f147"/'';color:#00a32a}.health-check-body .warning::before{content:"\f460";content:"\f460"/'';color:#dba617}.health-check-body .info::before{content:"\f348";content:"\f348"/'';color:#72aee6}.health-check-body .error::before,.health-check-body .fail::before{content:"\f335";content:"\f335"/'';color:#d63638}.site-health-copy-buttons{margin:1rem 0}.site-health-copy-buttons .copy-button-wrapper{display:inline-flex;align-items:center;margin:.5rem 0 1rem}.site-health-copy-buttons .success{color:#007017;margin-right:.5rem}.site-status-has-issues.hide{display:none}.site-health-view-more{text-align:center}.site-health-issues-wrapper:first-of-type{margin-top:3rem}.site-health-issues-wrapper{margin-bottom:3rem;margin-top:2rem}.site-status-all-clear{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:100%;width:100%;margin:0 0 3rem}@media all and (min-width:784px){.site-status-all-clear{margin:2rem 0 5rem}}.site-status-all-clear.hide{display:none}.site-status-all-clear .dashicons{font-size:150px;height:150px;margin-bottom:2rem;width:150px}.site-status-all-clear .encouragement{font-size:1.5rem;font-weight:600}.site-status-all-clear p{margin:0}.wp-core-ui .button.site-health-view-passed{position:relative;padding-left:40px;padding-right:20px}.health-check-wp-paths-sizes.spinner{visibility:visible;float:none;margin:0 4px;flex-shrink:0}#dashboard_site_health .site-health-details{padding-right:16px}#dashboard_site_health .site-health-details p:first-child{margin-top:0}#dashboard_site_health .site-health-details p:last-child{margin-bottom:0}#dashboard_site_health .health-check-widget{display:grid;grid-template-columns:1fr 2fr;grid-auto-rows:minmax(64px,auto);column-gap:16px;align-items:center}#dashboard_site_health .site-health-progress-label{margin-right:0}.health-check-widget-title-section{margin-bottom:0;text-align:center}@media screen and (max-width:480px){#dashboard_site_health .health-check-widget{grid-template-columns:100%}}@media screen and (max-width:782px){.site-health-issues-wrapper .health-check-accordion-trigger{flex-direction:column;align-items:flex-start}.health-check-accordion-trigger .badge{margin:1em 0 0}.health-check-table{table-layout:fixed}.health-check-table td,.health-check-table th{box-sizing:border-box;display:block;width:100%;word-wrap:break-word}.health-check-table td:first-child,.widefat.health-check-table th{width:100%;padding-bottom:0;font-weight:600}.wp-core-ui .site-health-copy-buttons .copy-button{margin-bottom:0}}css/admin-menu-rtl.css000066600000044443152330733730010722 0ustar00/*! This file is auto-generated */ #adminmenuback, #adminmenuwrap, #adminmenu, #adminmenu .wp-submenu { width: 160px; background-color: #1d2327; } #adminmenuback { position: fixed; top: 0; bottom: -120px; z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */ /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .php-error #adminmenuback { position: absolute; } .php-error #adminmenuback, .php-error #adminmenuwrap { margin-top: 2em; } #adminmenu { clear: right; margin: 12px 0; padding: 0; list-style: none; } .folded #adminmenuback, .folded #adminmenuwrap, .folded #adminmenu, .folded #adminmenu li.menu-top { width: 36px; } /* New Menu icons */ /* hide background-image for icons above */ .menu-icon-dashboard div.wp-menu-image, .menu-icon-post div.wp-menu-image, .menu-icon-media div.wp-menu-image, .menu-icon-links div.wp-menu-image, .menu-icon-page div.wp-menu-image, .menu-icon-comments div.wp-menu-image, .menu-icon-appearance div.wp-menu-image, .menu-icon-plugins div.wp-menu-image, .menu-icon-users div.wp-menu-image, .menu-icon-tools div.wp-menu-image, .menu-icon-settings div.wp-menu-image, .menu-icon-site div.wp-menu-image, .menu-icon-generic div.wp-menu-image { background-image: none !important; } /*------------------------------------------------------------------------------ 7.0 - Main Navigation (Left Menu) ------------------------------------------------------------------------------*/ #adminmenuwrap { position: relative; float: right; z-index: 9990; } /* side admin menu */ #adminmenu * { -webkit-user-select: none; user-select: none; } #adminmenu li { margin: 0; padding: 0; } #adminmenu a { display: block; line-height: 1.3; padding: 2px 5px; color: #f0f0f1; } #adminmenu .wp-submenu a { color: #c3c4c7; color: rgba(240, 246, 252, 0.7); font-size: 13px; line-height: 1.4; margin: 0; padding: 5px 0; } #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { background: none; } #adminmenu a:hover, #adminmenu li.menu-top > a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-submenu a:focus { color: #72aee6; } #adminmenu a:hover, #adminmenu a:focus, .folded #adminmenu .wp-submenu-head:hover { box-shadow: inset -4px 0 0 0 currentColor; transition: box-shadow .1s linear; border-radius: 0; } #adminmenu li.menu-top { border: none; min-height: 34px; position: relative; } #adminmenu .wp-submenu { list-style: none; position: absolute; top: -1000em; right: 160px; overflow: visible; word-wrap: break-word; padding: 6px 0; z-index: 9999; background-color: #2c3338; box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } .js #adminmenu .sub-open, .js #adminmenu .opensub .wp-submenu, #adminmenu a.menu-top:focus + .wp-submenu, .no-js li.wp-has-submenu:hover .wp-submenu { top: -1px; } #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { top: 0; } #adminmenu .wp-has-current-submenu .wp-submenu, .no-js li.wp-has-current-submenu:hover .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, #adminmenu .wp-has-current-submenu.opensub .wp-submenu { position: relative; z-index: 3; top: auto; right: auto; left: auto; bottom: auto; border: 0 none; margin-top: 0; box-shadow: none; } .folded #adminmenu .wp-has-current-submenu .wp-submenu { box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); } /* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus { position: relative; background-color: #1d2327; color: #72aee6; } .folded #adminmenu li.menu-top:hover, .folded #adminmenu li.opensub > a.menu-top, .folded #adminmenu li > a.menu-top:focus { z-index: 10000; } #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.current a.menu-top, #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head { background: #2271b1; color: #fff; } .folded #adminmenu .wp-submenu.sub-open, .folded #adminmenu .opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu a.menu-top:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { top: 0; right: 36px; } .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-right-width: 5px; } #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .opensub .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus { color: #fff; } #adminmenu .wp-not-current-submenu li > a, .folded #adminmenu .wp-has-current-submenu li > a { padding-left: 16px; padding-right: 14px; /* Exclude from the transition the outline for Windows High Contrast mode */ transition: all .1s ease-in-out, outline 0s; } #adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a { padding: 5px 12px; } #adminmenu a.menu-top, #adminmenu .wp-submenu-head { font-size: 14px; font-weight: 400; line-height: 1.3; padding: 0; } #adminmenu .wp-submenu-head { display: none; } .folded #adminmenu .wp-menu-name { position: absolute; right: -999px; } .folded #adminmenu .wp-submenu-head { display: block; } #adminmenu .wp-submenu li { padding: 0; margin: 0; } #adminmenu .wp-menu-image img { padding: 9px 0 0; opacity: 0.6; filter: alpha(opacity=60); } #adminmenu div.wp-menu-name { padding: 8px 36px 8px 8px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #adminmenu div.wp-menu-image { float: right; width: 36px; height: 34px; margin: 0; text-align: center; } #adminmenu div.wp-menu-image.svg { background-repeat: no-repeat; background-position: center; background-size: 20px auto; } div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); padding: 7px 0; transition: all .1s ease-in-out; } #adminmenu div.wp-menu-image:before { color: #a7aaad; color: rgba(240, 246, 252, 0.6); } #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu .wp-has-current-submenu div.wp-menu-image:before, #adminmenu .current div.wp-menu-image:before, #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before { color: #fff; } #adminmenu li:hover div.wp-menu-image:before, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.opensub div.wp-menu-image:before { color: #72aee6; } .folded #adminmenu div.wp-menu-image { width: 35px; height: 30px; position: absolute; z-index: 25; } .folded #adminmenu a.menu-top { height: 34px; } /* Sticky admin menu */ .sticky-menu #adminmenuwrap { position: fixed; } ul#adminmenu a.wp-has-current-submenu { position: relative; } ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after { left: 0; border: solid 8px transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-left-color: #f0f0f1; top: 50%; margin-top: -8px; } .folded ul#adminmenu li:hover a.wp-has-current-submenu:after, .folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after { display: none; } .folded ul#adminmenu a.wp-has-current-submenu:after, .folded ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } /* flyout menu arrow */ #adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { left: 0; border: 8px solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; top: 10px; z-index: 10000; } .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 18px; } #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-left-color: #2c3338; } #adminmenu li.menu-top:hover .wp-menu-image img, #adminmenu li.wp-has-current-submenu .wp-menu-image img { opacity: 1; filter: alpha(opacity=100); } #adminmenu li.wp-menu-separator { height: 5px; padding: 0; margin: 0 0 6px; cursor: inherit; } /* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */ #adminmenu div.separator { height: 2px; padding: 0; } #adminmenu .wp-submenu .wp-submenu-head { color: #fff; font-weight: 400; font-size: 14px; padding: 5px 11px 5px 4px; margin: -8px -5px 4px -1px; border-width: 3px 5px 3px 1px; border-style: solid; border-color: transparent; } #adminmenu li.current, .folded #adminmenu li.wp-menu-open { border: 0 none; } /* @todo: consider to use a single rule for these counters and the list table comments counters. */ #adminmenu .menu-counter, #adminmenu .awaiting-mod, #adminmenu .update-plugins { display: inline-block; vertical-align: top; box-sizing: border-box; margin: 1px 2px -1px 0; padding: 0 5px; min-width: 18px; height: 18px; border-radius: 9px; background-color: #d63638; color: #fff; font-size: 11px; line-height: 1.6; text-align: center; z-index: 26; } #adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins { background-color: #d63638; color: #fff; } #adminmenu li span.count-0 { display: none; } #collapse-button { display: block; width: 100%; height: 34px; margin: 0; border: none; padding: 0; position: relative; overflow: visible; background: none; color: #a7aaad; cursor: pointer; } #collapse-button:hover { color: #72aee6; } #collapse-button:focus { color: #72aee6; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } #collapse-button .collapse-button-icon, #collapse-button .collapse-button-label { /* absolutely positioned to avoid 1px shift in IE when button is pressed */ display: block; position: absolute; top: 0; right: 0; } #collapse-button .collapse-button-label { top: 8px; } #collapse-button .collapse-button-icon { width: 36px; height: 34px; } #collapse-button .collapse-button-label { padding: 0 36px 0 0; } .folded #collapse-button .collapse-button-label { display: none; } #collapse-button .collapse-button-icon:after { content: "\f148"; content: "\f148" / ''; display: block; position: relative; top: 7px; text-align: center; font: normal 20px/1 dashicons !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* rtl:ignore */ .folded #collapse-button .collapse-button-icon:after, .rtl #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.folded #collapse-button .collapse-button-icon:after { transform: none; } #collapse-button .collapse-button-icon:after, #collapse-button .collapse-button-label { transition: all .1s ease-in-out; } /** * Toolbar menu toggle */ li#wp-admin-bar-menu-toggle { display: none; } /* Hide-if-customize for items we can't add classes to */ .customize-support #menu-appearance a[href="themes.php?page=custom-header"], .customize-support #menu-appearance a[href="themes.php?page=custom-background"] { display: none; } /* Auto-folding of the admin menu */ @media only screen and (max-width: 960px) { .auto-fold #wpcontent, .auto-fold #wpfooter { margin-right: 36px; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap, .auto-fold #adminmenu, .auto-fold #adminmenu li.menu-top { width: 36px; } .auto-fold #adminmenu .wp-submenu.sub-open, .auto-fold #adminmenu .opensub .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { top: 0; right: 36px; } .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { position: absolute; top: -1000em; margin-left: -1px; padding: 6px 0; z-index: 9999; } .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { min-width: 160px; width: auto; border: 1px solid transparent; border-right-width: 5px; } .auto-fold #adminmenu .wp-has-current-submenu li > a { padding-left: 16px; padding-right: 14px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding-right: 12px; } .auto-fold #adminmenu .wp-menu-name { position: absolute; right: -999px; } .auto-fold #adminmenu .wp-submenu-head { display: block; } .auto-fold #adminmenu div.wp-menu-image { height: 30px; width: 34px; position: absolute; z-index: 25; } .auto-fold #adminmenu a.menu-top { min-height: 34px; } .auto-fold #adminmenu li.wp-menu-open { border: 0 none; } .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { margin-bottom: 0; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: none; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { border-width: 4px; margin-top: -4px; top: 16px; } .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li a.current:after { border-width: 4px; margin-top: -4px; } .auto-fold #adminmenu li.menu-top:hover, .auto-fold #adminmenu li.opensub > a.menu-top, .auto-fold #adminmenu li > a.menu-top:focus { z-index: 10000; } .auto-fold #collapse-menu .collapse-button-label { display: none; } /* rtl:ignore */ .auto-fold #collapse-button .collapse-button-icon:after { transform: rotate(180deg); } .rtl.auto-fold #collapse-button .collapse-button-icon:after { transform: none; } } @media screen and (max-width: 782px) { .auto-fold #wpcontent { position: relative; margin-right: 0; padding-right: 10px; } .sticky-menu #adminmenuwrap { position: relative; z-index: auto; top: 0; } /* Sidebar Adjustments */ .auto-fold #adminmenu, .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { position: absolute; width: 190px; z-index: 100; } .auto-fold #adminmenuback { position: fixed; } .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { display: none; } .auto-fold .wp-responsive-open #adminmenuback, .auto-fold .wp-responsive-open #adminmenuwrap { display: block; } .auto-fold #adminmenu li.menu-top { width: 100%; } /* Resize the admin menu items to a comfortable touch size */ .auto-fold #adminmenu li a { font-size: 16px; padding: 5px; } .auto-fold #adminmenu li.menu-top .wp-submenu > li > a { padding: 10px 20px 10px 10px; } /* Restore the menu names */ .auto-fold #adminmenu .wp-menu-name { position: static; } /* Switch the arrow side */ .auto-fold ul#adminmenu a.wp-has-current-submenu:after, .auto-fold ul#adminmenu > li.current > a.current:after { border-width: 8px; margin-top: -8px; } .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { display: none; } /* Make the submenus appear correctly when tapped. */ #adminmenu .wp-submenu { position: relative; display: none; } .auto-fold #adminmenu .selected .wp-submenu, .auto-fold #adminmenu .wp-menu-open .wp-submenu { position: relative; display: block; top: 0; right: -1px; box-shadow: none; } .auto-fold #adminmenu .selected .wp-submenu:after, .auto-fold #adminmenu .wp-menu-open .wp-submenu:after { display: none; } .auto-fold #adminmenu .opensub .wp-submenu { display: none; } .auto-fold #adminmenu .selected .wp-submenu { display: block; } .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, .auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { display: block; } .auto-fold #adminmenu a.menu-top:focus + .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { position: relative; right: -1px; left: 0; top: 0; } #adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { border: none; } /* Remove submenu headers and adjust sub meu*/ #adminmenu .wp-submenu .wp-submenu-head { display: none; } /* Toolbar menu toggle */ #wp-responsive-toggle { position: fixed; top: 5px; right: 4px; padding-left: 10px; z-index: 99999; border: none; box-sizing: border-box; } #wpadminbar #wp-admin-bar-menu-toggle a { display: block; padding: 0; overflow: hidden; outline: none; text-decoration: none; border: 1px solid transparent; background: none; height: 44px; margin-right: -1px; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { background: #2c3338; } li#wp-admin-bar-menu-toggle { display: block; } #wpadminbar #wp-admin-bar-menu-toggle a:hover { border: 1px solid transparent; } #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { content: "\f228"; display: inline-block; float: right; font: normal 40px/45px dashicons; vertical-align: middle; outline: none; margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; height: 44px; width: 50px; padding: 0; border: none; text-align: center; text-decoration: none; box-sizing: border-box; } .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { color: #72aee6; } } /* Smartphone */ @media screen and (max-width: 600px) { #adminmenuwrap, #adminmenuback { display: none; } .wp-responsive-open #adminmenuwrap, .wp-responsive-open #adminmenuback { display: block; } .auto-fold #adminmenu { top: 46px; } } css/themes-rtl.css000066600000126024152330733730010151 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 16.0 - Themes ------------------------------------------------------------------------------*/ /*------------------------------------------------------------------------------ 16.1 - Manage Themes ------------------------------------------------------------------------------*/ .themes-php { overflow-y: scroll; } .themes-php #adminmenuwrap { z-index: 10001; /* above Theme Overlay */ } body.js .theme-browser.search-loading { display: none; } .theme-browser .themes { clear: both; } .themes-php .wrap h1 .button { margin-right: 20px; } /* Search form */ .themes-php .search-form { display: inline-flex; align-items: center; position: relative; top: 0; gap: .5rem; width: 100%; justify-content: end; } .themes-php .wp-filter-search { position: relative; margin: 0; width: 280px; } /* Position admin messages */ .theme .notice, .theme .notice.is-dismissible { right: 0; margin: 0; position: absolute; left: 0; top: 0; } /** * Main theme element * (has flexible margins) */ .theme-browser .theme { cursor: pointer; float: right; margin: 0 0 4% 4%; position: relative; width: 30.6%; background: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .theme-browser .theme:nth-child(3n) { margin-left: 0; } .theme-browser .theme:hover, .theme-browser .theme.focus { cursor: pointer; } .theme-browser .theme .theme-name { font-size: 15px; font-weight: 600; height: 18px; margin: 0; padding: 16px 15px; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; background: #ffffff; } /* Activate and Customize buttons, shown on hover and focus */ .theme-browser .theme .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; transition: opacity 0.1s ease-in-out; height: auto; background: rgba(246, 247, 247, 0.7); border-right: 1px solid rgba(0, 0, 0, 0.05); } .theme-browser .theme:hover .theme-actions, .theme-browser .theme.focus .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } .theme-browser .theme .theme-actions .button-primary { margin-left: 3px; } /* Use compact size for space-constrained theme cards */ .theme-browser .theme .theme-actions .button.updated-message, .theme-browser .theme .theme-actions .button.updating-message, .theme-browser .theme .theme-actions .button { float: none; margin-right: 3px; } .theme-browser .theme .theme-actions .button.updated-message::before, .theme-browser .theme .theme-actions .button.updating-message::before { line-height: 1; vertical-align: text-bottom; position: relative; top: 2px; } /* Secondary buttons need white background for visibility on semi-transparent overlay */ .theme-browser .theme .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme .theme-actions .button:not(.button-primary):focus { background: #fff; } /** * Theme Screenshot * * Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size * It is also responsive. */ .theme-browser .theme .theme-screenshot { display: block; overflow: hidden; position: relative; -webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */ transition: opacity 0.2s ease-in-out; } .theme-browser .theme .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666%; /* using a 3/2 aspect ratio */ } .theme-browser .theme .theme-screenshot img { height: auto; position: absolute; right: 0; top: 0; width: 100%; transition: opacity 0.2s ease-in-out; } .theme-browser .theme:hover .theme-screenshot, .theme-browser .theme.focus .theme-screenshot { background: #fff; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 0.4; } .theme-browser .theme .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; position: absolute; top: 35%; left: 20%; right: 20%; width: 60%; background: #1d2327; background: rgba(0, 0, 0, 0.7); color: #fff; font-size: 15px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); -webkit-font-smoothing: antialiased; font-weight: 600; padding: 15px 12px; text-align: center; border-radius: 3px; border: none; transition: opacity 0.1s ease-in-out; cursor: pointer; } .theme-browser .theme .more-details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } .theme-browser .theme.focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .theme-browser .theme.focus .more-details { opacity: 1; } /* Current theme needs to have its action always on view */ .theme-browser .theme.active.focus .theme-actions { display: block; } .theme-browser.rendered .theme:hover .more-details, .theme-browser.rendered .theme.focus .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } /** * The currently active theme */ .theme-browser .theme.active .theme-name { background: #1d2327; color: #fff; padding-left: 115px; font-weight: 300; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5); } .theme-browser .customize-control .theme.active .theme-name { padding-left: 15px; } .theme-browser .theme.active .theme-name span { font-weight: 600; } .theme-browser .theme.active .theme-actions { background: transparent; border-right: none; opacity: 1; } .theme-browser .theme.active .theme-actions .button-primary { border-color: #fff; } .theme-id-container { position: relative; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { position: absolute; top: 50%; transform: translateY(-50%); left: 0; padding: 9px 12px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } .theme-browser .theme.active .theme-actions .button-primary { margin-left: 0; } /* Active theme secondary buttons need white background for visibility on dark overlay */ .theme-browser .theme.active .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):focus { background: #fff; } .theme-browser .theme .theme-author { background: #1d2327; color: #f0f0f1; display: none; font-size: 14px; margin: 0 10px; padding: 5px 10px; position: absolute; bottom: 56px; } .theme-browser .theme.display-author .theme-author { display: block; } .theme-browser .theme.display-author .theme-author a { color: inherit; } /** * Add new theme */ .theme-browser .theme.add-new-theme { background: transparent; border: none; overflow: visible; } .theme-browser .theme.add-new-theme a { text-decoration: none; display: block; position: relative; z-index: 1; } .theme-browser .theme.add-new-theme a:after { display: block; content: ""; background: transparent; background: rgba(0, 0, 0, 0); position: absolute; top: 0; right: 0; left: 0; bottom: 0; padding: 0; text-shadow: none; border: 5px dashed #dcdcde; border: 5px dashed rgba(0, 0, 0, 0.1); box-sizing: border-box; } .theme-browser .theme.add-new-theme span:after { background: #dcdcde; background: rgba(140, 143, 148, 0.1); border-radius: 50%; display: inline-block; content: "\f132"; content: "\f132" / ''; -webkit-font-smoothing: antialiased; font: normal 74px/115px dashicons; width: 100px; height: 100px; vertical-align: middle; text-align: center; color: #8c8f94; position: absolute; top: 30%; right: 50%; margin-right: -50px; text-indent: -4px; padding: 0; text-shadow: none; z-index: 4; } .rtl .theme-browser .theme.add-new-theme span:after { text-indent: 4px; } .theme-browser .theme.add-new-theme a:hover .theme-screenshot, .theme-browser .theme.add-new-theme a:focus .theme-screenshot { background: none; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { background: #fff; color: #2271b1; } .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { border-color: transparent; color: #fff; background: #2271b1; content: ""; } .theme-browser .theme.add-new-theme .theme-name { background: none; border: none; text-align: center; font-weight: 400; position: relative; top: 0; margin-top: -18px; padding-top: 0; padding-bottom: 48px; } .theme-browser .theme.add-new-theme a:hover .theme-name, .theme-browser .theme.add-new-theme a:focus .theme-name { color: #fff; z-index: 2; } /** * Theme Overlay * Shown when clicking a theme */ .theme-overlay .theme-backdrop { position: absolute; right: -20px; left: 0; top: 0; bottom: 0; background: #f0f0f1; background: rgba(240, 240, 241, 0.9); z-index: 10000; /* Over WP Pointers. */ min-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px)); } .theme-overlay .theme-header { position: absolute; top: 0; right: 0; left: 0; height: 48px; border-bottom: 1px solid #dcdcde; } .theme-overlay .theme-header button { padding: 0; } .theme-overlay .theme-header .close { cursor: pointer; height: 48px; width: 50px; text-align: center; float: left; border: 0; border-right: 1px solid #dcdcde; background-color: transparent; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:before { font: normal 22px/50px dashicons !important; color: #787c82; display: inline-block; content: "\f335"; content: "\f335" / ''; font-weight: 300; } /* Left and right navigation */ .theme-overlay .theme-header .right, .theme-overlay .theme-header .left { cursor: pointer; color: #787c82; background-color: transparent; height: 48px; width: 54px; float: right; text-align: center; border: 0; border-left: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:focus, .theme-overlay .theme-header .left:hover { background: #dcdcde; border-color: #c3c4c7; color: #000; } .theme-overlay .theme-header .close:focus:before, .theme-overlay .theme-header .close:hover:before { color: #000; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .left:focus { box-shadow: none; outline: none; } .theme-overlay .theme-header .left.disabled, .theme-overlay .theme-header .right.disabled, .theme-overlay .theme-header .left.disabled:hover, .theme-overlay .theme-header .right.disabled:hover { color: #c3c4c7; background: inherit; cursor: inherit; } .theme-overlay .theme-header .right:before, .theme-overlay .theme-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .theme-overlay .theme-header .left:before { content: "\f345"; content: "\f341" / ''; } .theme-overlay .theme-header .right:before { content: "\f341"; content: "\f345" / ''; } .theme-overlay .theme-wrap { clear: both; position: fixed; top: 9%; right: 190px; left: 30px; bottom: 3%; background: #fff; box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); z-index: 10000; /* Over WP Pointers. */ box-sizing: border-box; -webkit-overflow-scrolling: touch; } body.folded .theme-browser ~ .theme-overlay .theme-wrap { right: 70px; } .theme-overlay .theme-about { position: absolute; top: 49px; bottom: 57px; right: 0; left: 0; overflow: auto; padding: 2% 4%; } .theme-overlay .theme-actions { position: absolute; text-align: center; bottom: 0; right: 0; left: 0; padding: 10px 25px 5px; background: #f6f7f7; z-index: 30; box-sizing: border-box; border-top: 1px solid #f0f0f1; display: flex; justify-content: center; gap: 5px; } .theme-overlay .theme-actions .button { margin-bottom: 5px; } /* Hide-if-customize for items we can't add classes to */ .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"], .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"] { display: none; } .broken-themes a.delete-theme, .theme-overlay .theme-actions .delete-theme { color: #b32d2e; text-decoration: none; border-color: transparent; box-shadow: none; background: transparent; } .broken-themes a.delete-theme:hover, .broken-themes a.delete-theme:focus, .theme-overlay .theme-actions .delete-theme:hover, .theme-overlay .theme-actions .delete-theme:focus { background: #b32d2e; color: #fff; border-color: #b32d2e; box-shadow: 0 0 0 1px #b32d2e; } .theme-overlay .theme-actions .active-theme, .theme-overlay.active .theme-actions .inactive-theme { display: none; } .theme-overlay .theme-actions .inactive-theme, .theme-overlay.active .theme-actions .active-theme { display: block; } /** * Theme Screenshots gallery */ .theme-overlay .theme-screenshots { float: right; margin: 0 0 0 30px; width: 55%; max-width: 1200px; /* Recommended theme screenshot width, set here to avoid stretching */ text-align: center; } /* First screenshot, shown big */ .theme-overlay .screenshot { border: 1px solid #fff; box-sizing: border-box; overflow: hidden; position: relative; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); } .theme-overlay .screenshot:after { content: ""; display: block; padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-overlay .screenshot img { height: auto; position: absolute; right: 0; top: 0; width: 100%; } /* Handles old 300px screenshots */ .theme-overlay.small-screenshot .theme-screenshots { position: absolute; width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-right: 350px; width: auto; } /* Other screenshots, shown small and square */ .theme-overlay .screenshot.thumb { background: #c3c4c7; border: 1px solid #f0f0f1; float: none; display: inline-block; margin: 10px 5px 0; width: 140px; height: 80px; cursor: pointer; } .theme-overlay .screenshot.thumb:after { content: ""; display: block; padding-top: 100%; /* using a 1/1 aspect ratio */ } .theme-overlay .screenshot.thumb img { cursor: pointer; height: auto; position: absolute; right: 0; top: 0; width: 100%; height: auto; } .theme-overlay .screenshot.selected { background: transparent; border: 2px solid #72aee6; } .theme-overlay .screenshot.selected img { opacity: 0.8; } /* No screenshot placeholder */ .theme-browser .theme .theme-screenshot.blank, .theme-overlay .screenshot.blank { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=); } /** * Theme heading information */ .theme-overlay .theme-info { width: 40%; float: right; } .theme-overlay .current-label { background: #2c3338; color: #fff; font-size: 11px; display: inline-block; padding: 2px 8px; border-radius: 2px; margin: 0 0 -10px; -webkit-user-select: none; user-select: none; } .theme-overlay .theme-name { color: #1d2327; font-size: 32px; font-weight: 100; margin: 10px 0 0; line-height: 1.3; word-wrap: break-word; overflow-wrap: break-word; } .theme-overlay .theme-version { color: #646970; font-size: 13px; font-weight: 400; float: none; display: inline-block; margin-right: 10px; } .theme-overlay .theme-author { margin: 15px 0 25px; color: #646970; font-size: 16px; font-weight: 400; line-height: inherit; } .theme-overlay .toggle-auto-update { /* Better align spin icon and text. */ display: inline-flex; align-items: center; /* Prevents content after the auto-update toggler from jumping down and up. */ min-height: 20px; /* Same height as the spinning dashicon. */ vertical-align: top; } .theme-overlay .theme-autoupdate .toggle-auto-update { text-decoration: none; } .theme-overlay .theme-autoupdate .toggle-auto-update .label { text-decoration: underline; } .theme-overlay .theme-description { color: #50575e; font-size: 15px; font-weight: 400; line-height: 1.5; margin: 30px 0 0; } .theme-overlay .theme-tags { border-top: 3px solid #f0f0f1; color: #646970; font-size: 13px; font-weight: 400; margin: 30px 0 0; padding-top: 20px; } .theme-overlay .theme-tags span { color: #3c434a; font-weight: 600; margin-left: 5px; } .theme-overlay .parent-theme { background: #fff; border: 1px solid #f0f0f1; border-right: 4px solid #72aee6; font-size: 14px; font-weight: 400; margin-top: 30px; padding: 10px 20px 10px 10px; } .theme-overlay .parent-theme strong { font-weight: 600; } /** * Single Theme Mode * Displays detailed view inline when a user has no switch capabilities */ .single-theme .theme-overlay .theme-backdrop, .single-theme .theme-overlay .theme-header, .single-theme .theme { display: none; } .single-theme .theme-overlay .theme-wrap { clear: both; min-height: 330px; position: relative; right: auto; left: auto; top: auto; bottom: auto; z-index: 10; } .single-theme .theme-overlay .theme-about { padding: 30px 30px 70px; position: static; } .single-theme .theme-overlay .theme-actions { position: absolute; } /** * Basic Responsive structure... * * Shuffles theme columns around based on screen width */ @media only screen and (min-width: 2000px) { #wpwrap .theme-browser .theme { width: 17.6%; margin: 0 0 3% 3%; } #wpwrap .theme-browser .theme:nth-child(3n), #wpwrap .theme-browser .theme:nth-child(4n) { margin-left: 3%; } #wpwrap .theme-browser .theme:nth-child(5n) { margin-left: 0; } } @media only screen and (min-width: 1680px) { .theme-overlay .theme-wrap { width: 1450px; margin: 0 auto; } } /* Maximum screenshot width reaches 440px */ @media only screen and (min-width: 1640px) { .theme-browser .theme { width: 22.7%; margin: 0 0 3% 3%; } .theme-browser .theme .theme-screenshot:after { padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-browser .theme:nth-child(3n) { margin-left: 3%; } .theme-browser .theme:nth-child(4n) { margin-left: 0; } } /* Maximum screenshot width reaches 440px */ @media only screen and (max-width: 1120px) { .theme-browser .theme { width: 47.5%; margin-left: 0; } .theme-browser .theme:nth-child(even) { margin-left: 0; } .theme-browser .theme:nth-child(odd) { margin-left: 5%; } } /* Admin menu is folded */ @media only screen and (max-width: 960px) { .theme-overlay .theme-wrap { right: 65px; } } @media only screen and (max-width: 782px) { body.folded .theme-overlay .theme-wrap, .theme-overlay .theme-wrap { top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ left: 0; bottom: 0; right: 0; padding: 70px 20px 20px; border: none; z-index: 100000; /* should overlap #wpadminbar. */ position: fixed; } .theme-browser .theme.active .theme-name span { /* Hide the "Active: " label on smaller screens. */ display: none; } .theme-overlay .theme-screenshots { width: 40%; } .theme-overlay .theme-info { width: 50%; } .single-theme .theme-wrap { padding: 10px; } .theme-browser .theme .theme-actions { padding: 5px 10px 4px; } .theme-overlay.small-screenshot .theme-screenshots { position: static; float: none; max-width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-right: 0; width: auto; } .theme:not(.active):hover .theme-actions, .theme:not(.active):focus .theme-actions, .theme:hover .more-details, .theme.focus .more-details { display: none; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 1.0; } } @media only screen and (max-width: 480px) { .theme-browser .theme { width: 100%; margin-left: 0; } .theme-browser .theme:nth-child(2n), .theme-browser .theme:nth-child(3n) { margin-left: 0; } .theme-overlay .theme-about { bottom: 105px; } .theme-overlay .theme-actions { padding-right: 4%; padding-left: 4%; } .theme-install-php .wp-filter .filter-count { margin-top: 10px; } } @media only screen and (max-width: 650px) { .theme-overlay .theme-description { margin-right: 0; } .theme-overlay .theme-actions .delete-theme { position: relative; left: auto; bottom: auto; } .theme-overlay .theme-actions .inactive-theme { display: inline; } .theme-overlay .theme-screenshots { width: 100%; float: none; margin: 0; } .theme-overlay .theme-info { width: 100%; } .theme-overlay .theme-author { margin: 5px 0 15px; } .theme-overlay .current-label { margin-top: 10px; font-size: 13px; } .themes-php .wp-filter-search { width: 100%; } .theme-install-php .wp-filter p.search-box { display: grid; row-gap: .5rem; } .theme-browser .theme.add-new-theme span:after { font: normal 60px/90px dashicons; width: 80px; height: 80px; top: 30%; right: 50%; text-indent: 0; margin-right: -40px; } .single-theme .theme-wrap { margin: 0 -10px 0 -12px; padding: 10px; } .single-theme .theme-overlay .theme-about { padding: 10px; overflow: visible; } .single-theme .current-label { display: none; } .single-theme .theme-overlay .theme-actions { position: static; } } .broken-themes { clear: both; } .broken-themes table { text-align: right; width: 50%; border-spacing: 3px; padding: 3px; } /*------------------------------------------------------------------------------ 16.2 - Install Themes ------------------------------------------------------------------------------*/ .update-php .wrap { max-width: 40rem; } /* Already installed theme */ .theme-browser .theme .theme-installed { background: #2271b1; } .theme-browser .theme .notice-success p:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .theme-install.updated-message:before { content: ""; } .theme-install-php .wp-filter { padding-right: 20px; } /* Override column gap adjustment in media library. */ @media only screen and (max-width: 1000px) { .theme-install-php .wp-filter p.search-box { column-gap: .5rem; } } .theme-install-php a.upload, .theme-install-php a.browse-themes { cursor: pointer; } .upload-view-toggle .browse, .plugin-install-tab-upload .upload-view-toggle .upload { display: none; } .plugin-install-tab-upload .upload-view-toggle .browse { display: inline; } .upload-theme, .upload-plugin { box-sizing: border-box; display: none; margin: 0; padding: 50px 0; width: 100%; overflow: hidden; position: relative; top: 10px; text-align: center; } .show-upload-view .upload-theme, .show-upload-view .upload-plugin, .show-upload-view .upload-plugin-wrap, .plugin-install-tab-upload .upload-plugin { display: block; } .upload-theme .wp-upload-form, .upload-plugin .wp-upload-form { position: relative; margin: 30px; display: inline-flex; justify-content: space-between; align-items: center; border: 1px solid #c3c4c7; background: #f6f7f7; } .upload-theme .wp-upload-form input[type="file"], .upload-plugin .wp-upload-form input[type="file"] { background: transparent; margin: 0; padding: 30px 30px 30px 0; } .wp-upload-form input[type="submit"].button { margin-left: 30px; } .upload-theme .install-help, .upload-plugin .install-help { color: #50575e; /* #f1f1f1 background */ font-size: 18px; font-style: normal; margin: 0; padding: 0; text-align: center; } p.no-themes, p.no-themes-local { clear: both; color: #646970; font-size: 18px; font-style: normal; margin: 0; padding: 100px 0; text-align: center; display: none; } .no-results p.no-themes { display: block; } .theme-install-php .add-new-theme { display: none !important; } @media only screen and (max-width: 1120px) { .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { margin: 20px 0; max-width: 100%; } .upload-theme .install-help { font-size: 15px; padding: 20px 0 0; } } .theme-details .theme-rating { line-height: 1.9; } .theme-details .star-rating { display: inline; } .theme-details .num-ratings, .theme-details .no-rating { font-size: 11px; color: #646970; } .theme-details .no-rating { display: block; line-height: 1.9; } .update-from-upload-comparison { border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; text-align: right; margin: 1rem 0 1.4rem; border-collapse: collapse; width: 100%; } .update-from-upload-comparison tr:last-child td { height: 1.4rem; vertical-align: top; } .update-from-upload-comparison tr:first-child th { font-weight: bold; height: 1.4rem; vertical-align: bottom; } .update-from-upload-comparison td.name-label { text-align: left; } .update-from-upload-comparison td, .update-from-upload-comparison th { padding: 0.4rem 1.4rem; } .update-from-upload-comparison td.warning { color: #d63638; } .update-from-upload-actions { margin-top: 1.4rem; } /*------------------------------------------------------------------------------ 16.3 - Custom Header Screen ------------------------------------------------------------------------------*/ .appearance_page_custom-header #headimg { border: 1px solid #dcdcde; overflow: hidden; width: 100%; } .appearance_page_custom-header #upload-form p label { font-size: 12px; } .appearance_page_custom-header .available-headers .default-header { float: right; margin: 0 0 20px 20px; } .appearance_page_custom-header .random-header { clear: both; margin: 0 0 20px 20px; vertical-align: middle; } .appearance_page_custom-header .available-headers label input, .appearance_page_custom-header .random-header label input { margin-left: 10px; } .appearance_page_custom-header .available-headers label img { vertical-align: middle; } /*------------------------------------------------------------------------------ 16.4 - Custom Background Screen ------------------------------------------------------------------------------*/ div#custom-background-image { min-height: 100px; border: 1px solid #dcdcde; } div#custom-background-image img { max-width: 400px; max-height: 300px; } .background-position-control input[type="radio"]:checked ~ .button { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); z-index: 1; } .background-position-control input[type="radio"]:focus ~ .button { border-color: #4f94d4; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(34, 113, 177, 0.8); color: #1d2327; } .background-position-control .background-position-center-icon, .background-position-control .background-position-center-icon:before { display: inline-block; line-height: 1; text-align: center; transition: background-color .1s ease-in; } .background-position-control .background-position-center-icon { height: 20px; margin-top: 13px; vertical-align: top; width: 20px; } .background-position-control .background-position-center-icon:before { background-color: #50575e; border-radius: 50%; content: ""; height: 12px; width: 12px; } .background-position-control .button:hover .background-position-center-icon:before, .background-position-control input[type="radio"]:focus ~ .button .background-position-center-icon:before { background-color: #1d2327; } .background-position-control .button-group { display: block; } .background-position-control .button-group .button { border-radius: 0; box-shadow: none; /* Following properties are overridden by buttons responsive styles (see: wp-includes/css/buttons.css). */ height: 40px !important; line-height: 2.9 !important; margin: 0 0 0 -1px !important; padding: 0 10px 1px !important; position: relative; } .background-position-control .button-group .button:active, .background-position-control .button-group .button:hover, .background-position-control .button-group .button:focus { z-index: 1; } .background-position-control .button-group:last-child .button { box-shadow: 0 1px 0 #c3c4c7; } .background-position-control .button-group > label { margin: 0 !important; } .background-position-control .button-group:first-child > label:first-child .button { border-radius: 0 3px 0 0; } .background-position-control .button-group:first-child > label:first-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group:first-child > label:last-child .button { border-radius: 3px 0 0 0; } .background-position-control .button-group:first-child > label:last-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group:last-child > label:first-child .button { border-radius: 0 0 3px 0; } .background-position-control .button-group:last-child > label:first-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group:last-child > label:last-child .button { border-radius: 0 0 0 3px; } .background-position-control .button-group:last-child > label:last-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group + .button-group { margin-top: -1px; } /*------------------------------------------------------------------------------ 23.0 - Full Overlay w/ Sidebar ------------------------------------------------------------------------------*/ body.full-overlay-active { overflow: hidden; /* Hide all the content, the Customizer overlay is then made visible to be the only available content. */ visibility: hidden; } .wp-full-overlay { background: transparent; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; right: 0; left: 0; height: 100%; min-width: 0; } .wp-full-overlay-sidebar { box-sizing: border-box; position: fixed; min-width: 300px; max-width: 600px; width: 18%; height: 100%; top: 0; bottom: 0; right: 0; padding: 0; margin: 0; z-index: 10; background: #f0f0f1; border-left: none; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { overflow: visible; } .wp-full-overlay.collapsed, .wp-full-overlay.expanded .wp-full-overlay-sidebar { margin-right: 0 !important; } .wp-full-overlay.expanded { margin-right: 300px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-right: -300px; } @media screen and (min-width: 1667px) { .wp-full-overlay.expanded { margin-right: 18%; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-right: -18%; } } @media screen and (min-width: 3333px) { .wp-full-overlay.expanded { margin-right: 600px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-right: -600px; } } .wp-full-overlay-sidebar:after { content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; z-index: 1000; } .wp-full-overlay-main { position: absolute; right: 0; left: 0; top: 0; bottom: 0; height: 100%; } .wp-full-overlay-sidebar .wp-full-overlay-header { position: absolute; right: 0; left: 0; height: 45px; padding: 0 15px; line-height: 3.2; z-index: 10; margin: 0; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-header a.back { margin-top: 3px; /* Vertically center 40px button in 45px header */ } .wp-full-overlay-sidebar .wp-full-overlay-footer { bottom: 0; border-bottom: none; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { position: absolute; top: 45px; bottom: 45px; right: 0; left: 0; overflow: auto; } /* Close & Navigation Links */ .theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header { padding: 0; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { display: block; position: relative; float: right; width: 45px; height: 45px; background: #f0f0f1; border-left: 1px solid #dcdcde; color: #3c434a; cursor: pointer; text-decoration: none; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-install-overlay .close-full-overlay:hover, .theme-install-overlay .close-full-overlay:focus, .theme-install-overlay .previous-theme:hover, .theme-install-overlay .previous-theme:focus, .theme-install-overlay .next-theme:hover, .theme-install-overlay .next-theme:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .theme-install-overlay .close-full-overlay:before { font: normal 22px/1 dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: 7px; right: 13px; } .theme-install-overlay .previous-theme:before { font: normal 20px/1 dashicons; content: "\f345"; content: "\f341" / ''; position: relative; top: 6px; right: 14px; } .theme-install-overlay .next-theme:before { font: normal 20px/1 dashicons; content: "\f341"; content: "\f345" / ''; position: relative; top: 6px; right: 13px; } .theme-install-overlay .previous-theme.disabled, .theme-install-overlay .next-theme.disabled, .theme-install-overlay .previous-theme.disabled:hover, .theme-install-overlay .previous-theme.disabled:focus, .theme-install-overlay .next-theme.disabled:hover, .theme-install-overlay .next-theme.disabled:focus { color: #c3c4c7; background: #f0f0f1; cursor: default; pointer-events: none; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { border-right: 0; border-top: 0; border-bottom: 0; } .theme-install-overlay .close-full-overlay:before, .theme-install-overlay .previous-theme:before, .theme-install-overlay .next-theme:before { top: 2px; right: 0; } /* Collapse Button */ .wp-core-ui .wp-full-overlay .collapse-sidebar { position: fixed; bottom: 0; right: 0; padding: 9px 10px 9px 0; height: 45px; color: #646970; outline: 0; line-height: 1; background-color: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #2271b1; } .wp-full-overlay .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar-label { display: inline-block; vertical-align: middle; line-height: 1.6; } .wp-full-overlay .collapse-sidebar-arrow { width: 20px; height: 20px; margin: 0 2px; /* avoid the focus box-shadow to be cut-off */ border-radius: 50%; overflow: hidden; } .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-full-overlay .collapse-sidebar-label { margin-right: 3px; } .wp-full-overlay.collapsed .collapse-sidebar-label { display: none; } .wp-full-overlay .collapse-sidebar-arrow:before { display: block; content: "\f148"; content: "\f148" / ''; background: #f0f0f1; font: normal 20px/1 dashicons; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar { padding: 9px 10px; } /* rtl:ignore */ .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, .rtl .wp-full-overlay .collapse-sidebar-arrow:before { transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing */ } .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { transform: none; } /* Animations */ @media (prefers-reduced-motion: no-preference) { .wp-full-overlay, .wp-full-overlay-sidebar, .wp-full-overlay .collapse-sidebar, .wp-full-overlay-main { transition-property: right, left, top, bottom, width, margin; transition-duration: 0.2s; } } /* Device/preview size toggles */ .wp-full-overlay { background: #1d2327; } .wp-full-overlay-main { background-color: #f0f0f1; } .expanded .wp-full-overlay-footer { position: fixed; bottom: 0; right: 0; min-width: 299px; max-width: 599px; width: 18%; width: calc( 18% - 1px ); height: 45px; border-top: 1px solid #dcdcde; background: #f0f0f1; } .wp-full-overlay-footer .devices-wrapper { float: left; } .wp-full-overlay-footer .devices { position: relative; background: #f0f0f1; box-shadow: 20px 0 10px -5px #f0f0f1; } .wp-full-overlay-footer .devices button { cursor: pointer; background: transparent; border: none; height: 45px; padding: 0 3px; margin: 0 -4px 0 0; box-shadow: none; border-top: 1px solid transparent; border-bottom: 4px solid transparent; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .wp-full-overlay-footer .devices button:focus { box-shadow: none; outline: none; } .wp-full-overlay-footer .devices button:before { display: inline-block; -webkit-font-smoothing: antialiased; font: normal 20px/30px "dashicons"; vertical-align: top; margin: 3px 0; padding: 4px 8px; color: #646970; } .wp-full-overlay-footer .devices button.active { border-bottom-color: #1d2327; } .wp-full-overlay-footer .devices button:hover, .wp-full-overlay-footer .devices button:focus { background-color: #fff; } .wp-full-overlay-footer .devices button:focus, .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #2271b1; } .wp-full-overlay-footer .devices button.active:before { color: #1d2327; } .wp-full-overlay-footer .devices button:hover:before, .wp-full-overlay-footer .devices button:focus:before { color: #2271b1; } .wp-full-overlay-footer .devices .preview-desktop:before { content: "\f472"; content: "\f472" / ''; } .wp-full-overlay-footer .devices .preview-tablet:before { content: "\f471"; content: "\f471" / ''; } .wp-full-overlay-footer .devices .preview-mobile:before { content: "\f470"; content: "\f470" / ''; } @media screen and (max-width: 1024px) { .wp-full-overlay-footer .devices { display: none; } } .collapsed .wp-full-overlay-footer .devices button:before { display: none; } .preview-mobile .wp-full-overlay-main { margin: auto -160px auto 0; width: 320px; height: 480px; max-height: 100%; max-width: 100%; right: 50%; } .preview-tablet .wp-full-overlay-main { margin: auto -360px auto 0; width: 720px; /* Size is loosely based on a typical "tablet" device size. Intentionally ambiguous - this does not represent any particular device precisely. */ height: 1080px; max-height: 100%; max-width: 100%; right: 50%; } /*------------------------------------------------------------------------------ 24.0 - Customize Loader ------------------------------------------------------------------------------*/ .no-customize-support .hide-if-no-customize, .customize-support .hide-if-customize, .no-customize-support.wp-core-ui .hide-if-no-customize, .no-customize-support .wp-core-ui .hide-if-no-customize, .customize-support.wp-core-ui .hide-if-customize, .customize-support .wp-core-ui .hide-if-customize { display: none; } #customize-container, #customize-controls .notice.notification-overlay { background: #f0f0f1; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; right: 0; left: 0; height: 100%; } #customize-container { display: none; } /* Make the Customizer and Theme installer overlays the only available content. */ #customize-container, .theme-install-overlay { visibility: visible; } .customize-loading #customize-container iframe { opacity: 0; } #customize-container iframe, .theme-install-overlay iframe { height: 100%; width: 100%; z-index: 20; transition: opacity 0.3s; } #customize-controls { margin-top: 0; } .theme-install-overlay { display: none; } .theme-install-overlay.single-theme { display: block; } .install-theme-info { display: none; padding: 10px 20px 60px; } .single-theme .install-theme-info { padding-top: 15px; } .theme-install-overlay .install-theme-info { display: block; } .install-theme-info .theme-install { float: left; margin-top: 18px; } .install-theme-info .theme-name { font-size: 16px; line-height: 1.5; margin-bottom: 0; margin-top: 0; } .install-theme-info .theme-screenshot { margin: 15px 0; width: 258px; border: 1px solid #c3c4c7; position: relative; overflow: hidden; } .install-theme-info .theme-screenshot > img { width: 100%; height: auto; position: absolute; right: 0; top: 0; } .install-theme-info .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666666%; } .install-theme-info .theme-details { overflow: hidden; } .theme-details .theme-version { margin: 15px 0; } .theme-details .theme-description { float: right; color: #646970; line-height: 1.6; max-width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { float: left; margin: 7px 0 0 10px; /* Vertically center 32px button in 45px header */ min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ } .theme-install-overlay .wp-full-overlay-sidebar { background: #f0f0f1; border-left: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-sidebar-content { background: #fff; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-main { position: absolute; z-index: 0; background-color: #f0f0f1; } .customize-loading #customize-container { background-color: #f0f0f1; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; right: 50%; top: 50%; z-index: -1; margin: -10px -10px 0 0; transform: translateZ(0); background: transparent url(../images/spinner.gif) no-repeat center center; background-size: 20px 20px; } #customize-preview.wp-full-overlay-main.iframe-ready:before, .theme-install-overlay.iframe-ready .wp-full-overlay-main:before { background-image: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .wp-full-overlay .collapse-sidebar-arrow { background-image: url(../images/arrows-2x.png); background-size: 15px 123px; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .available-theme .action-links .delete-theme { float: none; margin: 0; padding: 0; clear: both; } .available-theme .action-links .delete-theme a { padding: 0; } .broken-themes table { width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { font-size: 13px; } .theme-browser .theme .theme-actions .button { margin-bottom: 0; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { padding-top: 4px; padding-bottom: 4px; } .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { width: 100%; box-sizing: border-box; } .upload-plugin .wp-upload-form input[type=file], .upload-theme .wp-upload-form input[type=file] { padding: 30px 30px 30px 0; width: 100%; } } css/about.css000066600000067472152330733730007212 0ustar00/*------------------------------------------------------------------------------ 22.0 - About Pages 1.0 Global: About, Credits, Freedoms, Privacy, Get Involved 1.1 Layout 1.2 Typography & Elements 1.3 Header 2.0 Credits Page 3.0 Freedoms Page 4.0 Privacy Page x.2.0 Legacy About Styles: Global x.2.1 Typography x.2.2 Structure x.2.3 Point Releases x.3.0 Legacy About Styles: About Page x.3.1 Typography x.3.2 Structure x.4.0 Legacy About Styles: Credits & Freedoms Pages x.5.0 Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ .about__container { /* Section backgrounds */ --background: #ebe8e5; --subtle-background: #ebe8e5; /* Main text color */ --text: #1e1e1e; --text-light: #fff; /* Accent colors: used in header, on special classes. */ --accent-1: #3858e9; /* Link color */ --accent-2: #183ad6; /* Accent background */ --accent-3: #ececec; /* hr background */ /* Header background on small screens */ --accent-gradient: linear-gradient(90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/; /* Navigation colors. */ --nav-background: #fff; --nav-border: transparent; --nav-color: var(--text); --nav-current: var(--accent-1); --border-radius: 0.5rem; --gap: 2rem; } /*------------------------------------------------------------------------------ 1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved ------------------------------------------------------------------------------*/ .about-php, .credits-php, .freedoms-php, .privacy-php, .contribute-php { background: #fff; } .about-php #wpcontent, .credits-php #wpcontent, .freedoms-php #wpcontent, .privacy-php #wpcontent, .contribute-php #wpcontent { background: #fff; padding: 0 24px; } @media screen and (max-width: 782px) { .about-php.auto-fold #wpcontent, .credits-php.auto-fold #wpcontent, .freedoms-php.auto-fold #wpcontent, .privacy-php.auto-fold #wpcontent, .contribute-php.auto-fold #wpcontent { padding-left: 24px; } } .about__container { max-width: 1000px; margin: 24px auto; clear: both; } .about__container .alignleft { float: left; } .about__container .alignright { float: right; } .about__container .aligncenter { text-align: center; } .about__container .is-vertically-aligned-top { align-self: start; } .about__container .is-vertically-aligned-center { align-self: center; } .about__container .is-vertically-aligned-bottom { align-self: end; } .about__section { background: transparent; clear: both; } .about__container .has-accent-background-color { color: var(--text-light); background-color: var(--accent-2); } .about__container .has-transparent-background-color { background-color: transparent; } .about__container .has-accent-color { color: var(--accent-2); } .about__container .has-border { border: 3px solid currentColor; } .about__container .has-subtle-background-color { background-color: var(--subtle-background); border-radius: var(--border-radius); } .about__container .has-background-image { background-size: contain; background-repeat: no-repeat; background-position: center; } /* 1.1 - Layout */ .about__section { margin: 0; } .about__section .column:not(.is-edge-to-edge) { padding: var(--gap); } .about__section .column.is-left-padding-zero { padding-left: 0; } .about__section .column.is-right-padding-zero { padding-right: 0; } .about__section + .about__section .is-section-header { padding-bottom: var(--gap); } .about__section .column[class*="background-color"]:not(.is-edge-to-edge), .about__section:where([class*="background-color"]) .column:not(.is-edge-to-edge), .about__section .column.has-border:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section .column p:first-of-type { margin-top: 0; } .about__section .column p:last-of-type { margin-bottom: 0; } .about__section .has-text-columns { columns: 2; column-gap: calc(var(--gap) * 2); } .about__section .is-section-header { margin-bottom: 0; padding: var(--gap) var(--gap) 0; } .about__section .is-section-header p:last-child { margin-bottom: 0; } /* Section header is alone in a container. */ .about__section .is-section-header:first-child:last-child { padding: 0; } .about__section.is-feature { padding: var(--gap); } .about__section.is-feature p { margin: 0; } .about__section.is-feature p + p { margin-top: calc(var(--gap) / 2); } .about__section.has-1-column { margin-left: auto; margin-right: auto; max-width: 36em; } .about__section.has-2-columns, .about__section.has-3-columns, .about__section.has-4-columns, .about__section.has-overlap-style { display: grid; } .about__section.has-gutters { gap: var(--gap); margin-bottom: var(--gap); } .about__section.has-2-columns { grid-template-columns: 1fr 1fr; } .about__section.has-2-columns.is-wider-right { grid-template-columns: 2fr 3fr; } .about__section.has-2-columns.is-wider-left { grid-template-columns: 3fr 2fr; } .about__section .is-section-header { grid-column-start: 1; grid-column-end: -1; } .about__section.has-3-columns { grid-template-columns: repeat(3, 1fr); } .about__section.has-4-columns { grid-template-columns: repeat(4, 1fr); } .about__section.has-overlap-style { grid-template-columns: repeat(7, 1fr); } .about__section.has-overlap-style .column { grid-row-start: 1; } .about__section.has-overlap-style .column:nth-of-type(2n+1) { grid-column-start: 2; grid-column-end: span 3; } .about__section.has-overlap-style .column:nth-of-type(2n) { grid-column-start: 4; grid-column-end: span 3; } .about__section.has-overlap-style .column.is-top-layer { z-index: 1; } @media screen and (max-width: 782px) { .about__section.has-2-columns.is-wider-right, .about__section.has-2-columns.is-wider-left, .about__section.has-3-columns { display: block; margin-bottom: calc(var(--gap) / 2); } .about__section .column:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section.has-2-columns.has-gutters.is-wider-right, .about__section.has-2-columns.has-gutters.is-wider-left, .about__section.has-3-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column, .about__section.has-3-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-3-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-3-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns { grid-template-columns: repeat(2, 1fr); } .about__section.has-overlap-style { grid-template-columns: 1fr; } /* At this size, the two columns fully overlap */ .about__section.has-overlap-style .column.column { grid-column-start: 1; grid-column-end: 2; grid-row-start: 1; grid-row-end: 2; } } @media screen and (max-width: 600px) { .about__section.has-2-columns { display: block; margin-bottom: var(--gap); } .about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-2-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section .column.is-left-padding-zero { padding-right: 0; } .about__section .column.is-right-padding-zero { padding-left: 0; } } @media screen and (max-width: 480px) { .about__section.is-feature .column, .about__section .is-section-header { padding: 0; } .about__section.has-4-columns { display: block; padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column { margin-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-4-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } } /* 1.2 - Typography & Elements */ .about__container { line-height: 1.4; color: var(--text); } .about__container h1 { padding: 0; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 2rem; font-weight: 700; line-height: 1.16; } .about__container h3, .about__container h1.is-smaller-heading, .about__container h2.is-smaller-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 1.625rem; font-weight: 700; line-height: 1.4; } .about__container h4, .about__container h3.is-smaller-heading { margin-top: 0; font-size: 1.125rem; font-weight: 600; line-height: 1.6; } .about__container h1, .about__container h2, .about__container h3, .about__container h4 { text-wrap: pretty; color: inherit; } .about__container :is(h1, h2, h3, h4, .about__header-text):lang(en) { text-wrap: balance; } .about__container p { text-wrap: pretty; } .about__container p { font-size: inherit; line-height: inherit; } .about__container p.is-subheading { margin-top: 0; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 300; line-height: 160%; } .about__section a { color: var(--accent-1); text-decoration: underline; } .about__section a:hover, .about__section a:active, .about__section a:focus { color: var(--accent-1); text-decoration: none; } .wp-credits-list a { text-decoration: none; } .wp-credits-list a:hover, .wp-credits-list a:active, .wp-credits-list a:focus { text-decoration: underline; } .about__section a.button.button-hero { padding-top: 1.1875rem; padding-bottom: 1.1875rem; font-size: 1.5rem; line-height: 1.4; white-space: normal; text-wrap: pretty; } .about__container ul { list-style: disc; margin-left: calc(var(--gap) / 2); } .about__container li { margin-bottom: 0.5rem; } .about__container img { margin: 0; max-width: 100%; vertical-align: middle; } .about__container .about__image { margin: 0; } .about__container .about__image img { max-width: 100%; width: 100%; height: auto; border-radius: var(--border-radius); } .about__container .about__image figcaption { margin-top: 0.5em; text-align: center; } .about__container .about__image .wp-video { margin-left: auto; margin-right: auto; } .about__container .about__image svg { vertical-align: middle; } .about__container .about__image + h3 { margin-top: calc(0.75 * var(--gap)); } .about__container hr { margin: calc(var(--gap) / 2) var(--gap); height: 0; border: none; border-top: 4px solid var(--accent-3); } .about__container hr.is-small { margin-top: 0; margin-bottom: 0; } .about__container hr.is-large { margin: var(--gap) auto; } .about__container hr.is-invisible { border: none; } .about__container div.updated, .about__container div.error, .about__container .notice { display: none !important; } .about__container code { font-size: inherit; } .about__section { font-size: 1.125rem; line-height: 1.55; } .about__section.is-feature { font-size: 1.6em; } .about__section.has-3-columns, .about__section.has-4-columns { font-size: 1rem; } @media screen and (max-width: 480px) { .about__section.is-feature { font-size: 1.4em; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { font-size: 2em; } } /* 1.3 - Header */ .about__header { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; box-sizing: border-box; padding: calc(var(--gap) * 1.5); padding-right: 26rem; /* Space for the background image. */ min-height: clamp(10rem, 25vw, 18.75rem); border-radius: var(--border-radius); background-image: url( "../images/about-header-default.webp?ver=20260514" ); background-repeat: no-repeat; background-position: right center; background-size: cover; background-color: var(--background); color: var(--text-light); } .credits-php .about__header { background-image: url( "../images/about-header-credits.webp?ver=20260514" ); } .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms.webp?ver=20260514" ); } .privacy-php .about__header { background-image: url( "../images/about-header-privacy.webp?ver=20260514" ); } .contribute-php .about__header { background-image: url( "../images/about-header-get-involved.webp?ver=20260514" ); } [dir="rtl"] .about__header { background-image: url( "../images/about-header-default-rtl.webp?ver=20260514" ); } [dir="rtl"] .credits-php .about__header { background-image: url( "../images/about-header-credits-rtl.webp?ver=20260514" ); } [dir="rtl"] .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms-rtl.webp?ver=20260514" ); } [dir="rtl"] .privacy-php .about__header { background-image: url( "../images/about-header-privacy-rtl.webp?ver=20260514" ); } [dir="rtl"] .contribute-php .about__header { background-image: url( "../images/about-header-get-involved-rtl.webp?ver=20260514" ); } .about__header-image { margin: 0 0 calc(var(--gap) * 1.5); } .about__header-title { box-sizing: border-box; margin: 0; padding: 0; } .about__header-title h1 { margin: 0; padding: 0; /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); line-height: 1; font-weight: 600; color: var(--text); } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-text { box-sizing: border-box; max-width: 26em; margin: 1rem 0 0; padding: 0; font-size: 1.6rem; line-height: 1.15; color: var(--text); } .about__header-navigation { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 0; margin-bottom: var(--gap); background: var(--nav-background); color: var(--nav-color); border-bottom: 3px solid var(--nav-border); } .about__header-navigation::after { display: none; } .about__header-navigation .nav-tab { margin-left: 0; padding: calc(var(--gap) * 0.75) var(--gap); float: none; font-size: 1.4em; line-height: 1; border-width: 0 0 3px; border-style: solid; border-color: transparent; background: transparent; color: inherit; } .about__header-navigation .nav-tab:hover, .about__header-navigation .nav-tab:active { background-color: var(--nav-current); color: var(--text-light); border-radius: var(--border-radius); } .about__header-navigation .nav-tab-active { margin-bottom: -3px; color: var(--nav-current); border-width: 0 0 6px; border-color: var(--nav-current); } .about__header-navigation .nav-tab-active:hover, .about__header-navigation .nav-tab-active:active { background-color: var(--nav-current); color: var(--text-light); border-color: var(--nav-current); border-radius: var(--border-radius); } @media screen and (max-width: 960px) { .about__header { padding-right: 21rem; } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 600px - 960px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-navigation .nav-tab { padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5); } } @media screen and (max-width: 782px) { .about__container .about__header-text { font-size: 1.4em; } .about__header-container { display: block; } .about__header { padding: var(--gap); padding-right: 17rem; } .about__header-text { margin-top: 0.5rem; } .about__header-navigation .nav-tab { margin-top: 0; margin-right: 0; font-size: 1.2em; } } @media screen and (max-width: 600px) { .about__header { min-height: auto; padding-right: var(--gap); } .about__header-navigation { display: block; } .about__header-navigation .nav-tab { display: block; margin-bottom: 0; padding: calc(var(--gap) / 2); border-left-width: 6px; border-bottom: none; } .about__header-navigation .nav-tab-active { border-bottom: none; border-left-width: 6px; } } /*------------------------------------------------------------------------------ 2.0 - Credits Page ------------------------------------------------------------------------------*/ .about__section .wp-people-group-title { margin-bottom: calc(var(--gap) * 2 - 10px); text-align: center; } .about__section .wp-people-group { margin: 0; display: flex; flex-wrap: wrap; } .about__section .wp-person { display: inline-block; vertical-align: top; box-sizing: border-box; margin-bottom: calc(var(--gap) - 10px); width: 25%; text-align: center; } .about__section .compact .wp-person { height: auto; width: 20%; } .about__section .wp-person-avatar { display: block; margin: 0 auto calc(var(--gap) / 2); width: 140px; height: 140px; border-radius: 100%; overflow: hidden; } .about__section .wp-person .gravatar { width: 140px; height: 140px; filter: grayscale(100%); } .about__section .compact .wp-person-avatar, .about__section .compact .wp-person .gravatar { width: 80px; height: 80px; } .about__section .wp-person .web { display: block; font-size: 1.4em; font-weight: 600; padding: 10px 10px 0; text-decoration: none; } .about__section .wp-person .web:hover { text-decoration: underline; } .about__section .compact .wp-person .web { font-size: 1.2em; } .about__section .wp-person .title { display: block; margin-top: 0.5em; } @media screen and (max-width: 782px) { .about__section .wp-person { width: 33%; } .about__section .compact .wp-person { width: 25%; } .about__section .wp-person-avatar, .about__section .wp-person .gravatar { width: 120px; height: 120px; } } @media screen and (max-width: 600px) { .about__section .wp-person { width: 50%; } .about__section .compact .wp-person { width: 33%; } .about__section .wp-person .web { font-size: 1.2em; } } @media screen and (max-width: 480px) { .about__section .wp-person { min-width: 100%; } .about__section .wp-person .web { font-size: 1em; } .about__section .compact .wp-person .web { font-size: 1em; } } /*------------------------------------------------------------------------------ 3.0 - Freedoms Page ------------------------------------------------------------------------------*/ .about__section .column .freedom-image { margin-bottom: var(--gap); max-height: 180px; } /*------------------------------------------------------------------------------ 4.0 - Privacy Page ------------------------------------------------------------------------------*/ .about__section .column .privacy-image { display: block; margin-left: auto; margin-right: auto; max-width: 25rem; } /*------------------------------------------------------------------------------ x.2.0 - Legacy About Styles: Global ------------------------------------------------------------------------------*/ .about-wrap { position: relative; margin: 25px 40px 0 20px; max-width: 1050px; /* readability */ font-size: 15px; } .about-wrap.full-width-layout { max-width: 1200px; } .about-wrap-content { max-width: 1050px; } .about-wrap div.updated, .about-wrap div.error, .about-wrap .notice { display: none !important; } .about-wrap hr { border: 0; height: 0; margin: 3em 0 0; border-top: 1px solid rgba(0, 0, 0, 0.1); } .about-wrap img { margin: 0; width: 100%; height: auto; vertical-align: middle; } .about-wrap .inline-svg img { max-width: 100%; width: auto; height: auto; } .about-wrap video { margin: 1.5em auto; } /* WordPress Version Badge */ .wp-badge { background: #0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat; background-position: center 25px; background-size: 80px 80px; color: #fff; font-size: 14px; text-align: center; font-weight: 600; margin: 5px 0 0; padding-top: 120px; height: 40px; display: inline-block; width: 140px; text-rendering: optimizeLegibility; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); } .svg .wp-badge { background-image: url(../images/wordpress-logo-white.svg?ver=20160308); } .about-wrap .wp-badge { position: absolute; top: 0; right: 0; } /* Tabs */ .about-wrap .nav-tab { padding-right: 15px; padding-left: 15px; font-size: 18px; line-height: 1.33333333; } /* x.2.1 - Typography */ .about-wrap h1 { margin: 0.2em 200px 0 0; padding: 0; color: #32373c; line-height: 1.2; font-size: 2.8em; font-weight: 400; } .about-wrap h2 { margin: 40px 0 0.6em; font-size: 2.7em; line-height: 1.3; font-weight: 300; text-align: center; } .about-wrap h3 { margin: 1.25em 0 0.6em; font-size: 1.4em; line-height: 1.5; } .about-wrap h4 { font-size: 16px; color: #23282d; } .about-wrap p { line-height: 1.5; font-size: 16px; } .about-wrap code, .about-wrap ol li p { font-size: 14px; font-weight: 400; } .about-wrap figcaption { font-size: 13px; text-align: center; color: white; text-overflow: ellipsis; } .about-wrap .about-description, .about-wrap .about-text { margin-top: 1.4em; font-weight: 400; line-height: 1.6; font-size: 19px; } .about-wrap .about-text { margin: 1em 200px 1em 0; color: #555d66; } /* x.2.2 - Structure */ .about-wrap .has-1-columns, .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: grid; max-width: 800px; margin-top: 40px; margin-left: auto; margin-right: auto; } .about-wrap .column { margin-right: 20px; margin-left: 20px; } .about-wrap .is-wide { max-width: 760px; } .about-wrap .is-fullwidth { max-width: 100%; } .about-wrap .has-1-columns { display: block; max-width: 680px; margin: 0 auto 40px; } .about-wrap .has-2-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-2-columns .column:nth-of-type(2n+1) { grid-column-start: 1; } .about-wrap .has-2-columns .column:nth-of-type(2n) { grid-column-start: 2; } .about-wrap .has-2-columns.is-wider-right { grid-template-columns: 1fr 2fr; } .about-wrap .has-2-columns.is-wider-left { grid-template-columns: 2fr 1fr; } .about-wrap .has-3-columns { grid-template-columns: repeat(3, 1fr); } .about-wrap .has-3-columns .column:nth-of-type(3n+1) { grid-column-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2) { grid-column-start: 2; } .about-wrap .has-3-columns .column:nth-of-type(3n) { grid-column-start: 3; } .about-wrap .has-4-columns { grid-template-columns: repeat(4, 1fr); } .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; } .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 3; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 4; } .about-wrap .column :first-child { margin-top: 0; } .about-wrap .aligncenter { text-align: center; } .about-wrap .alignleft { float: left; margin-right: 40px; } .about-wrap .alignright { float: right; margin-left: 40px; } .about-wrap .is-vertically-aligned-top { align-self: flex-start; } .about-wrap .is-vertically-aligned-center { align-self: center; } .about-wrap .is-vertically-aligned-bottom { align-self: end; } /* x.2.3 - Point Releases */ .about-wrap .point-releases { margin-top: 5px; border-bottom: 1px solid #ddd; } .about-wrap .changelog { margin-bottom: 40px; } .about-wrap .changelog.point-releases h3 { padding-top: 35px; } .about-wrap .changelog.point-releases h3:first-child { padding-top: 7px; } .about-wrap .changelog.feature-section .col { margin-top: 40px; } /*------------------------------------------------------------------------------ x.3.0 - Legacy About Styles: About Page ------------------------------------------------------------------------------*/ /* x.3.1 - Typography */ .about-wrap .lead-description { font-size: 1.5em; text-align: center; } .about-wrap .feature-section p { margin-top: 0.6em; } /* x.3.2 - Structure */ .about-wrap .headline-feature { margin: 0 auto 40px; max-width: 680px; } .about-wrap .headline-feature h2 { margin: 50px 0 0; } .about-wrap .headline-feature img { max-width: 600px; width: 100%; } /* Go to Dashboard Home link */ .about-wrap .return-to-dashboard { margin: 30px 0 0 -5px; font-size: 14px; font-weight: 600; } .about-wrap .return-to-dashboard a { text-decoration: none; padding: 0 5px; } /*------------------------------------------------------------------------------ x.4.0 - Legacy About Styles: Credits & Freedoms Pages ------------------------------------------------------------------------------*/ /* Credits */ .about-wrap h2.wp-people-group { margin: 2.6em 0 1.33em; padding: 0; font-size: 16px; line-height: inherit; font-weight: 600; text-align: left; } .about-wrap .wp-people-group { padding: 0 5px; margin: 0 -15px 0 -5px; } .about-wrap .compact { margin-bottom: 0; } .about-wrap .wp-person { display: inline-block; vertical-align: top; margin-right: 10px; padding-bottom: 15px; height: 70px; width: 280px; } .about-wrap .compact .wp-person { height: auto; width: 180px; padding-bottom: 0; margin-bottom: 0; } .about-wrap .wp-person .gravatar { float: left; margin: 0 10px 10px 0; padding: 1px; width: 60px; height: 60px; } .about-wrap .compact .wp-person .gravatar { width: 30px; height: 30px; } .about-wrap .wp-person .web { margin: 6px 0 2px; font-size: 16px; font-weight: 400; line-height: 2; text-decoration: none; } .about-wrap .wp-person .title { display: block; } .about-wrap #wp-people-group-validators + p.wp-credits-list { margin-top: 0; } .about-wrap p.wp-credits-list a { white-space: nowrap; } /* Freedoms */ .freedoms-php .about-wrap ol { margin: 40px 60px; } .freedoms-php .about-wrap ol li { list-style-type: decimal; font-weight: 600; } .freedoms-php .about-wrap ol p { font-weight: 400; margin: 0.6em 0; } /*------------------------------------------------------------------------------ x.5.0 - Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ @media screen and (max-width: 782px) { .about-wrap .has-3-columns, .about-wrap .has-4-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-3-columns .column:nth-of-type(3n+1), .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2), .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n), .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 1; grid-row-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 2; grid-row-start: 2; } } @media screen and (max-width: 600px) { .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: block; } .about-wrap :not(.is-wider-right):not(.is-wider-left) .column { margin-right: 0; margin-left: 0; } .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: grid; } } @media only screen and (max-width: 500px) { .about-wrap { margin-right: 20px; margin-left: 10px; } .about-wrap h1, .about-wrap .about-text { margin-right: 0; } .about-wrap .about-text { margin-bottom: 0.25em; } .about-wrap .wp-badge { position: relative; margin-bottom: 1.5em; width: 100%; } } @media only screen and (max-width: 480px) { .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: block; } .about-wrap .column { margin-right: 0; margin-left: 0; } .about-wrap .has-2-columns.is-wider-right img, .about-wrap .has-2-columns.is-wider-left img { max-width: 160px; } } css/color-picker.min.css000066600000006176152330733730011245 0ustar00/*! This file is auto-generated */ .wp-color-picker{width:80px;direction:ltr}.wp-picker-container .hidden{display:none}.wp-picker-container .wp-color-result.button{min-height:32px;margin:0 6px 6px 0;padding:0 0 0 30px;font-size:11px}.wp-color-result-text{background:#f6f7f7;border-radius:0 2px 2px 0;border-left:1px solid #c3c4c7;color:#50575e;display:block;line-height:2.72727273;padding:0 6px;text-align:center}.wp-color-result:focus,.wp-color-result:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.wp-color-result:focus:after,.wp-color-result:hover:after{color:#1d2327;border-color:#a7aaad;border-left:1px solid #8c8f94}.wp-picker-container{display:inline-block}.wp-color-result:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.wp-color-result:active{transform:none!important}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-input-wrap label{display:inline-block;vertical-align:top}.form-table .wp-picker-input-wrap label{margin:0!important}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default,.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{margin-left:6px;padding:0 8px;line-height:2.72727273;min-height:32px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#50575e}.wp-picker-container .iris-picker{border-radius:0;border-color:#dcdcde;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:4rem;font-size:12px;font-family:monospace;margin:0;padding:0 5px;vertical-align:top;min-height:32px}.wp-color-picker::-webkit-input-placeholder{color:#646970}.wp-color-picker::-moz-placeholder{color:#646970}.wp-picker-container input[type=text].iris-error{background-color:#fcf0f1;border-color:#d63638;color:#000}.iris-picker .iris-strip .ui-slider-handle:focus,.iris-picker .ui-square-handle:focus{border-color:var(--wp-admin-theme-color,#3858e9);border-style:solid;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.iris-picker .iris-palette:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}@media screen and (max-width:782px){.wp-picker-container input[type=text].wp-color-picker{width:5rem;font-size:16px;line-height:1.875;min-height:32px}.wp-customizer .wp-picker-container input[type=text].wp-color-picker{padding:0 5px}.wp-picker-input-wrap .button.wp-picker-clear,.wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;line-height:2.14285714;min-height:32px}.wp-customizer .wp-picker-input-wrap .button.wp-picker-clear,.wp-customizer .wp-picker-input-wrap .button.wp-picker-default{padding:0 8px;font-size:14px;line-height:2.14285714;min-height:32px}.wp-picker-container .wp-color-result.button{padding:0 0 0 40px;font-size:14px;line-height:2.14285714}.wp-customizer .wp-picker-container .wp-color-result.button{font-size:14px;line-height:2.14285714}.wp-picker-container .wp-color-result-text{padding:0 14px;font-size:inherit;line-height:inherit}.wp-customizer .wp-picker-container .wp-color-result-text{padding:0 10px}}css/nav-menus.min.css000066600000033734152330733730010565 0ustar00/*! This file is auto-generated */ .no-js #message{display:block}ul.add-menu-item-tabs li{padding:3px 5px 4px 8px}.accordion-section ul.add-menu-item-tabs,.accordion-section ul.category-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px;resize:vertical}#nav-menu-meta .button-controls{margin-bottom:0}.has-no-menu-item .button-controls{display:none}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0;height:100%;max-height:inherit}#menu-settings-column .categorydiv,#menu-settings-column .customlinkdiv,#menu-settings-column .posttypediv,#menu-settings-column .taxonomydiv{max-height:inherit;height:100%}#menu-settings-column .categorydiv div.tabs-panel,#menu-settings-column .customlinkdiv div.tabs-panel,#menu-settings-column .posttypediv div.tabs-panel,#menu-settings-column .taxonomydiv div.tabs-panel,#menu-settings-column .wp-tab-panel{max-height:calc(100% - 75px);height:100%}.metabox-holder-disabled .accordion-section-content,.metabox-holder-disabled .accordion-section-title,.metabox-holder-disabled .postbox{opacity:.5}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.is-submenu{color:#50575e;font-style:italic;font-weight:400;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;background:#fff}.manage-menus .selected-menu,.manage-menus .submit-btn,.manage-menus select,.nav-menus-php .add-new-menu-action{display:inline-block;margin-right:3px;vertical-align:middle}.manage-menus select,.menu-location-menus select{max-width:100%}.menu-edit #post-body-content h3{margin:1em 0 10px}#nav-menu-bulk-actions-top{margin:1em 0}#nav-menu-bulk-actions-bottom{margin:1em 0;margin:calc(1em + 9px) 0}.bulk-actions input.button{margin-right:12px}.bulk-select-button{position:relative;display:inline-block;padding:0 10px;font-size:13px;line-height:2.15384615;height:auto;min-height:30px;background:#f6f7f7;vertical-align:top;border:1px solid #dcdcde;margin:0;cursor:pointer;border-radius:3px;white-space:nowrap;box-sizing:border-box}.bulk-selection .bulk-select-button{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}#pending-menu-items-to-delete{display:none}.bulk-selection #pending-menu-items-to-delete{display:block;margin-top:1em}#pending-menu-items-to-delete p{margin-bottom:0}#pending-menu-items-to-delete ul{margin-top:0;list-style:none}#pending-menu-items-to-delete ul li{display:inline}input.bulk-select-switcher+.bulk-select-button-label{vertical-align:inherit}label.bulk-select-button:active,label.bulk-select-button:focus-within,label.bulk-select-button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}input.bulk-select-switcher:focus+.bulk-select-button-label{color:#0a4b78}.bulk-actions input.menu-items-delete{appearance:none;font-size:inherit;border:0;line-height:2.1em;background:0 0;cursor:pointer;text-decoration:underline;color:#b32d2e}.bulk-actions input.menu-items-delete:hover{color:#b32d2e;border:none}.bulk-actions input.menu-items-delete.disabled{display:none}.menu-settings{border-top:1px solid #f0f0f1;margin-top:2em}.menu-settings-group{margin:0 0 10px;padding-left:20%}.menu-settings-group:last-of-type{margin-bottom:0}.menu-settings-input{float:left;margin:0;width:100%}.menu-settings-group-name{float:left;clear:both;width:25%;padding:3px 0 0;margin-left:-25%}.menu-settings label{vertical-align:baseline}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{color:#646970;font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px;border-top:1px solid #fff;border-bottom:1px solid #dcdcde;background:#fff}#nav-menu-footer,#nav-menu-header{padding:0 10px;background:#f6f7f7}#nav-menu-header{border-bottom:1px solid #dcdcde;margin-bottom:0}#nav-menu-header .menu-name-label{display:inline-block;vertical-align:middle;margin-right:7px}.nav-menus-php #post-body div.error,.nav-menus-php #post-body div.updated{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}.nav-menus-php #post-body-content .post-body-plain{margin-bottom:0}#menu-management .menu-add-new abbr{font-weight:600}#select-nav-menu-container{text-align:right;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat .menu-locations .menu-location-title{padding:13px 10px 0}.menu-location-title label{font-weight:600}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-add-menu-link,.locations-edit-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #c3c4c7}#menu-management .inside{padding:0 10px}.postbox .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button-primary.right,.button-secondary.right,.button.right{float:right}.list-controls{float:left}.add-to-menu{float:right}.button-controls{clear:both;margin:10px 0}.hide-all,.show-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px;vertical-align:middle}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.customlinkdiv .menu-item-textbox{width:100%}.nav-menus-php .howto span{float:left;margin-top:6px}.quick-search{width:190px}.quick-search-wrap .spinner{float:none;margin:-3px -10px 0 0}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0 0 5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}.menu-item-title input[type=checkbox]{display:inline-block;margin-top:-4px}.menu-item-title .post-state{font-weight:600}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5;position:relative;margin:9px 0 0}.menu-item-bar .menu-item-handle{border:1px solid #dcdcde;position:relative;padding:10px 15px;height:auto;min-height:20px;max-width:382px;line-height:2.30769230;overflow:hidden;word-wrap:break-word}.menu-item-bar .menu-item-handle:hover{border-color:#8c8f94}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fcf0f1;border-color:#d63638}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;background-color:#f86368}.menu-item-handle .item-title{font-size:13px;font-weight:600;line-height:1.53846153;display:block;margin-right:13em}.menu-item-handle .menu-item-checkbox{display:none}.bulk-selection .menu-item-handle .menu-item-checkbox{display:inline-block;margin-right:6px}.menu-item-handle .menu-item-title.no-title{color:#646970}li.menu-item.ui-sortable-helper .menu-item-bar{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar{margin-top:9px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:9px}.menu-item .menu-item-transport:empty{display:none}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{display:inline-block;padding:12px 16px;color:#646970;font-size:12px;line-height:1.5}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:40px;outline:0}.no-js.nav-menus-php .item-edit{position:static;float:right;width:auto;height:auto;margin:12px -10px 12px 0;padding:0;color:#2271b1;text-decoration:underline;font-size:12px;line-height:1.5}.no-js.nav-menus-php .item-edit .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.nav-menus-php .item-edit:before{margin-top:10px;margin-left:4px;width:20px;border-radius:50%;text-indent:-1px}.no-js.nav-menus-php .item-edit:before{display:none}.rtl .nav-menus-php .item-edit:before{text-indent:1px}.js.nav-menus-php .item-edit:focus{box-shadow:none}.nav-menus-php .item-edit:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;max-width:392px;padding:10px;position:relative;z-index:10;border:1px solid #c3c4c7;border-top:none;box-shadow:0 1px 1px rgba(0,0,0,.04)}.menu-item-settings .field-move{margin:3px 0 5px;line-height:1.5}.field-move-visual-label{float:left;margin-right:4px}.menu-item-settings .field-move .button-link{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em -10px;text-align:center}.add-menu-item-pagelinks .page-numbers{display:inline-block;min-width:20px}.add-menu-item-pagelinks .page-numbers.dots{min-width:0}.link-to-original{display:block;margin:0 0 15px;padding:3px 5px 5px;border:1px solid #dcdcde;color:#646970;font-size:12px}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.description-group{display:flex;column-gap:10px}.description-group>*{flex-grow:1}.menu-item-actions{padding-top:15px;padding-bottom:7px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{padding:10px 0;display:flex;align-items:center}.nav-menus-php .major-publishing-actions>*{margin-right:10px}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px}#menu-item-name-wrap,#menu-item-url-wrap,#nav-menus-frame{display:block}.button-controls{display:flex;align-items:center;justify-content:space-between}.button-controls-customlinkdiv{justify-content:flex-end}@media only screen and (min-width:769px) and (max-width:1000px){body.menu-max-depth-0{min-width:0!important}#menu-management-liquid{width:100%}.nav-menus-php #post-body-content{min-width:0}}@media screen and (max-width:782px){body.nav-menus-php,body.wp-customizer{min-width:0!important}#nav-menus-frame{margin-left:0;float:none;width:100%}#wpbody-content #menu-settings-column{display:block;width:100%;float:none;margin-left:0}#side-sortables .add-menu-item-tabs{margin:15px 0 14px}ul.add-menu-item-tabs li.tabs{padding:13px 15px 14px}.nav-menus-php .customlinkdiv .howto input{width:65%}.nav-menus-php .quick-search{width:85%}#menu-management-liquid{margin-top:25px}.nav-menus-php .menu-name-label.howto span{margin-top:13px}#menu-name{width:100%}.nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action{padding-top:1em}.nav-menus-php .delete-action{font-size:14px;line-height:2.14285714}.menu-item-bar .menu-item-handle,.menu-item-settings{width:auto}.menu-item-settings{padding:10px}.menu-item-settings .description-group{display:block}.menu-item-settings input{width:100%}.menu-item-settings input[type=checkbox],.menu-item-settings input[type=radio]{width:25px}.menu-settings-group{padding-left:0;overflow:visible}.menu-settings-group-name{float:none;width:auto;margin-left:0;margin-bottom:15px}.menu-settings-input{float:none;margin-bottom:15px}.menu-edit .checkbox-input{margin-top:0}.manage-menus select{margin:.5em 0}.wp-core-ui .manage-menus .button{margin-bottom:0}.widefat .menu-locations .menu-location-title{padding-top:16px}}@media only screen and (min-width:783px){@supports (position:sticky) and (scroll-margin-bottom:130px){#nav-menu-footer{position:sticky;bottom:0;z-index:10;box-shadow:0 -1px 0 0 #ddd}#save_menu_header{display:none}}}@media only screen and (max-width:768px){#menu-locations-wrap .widefat{width:100%}.bulk-select-button{padding:5px 10px}}css/login-rtl.css000066600000020143152330733730007767 0ustar00/*! This file is auto-generated */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; min-width: 0; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4; } a { color: var(--wp-admin-theme-color-darker-10); transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a { outline: 0; } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: #043959; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } p { line-height: 1.5; } .login .message, .login .notice, .login .success { border-right: 4px solid #3858e9; padding: 8px 12px; margin-top: 0; margin-right: 0; margin-bottom: 20px; background-color: #fff; word-wrap: break-word; } .login .message p, .login .notice p, .login .success p { font-size: 13px; line-height: 1.54; margin: 0.5em 0; } .login .success { border-right-color: #4ab866; background-color: #eff9f1; } /* Match border color from common.css */ .login .notice-error { border-right-color: #cc1818; background-color: #fcf0f0; } .login .login-error-list { list-style: none; } .login .login-error-list li + li { margin-top: 4px; } #loginform p.submit, .login-action-lostpassword p.submit { border: none; margin: -10px 0 20px; /* May want to revisit this */ } .login * { margin: 0; padding: 0; } .login .input::-ms-clear { display: none; } .login .pw-weak { margin-bottom: 15px; } /* rtl:ignore */ .login .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: normal; width: 2.5rem; height: 2.5rem; min-width: 40px; min-height: 40px; margin: 0; padding: 5px 9px; position: absolute; right: 0; top: 0; } .login .button.wp-hide-pw:hover { background: transparent; } .login .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .login .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } .login .button.wp-hide-pw .dashicons { width: 1.25rem; height: 1.25rem; } .login .wp-pwd { position: relative; } .no-js .hide-if-no-js { display: none; } .login form { margin: 24px 0; padding: 26px 24px; font-weight: 400; overflow: hidden; background: #fff; border: 1px solid #c3c4c7; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); } .login form.shake { animation: shake 0.2s cubic-bezier(.19,.49,.38,.79) both; animation-iteration-count: 3; transform: translateX(0); } @keyframes shake { 25% { transform: translateX(20px); } 75% { transform: translateX(-20px); } 100% { transform: translateX(0); } } @media (prefers-reduced-motion: reduce) { .login form.shake { animation: none; transform: none; } } .login-action-confirm_admin_email #login { width: 60vw; max-width: 650px; margin-top: -2vh; } @media screen and (max-width: 782px) { .login-action-confirm_admin_email #login { box-sizing: border-box; margin-top: 0; padding-right: 4vw; padding-left: 4vw; width: 100vw; } } .login form .forgetmenot { font-weight: 400; float: right; margin-bottom: 0; } .login .button-primary { float: left; } .login .reset-pass-submit { display: flex; flex-flow: row wrap; justify-content: space-between; } .login .reset-pass-submit .button { display: inline-block; float: none; margin-bottom: 6px; } .login .admin-email-confirm-form .submit { text-align: center; } .admin-email__later { text-align: right; } .login form p.admin-email__details { margin: 1.1em 0; } .login .admin-email__heading { border-bottom: 1px #f0f0f1 solid; color: #50575e; font-weight: normal; padding-bottom: 0.5em; text-align: right; } .admin-email__actions div { padding-top: 1.5em; } .login .admin-email__actions .button-primary { float: none; margin-right: 0.25em; margin-left: 0.25em; } #login form p { margin-bottom: 0; } #login form .indicator-hint, #login #reg_passmail { margin-bottom: 16px; } #login form p.submit { margin: 0; padding: 0; } .login label { font-size: 14px; line-height: 1.5; display: inline-block; margin-bottom: 3px; } .login .forgetmenot label, .login .pw-weak label { line-height: 1.5; vertical-align: baseline; } .login h1 { text-align: center; } .login h1 a { background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; height: 84px; font-size: 20px; font-weight: 400; line-height: 1.3; margin: 0 auto 24px; padding: 0; text-decoration: none; width: 84px; text-indent: -9999px; outline: none; overflow: hidden; display: block; } #login { width: 320px; padding: 5% 0 0; margin: auto; } .login #nav, .login #backtoblog { font-size: 13px; padding: 0 24px; } .login #nav { margin: 24px 0 0; } #backtoblog { margin: 16px 0; word-wrap: break-word; } .login #nav a, .login #backtoblog a { text-decoration: none; color: #50575e; } .login #nav a:hover, .login #backtoblog a:hover, .login h1 a:hover { color: var(--wp-admin-theme-color-darker-20); } .login #nav a:focus, .login #backtoblog a:focus, .login h1 a:focus { color: #043959; } .login .privacy-policy-page-link { text-align: center; width: 100%; margin: 3em 0 2em; } .login form .input, .login input[type="text"], .login input[type="password"] { font-size: 24px; line-height: 1.33333333; /* 32px */ width: 100%; border-width: 0.0625rem; padding: 0.1875rem 0.3125rem; /* 3px 5px */ margin: 0 0 16px 6px; min-height: 40px; max-height: none; } .login input.password-input { font-family: Consolas, Monaco, monospace; } /* rtl:ignore */ .js.login input.password-input { padding-right: 2.5rem; } .js.login-action-resetpass input[type="text"], .js.login-action-resetpass input[type="password"], .js.login-action-rp input[type="text"], .js.login-action-rp input[type="password"] { margin-bottom: 0; } .login #pass-strength-result { font-weight: 600; margin: -1px 0 16px 5px; padding: 6px 5px; text-align: center; width: 100%; } body.interim-login { height: auto; } .interim-login #login { padding: 0; margin: 5px auto 20px; } .interim-login.login h1 a { width: auto; } .interim-login #login_error, .interim-login.login .message { margin: 0 0 16px; } .interim-login.login form { margin: 0; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } /* Hide the Edge "reveal password" native button */ input::-ms-reveal { display: none; } #language-switcher { padding: 0; overflow: visible; background: none; border: none; box-shadow: none; } #language-switcher select { margin-left: 0.25em; } .language-switcher { margin: 0 auto; padding: 0 0 24px; text-align: center; } .language-switcher label { margin-left: 0.25em; } .language-switcher label .dashicons { width: auto; height: auto; } .login .language-switcher .button { margin-bottom: 0; } @media screen and (max-height: 550px) { #login { padding: 20px 0; } #language-switcher { margin-top: 0; } } @media screen and (max-width: 782px) { .interim-login input[type=checkbox] { width: 1rem; height: 1rem; } .interim-login input[type=checkbox]:checked:before { width: 1.3125rem; height: 1.3125rem; margin: -0.1875rem -0.25rem 0 0; } #language-switcher label, #language-switcher select { margin-left: 0; } } @media screen and (max-width: 400px) { .login .language-switcher .button { display: block; margin: 5px auto 0; } } css/farbtastic.min.css000066600000001031152330733730010757 0ustar00/*! This file is auto-generated */ .farbtastic{position:relative}.farbtastic *{position:absolute;cursor:crosshair}.farbtastic,.farbtastic .wheel{width:195px;height:195px}.farbtastic .color,.farbtastic .overlay{top:47px;left:47px;width:101px;height:101px}.farbtastic .wheel{background:url(../images/wheel.png) no-repeat;width:195px;height:195px}.farbtastic .overlay{background:url(../images/mask.png) no-repeat}.farbtastic .marker{width:17px;height:17px;margin:-8px 0 0 -8px;overflow:hidden;background:url(../images/marker.png) no-repeat}css/about-rtl.css000066600000067534152330733730010010 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 22.0 - About Pages 1.0 Global: About, Credits, Freedoms, Privacy, Get Involved 1.1 Layout 1.2 Typography & Elements 1.3 Header 2.0 Credits Page 3.0 Freedoms Page 4.0 Privacy Page x.2.0 Legacy About Styles: Global x.2.1 Typography x.2.2 Structure x.2.3 Point Releases x.3.0 Legacy About Styles: About Page x.3.1 Typography x.3.2 Structure x.4.0 Legacy About Styles: Credits & Freedoms Pages x.5.0 Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ .about__container { /* Section backgrounds */ --background: #ebe8e5; --subtle-background: #ebe8e5; /* Main text color */ --text: #1e1e1e; --text-light: #fff; /* Accent colors: used in header, on special classes. */ --accent-1: #3858e9; /* Link color */ --accent-2: #183ad6; /* Accent background */ --accent-3: #ececec; /* hr background */ /* Header background on small screens */ --accent-gradient: linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)/*rtl:linear-gradient(-90deg, #000000 4.7%, var(--accent-1) 83.84%)*/; /* Navigation colors. */ --nav-background: #fff; --nav-border: transparent; --nav-color: var(--text); --nav-current: var(--accent-1); --border-radius: 0.5rem; --gap: 2rem; } /*------------------------------------------------------------------------------ 1.0 - Global: About, Credits, Freedoms, Privacy, Get Involved ------------------------------------------------------------------------------*/ .about-php, .credits-php, .freedoms-php, .privacy-php, .contribute-php { background: #fff; } .about-php #wpcontent, .credits-php #wpcontent, .freedoms-php #wpcontent, .privacy-php #wpcontent, .contribute-php #wpcontent { background: #fff; padding: 0 24px; } @media screen and (max-width: 782px) { .about-php.auto-fold #wpcontent, .credits-php.auto-fold #wpcontent, .freedoms-php.auto-fold #wpcontent, .privacy-php.auto-fold #wpcontent, .contribute-php.auto-fold #wpcontent { padding-right: 24px; } } .about__container { max-width: 1000px; margin: 24px auto; clear: both; } .about__container .alignleft { float: right; } .about__container .alignright { float: left; } .about__container .aligncenter { text-align: center; } .about__container .is-vertically-aligned-top { align-self: start; } .about__container .is-vertically-aligned-center { align-self: center; } .about__container .is-vertically-aligned-bottom { align-self: end; } .about__section { background: transparent; clear: both; } .about__container .has-accent-background-color { color: var(--text-light); background-color: var(--accent-2); } .about__container .has-transparent-background-color { background-color: transparent; } .about__container .has-accent-color { color: var(--accent-2); } .about__container .has-border { border: 3px solid currentColor; } .about__container .has-subtle-background-color { background-color: var(--subtle-background); border-radius: var(--border-radius); } .about__container .has-background-image { background-size: contain; background-repeat: no-repeat; background-position: center; } /* 1.1 - Layout */ .about__section { margin: 0; } .about__section .column:not(.is-edge-to-edge) { padding: var(--gap); } .about__section .column.is-left-padding-zero { padding-right: 0; } .about__section .column.is-right-padding-zero { padding-left: 0; } .about__section + .about__section .is-section-header { padding-bottom: var(--gap); } .about__section .column[class*="background-color"]:not(.is-edge-to-edge), .about__section:where([class*="background-color"]) .column:not(.is-edge-to-edge), .about__section .column.has-border:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section .column p:first-of-type { margin-top: 0; } .about__section .column p:last-of-type { margin-bottom: 0; } .about__section .has-text-columns { columns: 2; column-gap: calc(var(--gap) * 2); } .about__section .is-section-header { margin-bottom: 0; padding: var(--gap) var(--gap) 0; } .about__section .is-section-header p:last-child { margin-bottom: 0; } /* Section header is alone in a container. */ .about__section .is-section-header:first-child:last-child { padding: 0; } .about__section.is-feature { padding: var(--gap); } .about__section.is-feature p { margin: 0; } .about__section.is-feature p + p { margin-top: calc(var(--gap) / 2); } .about__section.has-1-column { margin-right: auto; margin-left: auto; max-width: 36em; } .about__section.has-2-columns, .about__section.has-3-columns, .about__section.has-4-columns, .about__section.has-overlap-style { display: grid; } .about__section.has-gutters { gap: var(--gap); margin-bottom: var(--gap); } .about__section.has-2-columns { grid-template-columns: 1fr 1fr; } .about__section.has-2-columns.is-wider-right { grid-template-columns: 2fr 3fr; } .about__section.has-2-columns.is-wider-left { grid-template-columns: 3fr 2fr; } .about__section .is-section-header { grid-column-start: 1; grid-column-end: -1; } .about__section.has-3-columns { grid-template-columns: repeat(3, 1fr); } .about__section.has-4-columns { grid-template-columns: repeat(4, 1fr); } .about__section.has-overlap-style { grid-template-columns: repeat(7, 1fr); } .about__section.has-overlap-style .column { grid-row-start: 1; } .about__section.has-overlap-style .column:nth-of-type(2n+1) { grid-column-start: 2; grid-column-end: span 3; } .about__section.has-overlap-style .column:nth-of-type(2n) { grid-column-start: 4; grid-column-end: span 3; } .about__section.has-overlap-style .column.is-top-layer { z-index: 1; } @media screen and (max-width: 782px) { .about__section.has-2-columns.is-wider-right, .about__section.has-2-columns.is-wider-left, .about__section.has-3-columns { display: block; margin-bottom: calc(var(--gap) / 2); } .about__section .column:not(.is-edge-to-edge) { padding-top: var(--gap); padding-bottom: var(--gap); } .about__section.has-2-columns.has-gutters.is-wider-right, .about__section.has-2-columns.has-gutters.is-wider-left, .about__section.has-3-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column, .about__section.has-2-columns.has-gutters .column, .about__section.has-3-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-2-columns.has-gutters .column:last-child, .about__section.has-3-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-3-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns { grid-template-columns: repeat(2, 1fr); } .about__section.has-overlap-style { grid-template-columns: 1fr; } /* At this size, the two columns fully overlap */ .about__section.has-overlap-style .column.column { grid-column-start: 1; grid-column-end: 2; grid-row-start: 1; grid-row-end: 2; } } @media screen and (max-width: 600px) { .about__section.has-2-columns { display: block; margin-bottom: var(--gap); } .about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } .about__section.has-2-columns.has-gutters { margin-bottom: calc(var(--gap) * 2); } .about__section.has-2-columns.has-gutters .column { margin-bottom: var(--gap); } .about__section.has-2-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section .column.is-left-padding-zero { padding-left: 0; } .about__section .column.is-right-padding-zero { padding-right: 0; } } @media screen and (max-width: 480px) { .about__section.is-feature .column, .about__section .is-section-header { padding: 0; } .about__section.has-4-columns { display: block; padding-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column { margin-bottom: calc(var(--gap) / 2); } .about__section.has-4-columns.has-gutters .column:last-child { margin-bottom: 0; } .about__section.has-4-columns .column:nth-of-type(n) { padding-top: calc(var(--gap) / 2); padding-bottom: calc(var(--gap) / 2); } } /* 1.2 - Typography & Elements */ .about__container { line-height: 1.4; color: var(--text); } .about__container h1 { padding: 0; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 2rem; font-weight: 700; line-height: 1.16; } .about__container h3, .about__container h1.is-smaller-heading, .about__container h2.is-smaller-heading { margin-top: 0; margin-bottom: calc(0.5 * var(--gap)); font-size: 1.625rem; font-weight: 700; line-height: 1.4; } .about__container h4, .about__container h3.is-smaller-heading { margin-top: 0; font-size: 1.125rem; font-weight: 600; line-height: 1.6; } .about__container h1, .about__container h2, .about__container h3, .about__container h4 { text-wrap: pretty; color: inherit; } .about__container :is(h1, h2, h3, h4, .about__header-text):lang(en) { text-wrap: balance; } .about__container p { text-wrap: pretty; } .about__container p { font-size: inherit; line-height: inherit; } .about__container p.is-subheading { margin-top: 0; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 300; line-height: 160%; } .about__section a { color: var(--accent-1); text-decoration: underline; } .about__section a:hover, .about__section a:active, .about__section a:focus { color: var(--accent-1); text-decoration: none; } .wp-credits-list a { text-decoration: none; } .wp-credits-list a:hover, .wp-credits-list a:active, .wp-credits-list a:focus { text-decoration: underline; } .about__section a.button.button-hero { padding-top: 1.1875rem; padding-bottom: 1.1875rem; font-size: 1.5rem; line-height: 1.4; white-space: normal; text-wrap: pretty; } .about__container ul { list-style: disc; margin-right: calc(var(--gap) / 2); } .about__container li { margin-bottom: 0.5rem; } .about__container img { margin: 0; max-width: 100%; vertical-align: middle; } .about__container .about__image { margin: 0; } .about__container .about__image img { max-width: 100%; width: 100%; height: auto; border-radius: var(--border-radius); } .about__container .about__image figcaption { margin-top: 0.5em; text-align: center; } .about__container .about__image .wp-video { margin-right: auto; margin-left: auto; } .about__container .about__image svg { vertical-align: middle; } .about__container .about__image + h3 { margin-top: calc(0.75 * var(--gap)); } .about__container hr { margin: calc(var(--gap) / 2) var(--gap); height: 0; border: none; border-top: 4px solid var(--accent-3); } .about__container hr.is-small { margin-top: 0; margin-bottom: 0; } .about__container hr.is-large { margin: var(--gap) auto; } .about__container hr.is-invisible { border: none; } .about__container div.updated, .about__container div.error, .about__container .notice { display: none !important; } .about__container code { font-size: inherit; } .about__section { font-size: 1.125rem; line-height: 1.55; } .about__section.is-feature { font-size: 1.6em; } .about__section.has-3-columns, .about__section.has-4-columns { font-size: 1rem; } @media screen and (max-width: 480px) { .about__section.is-feature { font-size: 1.4em; } .about__container h1, .about__container h2, .about__container h3.is-larger-heading { font-size: 2em; } } /* 1.3 - Header */ .about__header { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; box-sizing: border-box; padding: calc(var(--gap) * 1.5); padding-left: 26rem; /* Space for the background image. */ min-height: clamp(10rem, 25vw, 18.75rem); border-radius: var(--border-radius); background-image: url( "../images/about-header-default.webp?ver=20260514" ); background-repeat: no-repeat; background-position: left center; background-size: cover; background-color: var(--background); color: var(--text-light); } .credits-php .about__header { background-image: url( "../images/about-header-credits.webp?ver=20260514" ); } .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms.webp?ver=20260514" ); } .privacy-php .about__header { background-image: url( "../images/about-header-privacy.webp?ver=20260514" ); } .contribute-php .about__header { background-image: url( "../images/about-header-get-involved.webp?ver=20260514" ); } [dir="rtl"] .about__header { background-image: url( "../images/about-header-default-rtl.webp?ver=20260514" ); } [dir="rtl"] .credits-php .about__header { background-image: url( "../images/about-header-credits-rtl.webp?ver=20260514" ); } [dir="rtl"] .freedoms-php .about__header { background-image: url( "../images/about-header-freedoms-rtl.webp?ver=20260514" ); } [dir="rtl"] .privacy-php .about__header { background-image: url( "../images/about-header-privacy-rtl.webp?ver=20260514" ); } [dir="rtl"] .contribute-php .about__header { background-image: url( "../images/about-header-get-involved-rtl.webp?ver=20260514" ); } .about__header-image { margin: 0 0 calc(var(--gap) * 1.5); } .about__header-title { box-sizing: border-box; margin: 0; padding: 0; } .about__header-title h1 { margin: 0; padding: 0; /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); line-height: 1; font-weight: 600; color: var(--text); } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 960px - 1200px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-text { box-sizing: border-box; max-width: 26em; margin: 1rem 0 0; padding: 0; font-size: 1.6rem; line-height: 1.15; color: var(--text); } .about__header-navigation { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: space-between; padding-top: 0; margin-bottom: var(--gap); background: var(--nav-background); color: var(--nav-color); border-bottom: 3px solid var(--nav-border); } .about__header-navigation::after { display: none; } .about__header-navigation .nav-tab { margin-right: 0; padding: calc(var(--gap) * 0.75) var(--gap); float: none; font-size: 1.4em; line-height: 1; border-width: 0 0 3px; border-style: solid; border-color: transparent; background: transparent; color: inherit; } .about__header-navigation .nav-tab:hover, .about__header-navigation .nav-tab:active { background-color: var(--nav-current); color: var(--text-light); border-radius: var(--border-radius); } .about__header-navigation .nav-tab-active { margin-bottom: -3px; color: var(--nav-current); border-width: 0 0 6px; border-color: var(--nav-current); } .about__header-navigation .nav-tab-active:hover, .about__header-navigation .nav-tab-active:active { background-color: var(--nav-current); color: var(--text-light); border-color: var(--nav-current); border-radius: var(--border-radius); } @media screen and (max-width: 960px) { .about__header { padding-left: 21rem; } .about-php .about__header-title h1, .credits-php .about__header-title h1, .freedoms-php .about__header-title h1, .privacy-php .about__header-title h1, .contribute-php .about__header-title h1 { /* Fluid font size scales on browser size 600px - 960px. */ font-size: clamp(2rem, 20vw - 9rem, 4rem); } .about__header-navigation .nav-tab { padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5); } } @media screen and (max-width: 782px) { .about__container .about__header-text { font-size: 1.4em; } .about__header-container { display: block; } .about__header { padding: var(--gap); padding-left: 17rem; } .about__header-text { margin-top: 0.5rem; } .about__header-navigation .nav-tab { margin-top: 0; margin-left: 0; font-size: 1.2em; } } @media screen and (max-width: 600px) { .about__header { min-height: auto; padding-left: var(--gap); } .about__header-navigation { display: block; } .about__header-navigation .nav-tab { display: block; margin-bottom: 0; padding: calc(var(--gap) / 2); border-right-width: 6px; border-bottom: none; } .about__header-navigation .nav-tab-active { border-bottom: none; border-right-width: 6px; } } /*------------------------------------------------------------------------------ 2.0 - Credits Page ------------------------------------------------------------------------------*/ .about__section .wp-people-group-title { margin-bottom: calc(var(--gap) * 2 - 10px); text-align: center; } .about__section .wp-people-group { margin: 0; display: flex; flex-wrap: wrap; } .about__section .wp-person { display: inline-block; vertical-align: top; box-sizing: border-box; margin-bottom: calc(var(--gap) - 10px); width: 25%; text-align: center; } .about__section .compact .wp-person { height: auto; width: 20%; } .about__section .wp-person-avatar { display: block; margin: 0 auto calc(var(--gap) / 2); width: 140px; height: 140px; border-radius: 100%; overflow: hidden; } .about__section .wp-person .gravatar { width: 140px; height: 140px; filter: grayscale(100%); } .about__section .compact .wp-person-avatar, .about__section .compact .wp-person .gravatar { width: 80px; height: 80px; } .about__section .wp-person .web { display: block; font-size: 1.4em; font-weight: 600; padding: 10px 10px 0; text-decoration: none; } .about__section .wp-person .web:hover { text-decoration: underline; } .about__section .compact .wp-person .web { font-size: 1.2em; } .about__section .wp-person .title { display: block; margin-top: 0.5em; } @media screen and (max-width: 782px) { .about__section .wp-person { width: 33%; } .about__section .compact .wp-person { width: 25%; } .about__section .wp-person-avatar, .about__section .wp-person .gravatar { width: 120px; height: 120px; } } @media screen and (max-width: 600px) { .about__section .wp-person { width: 50%; } .about__section .compact .wp-person { width: 33%; } .about__section .wp-person .web { font-size: 1.2em; } } @media screen and (max-width: 480px) { .about__section .wp-person { min-width: 100%; } .about__section .wp-person .web { font-size: 1em; } .about__section .compact .wp-person .web { font-size: 1em; } } /*------------------------------------------------------------------------------ 3.0 - Freedoms Page ------------------------------------------------------------------------------*/ .about__section .column .freedom-image { margin-bottom: var(--gap); max-height: 180px; } /*------------------------------------------------------------------------------ 4.0 - Privacy Page ------------------------------------------------------------------------------*/ .about__section .column .privacy-image { display: block; margin-right: auto; margin-left: auto; max-width: 25rem; } /*------------------------------------------------------------------------------ x.2.0 - Legacy About Styles: Global ------------------------------------------------------------------------------*/ .about-wrap { position: relative; margin: 25px 20px 0 40px; max-width: 1050px; /* readability */ font-size: 15px; } .about-wrap.full-width-layout { max-width: 1200px; } .about-wrap-content { max-width: 1050px; } .about-wrap div.updated, .about-wrap div.error, .about-wrap .notice { display: none !important; } .about-wrap hr { border: 0; height: 0; margin: 3em 0 0; border-top: 1px solid rgba(0, 0, 0, 0.1); } .about-wrap img { margin: 0; width: 100%; height: auto; vertical-align: middle; } .about-wrap .inline-svg img { max-width: 100%; width: auto; height: auto; } .about-wrap video { margin: 1.5em auto; } /* WordPress Version Badge */ .wp-badge { background: #0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat; background-position: center 25px; background-size: 80px 80px; color: #fff; font-size: 14px; text-align: center; font-weight: 600; margin: 5px 0 0; padding-top: 120px; height: 40px; display: inline-block; width: 140px; text-rendering: optimizeLegibility; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); } .svg .wp-badge { background-image: url(../images/wordpress-logo-white.svg?ver=20160308); } .about-wrap .wp-badge { position: absolute; top: 0; left: 0; } /* Tabs */ .about-wrap .nav-tab { padding-left: 15px; padding-right: 15px; font-size: 18px; line-height: 1.33333333; } /* x.2.1 - Typography */ .about-wrap h1 { margin: 0.2em 0 0 200px; padding: 0; color: #32373c; line-height: 1.2; font-size: 2.8em; font-weight: 400; } .about-wrap h2 { margin: 40px 0 0.6em; font-size: 2.7em; line-height: 1.3; font-weight: 300; text-align: center; } .about-wrap h3 { margin: 1.25em 0 0.6em; font-size: 1.4em; line-height: 1.5; } .about-wrap h4 { font-size: 16px; color: #23282d; } .about-wrap p { line-height: 1.5; font-size: 16px; } .about-wrap code, .about-wrap ol li p { font-size: 14px; font-weight: 400; } .about-wrap figcaption { font-size: 13px; text-align: center; color: white; text-overflow: ellipsis; } .about-wrap .about-description, .about-wrap .about-text { margin-top: 1.4em; font-weight: 400; line-height: 1.6; font-size: 19px; } .about-wrap .about-text { margin: 1em 0 1em 200px; color: #555d66; } /* x.2.2 - Structure */ .about-wrap .has-1-columns, .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: grid; max-width: 800px; margin-top: 40px; margin-right: auto; margin-left: auto; } .about-wrap .column { margin-left: 20px; margin-right: 20px; } .about-wrap .is-wide { max-width: 760px; } .about-wrap .is-fullwidth { max-width: 100%; } .about-wrap .has-1-columns { display: block; max-width: 680px; margin: 0 auto 40px; } .about-wrap .has-2-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-2-columns .column:nth-of-type(2n+1) { grid-column-start: 1; } .about-wrap .has-2-columns .column:nth-of-type(2n) { grid-column-start: 2; } .about-wrap .has-2-columns.is-wider-right { grid-template-columns: 1fr 2fr; } .about-wrap .has-2-columns.is-wider-left { grid-template-columns: 2fr 1fr; } .about-wrap .has-3-columns { grid-template-columns: repeat(3, 1fr); } .about-wrap .has-3-columns .column:nth-of-type(3n+1) { grid-column-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2) { grid-column-start: 2; } .about-wrap .has-3-columns .column:nth-of-type(3n) { grid-column-start: 3; } .about-wrap .has-4-columns { grid-template-columns: repeat(4, 1fr); } .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; } .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 3; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 4; } .about-wrap .column :first-child { margin-top: 0; } .about-wrap .aligncenter { text-align: center; } .about-wrap .alignleft { float: right; margin-left: 40px; } .about-wrap .alignright { float: left; margin-right: 40px; } .about-wrap .is-vertically-aligned-top { align-self: flex-start; } .about-wrap .is-vertically-aligned-center { align-self: center; } .about-wrap .is-vertically-aligned-bottom { align-self: end; } /* x.2.3 - Point Releases */ .about-wrap .point-releases { margin-top: 5px; border-bottom: 1px solid #ddd; } .about-wrap .changelog { margin-bottom: 40px; } .about-wrap .changelog.point-releases h3 { padding-top: 35px; } .about-wrap .changelog.point-releases h3:first-child { padding-top: 7px; } .about-wrap .changelog.feature-section .col { margin-top: 40px; } /*------------------------------------------------------------------------------ x.3.0 - Legacy About Styles: About Page ------------------------------------------------------------------------------*/ /* x.3.1 - Typography */ .about-wrap .lead-description { font-size: 1.5em; text-align: center; } .about-wrap .feature-section p { margin-top: 0.6em; } /* x.3.2 - Structure */ .about-wrap .headline-feature { margin: 0 auto 40px; max-width: 680px; } .about-wrap .headline-feature h2 { margin: 50px 0 0; } .about-wrap .headline-feature img { max-width: 600px; width: 100%; } /* Go to Dashboard Home link */ .about-wrap .return-to-dashboard { margin: 30px -5px 0 0; font-size: 14px; font-weight: 600; } .about-wrap .return-to-dashboard a { text-decoration: none; padding: 0 5px; } /*------------------------------------------------------------------------------ x.4.0 - Legacy About Styles: Credits & Freedoms Pages ------------------------------------------------------------------------------*/ /* Credits */ .about-wrap h2.wp-people-group { margin: 2.6em 0 1.33em; padding: 0; font-size: 16px; line-height: inherit; font-weight: 600; text-align: right; } .about-wrap .wp-people-group { padding: 0 5px; margin: 0 -5px 0 -15px; } .about-wrap .compact { margin-bottom: 0; } .about-wrap .wp-person { display: inline-block; vertical-align: top; margin-left: 10px; padding-bottom: 15px; height: 70px; width: 280px; } .about-wrap .compact .wp-person { height: auto; width: 180px; padding-bottom: 0; margin-bottom: 0; } .about-wrap .wp-person .gravatar { float: right; margin: 0 0 10px 10px; padding: 1px; width: 60px; height: 60px; } .about-wrap .compact .wp-person .gravatar { width: 30px; height: 30px; } .about-wrap .wp-person .web { margin: 6px 0 2px; font-size: 16px; font-weight: 400; line-height: 2; text-decoration: none; } .about-wrap .wp-person .title { display: block; } .about-wrap #wp-people-group-validators + p.wp-credits-list { margin-top: 0; } .about-wrap p.wp-credits-list a { white-space: nowrap; } /* Freedoms */ .freedoms-php .about-wrap ol { margin: 40px 60px; } .freedoms-php .about-wrap ol li { list-style-type: decimal; font-weight: 600; } .freedoms-php .about-wrap ol p { font-weight: 400; margin: 0.6em 0; } /*------------------------------------------------------------------------------ x.5.0 - Legacy About Styles: Media Queries ------------------------------------------------------------------------------*/ @media screen and (max-width: 782px) { .about-wrap .has-3-columns, .about-wrap .has-4-columns { grid-template-columns: 1fr 1fr; } .about-wrap .has-3-columns .column:nth-of-type(3n+1), .about-wrap .has-4-columns .column:nth-of-type(4n+1) { grid-column-start: 1; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n+2), .about-wrap .has-4-columns .column:nth-of-type(4n+2) { grid-column-start: 2; grid-row-start: 1; } .about-wrap .has-3-columns .column:nth-of-type(3n), .about-wrap .has-4-columns .column:nth-of-type(4n+3) { grid-column-start: 1; grid-row-start: 2; } .about-wrap .has-4-columns .column:nth-of-type(4n) { grid-column-start: 2; grid-row-start: 2; } } @media screen and (max-width: 600px) { .about-wrap .has-2-columns, .about-wrap .has-3-columns, .about-wrap .has-4-columns { display: block; } .about-wrap :not(.is-wider-right):not(.is-wider-left) .column { margin-left: 0; margin-right: 0; } .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: grid; } } @media only screen and (max-width: 500px) { .about-wrap { margin-left: 20px; margin-right: 10px; } .about-wrap h1, .about-wrap .about-text { margin-left: 0; } .about-wrap .about-text { margin-bottom: 0.25em; } .about-wrap .wp-badge { position: relative; margin-bottom: 1.5em; width: 100%; } } @media only screen and (max-width: 480px) { .about-wrap .has-2-columns.is-wider-right, .about-wrap .has-2-columns.is-wider-left { display: block; } .about-wrap .column { margin-left: 0; margin-right: 0; } .about-wrap .has-2-columns.is-wider-right img, .about-wrap .has-2-columns.is-wider-left img { max-width: 160px; } } css/media-rtl.css000066600000067357152330733730007760 0ustar00/*! This file is auto-generated */ /*------------------------------------------------------------------------------ 14.0 - Media Screen ------------------------------------------------------------------------------*/ .media-item .describe { border-collapse: collapse; width: 100%; border-top: 1px solid #dcdcde; clear: both; cursor: default; } .media-item.media-blank .describe { border: 0; } .media-item .describe th { vertical-align: top; text-align: right; padding: 5px 10px 10px; width: 140px; } .media-item .describe .align th { padding-top: 0; } .media-item .media-item-info tr { background-color: transparent; } .media-item .describe td { padding: 0 0 8px 8px; vertical-align: top; } .media-item thead.media-item-info td { padding: 4px 10px 0; } .media-item .media-item-info .A1B1 { padding: 0 10px 0 0; } .media-item td.savesend { padding-bottom: 15px; } .media-item .thumbnail { max-height: 128px; max-width: 128px; } .media-list-subtitle { display: block; } .media-list-title { display: block; } #wpbody-content #async-upload-wrap a { display: none; } .media-upload-form { margin-top: 20px; } .media-upload-form td label { margin-left: 6px; margin-right: 2px; } .media-upload-form .align .field label { display: inline; padding: 0 23px 0 0; margin: 0 3px 0 1em; font-weight: 600; } .media-upload-form tr.image-size label { margin: 0 5px 0 0; font-weight: 600; } .media-upload-form th.label label { font-weight: 600; margin: 0.5em; font-size: 13px; } .media-upload-form th.label label span { padding: 0 5px; } .media-item .describe input[type="text"], .media-item .describe textarea { width: 460px; } .media-item .describe p.help { margin: 0; padding: 0 5px 0 0; } .describe-toggle-on, .describe-toggle-off { display: block; line-height: 2.76923076; float: left; margin-left: 10px; } .media-item .attachment-tools { display: flex; align-items: center; } .media-item .edit-attachment { padding: 14px 0; display: block; margin-left: 10px; } .media-item .edit-attachment.copy-to-clipboard-container { display: flex; margin-top: 0; } .media-item-copy-container .success { line-height: 0; } .media-item button .copy-attachment-url { margin-top: 14px; } .media-item .copy-to-clipboard-container { margin-top: 7px; } .media-item .describe-toggle-off, .media-item.open .describe-toggle-on { display: none; } .media-item.open .describe-toggle-off { display: block; } .media-upload-form .media-item { min-height: 70px; margin-bottom: 1px; position: relative; width: 100%; background: #fff; } .media-upload-form .media-item, .media-upload-form .media-item .error { box-shadow: 0 1px 0 #dcdcde; } #media-items:empty { border: 0 none; } .media-item .filename { padding: 14px 2px; overflow: hidden; margin-right: 4px; } .media-item .pinkynail { float: right; margin: 14px; max-height: 70px; max-width: 70px; } .media-item .startopen, .media-item .startclosed { display: none; } .media-item .progress { display: inline-block; height: 22px; margin: 0 6px 7px; width: 200px; line-height: 2em; padding: 0; overflow: hidden; border-radius: 22px; background: #dcdcde; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .media-item .bar { z-index: 9; width: 0; height: 100%; margin-top: -22px; border-radius: 22px; background-color: #2271b1; box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3); } .media-item .progress .percent { z-index: 10; position: relative; width: 200px; padding: 0; color: #fff; text-align: center; line-height: 22px; font-weight: 400; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } .upload-php .fixed .column-parent { width: 15%; } .js .html-uploader #plupload-upload-ui { display: none; } .js .html-uploader #html-upload-ui { display: block; } #html-upload-ui #async-upload { font-size: 1em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { width: auto; margin: 0 0 1px; } .media-upload-form .media-item .error { padding: 10px 14px 10px 0; min-height: 50px; } .media-item .error-div button.dismiss { float: left; margin: 0 15px 0 10px; } /*------------------------------------------------------------------------------ 14.1 - Media Library ------------------------------------------------------------------------------*/ .find-box { background-color: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); width: 600px; overflow: hidden; margin-right: -300px; position: fixed; top: 30px; bottom: 30px; right: 50%; z-index: 100105; } .find-box-head { background: #fff; border-bottom: 1px solid #dcdcde; height: 36px; font-size: 18px; font-weight: 600; line-height: 2; padding: 0 16px 0 36px; position: absolute; top: 0; right: 0; left: 0; } .find-box-inside { overflow: auto; padding: 16px; background-color: #fff; position: absolute; top: 37px; bottom: 45px; overflow-y: scroll; width: 100%; box-sizing: border-box; } .find-box-search { padding-bottom: 16px; } .find-box-search .spinner { float: none; right: 105px; position: absolute; } .find-box-search, #find-posts-response { position: relative; /* RTL fix, #WP28010 */ } #find-posts-input, #find-posts-search { float: right; } #find-posts-input { width: 140px; height: 28px; margin: 0 0 0 4px; } .widefat .found-radio { padding-left: 0; width: 16px; } #find-posts-close { width: 36px; height: 36px; border: none; padding: 0; position: absolute; top: 0; left: 0; cursor: pointer; text-align: center; background: none; color: #646970; } #find-posts-close:hover, #find-posts-close:focus { color: var(--wp-admin-theme-color-darker-20, #183ad6); } #find-posts-close:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } #find-posts-close:before { font: normal 20px/36px dashicons; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: "\f158"; content: "\f158" / ''; } .find-box-buttons { padding: 8px 16px; background: #fff; border-top: 1px solid #dcdcde; position: absolute; bottom: 0; right: 0; left: 0; } @media screen and (max-width: 782px) { .find-box-inside { bottom: 57px; } #delete_all { margin-bottom: 0; } } @media screen and (max-width: 660px) { .find-box { top: 0; bottom: 0; right: 0; left: 0; margin: 0; width: 100%; } } .ui-find-overlay { position: fixed; top: 0; right: 0; left: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 100100; } .drag-drop #drag-drop-area { border: 4px dashed #c3c4c7; height: 200px; } .drag-drop .drag-drop-inside { margin: 60px auto 0; width: 250px; } .drag-drop-inside p { font-size: 14px; margin: 5px 0; display: none; } .drag-drop .drag-drop-inside p { text-align: center; } .drag-drop-inside p.drag-drop-info { font-size: 20px; } .drag-drop .drag-drop-inside p, .drag-drop-inside p.drag-drop-buttons { display: block; } /* #drag-drop-area:-moz-drag-over { border-color: #83b4d8; } border color while dragging a file over the uploader drop area */ .drag-drop.drag-over #drag-drop-area { border-color: #9ec2e6; } #plupload-upload-ui { position: relative; } .post-type-attachment .wp-filter select { margin: 0 0 0 6px; } /** * Media Library grid view */ .media-frame.mode-grid, .media-frame.mode-grid .media-frame-content, .media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments, .media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper, .media-frame.mode-grid .uploader-inline-content { position: static; } /* Regions we don't use at all */ .media-frame.mode-grid .media-frame-title, .media-frame.mode-grid .media-frame-router, .media-frame.mode-grid .media-frame-menu { display: none; } .media-frame.mode-grid .media-frame-content { background-color: transparent; border: none; } .upload-php .mode-grid .media-sidebar { position: relative; width: auto; margin-top: 12px; padding: 0 16px; border-right: 4px solid #d63638; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); background-color: #fff; } .upload-php .mode-grid .hide-sidebar .media-sidebar { display: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status { border-bottom: none; padding-bottom: 0; max-width: 100%; } .upload-php .mode-grid .media-sidebar .upload-error { margin: 12px 0; padding: 4px 0 0; border: none; box-shadow: none; background: none; } .upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2 { display: none; } .media-frame.mode-grid .uploader-inline { position: relative; top: auto; left: auto; right: auto; bottom: auto; padding-top: 0; margin-top: 20px; border: 4px dashed #c3c4c7; } .media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments, .media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper { position: relative; top: 94px; /* prevent jumping up when the toolbar becomes fixed */ padding-bottom: 94px; /* offset for above so the bottom doesn't get cut off */ } .media-frame.mode-grid .attachment:focus, .media-frame.mode-grid .selected.attachment:focus, .media-frame.mode-grid .attachment.details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -6px; } .media-frame.mode-grid .selected.attachment { box-shadow: inset 0 0 0 5px #f0f0f1, inset 0 0 0 7px #c3c4c7; } .media-frame.mode-grid .attachment.details { box-shadow: inset 0 0 0 3px #f0f0f1, inset 0 0 0 7px var(--wp-admin-theme-color, #3858e9); } .media-frame.mode-grid.mode-select .attachment .thumbnail { opacity: 0.65; } .media-frame.mode-select .attachment.selected .thumbnail { opacity: 1; } .media-frame.mode-grid .media-toolbar { margin-bottom: 15px; height: auto; } .media-frame.mode-grid .media-toolbar label:not(.media-search-input-label) { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .media-frame.mode-grid .media-toolbar select { margin: 0 0 0 10px; min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 8px 0 24px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 32px; padding: 0 8px; } .media-frame.mode-grid .media-toolbar-secondary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; } .media-frame.mode-grid.mode-edit .media-toolbar-secondary > .select-mode-toggle-button { margin: 0 0 0 8px; height: 100%; } .media-frame.mode-grid .attachments-browser .bulk-select { display: inline-block; margin: 0 0 0 10px; } .media-frame.mode-grid .search { margin-top: 0; } .media-frame-content .media-search-input-label { vertical-align: baseline; } .attachments-browser .media-toolbar-secondary > .media-button { margin-left: 10px; } .media-frame.mode-select .attachments-browser.fixed .media-toolbar { position: fixed; top: 32px; right: auto; left: 20px; margin-top: 0; } .media-frame.mode-grid .attachments-browser { padding: 0; } .media-frame.mode-grid .attachments-browser .attachments { padding: 2px; } .media-frame.mode-grid .attachments-browser .no-media { color: #646970; /* same as no plugins and no themes */ font-size: 18px; font-style: normal; margin: 0; padding: 100px 0 0; text-align: center; } /** * Attachment details modal */ .edit-attachment-frame { display: block; height: 100%; width: 100%; } .edit-attachment-frame .edit-media-header { overflow: hidden; } .upload-php .media-modal-close .media-modal-icon:before { content: "\f335"; content: "\f335" / ''; font-size: 22px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { cursor: pointer; color: #787c82; background-color: transparent; height: 50px; width: 50px; padding: 0; position: absolute; text-align: center; border: 0; border-right: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .upload-php .media-modal-close { top: 0; left: 0; } .edit-attachment-frame .edit-media-header .left { left: 102px; } .edit-attachment-frame .edit-media-header .right { left: 51px; } .edit-attachment-frame .media-frame-title { right: 0; left: 150px; /* leave space for prev/next/close */ } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .upload-php .media-modal-close:hover, .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:hover, .edit-attachment-frame .edit-media-header .right:hover, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .upload-php .media-modal-close:focus, .edit-attachment-frame .edit-media-header .left:focus, .edit-attachment-frame .edit-media-header .right:focus { /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .upload-php .media-modal-close:focus .media-modal-icon:before, .upload-php .media-modal-close:hover .media-modal-icon:before { color: #000; } .edit-attachment-frame .edit-media-header .left:before { content: "\f345"; content: "\f341" / ''; } .edit-attachment-frame .edit-media-header .right:before { content: "\f341"; content: "\f345" / ''; } .edit-attachment-frame .edit-media-header [disabled], .edit-attachment-frame .edit-media-header [disabled]:hover { color: #c3c4c7; background: inherit; cursor: default; } .edit-attachment-frame .media-frame-content, .edit-attachment-frame .media-frame-router { right: 0; } .edit-attachment-frame .media-frame-content { border-bottom: none; bottom: 0; top: 50px; } .edit-attachment-frame .attachment-details { position: absolute; overflow: auto; top: 0; bottom: 0; left: 0; right: 0; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); } .edit-attachment-frame .attachment-media-view { float: right; width: 65%; height: 100%; } .edit-attachment-frame .attachment-media-view .thumbnail { box-sizing: border-box; padding: 16px; height: 100%; } .edit-attachment-frame .attachment-media-view .details-image { display: block; margin: 0 auto 16px; max-width: 100%; max-height: 90%; max-height: calc( 100% - 56px ); /* leave space for actions underneath */ background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .edit-attachment-frame .attachment-media-view .details-image.icon { background: none; } .edit-attachment-frame .attachment-media-view .attachment-actions { text-align: center; } .edit-attachment-frame .wp-media-wrapper { margin-bottom: 12px; } .edit-attachment-frame input, .edit-attachment-frame textarea { padding: 4px 8px; line-height: 1.42857143; } .edit-attachment-frame .attachment-info { overflow: auto; box-sizing: border-box; margin-bottom: 0; padding: 12px 16px 0; width: 35%; height: 100%; box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1); border-bottom: 0; border-right: 1px solid #dcdcde; background: #f6f7f7; } .edit-attachment-frame .attachment-info .details, .edit-attachment-frame .attachment-info .settings { position: relative; /* RTL fix, #WP29352 */ overflow: hidden; float: none; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #dcdcde; } .edit-attachment-frame .attachment-info .filename { font-weight: 400; color: #646970; } .edit-attachment-frame .attachment-info .thumbnail { margin-bottom: 12px; } .attachment-info .actions { margin-bottom: 16px; } .attachment-info .actions a { display: inline; text-decoration: none; } .copy-to-clipboard-container { display: flex; align-items: center; margin-top: 8px; clear: both; } .copy-to-clipboard-container .copy-attachment-url { white-space: normal; } .copy-to-clipboard-container .success { color: #007017; margin-right: 8px; } /*------------------------------------------------------------------------------ 14.2 - Image Editor ------------------------------------------------------------------------------*/ .wp_attachment_details .attachment-alt-text { margin-bottom: 5px; } .wp_attachment_details #attachment_alt { max-width: 500px; height: 3.28571428em; } .wp_attachment_details .attachment-alt-text-description { margin-top: 5px; } .wp_attachment_details label[for="content"] { font-size: 13px; line-height: 1.5; margin: 1em 0; } .wp_attachment_details #attachment_caption { height: 4em; } .describe .image-editor { vertical-align: top; } .imgedit-wrap { position: relative; padding-top: 10px; } .image-editor p, .image-editor fieldset { margin: 8px 0; } .image-editor legend { margin-bottom: 5px; } .describe .imgedit-wrap .image-editor { padding: 0 5px; } .wp_attachment_holder div.updated { margin-top: 0; } .wp_attachment_holder .imgedit-wrap > div { height: auto; } .imgedit-panel-content { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .imgedit-settings { max-width: 240px; /* Prevent reflow when help info is expanded. */ } .imgedit-group-controls > * { display: none; } .imgedit-panel-active .imgedit-group-controls > * { display: block; } .imgedit-panel-active .imgedit-group-controls > .imgedit-crop-apply { display: flex; } .imgedit-crop-apply { gap: 4px; flex-wrap: wrap; } .wp_attachment_holder .imgedit-wrap .image-editor { float: left; width: 250px; } .image-editor input { margin-top: 0; vertical-align: middle; } .imgedit-wait { position: absolute; top: 0; bottom: 0; width: 100%; background: #fff; opacity: 0.7; filter: alpha(opacity=70); display: none; } .imgedit-wait:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; right: 50%; top: 50%; margin: -10px -10px 0 0; background: transparent url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } .no-float { float: none; } .media-disabled, .image-editor .disabled { /* WCAG 1.4.3 Text or images of text that are part of an inactive user interface component ... have no contrast requirement. */ color: #a7aaad; } .A1B1 { overflow: hidden; } .wp_attachment_image .button, .A1B1 .button { float: right; } .no-js .wp_attachment_image .button { display: none; } .wp_attachment_image .spinner, .A1B1 .spinner { float: right; } .imgedit-menu .note-no-rotate { clear: both; margin: 0; padding: 1em 0 0; } .imgedit-menu .button:after, .imgedit-menu .button:before { font: normal 16px/1 dashicons; margin-left: 8px; vertical-align: middle; position: relative; top: -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .imgedit-menu .imgedit-rotate.button:after { content: '\f140'; margin-right: 2px; margin-left: 0; } .imgedit-menu .imgedit-rotate.button[aria-expanded="true"]:after { content: '\f142'; } .imgedit-menu .button.disabled { color: #a7aaad; border-color: #dcdcde; background: #f6f7f7; box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .imgedit-crop:before { content: "\f165"; content: "\f165" / ''; } .imgedit-scale:before { content: "\f211"; content: "\f211" / ''; } .imgedit-rotate:before { content: "\f167"; content: "\f167" / ''; } .imgedit-undo:before { content: "\f171"; content: "\f171" / ''; } .imgedit-redo:before { content: "\f172"; content: "\f172" / ''; } .imgedit-crop-wrap { position: relative; } .imgedit-crop-wrap img { background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop-wrap { padding: 20px; background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .imgedit-crop { margin: 0 0 0 8px; } .imgedit-rotate { margin: 0 3px 0 8px; } .imgedit-undo { margin: 0 3px; } .imgedit-redo { margin: 0 3px 0 8px; } .imgedit-thumbnail-preview-group { display: flex; flex-wrap: wrap; column-gap: 10px; } .imgedit-thumbnail-preview { margin: 10px 0 0 8px; } .imgedit-thumbnail-preview-caption { display: block; } #poststuff .imgedit-group-top h2 { display: inline-block; margin: 0; padding: 0; font-size: 14px; line-height: 1.4; } #poststuff .imgedit-group-top .button-link { text-decoration: none; color: #1d2327; } .imgedit-applyto .imgedit-label { display: block; padding: .5em 0 0; } .imgedit-popup-menu, .imgedit-help { display: none; padding-bottom: 8px; } .imgedit-panel-tools > .imgedit-menu { display: flex; column-gap: 4px; align-items: flex-start; flex-wrap: wrap; } .imgedit-popup-menu { width: calc( 100% - 20px ); position: absolute; background: #fff; padding: 10px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); } .image-editor .imgedit-menu .imgedit-popup-menu button { display: block; margin: 2px 0; width: 100%; white-space: break-spaces; line-height: 1.5; padding-top: 3px; padding-bottom: 2px; } .imgedit-rotate-menu-container { position: relative; } .imgedit-help.imgedit-restore { padding-bottom: 0; } /* higher specificity than buttons */ .image-editor .imgedit-settings .imgedit-help-toggle, .image-editor .imgedit-settings .imgedit-help-toggle:hover, .image-editor .imgedit-settings .imgedit-help-toggle:active { border: 1px solid transparent; margin: -1px -1px 0 0; padding: 0; background: transparent; color: var(--wp-admin-theme-color); font-size: 20px; line-height: 1; cursor: pointer; box-sizing: content-box; box-shadow: none; } .image-editor .imgedit-settings .imgedit-help-toggle:focus { color: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 1px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .form-table td.imgedit-response { padding: 0; } .imgedit-submit-btn { margin-right: 20px; } .imgedit-wrap .nowrap { white-space: nowrap; font-size: 12px; line-height: inherit; } span.imgedit-scale-warn { display: flex; align-items: center; margin: 4px; gap: 4px; color: #b32d2e; font-style: normal; visibility: hidden; vertical-align: middle; } .imgedit-save-target { margin: 8px 0; } .imgedit-save-target legend { font-weight: 600; } .imgedit-group { margin-bottom: 20px; } .image-editor .imgedit-original-dimensions { display: inline-block; } .image-editor .imgedit-scale-controls input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"], .image-editor .imgedit-scale-controls input[type="number"], .image-editor .imgedit-crop-ratio input[type="number"], .image-editor .imgedit-crop-sel input[type="number"] { width: 80px; font-size: 14px; padding: 0 8px; } .imgedit-separator { display: inline-block; width: 7px; text-align: center; font-size: 13px; color: #3c434a; } .image-editor .imgedit-scale-button-wrapper { margin-top: 0.3077em; display: block; } .image-editor .imgedit-scale-controls .button { margin-bottom: 0; } audio, video { display: inline-block; max-width: 100%; } .wp-core-ui .mejs-container { width: 100%; max-width: 100%; } .wp-core-ui .mejs-container * { box-sizing: border-box; } .wp-core-ui .mejs-time { box-sizing: content-box; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .imgedit-wait:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .edit-attachment-frame input, .edit-attachment-frame textarea { line-height: 1.5; } .wp_attachment_details label[for="content"] { font-size: 14px; line-height: 1.5; } .wp_attachment_details textarea { line-height: 1.5; } .wp_attachment_details #attachment_alt { height: 3.375em; } .media-upload-form .media-item.error, .media-upload-form .media-item .error { font-size: 13px; line-height: 1.5; } .media-upload-form .media-item.error { padding: 1px 10px; } .media-upload-form .media-item .error { padding: 10px 12px 10px 0; } .image-editor .imgedit-scale input[type="text"], .image-editor .imgedit-crop-ratio input[type="text"], .image-editor .imgedit-crop-sel input[type="text"] { font-size: 16px; padding: 6px 10px; } .wp_attachment_holder .imgedit-wrap .imgedit-panel-content, .wp_attachment_holder .imgedit-wrap .image-editor { float: none; width: auto; max-width: none; padding-bottom: 16px; } .copy-to-clipboard-container .success { font-size: 14px; } /* Restructure image editor on narrow viewports. */ .imgedit-crop-wrap img{ width: 100%; } .media-modal .imgedit-wrap .imgedit-panel-content, .media-modal .imgedit-wrap .image-editor { position: initial !important; } .media-modal .imgedit-wrap .image-editor { box-sizing: border-box; width: 100% !important; } .image-editor .imgedit-scale-button-wrapper { display: inline-block; } } @media only screen and (max-width: 600px) { .media-item-wrapper { grid-template-columns: 1fr; } } /** * Media queries for media grid. */ @media only screen and (max-width: 1120px) { /* override for media-views.css */ #wp-media-grid .wp-filter .attachment-filters { max-width: 100%; } } @media only screen and (max-width: 1000px) { /* override for forms.css */ .wp-filter p.search-box { float: none; width: 100%; display: flex; flex-wrap: nowrap; column-gap: 0; } .wp-filter p.search-box #media-search-input { width: 100%; } } @media only screen and (max-width: 782px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 46px; left: 10px; } .media-frame.mode-grid .media-toolbar select { min-height: 40px; padding: 0 12px 0 24px; } .media-frame.mode-grid .media-toolbar input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter p.search-box { margin-bottom: 0; } } @media only screen and (max-width: 600px) { .media-frame.mode-select .attachments-browser.fixed .media-toolbar { top: 0; } } @media only screen and (max-width: 480px) { .edit-attachment-frame .media-frame-title { left: 110px; } .upload-php .media-modal-close, .edit-attachment-frame .edit-media-header .left, .edit-attachment-frame .edit-media-header .right { width: 40px; height: 40px; } .edit-attachment-frame .edit-media-header .right:before, .edit-attachment-frame .edit-media-header .left:before { line-height: 40px !important; } .edit-attachment-frame .edit-media-header .left { left: 82px; } .edit-attachment-frame .edit-media-header .right { left: 41px; } .edit-attachment-frame .media-frame-content { top: 40px; } .edit-attachment-frame .attachment-media-view { float: none; height: auto; width: 100%; } .edit-attachment-frame .attachment-info { height: auto; width: 100%; } } @media only screen and (max-width: 640px), screen and (max-height: 400px) { .upload-php .mode-grid .media-sidebar{ max-width: 100%; } } @media only screen and (max-width: 375px) { .media-item .attachment-tools { align-items: baseline; } .media-item .edit-attachment.copy-to-clipboard-container { flex-direction: column; } .copy-to-clipboard-container .success { line-height: normal; margin-top: 10px; } } css/farbtastic-rtl.min.css000066600000001032152330733730011557 0ustar00/*! This file is auto-generated */ .farbtastic{position:relative}.farbtastic *{position:absolute;cursor:crosshair}.farbtastic,.farbtastic .wheel{width:195px;height:195px}.farbtastic .color,.farbtastic .overlay{top:47px;right:47px;width:101px;height:101px}.farbtastic .wheel{background:url(../images/wheel.png) no-repeat;width:195px;height:195px}.farbtastic .overlay{background:url(../images/mask.png) no-repeat}.farbtastic .marker{width:17px;height:17px;margin:-8px -8px 0 0;overflow:hidden;background:url(../images/marker.png) no-repeat}css/list-tables.min.css000066600000110224152330733730011065 0ustar00/*! This file is auto-generated */ .response-links{display:block;margin-bottom:1em}.response-links a{display:block}.response-links a.comments-edit-item-link{font-weight:600}.response-links a.comments-view-item-link{font-size:12px}.post-com-count-wrapper strong{font-weight:400}.comments-view-item-link{display:inline-block;clear:both}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:nowrap;word-wrap:normal}.column-comments .post-com-count,.column-response .post-com-count{display:inline-block;vertical-align:top}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:5px}.column-comments .comment-count-approved,.column-comments .comment-count-no-comments,.column-response .comment-count-approved,.column-response .comment-count-no-comments{box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;border-radius:5px;background-color:#646970;color:#fff;font-size:11px;line-height:1.90909090;text-align:center}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:"";display:block;margin-left:8px;width:0;height:0;border-top:5px solid #646970;border-right:5px solid transparent}.column-comments a.post-com-count-approved:focus .comment-count-approved,.column-comments a.post-com-count-approved:hover .comment-count-approved,.column-response a.post-com-count-approved:focus .comment-count-approved,.column-response a.post-com-count-approved:hover .comment-count-approved{background:#3858e9}.column-comments a.post-com-count-approved:focus:after,.column-comments a.post-com-count-approved:hover:after,.column-response a.post-com-count-approved:focus:after,.column-response a.post-com-count-approved:hover:after{border-top-color:#3858e9}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:relative;left:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;border-radius:11px;background:#d63638;color:#fff;font-size:9px;line-height:1.88888888;text-align:center}.column-comments .post-com-count-no-pending,.column-response .post-com-count-no-pending{display:none}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom:1px solid #c3c4c7}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#submitted-on,.submitted-on{color:#50575e}#replyrow td{padding:2px}#replysubmit{margin:0;padding:5px 7px 10px;overflow:hidden}#replysubmit .reply-submit-buttons{margin-bottom:0}#replysubmit .button{margin-right:5px}#replysubmit .spinner{float:none;margin:-4px 0 0}#replyrow.inline-edit-row fieldset.comment-reply{font-size:inherit;line-height:inherit}#replyrow legend{margin:0;padding:.2em 5px 0;font-size:13px;line-height:1.4;font-weight:600}#replyrow.inline-edit-row label{display:inline;vertical-align:baseline;line-height:inherit}#commentsdiv #edithead .inside,#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;box-shadow:none}#replyerror{border-color:#dcdcde;background-color:#f6f7f7}.commentlist .avatar{vertical-align:text-top}#the-comment-list div.undo,#the-comment-list tr.undo{background-color:#f6f7f7}#the-comment-list .unapproved td,#the-comment-list .unapproved th{background-color:#fcf9e8}#the-comment-list .unapproved th.check-column{border-left:4px solid #d63638}#the-comment-list .unapproved th.check-column input{margin-left:4px}#the-comment-list .approve a{color:#007017}#the-comment-list .unapprove a{color:#996800}#the-comment-list td,#the-comment-list th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}#the-comment-list tr:last-child td,#the-comment-list tr:last-child th{box-shadow:none}#the-comment-list tr.unapproved+tr.approved td,#the-comment-list tr.unapproved+tr.approved th{border-top:1px solid rgba(0,0,0,.03)}.vim-current,.vim-current td,.vim-current th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)!important}th .comment-grey-bubble{width:16px;position:relative;top:2px}th .comment-grey-bubble:before{content:"\f101";content:"\f101"/'';font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;left:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-author,.fixed .column-format,.fixed .column-links,.fixed .column-parent,.fixed .column-posts{width:10%}.fixed .column-date{width:14%}.column-date span[title]{-webkit-text-decoration:dotted underline;text-decoration:dotted underline}.fixed .column-posts{width:74px}.fixed .column-posts,.fixed .column-role{hyphens:auto}.fixed .column-comment .comment-author{display:none}.fixed .column-categories,.fixed .column-rel,.fixed .column-response,.fixed .column-role,.fixed .column-tags{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:5.5em;text-align:left}.fixed .column-comments .vers{padding-left:3px}td.column-title strong,td.plugin-title strong{display:block;margin-bottom:.2em;font-size:14px}td.column-title p,td.plugin-title p{margin:6px 0}table.media .column-title .media-icon{float:left;min-height:60px;margin:0 9px 0 0}table.media .column-title .media-icon img{max-width:60px;height:auto;vertical-align:top}table.media .column-title .has-media-icon~.row-actions{margin-left:70px}table.media .column-title .filename{margin-bottom:.2em}.media .row-actions .copy-to-clipboard-container{display:inline;position:relative}.media .row-actions .copy-to-clipboard-container .success{position:absolute;left:50%;transform:translate(-50%,-100%);background:#000;color:#fff;border-radius:5px;margin:0;padding:2px 5px}.wp-list-table a{transition:none}#the-list tr:last-child td,#the-list tr:last-child th{border-bottom:none!important;box-shadow:none}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:1.38461538}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead td,#commentsdiv .comments-box thead th{background:0 0;padding:0 7px 4px}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv #edithead .inside input{width:160px}.sorting-indicators{display:grid}.sorting-indicator{display:block;width:10px;height:4px;margin-top:4px;margin-left:7px}.sorting-indicator:before{font:normal 20px/1 dashicons;display:inline-block;padding:0;top:-4px;left:-8px;line-height:.5;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#a7aaad}.sorting-indicator.asc:before{content:"\f142";content:"\f142"/''}.sorting-indicator.desc:before{content:"\f140";content:"\f140"/''}th.sorted.desc .sorting-indicator.desc:before{color:#1d2327}th.sorted.asc .sorting-indicator.asc:before{color:#1d2327}th.sorted.asc a:focus .sorting-indicator.asc:before,th.sorted.asc:hover .sorting-indicator.asc:before,th.sorted.desc a:focus .sorting-indicator.desc:before,th.sorted.desc:hover .sorting-indicator.desc:before{color:#a7aaad}th.sorted.asc a:focus .sorting-indicator.desc:before,th.sorted.asc:hover .sorting-indicator.desc:before,th.sorted.desc a:focus .sorting-indicator.asc:before,th.sorted.desc:hover .sorting-indicator.asc:before{color:#1d2327}.wp-list-table .toggle-row{position:absolute;right:8px;top:10px;display:none;padding:0;width:40px;height:40px;border:none;outline:0;background:0 0}.wp-list-table .toggle-row:hover{cursor:pointer}.wp-list-table .toggle-row:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-list-table .toggle-row:active{box-shadow:none}.wp-list-table .toggle-row:before{position:absolute;top:-5px;left:10px;border-radius:50%;display:block;padding:1px 2px 1px 0;color:#3c434a;content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-list-table .is-expanded .toggle-row:before{content:"\f142";content:"\f142"/''}.check-column{position:relative}.check-column label{box-sizing:border-box;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.check-column input{position:relative;z-index:1}.check-column .label-covers-full-cell:hover+input:not(:disabled){box-shadow:0 0 0 1px #2271b1}.check-column input:hover+label,.check-column label:hover{background:rgba(0,0,0,.05)}.locked-indicator{display:none;margin-left:6px;height:20px;width:16px}.locked-indicator-icon:before{color:#8c8f94;content:"\f160";content:"\f160"/'';display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.locked-info{display:none;margin-top:4px}.locked-text{vertical-align:top}.wp-locked .locked-indicator,.wp-locked .locked-info{display:block}tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .check-column label,tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:8px}th.sortable a:focus,th.sorted a:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}th.sortable a span,th.sorted a span{float:left;cursor:pointer}.tablenav-pages .current-page{vertical-align:top;margin:0 2px 0 0;font-size:13px;text-align:center;min-height:32px;padding:0 8px}.tablenav .total-pages{margin-right:2px}.tablenav #table-paging{margin-left:2px}.tablenav{clear:both;height:32px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;margin:0 0 9px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{display:inline-block;vertical-align:baseline;min-width:32px;min-height:32px;margin:0;padding:0 4px;font-size:16px;line-height:1.875;text-align:center}.tablenav .displaying-num{margin-right:7px}.tablenav .one-page .displaying-num{display:inline-block;margin:5px 0}.tablenav .actions{padding:0 8px 0 0}.wp-filter .actions{display:inline-block;vertical-align:middle}.tablenav .delete{margin-right:20px}.tablenav .view-switch{float:right;margin:0 5px;padding-top:3px}.wp-filter .view-switch{display:inline-block;vertical-align:middle;padding:12px 0;margin:0 8px 0 2px}.media-toolbar.wp-filter .view-switch{margin:0 12px 0 2px}.view-switch a{float:left;width:28px;height:28px;text-align:center;line-height:1.84615384;text-decoration:none}.view-switch a:before{color:#c3c4c7;display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.view-switch a:focus:before,.view-switch a:hover:before{color:#787c82}.view-switch a.current:before{color:#2271b1}.view-switch .view-list:before{content:"\f163";content:"\f163"/''}.view-switch .view-excerpt:before{content:"\f164";content:"\f164"/''}.view-switch .view-grid:before{content:"\f509";content:"\f509"/''}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter .wp-filter{margin-bottom:0}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:600;margin:0 6px}.row-title{font-size:14px!important;font-weight:600}.column-comment .comment-author{margin-bottom:.6em}.column-author img,.column-comment .comment-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{color:#646970;font-size:13px;padding:2px 0 0;position:relative;left:-9999em}.rtl .row-actions a{display:inline-block}.row-actions .network_active,.row-actions .network_only{color:#000}.comment-item:hover .row-actions,.mobile .row-actions,.no-js .row-actions,.row-actions.visible,tr:hover .row-actions{position:static}.row-actions-visible{padding:2px 0 0}#wpbody-content .inline-edit-row fieldset{float:left;margin:0;padding:0 12px 0 0;width:100%;box-sizing:border-box}#wpbody-content .inline-edit-row td fieldset:last-of-type{padding-right:0}tr.inline-edit-row td{padding:0;position:relative}.inline-edit-wrapper{display:flow-root;padding:0 12px;border:1px solid transparent;border-radius:4px}.inline-edit-wrapper:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .quick-edit-row-page .inline-edit-col-right{width:50%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both;line-height:2.5}.inline-edit-row .submit{display:flex;flex-wrap:wrap;align-items:center;clear:both;margin:0;padding:.5em 0 1em}.inline-edit-save.submit .button{margin-right:8px}.inline-edit-save .spinner{float:none;margin:0}.inline-edit-row .notice-error{box-sizing:border-box;min-width:100%;margin-top:1em}.inline-edit-row .notice-error .error{margin:.5em 0;padding:2px}#the-list .inline-edit-row .inline-edit-legend{margin:0;padding:.2em 0;line-height:2.5;font-weight:600}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{margin:0;padding:0}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0;line-height:2.5}.inline-edit-row fieldset.inline-edit-date label{display:inline-block;margin:0;vertical-align:baseline;line-height:2}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{display:block;float:left;width:6em;line-height:2.5}#posts-filter fieldset.inline-edit-date legend{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:6em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .inline-edit-or{margin:.2em 6px .2em 0;line-height:2.5}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:middle}.inline-edit-row fieldset label textarea{width:100%;height:4em;vertical-align:top}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:32px;padding:0 8px 0 8px}.inline-edit-row select{line-height:2.14285714;padding-right:24px}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-row .inline-edit-legend{text-transform:uppercase}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{vertical-align:middle;text-align:center;padding:0 4px}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}#bulk-titles-list,#bulk-titles-list li,.inline-edit-row fieldset ul.cat-checklist input,.inline-edit-row fieldset ul.cat-checklist li{margin:0;position:relative}.inline-edit-row fieldset ul.cat-checklist input{margin-top:-1px;margin-left:3px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row select[name=page_template],.inline-edit-row select[name=post_parent]{max-width:80%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles,ul.cat-checklist{height:14em;border:1px solid #ddd;margin:0 0 5px;padding:.2em 5px;overflow-y:scroll}ul.cat-checklist input[name="post_category[]"]:indeterminate::before{content:'';border-top:2px solid grey;width:65%;height:2px;position:absolute;top:calc(50% + 1px);left:50%;transform:translate(-50%,-50%)}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{display:inline-block;margin:0;padding:3px 0;line-height:20px;vertical-align:top}#bulk-titles .ntdelitem{padding-left:23px}#bulk-titles .ntdelbutton{width:26px;height:26px;margin:0 0 0 -26px;text-align:center;border-radius:3px}#bulk-titles .ntdelbutton:before{display:inline-block;vertical-align:top}#bulk-titles .ntdelbutton:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:0}.plugins tbody,.plugins tbody th.check-column{padding:8px 0 0 2px}.plugins tbody th.check-column input[type=checkbox]{margin-top:4px}.updates-table .plugin-title p{margin-top:0}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-left:6px}.plugins,.plugins td,.plugins th{color:#000}.plugins tr{background:#fff}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5}.plugins .desc ol,.plugins .desc ul{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{font-size:13px;padding:0}.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th{padding:10px 9px}.plugins .active td,.plugins .active th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)}.plugins .update td,.plugins .update th{border-bottom:0}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th,.plugins tr.active.plugin-update-tr+tr.inactive td,.plugins tr.active.plugin-update-tr+tr.inactive th{border-top:1px solid rgba(0,0,0,.03);box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #dcdcde}.plugins .update td,.plugins .update th,.plugins .updated td,.plugins .updated th,.plugins tr.active+tr.inactive.update td,.plugins tr.active+tr.inactive.update th,.plugins tr.active+tr.inactive.updated td,.plugins tr.active+tr.inactive.updated th,.upgrade .plugins tr:last-of-type td,.upgrade .plugins tr:last-of-type th{box-shadow:none}.plugin-update-tr.active td,.plugins .active th.check-column{border-left:4px solid var(--wp-admin-theme-color)}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .plugin-title .dashicons,.plugins .plugin-title img.plugin-icon,.plugins .plugin-title img.updates-table-screenshot{float:left;padding:0 10px 0 0;width:64px;height:64px}.plugins .plugin-title .dashicons:before{padding:2px;background-color:#f0f0f1;box-shadow:inset 0 0 10px rgba(167,170,173,.15);font-size:60px;color:#c3c4c7}#update-themes-table .plugin-title .dashicons,#update-themes-table .plugin-title img.updates-table-screenshot{width:85px}.plugins .column-auto-updates{width:14.2em}.plugins .inactive .plugin-title strong{font-weight:400}.plugins .row-actions,.plugins .second{padding:0 0 5px}.plugins .row-actions{white-space:normal;min-width:12em}.plugins .update .row-actions,.plugins .update .second,.plugins .updated .row-actions,.plugins .updated .second{padding-bottom:0}.plugins-php .widefat tfoot td,.plugins-php .widefat tfoot th{border-top-style:solid;border-top-width:1px}.plugins .plugin-update-tr .plugin-update{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);overflow:hidden;padding:0}.plugins .plugin-update-tr .notice,.plugins .plugin-update-tr div[class=update-message]{margin:5px 20px 15px 40px}.plugins .notice p{margin:.5em 0}.plugins .plugin-description a,.plugins .plugin-update a,.updates-table .plugin-title a{text-decoration:underline}.plugins tr.paused th.check-column{border-left:4px solid #b32d2e}.plugins tr.paused td,.plugins tr.paused th{background-color:#f6f7f7}.plugins .paused .dashicons-warning,.plugins tr.paused .plugin-title{color:#b32d2e}.plugins .paused .error-display code,.plugins .paused .error-display p{font-size:90%;color:rgba(0,0,0,.7)}.plugins .resume-link{color:#b32d2e}.plugin-card .update-now:before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 16px/1.875 dashicons;margin:0 5px 0 -2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.plugin-card .updating-message:before{content:"\f463";content:"\f463"/'';animation:rotation 2s infinite linear}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.plugin-card .updated-message:before{color:#68de7c;content:"\f147";content:"\f147"/''}.plugin-card .updated-message:before,.plugin-card .updating-message:before{line-height:1;position:relative;top:-2px;vertical-align:middle}.plugin-install-php #the-list{display:flex;flex-wrap:wrap}.plugin-install-php .plugin-card{display:flex;flex-direction:column;justify-content:space-between}.plugin-install-php h2{clear:both}.plugin-install-php h3{margin:2.5em 0 8px}.plugin-install-php .wp-filter{margin-bottom:0}.plugin-group{overflow:hidden;margin-top:1.5em}.plugin-group h3{margin-top:0}.plugin-card{float:left;margin:0 8px 16px;width:48.5%;width:calc(50% - 8px);background-color:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.plugin-card:nth-child(odd){clear:both;margin-left:0}.plugin-card:nth-child(2n){margin-right:0}@media screen and (min-width:1600px) and (max-width:2299px){.plugin-card{width:30%;width:calc(33.1% - 8px)}.plugin-card:nth-child(odd){clear:none;margin-left:8px}.plugin-card:nth-child(2n){margin-right:8px}.plugin-card:nth-child(3n+1){clear:both;margin-left:0}.plugin-card:nth-child(3n){margin-right:0}}@media screen and (min-width:2300px){.plugin-card{width:25%;width:calc(25% - 12px)}.plugin-card:nth-child(odd){clear:none;margin-left:8px}.plugin-card:nth-child(2n){margin-right:8px}.plugin-card:nth-child(4n+1){clear:both;margin-left:0}.plugin-card:nth-child(4n){margin-right:0}}.plugin-card-top{position:relative;padding:16px;min-height:135px}.plugin-action-buttons,div.action-links{margin:0}.plugin-card h3{margin:0 12px 16px 0;font-size:18px;line-height:1.3}.plugin-card .desc{margin-inline:0}.plugin-card .desc>p,.plugin-card .name{margin-left:148px}@media (min-width:1101px){.plugin-card .desc>p,.plugin-card .name{margin-right:128px}}@media (min-width:481px) and (max-width:781px){.plugin-card .desc>p,.plugin-card .name{margin-right:128px}}.plugin-card .column-description{display:flex;flex-direction:column;justify-content:flex-start}.plugin-card .column-description>p{margin-top:0}.plugin-card .column-description p:empty{display:none}.plugin-card .notice.plugin-dependencies{margin:auto 20px 20px;padding:15px}.plugin-card .plugin-dependencies-explainer-text{margin-block:0}.plugin-card .plugin-dependency{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em;column-gap:1%;row-gap:.5em}.plugin-card .plugin-dependency:last-child,.plugin-card .plugin-dependency:nth-child(2){margin-top:1em}.plugin-card .plugin-dependency-name{flex-basis:74%}.plugin-card .plugin-dependency .more-details-link{margin-left:auto}.rtl .plugin-card .plugin-dependency .more-details-link{margin-right:auto}@media (max-width:939px){.plugin-card .plugin-dependency-name{flex-basis:69%}}.plugins #the-list .required-by,.plugins #the-list .requires{margin-top:1em}.plugin-card .action-links{position:absolute;top:20px;right:20px;width:120px}.plugin-action-buttons{clear:right;float:right;margin-bottom:1em;text-align:right}.plugin-action-buttons li{margin-bottom:10px}.plugin-card-bottom{clear:both;padding:16px;background-color:#f6f7f7;border-top:1px solid rgb(0,0,0,.1);overflow:hidden}.plugin-card-bottom .star-rating{display:inline}.plugin-card-update-failed .update-now{font-weight:600}.plugin-card-update-failed .notice-error{margin:0;padding-left:16px;box-shadow:0 -1px 0 #dcdcde}.plugin-card-update-failed .plugin-card-bottom{display:none}.plugin-card .column-rating{line-height:1.76923076}.plugin-card .column-rating,.plugin-card .column-updated{margin-bottom:4px}.plugin-card .column-downloaded,.plugin-card .column-rating{float:left;clear:left;max-width:180px}.plugin-card .column-compatibility,.plugin-card .column-updated{text-align:right;float:right;clear:right;width:65%;width:calc(100% - 180px)}.plugin-card .column-compatibility span:before{font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;left:-2px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}.plugin-card .column-compatibility .compatibility-incompatible:before{content:"\f158";content:"\f158"/'';color:#d63638}.plugin-card .column-compatibility .compatibility-compatible:before{content:"\f147";content:"\f147"/'';color:#007017}.plugin-card .notice{margin:20px 20px 0}.plugin-card .plugin-icon{position:absolute;top:20px;left:20px;width:128px;height:128px;margin:0 20px 20px 0}.no-plugin-results{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;width:100%;text-align:center}.wp-list-table .site-archived,.wp-list-table .site-deleted,.wp-list-table tr.site-archived,.wp-list-table tr.site-deleted{background:#fcf0f1}.wp-list-table .site-mature,.wp-list-table .site-spammed,.wp-list-table tr.site-mature,.wp-list-table tr.site-spammed{background:#fcf9e8}.sites.fixed .column-lastupdated,.sites.fixed .column-registered{width:20%}.sites.fixed .column-users{width:80px}@media screen and (max-width:1100px) and (min-width:782px),(max-width:480px){.plugin-card .action-links{position:static;margin-left:148px;width:auto}.plugin-action-buttons{float:none;margin:1em 0 0;text-align:left}.plugin-action-buttons li{display:inline-block;vertical-align:middle}.plugin-action-buttons li .button{margin-right:20px}.plugin-card h3{margin-right:24px}.plugin-card .desc,.plugin-card .name{margin-right:0}.plugin-card .desc p:first-of-type{margin-top:0}}@media screen and (max-width:782px){.tablenav{height:auto}.tablenav.top{margin:20px 0 5px}.tablenav.bottom{position:relative;margin-top:15px}.tablenav br{display:none}.tablenav br.clear{display:block}.tablenav .view-switch,.tablenav.top .actions{display:none}.view-switch a{width:36px;height:36px;line-height:2.53846153}.tablenav.top .displaying-num{display:none}.tablenav.bottom .displaying-num{position:absolute;right:0;top:11px;margin:0;font-size:14px}.tablenav .tablenav-pages{width:100%;text-align:center;margin:0 0 25px}.tablenav.bottom .tablenav-pages{margin-top:25px}.tablenav.top .tablenav-pages.one-page{display:none}.tablenav.bottom .actions select{margin-bottom:5px}.tablenav.bottom .actions.alignleft+.actions.alignleft{clear:left;margin-top:10px}.tablenav.bottom .tablenav-pages.one-page{margin-top:15px;height:0}.tablenav-pages .pagination-links{font-size:16px}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{min-width:40px;min-height:40px;padding:10px 8px;font-size:18px;line-height:1}.tablenav-pages .pagination-links .current-page{min-width:40px;padding:10px 6px;font-size:16px;line-height:1.125}.form-wrap>p{display:none}.wp-list-table th.column-primary~th,.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){display:none}.wp-list-table thead th.column-primary{width:100%}.wp-list-table tr th.check-column{display:table-cell}.wp-list-table .check-column{width:2.5em}.wp-list-table .column-primary .toggle-row{display:block}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column){position:relative;clear:both;width:auto!important}.wp-list-table td.column-primary{padding-right:50px}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){padding:3px 8px 3px 35%}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{position:absolute;left:10px;display:block;overflow:hidden;width:32%;content:attr(data-colname);white-space:nowrap;text-overflow:ellipsis}.wp-list-table .is-expanded td:not(.hidden){display:block!important;overflow:hidden}.column-posts,.widefat .num{text-align:left}#comments-form .fixed .column-author,#commentsdiv .fixed .column-author{display:none!important}.fixed .column-comment .comment-author{display:block}.fixed .column-author.hidden~.column-comment .comment-author{display:none}#the-comment-list .is-expanded td{box-shadow:none}#the-comment-list .is-expanded td:last-child{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.post-com-count .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:none}.column-comments .post-com-count [aria-hidden=true],.column-response .post-com-count [aria-hidden=true]{display:none}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:normal}.column-comments .post-com-count-wrapper>a,.column-response .post-com-count-wrapper>a{display:block}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:0;margin-right:.5em}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:static;height:auto;min-width:0;padding:0;border:none;border-radius:0;background:0 0;color:#b32d2e;font-size:inherit;line-height:inherit;text-align:left}.column-comments .post-com-count-pending:hover,.column-response .post-com-count-pending:hover{color:#d63638}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:10px}.row-actions{margin-right:-8px;padding-top:4px}body:not(.plugins-php) .row-actions{display:flex;flex-wrap:wrap;gap:8px;color:transparent}.row-actions span{font-size:0}.row-actions span .button-link,.row-actions span a{display:inline-block;padding:4px 16px 4px 0;font-size:13px;line-height:1.5}.row-actions span.approve:before,.row-actions span.unapprove:before{content:"| "}#wpbody-content .bulk-edit-row .inline-edit-col-bottom,#wpbody-content .bulk-edit-row .inline-edit-col-left,#wpbody-content .bulk-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .inline-edit-row-post .inline-edit-col-center,#wpbody-content .quick-edit-row-page .inline-edit-col-left,#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .quick-edit-row-post .inline-edit-col-left,#wpbody-content .quick-edit-row-post .inline-edit-col-right{float:none;width:100%;padding:0}#the-list .inline-edit-row .inline-edit-legend,.inline-edit-row span.title{font-size:16px}.inline-edit-row p.howto{font-size:14px}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:0}#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,#wpbody-content .bulk-edit-row fieldset .inline-edit-group label,#wpbody-content .quick-edit-row fieldset .inline-edit-col label,#wpbody-content .quick-edit-row fieldset .inline-edit-group label{max-width:none;float:none;margin-bottom:5px}#wpbody .bulk-edit-row fieldset select{display:block;width:100%;max-width:none;box-sizing:border-box}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:40px}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{font-size:16px;line-height:2;padding:3px 4px}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{padding:6px 0;font-size:16px;line-height:28px}#bulk-titles .ntdelitem{padding-left:37px}#bulk-titles .ntdelbutton{width:40px;height:40px;margin:0 0 0 -40px;overflow:hidden}#bulk-titles .ntdelbutton:before{font-size:20px;line-height:28px}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{float:none}.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{margin-left:0}.inline-edit-row .inline-edit-or{margin:0 6px 0 0}#commentsdiv #edithead .inside,#edithead .inside{float:none;text-align:left;padding:3px 5px}#commentsdiv #edithead .inside input,#edithead .inside input{width:100%}#edithead label{display:block}#wpbody-content .updates-table .plugin-title{width:auto;white-space:normal}.link-manager-php #posts-filter{margin-top:25px}.link-manager-php .tablenav.bottom{overflow:hidden}.comments-box .toggle-row,.wp-list-table.plugins .toggle-row{display:none}#wpbody-content .wp-list-table.plugins td{display:block;width:auto;padding:10px 9px}#wpbody-content .wp-list-table.plugins .no-items td,#wpbody-content .wp-list-table.plugins .plugin-deleted-tr td{display:table-cell}#wpbody-content .wp-list-table.plugins .desc.hidden{display:none}#wpbody-content .wp-list-table.plugins .column-description{padding-top:2px}#wpbody-content .wp-list-table.plugins .plugin-title,#wpbody-content .wp-list-table.plugins .theme-title{padding-right:12px;white-space:normal}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-top:13px;padding-bottom:4px}.plugins #the-list .update td,.plugins #the-list .update th,.plugins #the-list tr>td:not(:last-child),.wp-list-table.plugins #the-list .theme-title{box-shadow:none;border-top:none}.plugins #the-list tr td{border-top:none}.plugins tbody{padding:1px 0 0}.plugins .plugin-update-tr:before,.plugins tr.active+tr.inactive td.column-description,.plugins tr.active+tr.inactive th.check-column{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column{border-top:none}.plugins .plugin-update-tr:before{content:"";display:table-cell}.plugins #the-list .plugin-update-tr .plugin-update{border-left:none}.plugin-update-tr .update-message{margin-left:0}.plugins .active.update+.plugin-update-tr:before,.plugins .active.updated+.plugin-update-tr:before{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);border-left:4px solid var(--wp-admin-theme-color)}.plugins .plugin-update-tr .update-message{margin-left:0}.wp-list-table.plugins .plugin-title strong,.wp-list-table.plugins .theme-title strong{font-size:1.4em;line-height:1.5}.plugins tbody th.check-column{padding:8px 0 0 5px}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-left:9px}table.plugin-install .column-description,table.plugin-install .column-name,table.plugin-install .column-rating,table.plugin-install .column-version{display:block;width:auto}table.plugin-install th.column-description,table.plugin-install th.column-name,table.plugin-install th.column-rating,table.plugin-install th.column-version{display:none}table.plugin-install td.column-name strong{font-size:1.4em;line-height:1.6em}table.plugin-install #the-list td{box-shadow:none}table.plugin-install #the-list tr{display:block;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugin-card{margin-left:0;margin-right:0;width:100%}table.media .column-title .has-media-icon~.row-actions{margin-left:0;clear:both}}@media screen and (max-width:480px){.tablenav-pages .current-page{margin:0}.tablenav.bottom .displaying-num{position:relative;top:0;display:block;text-align:right;padding-bottom:.5em}.tablenav.bottom .tablenav-pages.one-page{height:auto}.tablenav-pages .tablenav-paging-text{float:left;width:100%;padding-top:.5em}}css/widgets.min.css000066600000034434152330733730010320 0ustar00/*! This file is auto-generated */ .widget{margin:0 auto 10px;position:relative;box-sizing:border-box}.widget.open{z-index:99}.widget.open:focus-within{z-index:100}.widget-top{font-size:13px;font-weight:600;background:#f6f7f7}.widget-top .widget-action{border:0;margin:0;padding:10px;background:0 0;cursor:pointer}.widget-title h3,.widget-title h4{margin:0;padding:15px;font-size:1em;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:none;padding:1px 15px 15px;line-height:1.23076923}.widget.widget-dirty .widget-control-close-wrapper{display:none}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#646970}.deleting .widget-title,.deleting .widget-top .widget-action .toggle-indicator:before{color:#a7aaad}.wp-core-ui .media-widget-control .selected,.wp-core-ui .media-widget-control.selected .not-selected,.wp-core-ui .media-widget-control.selected .placeholder{display:none}.media-widget-control.selected .selected{display:inline-block}.media-widget-buttons{text-align:left;margin-top:0}.media-widget-control .media-widget-buttons .button{width:auto;height:auto;margin-top:12px;white-space:normal}.media-widget-buttons .button:first-child{margin-right:8px}.media-widget-control .attachment-media-view .button-add-media,.media-widget-control .placeholder{border:1px dashed #c3c4c7;box-sizing:border-box;cursor:pointer;line-height:1.6;padding:9px 0;position:relative;text-align:center;width:100%}.media-widget-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.media-widget-control .attachment-media-view .button-add-media:hover{background-color:#fff}.media-widget-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-style:solid;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent;outline-offset:-2px}.media-widget-control .media-widget-preview{background:0 0;text-align:center}.media-widget-control .media-widget-preview .notice{text-align:initial}.media-frame .media-widget-embed-notice p code,.media-widget-control .notice p code{padding:0 3px 0 0}.media-frame .media-widget-embed-notice{margin-top:16px}.media-widget-control .media-widget-preview img{max-width:100%;vertical-align:middle;background-image:linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:0 0,10px 10px;background-size:20px 20px}.media-widget-control .media-widget-preview .wp-video-shortcode{background:#000}.media-frame.media-widget .media-toolbar-secondary{min-width:300px}.media-frame.media-widget .attachment-display-settings .setting.align,.media-frame.media-widget .checkbox-setting.autoplay,.media-frame.media-widget .embed-link-settings .setting.link-text,.media-frame.media-widget .embed-media-settings .legend-inline,.media-frame.media-widget .embed-media-settings .setting.align,.media-frame.media-widget .image-details .embed-media-settings .setting.align,.media-frame.media-widget .replace-attachment{display:none}.media-widget-video-preview{width:100%}.media-widget-video-link{display:inline-block;min-height:132px;width:100%;background:#000}.media-widget-video-link .dashicons{font:normal 60px/1 dashicons;position:relative;width:100%;top:-90px;color:#fff;text-decoration:none}.media-widget-video-link.no-poster .dashicons{top:30px}.media-frame #embed-url-field.invalid,.media-widget-image-link>.link:invalid{border:1px solid #d63638}.media-widget-image-link{margin:1em 0}.media-widget-gallery-preview{display:flex;justify-content:flex-start;flex-wrap:wrap;margin:-1.79104477%}.media-widget-preview.media_gallery,.media-widget-preview.media_image{cursor:pointer}.media-widget-preview .placeholder{background:#f0f0f1}.media-widget-gallery-preview .gallery-item{box-sizing:border-box;width:50%;margin:0;background:0 0}.media-widget-gallery-preview .gallery-item .gallery-icon{margin:4.5%}.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child,.media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+5),.media-widget-gallery-preview .gallery-item:nth-last-child(n+5)~.gallery-item,.media-widget-gallery-preview .gallery-item:nth-last-child(n+6),.media-widget-gallery-preview .gallery-item:nth-last-child(n+6)~.gallery-item{max-width:33.33%}.media-widget-gallery-preview .gallery-item img{height:auto;vertical-align:bottom}.media-widget-gallery-preview .gallery-icon{position:relative}.media-widget-gallery-preview .gallery-icon-placeholder{position:absolute;top:0;bottom:0;width:100%;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,.5)}.media-widget-gallery-preview .gallery-icon-placeholder-text{font-weight:600;font-size:2em;color:#fff}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #c3c4c7;margin:0 auto 10px;height:45px;width:100%;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;box-sizing:border-box}.js .sidebar-name{cursor:pointer}.sidebar-name .handlediv{float:right;width:38px;height:38px;border:0;margin:0;padding:8px;background:0 0;cursor:pointer;outline:0}#widgets-right .sidebar-name .handlediv{margin:5px 3px 0 0}.sidebar-name .handlediv:focus{box-shadow:none;outline:1px solid transparent}#widgets-left .sidebar-name .toggle-indicator{display:none}#widgets-left .sidebar-name .handlediv:focus .toggle-indicator,#widgets-left .sidebar-name:hover .toggle-indicator,#widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator{display:block}.sidebar-name .toggle-indicator:before{padding:1px 2px 1px 0;border-radius:50%}.sidebar-name .handlediv:focus .toggle-indicator:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.sidebar-name h2,.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:normal;line-height:1.5}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#646970}.inactive-sidebar .description,.widget-holder .description{color:#50575e}#widgets-right .widgets-holder-wrap .description{padding-left:7px;padding-right:7px}div.widget-liquid-left{margin:0;width:38%;float:left}div.widget-liquid-right{float:right;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h2,div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 10px 0 0}#widgets-left .widgets-holder-wrap,div#widgets-left .widget-holder{background:0 0;border:none}#widgets-left .widgets-holder-wrap{border:none;box-shadow:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;hyphens:auto}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{left:auto}.widget-title-action{float:right;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h2,div#widgets-right .sidebar-name h3{padding:15px 15px 15px 7px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.remove-inactive-widgets .spinner,.sidebar-name .spinner{float:none;position:relative;top:-2px;margin:-5px 5px}.sidebar-name .spinner{position:absolute;top:18px;right:30px}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#787c82;box-shadow:0 1px 2px rgba(0,0,0,.3)}.widget-access-link{float:right;margin:-5px 0 10px 10px}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#dcdcde}#available-widgets .widget-action .edit,#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-action .add,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-action .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#646970;background:#f0f0f1;padding:0 15px;line-height:3.30769230;border-left:1px solid #dcdcde}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#3c434a;border-left:0;outline:1px solid #3c434a}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.widget-control-actions{display:flex;align-items:center;justify-content:space-between}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .description,.js .widgets-holder-wrap.closed .remove-inactive-widgets,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget{display:none}.js .widgets-holder-wrap.closed .widget.ui-sortable-helper{display:block}.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}.widget-inside select{max-width:100%}#removing-widget{display:none;font-weight:400;padding-left:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#72aee6}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .handlediv,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{transition:opacity .1s linear}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#8c8f94;box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #c3c4c7}.widgets-chooser li{border-bottom:1px solid #c3c4c7;background:#fff;margin:0;position:relative}.widgets-chooser .widgets-chooser-button{width:100%;padding:10px 15px 10px 35px;background:0 0;border:0;box-sizing:border-box;text-align:left;cursor:pointer;transition:background .2s ease-in-out}.widgets-chooser .widgets-chooser-button:focus,.widgets-chooser .widgets-chooser-button:hover{outline:0;text-decoration:underline}.widgets-chooser li:last-child{border:none}.widgets-chooser .widgets-chooser-selected .widgets-chooser-button{background:var(--wp-admin-theme-color,#3858e9);color:#fff}.widgets-chooser .widgets-chooser-selected:before{content:"\f147";content:"\f147"/'';display:block;-webkit-font-smoothing:antialiased;font:normal 26px/1 dashicons;color:#fff;position:absolute;top:7px;left:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}#available-widgets .widget .widget-top{cursor:pointer}#available-widgets .widget.ui-draggable-dragging .widget-top{cursor:move}.text-widget-fields{position:relative}.text-widget-fields [hidden]{display:none}.text-widget-fields .wp-pointer.wp-pointer-top{position:absolute;z-index:3;top:100px;right:10px;left:10px}.text-widget-fields .wp-pointer .wp-pointer-arrow{left:auto;right:15px}.text-widget-fields .wp-pointer .wp-pointer-buttons{line-height:1.4}.custom-html-widget-fields>p>.CodeMirror{border:1px solid #dcdcde}.custom-html-widget-fields code{padding-top:1px;padding-bottom:1px}ul.CodeMirror-hints{z-index:101}.widget-control-actions .custom-html-widget-save-button.button.validation-blocked{cursor:not-allowed}@media screen and (max-width:782px){.editwidget .widget-inside input[type=checkbox],.editwidget .widget-inside input[type=radio],.widgets-holder-wrap .widget-inside input[type=checkbox],.widgets-holder-wrap .widget-inside input[type=radio]{margin:.25rem .25rem .25rem 0}}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-right:none;padding-right:0}#widgets-left .sidebar-name{margin-right:0}#widgets-left #available-widgets .widget-top{margin-right:0}#widgets-left .inactive-sidebar .widgets-sortables{margin-right:0}div.widget-liquid-right{width:100%;float:none}div.widget{max-width:480px}.widget-access-link{float:none;margin:15px 0 0}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:left}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(2n){float:right}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:left;width:49%}#widgets-right .sidebars-column-1{margin-right:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}css/install.css000066600000014500152330733730007526 0ustar00html { background: #f0f0f1; margin: 0 20px; } body { background: #fff; border: 1px solid #c3c4c7; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 140px auto 25px; padding: 20px 20px 10px; max-width: 700px; -webkit-font-smoothing: subpixel-antialiased; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } a { color: var(--wp-admin-theme-color); } a:hover, a:active { color: var(--wp-admin-theme-color-darker-20); } a:focus { color: var(--wp-admin-theme-color-darker-20); border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } h1, h2 { border-bottom: 1px solid #dcdcde; clear: both; color: #646970; font-size: 24px; padding: 0 0 7px; font-weight: 400; } h3 { font-size: 16px; } p, li, dd, dt { padding-bottom: 2px; font-size: 14px; line-height: 1.5; } code, .code { font-family: Consolas, Monaco, monospace; } ul, ol, dl { padding: 5px 5px 5px 22px; } a img { border: 0 } abbr { border: 0; font-variant: normal; } fieldset { border: 0; padding: 0; margin: 0; } #logo { margin: -130px auto 25px; padding: 0 0 25px; width: 84px; height: 84px; overflow: hidden; background-image: url(../images/w-logo-gray.png?ver=20260303); background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); background-size: 84px; background-position: center top; background-repeat: no-repeat; color: #3c434a; /* same as login.css */ font-size: 20px; font-weight: 400; line-height: 1.3em; text-decoration: none; text-align: center; text-indent: -9999px; outline: none; } .step { margin: 20px 0 15px; } .step, th { text-align: left; padding: 0; } .language-chooser.wp-core-ui .step .button.button-large { font-size: 14px; } textarea { border: 1px solid #dcdcde; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; width: 100%; box-sizing: border-box; } .form-table { border-collapse: collapse; margin-top: 1em; width: 100%; } .form-table td { margin-bottom: 9px; padding: 10px 20px 10px 0; font-size: 14px; vertical-align: top } .form-table th { font-size: 14px; text-align: left; padding: 10px 20px 10px 0; width: 115px; vertical-align: top; } .form-table code { line-height: 1.28571428; font-size: 14px; } .form-table p { margin: 4px 0 0; font-size: 11px; } .form-table .setup-description { margin: 4px 0 0; line-height: 1.6; } .form-table input { line-height: 1.33333333; font-size: 15px; padding: 3px 5px; } .wp-pwd { margin-top: 0; } .form-table .wp-pwd { display: flex; column-gap: 4px; } .form-table .password-input-wrapper { width: 100%; } input, submit { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } .form-table input[type=text], .form-table input[type=email], .form-table input[type=url], .form-table input[type=password], #pass-strength-result { width: 100%; } .form-table th p { font-weight: 400; } .form-table.install-success th, .form-table.install-success td { vertical-align: middle; padding: 16px 20px 16px 0; } .form-table.install-success td p { margin: 0; font-size: 14px; } .form-table.install-success td code { margin: 0; font-size: 18px; } #error-page { margin-top: 50px; } #error-page p { font-size: 14px; line-height: 1.28571428; margin: 25px 0 20px; } #error-page code, .code { font-family: Consolas, Monaco, monospace; } .message { border-left: 4px solid #d63638; padding: .7em .6em; background-color: #fcf0f1; } /* rtl:ignore */ #dbname, #uname, #pwd, #dbhost, #prefix, #user_login, #admin_email, #pass1, #pass2 { direction: ltr; } /* localization */ body.rtl, .rtl textarea, .rtl input, .rtl submit { font-family: Tahoma, sans-serif; } :lang(he-il) body.rtl, :lang(he-il) .rtl textarea, :lang(he-il) .rtl input, :lang(he-il) .rtl submit { font-family: Arial, sans-serif; } @media only screen and (max-width: 799px) { body { margin-top: 115px; } #logo a { margin: -125px auto 30px; } } @media screen and (max-width: 782px) { .form-table { margin-top: 0; } .form-table th, .form-table td { display: block; width: auto; vertical-align: middle; } .form-table th { padding: 20px 0 0; } .form-table td { padding: 5px 0; border: 0; margin: 0; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="url"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description { width: 100%; font-size: 16px; line-height: 1.5; padding: 7px 10px; display: block; max-width: none; box-sizing: border-box; } #pwd { padding-right: 2.5rem; } .wp-pwd #pass1 { padding-right: 50px; } .wp-pwd .button.wp-hide-pw { right: 0; } #pass-strength-result { width: 100%; } } body.language-chooser { max-width: 300px; } .language-chooser select { padding: 8px; width: 100%; display: block; border: 1px solid #dcdcde; background: #fff; color: #2c3338; font-size: 16px; font-family: Arial, sans-serif; font-weight: 400; } .language-chooser select:focus { color: #2c3338; } .language-chooser select option:hover, .language-chooser select option:focus { color: var(--wp-admin-theme-color-darker-20); } .language-chooser .step { text-align: right; } .screen-reader-input, .screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; visibility: hidden; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 2px 5px 0; } .step .spinner { display: inline-block; vertical-align: middle; margin-right: 15px; } .button.hide-if-no-js, .hide-if-no-js { display: none; } /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .spinner { background-image: url(../images/spinner-2x.gif); } } css/customize-controls-rtl.css000066600000215571152330733730012555 0ustar00/*! This file is auto-generated */ body { overflow: hidden; -webkit-text-size-adjust: 100%; } .customize-controls-close, .widget-control-actions a { text-decoration: none; } #customize-controls h3 { font-size: 14px; } #customize-controls img { max-width: 100%; } #customize-controls .submit { text-align: center; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked { background-color: rgba(0, 0, 0, 0.7); padding: 25px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message { margin-right: auto; margin-left: auto; max-width: 366px; min-height: 64px; width: auto; padding: 25px; position: relative; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; overflow-y: auto; text-align: right; top: calc( 50% - 100px ); } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar { padding-right: 109px; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing { margin-top: 0; } #customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons { margin-bottom: 0; } .customize-changeset-locked-avatar { width: 64px; position: absolute; right: 25px; top: 25px; } .wp-core-ui.wp-customizer .customize-changeset-locked-message a.button { margin-left: 10px; margin-top: 0; } #customize-controls .description { color: #50575e; } #customize-save-button-wrapper { float: left; margin-top: 7px; /* Vertically center 32px button in 45px header */ } body:not(.ready) #customize-save-button-wrapper .save { visibility: hidden; } #customize-save-button-wrapper .save { float: right; border-radius: 3px; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ margin-top: 0; } #customize-save-button-wrapper .save.has-next-sibling { border-radius: 0 3px 3px 0; } #customize-sidebar-outer-content { position: absolute; top: 0; bottom: 0; right: 0; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 100%; margin: 0; z-index: -1; background: #f0f0f1; transition: right .18s; border-left: 1px solid #dcdcde; border-right: 1px solid #dcdcde; height: 100%; } @media (prefers-reduced-motion: reduce) { #customize-sidebar-outer-content { transition: none; } } #customize-theme-controls .control-section-outer { display: none !important; } #customize-outer-theme-controls .accordion-section-content { padding: 12px; } #customize-outer-theme-controls .accordion-section-content.open { display: block; } .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { visibility: visible; right: 100%; transition: right .18s; } @media (prefers-reduced-motion: reduce) { .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { transition: none; } } .customize-outer-pane-parent { margin: 0; } .outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main { right: 300px; opacity: 0.4; } .outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { right: 64%; } #customize-outer-theme-controls li.notice { padding-top: 8px; padding-bottom: 8px; margin-right: 0; margin-bottom: 10px; } #publish-settings { text-indent: 0; border-radius: 3px 0 0 3px; padding-right: 0; padding-left: 0; box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */ font-size: 14px; width: 30px; float: right; transform: none; margin-top: 0; line-height: 2; } body:not(.ready) #publish-settings, body.trashing #customize-save-button-wrapper .save, body.trashing #publish-settings { display: none; } #customize-header-actions .spinner { margin-top: 13px; /* Vertically center 20px spinner in 45px header */ margin-left: 4px; } .saving #customize-header-actions .spinner, .trashing #customize-header-actions .spinner { visibility: visible; } #customize-header-actions { border-bottom: 1px solid #dcdcde; } #customize-controls .wp-full-overlay-sidebar-content { overflow-y: auto; overflow-x: hidden; } .outer-section-open #customize-controls .wp-full-overlay-sidebar-content { background: #f0f0f1; } #customize-controls .customize-info { border: none; border-bottom: 1px solid #dcdcde; margin-bottom: 15px; } #customize-control-changeset_status .customize-inside-control-row, #customize-control-changeset_preview_link input { background-color: #fff; border-bottom: 1px solid #dcdcde; box-sizing: content-box; width: 100%; margin-right: -12px; padding-right: 12px; padding-left: 12px; } #customize-control-trash_changeset { margin-top: 20px; } #customize-control-trash_changeset .button-link { position: relative; padding-right: 24px; display: inline-block; } #customize-control-trash_changeset .button-link:before { content: "\f182"; content: "\f182" / ''; font: normal 22px dashicons; text-decoration: none; position: absolute; right: 0; top: -2px; } #customize-controls .date-input:invalid { border-color: #d63638; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 10px; padding-bottom: 10px; font-weight: 500; } #customize-control-changeset_status .customize-inside-control-row:first-of-type { border-top: 1px solid #dcdcde; } #customize-control-changeset_status .customize-control-title { margin-bottom: 6px; } #customize-control-changeset_status input { margin-right: 0; } #customize-control-changeset_preview_link { position: relative; display: block; } .preview-link-wrapper .customize-copy-preview-link.preview-control-element.button { margin: 0; position: absolute; top: 50%; transform: translateY(-50%) !important; left: 0; background: #fff !important; } .preview-link-wrapper { position: relative; } .customize-copy-preview-link:before, .customize-copy-preview-link:after { content: ""; height: 40px; position: absolute; background: #fff; top: 0; } .customize-copy-preview-link:before { right: -10px; width: 9px; opacity: 0.75; } .customize-copy-preview-link:after { right: -5px; width: 4px; opacity: 0.8; } #customize-control-changeset_preview_link input { line-height: 2.85714286; /* 40px */ border-top: 1px solid #dcdcde; border-right: none; border-left: none; text-indent: -999px; color: #fff; /* Only necessary for IE11 */ min-height: 40px; } #customize-control-changeset_preview_link label { position: relative; display: block; } #customize-control-changeset_preview_link a { display: inline-block; position: absolute; white-space: nowrap; overflow: hidden; width: 90%; bottom: 14px; font-size: 14px; text-decoration: none; } #customize-control-changeset_preview_link a.disabled, #customize-control-changeset_preview_link a.disabled:active, #customize-control-changeset_preview_link a.disabled:focus, #customize-control-changeset_preview_link a.disabled:visited { color: #000; opacity: 0.4; cursor: default; outline: none; box-shadow: none; } #sub-accordion-section-publish_settings .customize-section-description-container { display: none; } #customize-controls .customize-info.section-meta { margin-bottom: 15px; } .customize-control-date_time .customize-control-description + .date-time-fields.includes-time { margin-top: 10px; } .customize-control.customize-control-date_time .date-time-fields .date-input.day { margin-left: 0; } .date-time-fields .date-input.month { width: auto; margin: 0; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 46px; } .customize-control-date_time select { vertical-align: top; } .date-time-fields .date-input.year { width: 65px; } .date-time-fields .date-input.meridian { width: auto; margin: 0; } .date-time-fields .time-row { margin-top: 12px; } #customize-control-changeset_preview_link { margin-top: 6px; } #customize-control-changeset_status { margin-bottom: 0; padding-bottom: 0; } #customize-control-changeset_scheduled_date { box-sizing: content-box; width: 100%; margin-right: -12px; padding: 12px; background: #fff; border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #customize-control-site_icon .customize-control-description, #customize-control-changeset_scheduled_date .customize-control-description { font-style: normal; } #customize-controls .customize-info.is-in-view, #customize-controls .customize-section-title.is-in-view { position: absolute; z-index: 9; width: 100%; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } #customize-controls .customize-section-title.is-in-view { margin-top: 0; } #customize-controls .customize-info.is-in-view + .accordion-section { margin-top: 15px; } #customize-controls .customize-info.is-sticky, #customize-controls .customize-section-title.is-sticky { position: fixed; top: 46px; } #customize-controls .customize-info .accordion-section-title { background: #fff; color: #50575e; border-right: none; border-left: none; border-bottom: none; cursor: default; padding: 10px 14px 11px 10px; } #customize-controls .customize-info.open .accordion-section-title:after, #customize-controls .customize-info .accordion-section-title:hover:after, #customize-controls .customize-info .accordion-section-title:focus:after { color: #2c3338; } #customize-controls .customize-info .accordion-section-title:after { display: none; } #customize-controls .customize-info .preview-notice { font-size: 13px; line-height: 1.9; margin: 0; font-weight: 400; color: #50575e; } #customize-controls .customize-pane-child .customize-section-title h3, #customize-controls .customize-pane-child h3.customize-section-title, #customize-outer-theme-controls .customize-pane-child .customize-section-title h3, #customize-outer-theme-controls .customize-pane-child h3.customize-section-title, #customize-controls .customize-info .panel-title { font-size: 20px; font-weight: 200; line-height: 26px; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-section-title span.customize-action { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #customize-controls .customize-info .customize-help-toggle { position: absolute; top: 4px; left: 1px; padding: 20px 10px 10px 20px; width: 20px; height: 20px; cursor: pointer; box-shadow: none; background: transparent; color: #50575e; border: none; } #customize-controls .customize-info .customize-help-toggle:before { position: absolute; top: 5px; right: 6px; } #customize-controls .customize-info .customize-panel-description, #customize-controls .customize-info .customize-section-description, #customize-outer-theme-controls .customize-info .customize-section-description, #customize-controls .no-widget-areas-rendered-notice { color: #50575e; display: none; background: #fff; padding: 12px 15px; border-top: 1px solid #dcdcde; } #customize-controls .customize-info .customize-panel-description.open + .no-widget-areas-rendered-notice { border-top: none; } .no-widget-areas-rendered-notice { font-style: italic; } .no-widget-areas-rendered-notice p:first-child { margin-top: 0; } .no-widget-areas-rendered-notice p:last-child { margin-bottom: 0; } #customize-controls .customize-info .customize-section-description { margin-bottom: 15px; } #customize-controls .customize-info .customize-panel-description p:first-child, #customize-controls .customize-info .customize-section-description p:first-child { margin-top: 0; } #customize-controls .customize-info .customize-panel-description p:last-child, #customize-controls .customize-info .customize-section-description p:last-child { margin-bottom: 0; } #customize-controls .current-panel .control-section > h3.accordion-section-title { padding-left: 30px; } #customize-theme-controls .control-section, #customize-outer-theme-controls .control-section { border: none; } #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { color: #50575e; background-color: #fff; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .accordion-section-title:has(button.accordion-trigger), #customize-controls .current-panel .control-section > h3.accordion-section-title:has(button.accordion-trigger) { padding: 0; } .accordion-section-title button.accordion-trigger { all: unset; width: 100%; padding: 10px 14px 11px 30px; display: flex; align-items: center; box-sizing: border-box; } .accordion-section-title button.accordion-trigger:has(.menu-in-location) { display: block; } .accordion-section-title button.accordion-trigger .spinner { margin-top: 0; } @media (prefers-reduced-motion: reduce) { #customize-theme-controls .accordion-section-title, #customize-outer-theme-controls .accordion-section-title { transition: none; } } #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { color: #50575e; background-color: #fff; border-right: 4px solid #fff; } #customize-theme-controls .accordion-section-title:after, #customize-outer-theme-controls .accordion-section-title:after { content: "\f341"; content: "\f345" / ''; color: #a7aaad; pointer-events: none; } #customize-theme-controls .accordion-section-content, #customize-outer-theme-controls .accordion-section-content { color: #50575e; background: transparent; } #accordion-section-themes + .control-section { border-top: 1px solid #dcdcde; } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { background: #f6f7f7; } #customize-theme-controls .control-section.open { border-bottom: 1px solid #f0f0f1; } #customize-theme-controls .control-section.open .accordion-section-title, #customize-outer-theme-controls .control-section.open .accordion-section-title { border-bottom-color: #f0f0f1 !important; } #customize-theme-controls .control-section:last-of-type.open, #customize-theme-controls .control-section:last-of-type > .accordion-section-title { border-bottom-color: #dcdcde; } #customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2), #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu, #customize-theme-controls .control-section-nav_menu_locations .accordion-section-title { border-top: 1px solid #dcdcde; } #customize-theme-controls .control-panel-nav_menus .control-section-nav_menu + .control-section-nav_menu { border-top: none; } #customize-theme-controls > ul { margin: 0; } #customize-theme-controls .accordion-section-content { position: absolute; top: 0; right: 100%; width: 100%; margin: 0; padding: 12px; box-sizing: border-box; } #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { overflow: visible; width: 100%; margin: 0; padding: 0; box-sizing: border-box; transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */ } @media (prefers-reduced-motion: reduce) { #customize-info, #customize-theme-controls .customize-pane-parent, #customize-theme-controls .customize-pane-child { transition: none; } } #customize-theme-controls .customize-pane-child.skip-transition { transition: none; } #customize-info, #customize-theme-controls .customize-pane-parent { position: relative; visibility: visible; height: auto; max-height: none; overflow: auto; transform: none; } #customize-theme-controls .customize-pane-child { position: absolute; top: 0; right: 0; visibility: hidden; height: 0; max-height: none; overflow: hidden; transform: translateX(-100%); } #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel { transform: none; } .section-open #customize-theme-controls .customize-pane-parent, .in-sub-panel #customize-theme-controls .customize-pane-parent, .section-open #customize-info, .in-sub-panel #customize-info, .in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel { visibility: hidden; height: 0; overflow: hidden; transform: translateX(100%); } .section-open #customize-theme-controls .customize-pane-parent.busy, .in-sub-panel #customize-theme-controls .customize-pane-parent.busy, .section-open #customize-info.busy, .in-sub-panel #customize-info.busy, .busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.open, #customize-theme-controls .customize-pane-child.current-panel, #customize-theme-controls .customize-pane-child.busy { visibility: visible; height: auto; overflow: auto; } #customize-theme-controls .customize-pane-child.accordion-section-content, #customize-theme-controls .customize-pane-child.accordion-sub-container { display: block; overflow-x: hidden; } #customize-theme-controls .customize-pane-child.accordion-section-content { padding: 12px; } #customize-theme-controls .customize-pane-child.menu li { position: static; } .customize-section-description-container, .control-section-nav_menu .customize-section-description-container, .control-section-new_menu .customize-section-description-container { margin-bottom: 15px; } .control-section-nav_menu .customize-control, .control-section-new_menu .customize-control { /* Override default `margin-bottom` for `.customize-control` */ margin-bottom: 0; } .customize-section-title { margin: -12px -12px 0; border-bottom: 1px solid #dcdcde; background: #fff; } div.customize-section-description { margin-top: 22px; } .customize-info div.customize-section-description { margin-top: 0; } div.customize-section-description p:first-child { margin-top: 0; } div.customize-section-description p:last-child { margin-bottom: 0; } #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { border-bottom: 1px solid #dcdcde; padding: 12px; } .ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child { padding: 12px 12px 13px; } .customize-section-title h3, h3.customize-section-title { padding: 10px 14px 12px 10px; margin: 0; line-height: 21px; color: #50575e; } .accordion-sub-container.control-panel-content { display: none; position: absolute; top: 0; width: 100%; } .accordion-sub-container.control-panel-content.busy { display: block; } .current-panel .accordion-sub-container.control-panel-content { width: 100%; } .customize-controls-close { display: block; position: absolute; top: 0; right: 0; width: 45px; height: 41px; padding: 0 0 0 2px; background: #f0f0f1; border: none; border-top: 4px solid #f0f0f1; border-left: 1px solid #dcdcde; color: #3c434a; text-align: right; cursor: pointer; box-sizing: content-box; } @media (prefers-reduced-motion: no-preference) { .customize-controls-close { transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } } .customize-panel-back, .customize-section-back { display: block; float: right; width: 48px; height: 71px; padding: 0 0 0 24px; margin: 0; background: #fff; border: none; border-left: 1px solid #dcdcde; border-right: 4px solid #fff; box-shadow: none; cursor: pointer; transition: color .15s ease-in-out, border-color .15s ease-in-out, background .15s ease-in-out; } .customize-section-back { height: 74px; } .ios .customize-panel-back { display: none; } .ios .expanded.in-sub-panel .customize-panel-back { display: block; } #customize-controls .panel-meta.customize-info .accordion-section-title { margin-right: 48px; border-right: none; } #customize-controls .panel-meta.customize-info .accordion-section-title:hover, #customize-controls .cannot-expand:hover .accordion-section-title { background: #fff; color: #50575e; border-right-color: #fff; } .customize-controls-close:focus, .customize-controls-close:hover, .customize-controls-preview-toggle:focus, .customize-controls-preview-toggle:hover { background: #fff; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #customize-theme-controls .accordion-section-title:focus .customize-action { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: 1px; } .customize-panel-back:hover, .customize-panel-back:focus, .customize-section-back:hover, .customize-section-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .customize-controls-close:before { font: normal 22px/45px dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: -3px; right: 13px; } .customize-panel-back:before, .customize-section-back:before { font: normal 20px/72px dashicons; content: "\f345"; content: "\f341" / ''; position: relative; right: 9px; } .wp-full-overlay-sidebar .wp-full-overlay-header { background-color: #f0f0f1; transition: padding ease-in-out .18s; } .in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header { padding-right: 62px; } p.customize-section-description { font-style: normal; margin-top: 22px; margin-bottom: 0; } .customize-section-description ul { margin-right: 1em; } .customize-section-description ul > li { list-style: disc; } .section-description-buttons { text-align: left; } .customize-control { width: 100%; float: right; clear: both; margin-bottom: 12px; } .customize-control input[type="text"], .customize-control input[type="password"], .customize-control input[type="email"], .customize-control input[type="number"], .customize-control input[type="search"], .customize-control input[type="tel"], .customize-control input[type="url"], .customize-control input[type="range"] { width: 100%; margin: 0; } .customize-control-hidden { margin: 0; } .customize-control-textarea textarea { width: 100%; resize: vertical; } .customize-control select { width: 100%; } .customize-control select[multiple] { height: auto; } .customize-control-title { display: block; font-size: 14px; line-height: 1.75; font-weight: 600; margin-bottom: 4px; } .customize-control-description { display: block; font-style: italic; line-height: 1.4; margin-top: 0; margin-bottom: 5px; } .customize-section-description a.external-link:after { font: 16px/11px dashicons; content: "\f504"; content: "\f504" / ''; top: 3px; position: relative; padding-right: 3px; display: inline-block; text-decoration: none; } .customize-control-color .color-picker, .customize-control-upload div { line-height: 28px; } .customize-control .customize-inside-control-row { line-height: 1.6; display: block; margin-right: 24px; padding-top: 6px; padding-bottom: 6px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-left: 4px; margin-right: -24px; } .customize-control-radio { padding: 5px 0 10px; } .customize-control-radio .customize-control-title { margin-bottom: 0; line-height: 1.6; } .customize-control-radio .customize-control-title + .customize-control-description { margin-top: 7px; } .customize-control-radio label, .customize-control-checkbox label { vertical-align: top; } .customize-control .attachment-thumb.type-icon { float: right; margin: 10px; width: auto; } .customize-control .attachment-title { font-weight: 600; margin: 0; padding: 5px 10px; } .customize-control .attachment-meta { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; padding: 0 10px; } .customize-control .attachment-meta-title { padding-top: 7px; } /* Remove descender space. */ .customize-control .thumbnail-image, .customize-control-header .current, .customize-control .wp-media-wrapper.wp-video { line-height: 0; } .customize-control .thumbnail-image img { cursor: pointer; } #customize-controls .thumbnail-audio .thumbnail { max-width: 64px; max-height: 64px; margin: 10px; float: right; } #available-menu-items .accordion-section-content .new-content-item-wrapper, .customize-control-dropdown-pages .new-content-item-wrapper { width: calc(100% - 30px); padding: 8px 15px; position: absolute; bottom: 0; z-index: 10; background: #f0f0f1; } .customize-control-dropdown-pages .new-content-item-wrapper { width: 100%; padding: 0; position: static; } #available-menu-items .new-content-item-wrapper > label, .customize-control-dropdown-pages .new-content-item-wrapper > label { margin-bottom: 4px; display: block; } #available-menu-items .accordion-section-content .new-content-item, .customize-control-dropdown-pages .new-content-item { display: flex; } .customize-control-dropdown-pages .new-content-item { width: 100%; padding: 5px 1px 5px 0; position: relative; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item { padding: 0; } .customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label { line-height: 1.6; } #available-menu-items .new-content-item .create-item-input, .customize-control-dropdown-pages .new-content-item .create-item-input { flex-grow: 10; width: 100%; } #available-menu-items .new-content-item .create-item-input { min-height: 32px; line-height: 2.15384615; /* 28px for 32px min-height with 13px font */ } #available-menu-items .new-content-item .add-content, .customize-control-dropdown-pages .new-content-item .add-content { margin: 0 6px 0 0; flex-grow: 1; } #available-menu-items .new-content-item .add-content { min-height: 32px; line-height: 2.30769231; /* 30px for 32px min-height with 13px font */ } .customize-control-dropdown-pages .new-content-item .create-item-input.invalid { border: 1px solid #d63638; } .customize-control-dropdown-pages .add-new-toggle { margin-right: 1px; font-weight: 600; line-height: 2.2; } #customize-preview iframe { width: 100%; height: 100%; position: absolute; } #customize-preview iframe + iframe { visibility: hidden; } .wp-full-overlay-sidebar { background: #f0f0f1; border-left: 1px solid #dcdcde; } /** * Notifications */ #customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */ margin: 4px 0 8px; padding: 0; cursor: default; } #customize-controls .customize-control-widget_form.has-error .widget .widget-top, .customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle { box-shadow: inset 0 0 0 2px #d63638; transition: .15s box-shadow linear; } #customize-controls .customize-control-notifications-container li.notice { list-style: none; margin: 0 0 6px; padding: 9px 14px; overflow: hidden; } #customize-controls .customize-control-notifications-container .notice.is-dismissible { padding-left: 38px; } .customize-control-notifications-container li.notice:last-child { margin-bottom: 0; } #customize-controls .customize-control-nav_menu_item .customize-control-notifications-container { margin-top: 0; } #customize-controls .customize-control-widget_form .customize-control-notifications-container { margin-top: 8px; } .customize-control-text.has-error input { outline: 2px solid #d63638; } #customize-controls #customize-notifications-area { position: absolute; top: 46px; width: 100%; border-bottom: 1px solid #dcdcde; display: block; padding: 0; margin: 0; } .wp-full-overlay.collapsed #customize-controls #customize-notifications-area { display: none !important; } #customize-controls #customize-notifications-area:not(.has-overlay-notifications), #customize-controls .customize-section-title > .customize-control-notifications-container:not(.has-overlay-notifications), #customize-controls .panel-meta > .customize-control-notifications-container:not(.has-overlay-notifications) { max-height: 210px; overflow-x: hidden; overflow-y: auto; } #customize-controls #customize-notifications-area > ul, #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { margin: 0; } #customize-controls .panel-meta > .customize-control-notifications-container, #customize-controls .customize-section-title > .customize-control-notifications-container { border-top: 1px solid #dcdcde; } #customize-controls #customize-notifications-area .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice { padding: 9px 14px; } #customize-controls #customize-notifications-area .notice.is-dismissible, #customize-controls .panel-meta > .customize-control-notifications-container .notice.is-dismissible, #customize-controls .customize-section-title > .customize-control-notifications-container .notice.is-dismissible { padding-left: 38px; } #customize-controls #customize-notifications-area .notice + .notice, #customize-controls .panel-meta > .customize-control-notifications-container .notice + .notice, #customize-controls .customize-section-title > .customize-control-notifications-container .notice + .notice { margin-top: 1px; } @keyframes customize-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } #customize-controls .notice.notification-overlay, #customize-controls #customize-notifications-area .notice.notification-overlay { margin: 0; border-right: 0; /* @todo Appropriate styles could be added for notice-error, notice-warning, notice-success, etc */ } #customize-controls .customize-control-notifications-container.has-overlay-notifications { animation: customize-fade-in 0.5s; z-index: 30; } /* Note: Styles for this are also defined in themes.css */ #customize-controls #customize-notifications-area .notice.notification-overlay .notification-message { clear: both; color: #1d2327; font-size: 18px; font-style: normal; margin: 0; padding: 2em 0; text-align: center; width: 100%; display: block; top: 50%; position: relative; } /* Style for custom settings */ /** * Static front page */ #customize-control-show_on_front.has-error { margin-bottom: 0; } #customize-control-show_on_front.has-error .customize-control-notifications-container { margin-top: 12px; } /** * Dropdowns */ .accordion-section .dropdown { float: right; display: block; position: relative; cursor: pointer; } .accordion-section .dropdown-content { overflow: hidden; float: right; min-width: 30px; height: 16px; line-height: 16px; margin-left: 16px; padding: 4px 5px; border: 2px solid #f0f0f1; -webkit-user-select: none; user-select: none; } /* @todo maybe no more used? */ .customize-control .dropdown-arrow { position: absolute; top: 0; bottom: 0; left: 0; width: 20px; background: #f0f0f1; } .customize-control .dropdown-arrow:after { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; padding: 0; text-indent: 0; text-align: center; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; color: #2c3338; } .customize-control .dropdown-status { color: #2c3338; background: #f0f0f1; display: none; max-width: 112px; } .customize-control-color .dropdown { margin-left: 5px; margin-bottom: 5px; } .customize-control-color .dropdown .dropdown-content { background-color: #50575e; border: 1px solid rgba(0, 0, 0, 0.15); } .customize-control-color .dropdown:hover .dropdown-content { border-color: rgba(0, 0, 0, 0.25); } /** * iOS can't scroll iframes, * instead it expands the iframe size to match the size of the content */ .ios .wp-full-overlay { position: relative; } .ios #customize-controls .wp-full-overlay-sidebar-content { -webkit-overflow-scrolling: touch; } /* Media controls */ .customize-control .actions .button { margin-top: 12px; } .customize-control-header .actions, .customize-control-header .uploaded { margin-bottom: 18px; } .customize-control-header .uploaded button:not(.random), .customize-control-header .default button:not(.random) { width: 100%; padding: 0; margin: 0; background: none; border: none; color: inherit; cursor: pointer; } .customize-control-header button img { display: block; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control .attachment-media-view .upload-button, .customize-control-header button.new, .customize-control-header button.remove { width: auto; height: auto; white-space: normal; } .customize-control .attachment-media-view .upload-button { width: 100%; text-align: center; } .customize-control .attachment-media-view .upload-button.control-focus { width: auto; } .customize-control.customize-control-header .actions .upload-button.button.new { width: 100%; text-align: center; } .customize-control .attachment-media-view .thumbnail, .customize-control-header .current .container { overflow: hidden; } .customize-control .attachment-media-view .placeholder, .customize-control .attachment-media-view .button-add-media, .customize-control-header .placeholder { width: 100%; position: relative; text-align: center; cursor: default; border: 1px dashed #c3c4c7; box-sizing: border-box; padding: 9px 0; line-height: 1.6; } .customize-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .customize-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .customize-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-color: #3582c4; border-style: solid; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .inner { display: none; position: absolute; width: 100%; color: #50575e; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .customize-control-header .inner, .customize-control-header .inner .dashicons { line-height: 20px; top: 8px; } .customize-control-header .list .inner, .customize-control-header .list .inner .dashicons { top: 9px; } .customize-control-header .header-view { position: relative; width: 100%; margin-bottom: 12px; } .customize-control-header .header-view:last-child { margin-bottom: 0; } /* Convoluted, but 'outline' support isn't good enough yet */ .customize-control-header .header-view:after { border: 0; } .customize-control-header .header-view.selected .choice:focus { outline: none; } .customize-control-header .header-view.selected:after { content: ""; position: absolute; height: auto; top: 0; right: 0; bottom: 0; left: 0; border: 4px solid #72aee6; border-radius: 2px; } .customize-control-header .header-view.button.selected { border: 0; } /* Header control: overlay "close" button */ .customize-control-header .uploaded .header-view .close { font-size: 20px; color: #fff; background: #50575e; background: rgba(0, 0, 0, 0.5); position: absolute; top: 10px; right: -999px; z-index: 1; width: 26px; height: 26px; cursor: pointer; } .customize-control-header .header-view:hover .close, .customize-control-header .header-view .close:focus { right: auto; left: 10px; } .customize-control-header .header-view .close:focus { outline: 1px solid #4f94d4; } /* Header control: randomiz(s)er */ .customize-control-header .random.placeholder { cursor: pointer; border-radius: 2px; height: 40px; } .customize-control-header button.random { width: 100%; height: auto; min-height: 40px; white-space: normal; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-header .placeholder:hover .dice, .customize-control-header .header-view:hover > button.random .dice { animation: dice-color-change 3s infinite; } .button-see-me { animation: bounce .7s 1; transform-origin: center bottom; } @keyframes bounce { from, 20%, 53%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); transform: translate3d(0,0,0); } 40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -12px, 0); } 70% { animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); transform: translate3d(0, -6px, 0); } 90% { transform: translate3d(0,-1px,0); } } .customize-control-header .choice { position: relative; display: block; margin-bottom: 9px; } .customize-control-header .choice:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .customize-control-header .uploaded div:last-child > .choice { margin-bottom: 0; } .customize-control .attachment-media-view .thumbnail-image img, .customize-control-header img { max-width: 100%; } .customize-control .attachment-media-view .remove-button, .customize-control .attachment-media-view .default-button, .customize-control-header .remove { margin-left: 8px; } /* Background position control */ .customize-control-background_position .background-position-control .button-group { display: block; } /** * Code Editor Control and Custom CSS Section * * Modifications to the Section Container to make the textarea full-width and * full-height, if the control is the only control in the section. */ .customize-control-code_editor textarea { width: 100%; font-family: Consolas, Monaco, monospace; font-size: 12px; padding: 6px 8px; tab-size: 2; } .customize-control-code_editor textarea, .customize-control-code_editor .CodeMirror { height: 14em; } #customize-controls .customize-section-description-container.section-meta.customize-info { border-bottom: none; } #sub-accordion-section-custom_css .customize-control-notifications-container { margin-bottom: 15px; } #customize-control-custom_css textarea { display: block; height: 500px; } .customize-section-description-container + #customize-control-custom_css .customize-control-title { margin-right: 12px; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { border-left: 0; border-right: 0; height: calc( 100vh - 185px ); resize: none; } .customize-section-description-container + #customize-control-custom_css:last-child { margin-right: -12px; width: 299px; width: calc( 100% + 24px ); margin-bottom: -12px; } .customize-section-description-container + #customize-control-custom_css:last-child .CodeMirror { height: calc( 100vh - 185px ); } .CodeMirror-lint-tooltip, .CodeMirror-hints { z-index: 500000 !important; } .customize-section-description-container + #customize-control-custom_css:last-child .customize-control-notifications-container { margin-right: 12px; margin-left: 12px; } .theme-browser .theme.active .theme-actions, .wp-customizer .theme-browser .theme .theme-actions { padding: 9px 15px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } @media screen and (max-width: 640px) { .customize-section-description-container + #customize-control-custom_css:last-child { margin-left: 0; } .customize-section-description-container + #customize-control-custom_css:last-child textarea { height: calc( 100vh - 140px ); } } /** * Themes */ #customize-theme-controls .control-panel-themes { border-bottom: none; } #customize-theme-controls .control-panel-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-panel-themes > .accordion-section-title { cursor: default; background: #fff; color: #50575e; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; border-right: none; border-left: none; margin: 0 0 15px; padding: 12px 15px 15px 100px; /* Space for the button */ } #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child { border-top: 0; } #customize-theme-controls .control-section-themes > .accordion-section-title:hover, /* Not a focusable element. */ #customize-theme-controls .control-section-themes > .accordion-section-title { margin: 0 0 15px; } #customize-controls .customize-themes-panel .accordion-section-title:hover, #customize-controls .customize-themes-panel .accordion-section-title { margin: 15px -8px; } #customize-controls .control-section-themes .accordion-section-title, #customize-controls .customize-themes-panel .accordion-section-title { padding-left: 100px; /* Space for the button */ } .control-panel-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action, #customize-controls .control-section-themes .accordion-section-title span.customize-action, #customize-controls .customize-section-title span.customize-action { font-size: 13px; display: block; font-weight: 400; } #customize-theme-controls .control-panel-themes .accordion-section-title .change-theme { position: absolute; left: 10px; top: 50%; margin-top: -20px; /* Half of 40px button height for vertical centering */ font-weight: 400; } #customize-notifications-area .notification-message button.switch-to-editor { display: block; margin-top: 6px; font-weight: 400; } #customize-theme-controls .control-panel-themes > .accordion-section-title:after { display: none; } .control-panel-themes .customize-themes-full-container { position: fixed; top: 0; right: 0; transition: .18s right ease-in-out; margin: 0 300px 0 0; padding: 71px 0 25px; overflow-y: scroll; width: calc(100% - 300px); height: calc(100% - 96px); background: #f0f0f1; z-index: 20; } @media (prefers-reduced-motion: reduce) { .control-panel-themes .customize-themes-full-container { transition: none; } } @media screen and (min-width: 1670px) { .control-panel-themes .customize-themes-full-container { width: 82%; left: 0; right: initial; } } .modal-open .control-panel-themes .customize-themes-full-container { overflow-y: visible; } /* Animations for opening the themes panel */ #customize-save-button-wrapper, #customize-header-actions .spinner, #customize-header-actions .customize-controls-preview-toggle { transition: .18s margin ease-in-out; } #customize-footer-actions, #customize-footer-actions .collapse-sidebar { bottom: 0; transition: .18s bottom ease-in-out; } .in-themes-panel:not(.animating) #customize-header-actions .spinner, .in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle, .in-themes-panel:not(.animating) #customize-preview, .in-themes-panel:not(.animating) #customize-footer-actions { visibility: hidden; } .wp-full-overlay.in-themes-panel { background: #f0f0f1; /* Prevents a black flash when fading in the panel */ } .in-themes-panel #customize-save-button-wrapper, .in-themes-panel #customize-header-actions .spinner, .in-themes-panel #customize-header-actions .customize-controls-preview-toggle { margin-top: -46px; /* Height of header actions bar */ } .in-themes-panel #customize-footer-actions, .in-themes-panel #customize-footer-actions .collapse-sidebar { bottom: -45px; } /* Don't show the theme count while the panel opens, as it's in the wrong place during the animation */ .in-themes-panel.animating .control-panel-themes .filter-themes-count { display: none; } .in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content { bottom: 0; } .themes-filter-bar .feature-filter-toggle { min-height: 32px; line-height: 2.30769231; } .themes-filter-bar .feature-filter-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 0 0 5px; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .feature-filter-toggle.open { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } .themes-filter-bar .feature-filter-toggle .filter-count-filters { display: none; } .filter-drawer { box-sizing: border-box; width: 100%; position: absolute; top: 46px; right: 0; padding: 25px 25px 25px 0; border-top: 0; margin: 0; background: #f0f0f1; border-bottom: 1px solid #dcdcde; } .filter-drawer .filter-group { margin: 0 0 0 25px; width: calc( (100% - 75px) / 3); min-width: 200px; max-width: 320px; } /* Adds a delay before fading in to avoid it "jumping" */ @keyframes themes-fade-in { 0% { opacity: 0; } 50% { opacity: 0; } 100% { opacity: 1; } } .control-panel-themes .customize-themes-full-container.animate { animation: .6s themes-fade-in 1; } .in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count { animation: .6s themes-fade-in 1; } .control-panel-themes .filter-themes-count .themes-displayed { font-weight: 600; color: #50575e; } .customize-themes-notifications { margin: 0; } .control-panel-themes .customize-themes-notifications .notice { margin: 0 0 25px; } .customize-themes-full-container .customize-themes-section { display: none !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ overflow: hidden; } .customize-themes-full-container .customize-themes-section.current-section { display: list-item !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */ } .control-section .customize-section-text-before { padding: 0 15px 8px 0; margin: 15px 0 0; line-height: 16px; border-bottom: 1px solid #dcdcde; color: #50575e; } .control-panel-themes .customize-themes-section-title { width: 100%; background: #fff; box-shadow: none; outline: none; border-top: none; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; border-left: none; cursor: pointer; padding: 10px 15px; position: relative; text-align: right; font-size: 14px; font-weight: 600; color: #50575e; text-shadow: none; } .control-panel-themes #accordion-section-installed_themes { border-top: 1px solid #dcdcde; } .control-panel-themes .theme-section { margin: 0; position: relative; } .control-panel-themes .customize-themes-section-title:focus, .control-panel-themes .customize-themes-section-title:hover { background: #f6f7f7; } .customize-themes-section-title:not(.selected):after { content: ""; display: block; position: absolute; top: 9px; left: 15px; width: 18px; height: 18px; border-radius: 100%; border: 1px solid #c3c4c7; background: #fff; } .control-panel-themes .theme-section .customize-themes-section-title.selected:after { content: "\f147"; content: "\f147" / ''; font: 16px/1 dashicons; box-sizing: border-box; width: 20px; height: 20px; padding: 3px 1px 1px 3px; /* Re-align the icon to the smaller grid */ border-radius: 100%; position: absolute; top: 9px; left: 15px; color: #fff; } #customize-theme-controls .themes.accordion-section-content { position: relative; right: 0; padding: 0; width: 100%; } .loading .customize-themes-section .spinner { display: block; visibility: visible; position: relative; clear: both; width: 20px; height: 20px; right: calc(50% - 10px); float: none; margin-top: 50px; } .customize-themes-section .no-themes, .customize-themes-section .no-themes-local { display: none; } .themes-section-installed_themes .theme .notice-success:not(.updated-message) { display: none; /* Hide "installed" notice on installed themes tab. */ } .customize-control-theme .theme { width: 100%; margin: 0; border: 1px solid #dcdcde; background: #fff; } .customize-control-theme .theme .theme-name, .customize-control-theme .theme .theme-actions { background: #fff; border: none; } .customize-control.customize-control-theme { /* override most properties on .customize-control */ box-sizing: border-box; width: 25%; max-width: 600px; /* Max. screenshot size / 2 */ margin: 0 0 25px 25px; padding: 0; clear: none; } /* 5 columns above 2100px */ @media screen and (min-width: 2101px) { .customize-control.customize-control-theme { width: calc( ( 100% - 125px ) / 5 - 1px ); /* 1px offset accounts for browser rounding, typical all grids */ } } /* 4 columns up to 2100px */ @media screen and (min-width: 1601px) and (max-width: 2100px) { .customize-control.customize-control-theme { width: calc( ( 100% - 100px ) / 4 - 1px ); } } /* 3 columns up to 1600px */ @media screen and (min-width: 1201px) and (max-width: 1600px) { .customize-control.customize-control-theme { width: calc( ( 100% - 75px ) / 3 - 1px ); } } /* 2 columns up to 1200px */ @media screen and (min-width: 851px) and (max-width: 1200px) { .customize-control.customize-control-theme { width: calc( ( 100% - 50px ) / 2 - 1px ); } } /* 1 column up to 850 px */ @media screen and (max-width: 850px) { .customize-control.customize-control-theme { width: 100%; } } .wp-customizer .theme-browser .themes { padding: 0 25px 25px 0; transition: .18s margin-top linear; } .wp-customizer .theme-browser .theme .theme-actions { opacity: 1; } #customize-controls h3.theme-name { font-size: 15px; } #customize-controls .theme-overlay .theme-name { font-size: 32px; } .customize-preview-header.themes-filter-bar { position: fixed; top: 0; right: 300px; width: calc(100% - 300px); height: 46px; background: #f0f0f1; z-index: 10; padding: 6px 25px; box-sizing: border-box; border-bottom: 1px solid #dcdcde; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .customize-preview-header.themes-filter-bar .search-form-input { position: relative; } .customize-preview-header .filter-themes-wrapper { display: grid; align-items: center; gap: 10px; grid-template-columns: auto 1fr; } .customize-preview-header .filter-themes-wrapper .filter-themes-count { justify-self: end; } @media screen and (min-width: 1670px) { .customize-preview-header.themes-filter-bar { width: 82%; left: 0; right: initial; } } .themes-filter-bar .themes-filter-container { margin: 0; padding: 0; display: flex; align-items: center; gap: 10px; } .themes-filter-bar .wp-filter-search { padding: 0 30px 0 10px; max-width: 100%; width: 40%; min-width: 300px; height: 32px; min-height: 32px; /* Override global 40px min-height for compact bar */ margin: 1px 0; top: 0; right: 0; } /* Unstick the filter bar on short windows/screens. This breakpoint is based on the current length of .org feature filters assuming translations do not wrap lines. */ @media screen and (max-height: 540px), screen and (max-width: 1018px) { .customize-preview-header.themes-filter-bar { position: relative; right: 0; width: 100%; margin: 0 0 25px; } .filter-drawer { top: 46px; } .wp-customizer .theme-browser .themes { padding: 0 25px 25px 0; overflow: hidden; } .control-panel-themes .customize-themes-full-container { margin-top: 0; padding: 0; height: 100%; width: calc(100% - 300px); } } @media screen and (max-width: 1018px) { .filter-drawer .filter-group { width: calc( (100% - 50px) / 2); } } @media screen and (max-width: 960px) { .customize-preview-header.themes-filter-bar { height: 96px; } } @media screen and (max-width: 900px) { .themes-filter-bar .wp-filter-search { width: 100%; margin: 0; min-width: 200px; } .customize-preview-header.themes-filter-bar, .customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container { display: grid; gap: 4px; } .customize-preview-header.themes-filter-bar .search-form-input { display: flex; flex-grow: 1; } .filter-drawer { top: 86px; } .control-panel-themes .filter-themes-count { float: right; } } @media screen and (max-width: 792px) { .filter-drawer .filter-group { width: calc( 100% - 25px); } } .control-panel-themes .customize-themes-mobile-back { display: none; } /* Mobile - toggle between themes and filters */ @media screen and (max-width: 600px) { .filter-drawer { top: 132px; } .wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes { display: block; float: left; } .control-panel-themes .customize-themes-full-container { width: 100%; margin: 0; padding-top: 46px; height: calc(100% - 46px); z-index: 1; display: none; } .showing-themes .control-panel-themes .customize-themes-full-container { display: block; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back { display: block; position: fixed; top: 0; right: 0; background: #f0f0f1; color: #3c434a; border-radius: 0; box-shadow: none; border: none; height: 46px; width: 100%; z-index: 10; text-align: right; text-shadow: none; border-bottom: 1px solid #dcdcde; border-right: 4px solid transparent; margin: 0; padding: 0; font-size: 0; overflow: hidden; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before { right: 0; top: 0; height: 46px; width: 26px; display: block; line-height: 2.3; padding: 0 8px; border-left: 1px solid #dcdcde; } .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover, .wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus { background: #f6f7f7; box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .showing-themes #customize-header-actions { display: none; } #customize-controls { width: 100%; } } /* Details View */ .wp-customizer .theme-overlay { display: none; } .wp-customizer.modal-open .theme-overlay { position: fixed; right: 0; top: 0; left: 0; bottom: 0; z-index: 109; } /* Avoid a z-index war by resetting elements that should be under the overlay. This is likely required because of the way that sections and panels are positioned. */ .wp-customizer.modal-open #customize-header-actions, .wp-customizer.modal-open .control-panel-themes .filter-themes-count, .wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after { z-index: -1; } .wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; } .wp-customizer .theme-overlay .theme-backdrop { background: rgba(240, 240, 241, 0.75); position: fixed; z-index: 110; } .wp-customizer .theme-overlay .star-rating { float: right; margin-left: 8px; } .wp-customizer .theme-rating .num-ratings { line-height: 20px; } .wp-customizer .theme-overlay .theme-wrap { right: 90px; left: 90px; top: 45px; bottom: 45px; z-index: 120; } .wp-customizer .theme-overlay .theme-actions { text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */ padding: 10px 25px 5px; background: #f0f0f1; border-top: 1px solid #dcdcde; } .wp-customizer .theme-overlay .theme-actions .theme-install.preview { margin-right: 8px; } .modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content { overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */ } .wp-customizer .theme-header { background: #f0f0f1; } .wp-customizer .theme-overlay .theme-header button, .wp-customizer .theme-overlay .theme-header .close:before { color: #3c434a; } .wp-customizer .theme-overlay .theme-header .close:focus, .wp-customizer .theme-overlay .theme-header .close:hover, .wp-customizer .theme-overlay .theme-header .right:focus, .wp-customizer .theme-overlay .theme-header .right:hover, .wp-customizer .theme-overlay .theme-header .left:focus, .wp-customizer .theme-overlay .theme-header .left:hover { background: #fff; } .wp-customizer .theme-overlay .theme-header .close:focus:before, .wp-customizer .theme-overlay .theme-header .close:hover:before { color: var(--wp-admin-theme-color); } .wp-customizer .theme-overlay .theme-header button.disabled, .wp-customizer .theme-overlay .theme-header button.disabled:hover, .wp-customizer .theme-overlay .theme-header button.disabled:focus { border-bottom: none; background: transparent; color: #c3c4c7; } /* Small Screens */ @media (max-width: 850px), (max-height: 472px) { .wp-customizer .theme-overlay .theme-wrap { right: 0; left: 0; top: 0; bottom: 0; } .wp-customizer .theme-browser .themes { padding-left: 25px; } } /* Handle cheaters. */ body.cheatin { font-size: medium; height: auto; background: #fff; border: 1px solid #c3c4c7; margin: 50px auto 2em; padding: 1em 2em; max-width: 700px; min-width: 0; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } body.cheatin h1 { border-bottom: 1px solid #dcdcde; clear: both; color: #50575e; font-size: 24px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; margin: 30px 0 0; padding: 0 0 7px; } body.cheatin p { font-size: 14px; line-height: 1.5; margin: 25px 0 20px; } /** * Widgets and Menus common styles */ /* higher specificity than .wp-core-ui .button */ #customize-theme-controls .add-new-widget, #customize-theme-controls .add-new-menu-item { cursor: pointer; float: left; margin: 0 10px 0 0; transition: all 0.2s; -webkit-user-select: none; user-select: none; outline: none; } .reordering .add-new-widget, .reordering .add-new-menu-item { opacity: 0.2; pointer-events: none; cursor: not-allowed; /* doesn't work in conjunction with pointer-events */ } .add-new-widget:before, .add-new-menu-item:before, #available-menu-items .new-content-item .add-content:before { content: "\f132"; content: "\f132" / ''; display: inline-block; position: relative; right: -2px; top: 0; font: normal 20px/1 dashicons; vertical-align: middle; transition: all 0.2s; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* Reordering */ .reorder-toggle { float: left; padding: 5px 8px; text-decoration: none; cursor: pointer; outline: none; } .reorder, .reordering .reorder-done { display: block; padding: 5px 8px; } .reorder-done, .reordering .reorder { display: none; } .widget-reorder-nav span, .menu-item-reorder-nav button { position: relative; overflow: hidden; float: right; display: block; width: 33px; /* was 42px for mobile */ height: 43px; color: #8c8f94; text-indent: -9999px; cursor: pointer; outline: none; } .menu-item-reorder-nav button { width: 30px; height: 40px; background: transparent; border: none; box-shadow: none; } .widget-reorder-nav span:before, .menu-item-reorder-nav button:before { display: inline-block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; font: normal 20px/43px dashicons; text-align: center; text-indent: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .widget-reorder-nav span:hover, .widget-reorder-nav span:focus, .menu-item-reorder-nav button:hover, .menu-item-reorder-nav button:focus { color: #1d2327; background: #f0f0f1; } .move-widget-down:before, .menus-move-down:before { content: "\f347"; content: "\f347" / ''; } .move-widget-up:before, .menus-move-up:before { content: "\f343"; content: "\f343" / ''; } #customize-theme-controls .first-widget .move-widget-up, #customize-theme-controls .last-widget .move-widget-down, .move-up-disabled .menus-move-up, .move-down-disabled .menus-move-down, .move-right-disabled .menus-move-right, .move-left-disabled .menus-move-left { color: #dcdcde; background-color: #fff; cursor: default; pointer-events: none; } /** * New widget and Add-menu-items modes and panels */ .wp-full-overlay-main { left: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */ width: 100%; } body.adding-widget .add-new-widget, body.adding-widget .add-new-widget:hover, .adding-menu-items .add-new-menu-item, .adding-menu-items .add-new-menu-item:hover, .add-menu-toggle.open, .add-menu-toggle.open:hover { background: #f0f0f1; border-color: #8c8f94; color: #2c3338; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); } body.adding-widget .add-new-widget:before, .adding-menu-items .add-new-menu-item:before, #accordion-section-add_menu .add-new-menu-item.open:before { transform: rotate(-45deg); } #available-widgets, #available-menu-items { position: absolute; top: 0; bottom: 0; right: -301px; visibility: hidden; overflow-x: hidden; overflow-y: auto; width: 300px; margin: 0; z-index: 4; background: #f0f0f1; transition: right .18s; border-left: 1px solid #dcdcde; } #available-widgets .accordion-section-title, #available-menu-items .accordion-section-title { z-index: 2; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: none; } #available-widgets-list { top: 82px; position: absolute; overflow: auto; bottom: 0; width: 100%; border-top: 1px solid #dcdcde; } .no-widgets-found #available-widgets-list { border-top: none; } #available-widgets-filter { position: fixed; top: 0; z-index: 1; width: 300px; background: #f0f0f1; } /* search field container */ #available-widgets-filter, #available-menu-items-search .accordion-section-title { padding: 13px 15px; box-sizing: border-box; } #available-widgets-filter input, #available-menu-items-search input { width: 100%; min-height: 40px; margin: 1px 0; padding: 0 30px; } #available-widgets-filter input::-ms-clear, #available-menu-items-search input::-ms-clear { display: none; /* remove the "x" in IE, which conflicts with the "x" icon on button.clear-results */ } #available-menu-items-search .search-icon, #available-widgets-filter .search-icon { display: block; position: absolute; bottom: 19px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ right: 16px; width: 30px; height: 30px; line-height: 2.1; text-align: center; color: #646970; } #available-widgets-filter .clear-results, #available-menu-items-search .accordion-section-title .clear-results { position: absolute; top: 40px; /* 13 container padding +1 input margin +1 input border +4 centering in 40px input */ left: 16px; width: 30px; height: 30px; padding: 0; border: 0; cursor: pointer; background: none; color: #d63638; text-decoration: none; outline: 0; } #available-widgets-filter .clear-results, #available-menu-items-search .clear-results, #available-menu-items-search.loading .clear-results.is-visible { display: none; } #available-widgets-filter .clear-results.is-visible, #available-menu-items-search .clear-results.is-visible { display: block; } #available-widgets-filter .clear-results:before, #available-menu-items-search .clear-results:before { content: "\f335"; content: "\f335" / ''; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #available-widgets-filter .clear-results:hover, #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:hover, #available-menu-items-search .clear-results:focus { color: #d63638; } #available-widgets-filter .clear-results:focus, #available-menu-items-search .clear-results:focus { border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #available-menu-items-search .search-icon:after, #available-widgets-filter .search-icon:after, .themes-filter-bar .search-icon:after { content: "\f179"; font: normal 20px/1 dashicons; vertical-align: middle; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .themes-filter-bar .search-icon { position: absolute; top: 2px; right: 2px; z-index: 1; color: #646970; height: 30px; width: 30px; line-height: 2; text-align: center; } .no-widgets-found-message { display: none; margin: 0; padding: 0 15px; line-height: inherit; } .no-widgets-found .no-widgets-found-message { display: block; } #available-widgets .widget-top, #available-widgets .widget-top:hover, #available-menu-items .item-top, #available-menu-items .item-top:hover { border: none; background: transparent; box-shadow: none; } #available-widgets .widget-tpl, #available-menu-items .item-tpl { position: relative; padding: 15px 60px 15px 15px; background: #fff; border-bottom: 1px solid #dcdcde; border-right: 4px solid #fff; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; cursor: pointer; display: none; } #available-widgets .widget, #available-menu-items .item { position: static; } /* Responsive */ .customize-controls-preview-toggle { display: none; } @media only screen and (max-width: 782px) { .wp-customizer .theme:not(.active):hover .theme-actions, .wp-customizer .theme:not(.active):focus .theme-actions { display: block; } .wp-customizer .theme-browser .theme.active .theme-name span { display: inline; } .customize-control-header button.random .dice { margin-top: 0; } .customize-control-radio .customize-inside-control-row, .customize-control-checkbox .customize-inside-control-row, .customize-control-nav_menu_auto_add .customize-inside-control-row { margin-right: 32px; } .customize-control-radio input, .customize-control-checkbox input, .customize-control-nav_menu_auto_add input { margin-right: -32px; } .customize-control input[type="radio"] + label + br, .customize-control input[type="checkbox"] + label + br { line-height: 2.5; /* For widgets checkboxes */ } .customize-control .date-time-fields select { height: 39px; } .date-time-fields .date-input.month { width: 79px; } .date-time-fields .date-input.day, .date-time-fields .date-input.hour, .date-time-fields .date-input.minute { width: 55px; } .date-time-fields .date-input.year { width: 80px; } #customize-control-changeset_preview_link a { bottom: 16px; } .media-widget-control .media-widget-buttons .button.edit-media, .media-widget-control .media-widget-buttons .button.change-media, .media-widget-control .media-widget-buttons .button.select-media { margin-top: 12px; } .customize-preview-header.themes-filter-bar .search-icon { top: 6px; } } @media screen and (max-width: 1200px) { .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { right: 67%; } } @media screen and (max-width: 640px) { /* when the sidebar is collapsed and switching to responsive view, bring it back see ticket #35220 */ .wp-full-overlay.collapsed #customize-controls { margin-right: 0; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { bottom: 0; } .customize-controls-preview-toggle { display: block; position: absolute; top: 0; right: 48px; line-height: 2.6; font-size: 14px; padding: 0 12px 4px; margin: 0; height: 45px; background: #f0f0f1; border: 0; border-left: 1px solid #dcdcde; border-top: 4px solid #f0f0f1; color: #50575e; cursor: pointer; transition: color .1s ease-in-out, background .1s ease-in-out; } #customize-footer-actions, /*#customize-preview,*/ .customize-controls-preview-toggle .controls, .preview-only .wp-full-overlay-sidebar-content, .preview-only .customize-controls-preview-toggle .preview { display: none; } .preview-only #customize-save-button-wrapper { margin-top: -46px; } .customize-controls-preview-toggle .preview:before, .customize-controls-preview-toggle .controls:before { font: normal 20px/1 dashicons; content: "\f177"; content: "\f177" / ''; position: relative; top: 4px; margin-left: 6px; } .customize-controls-preview-toggle .controls:before { content: "\f540"; content: "\f540" / ''; } .preview-only #customize-controls { height: 45px; } .preview-only #customize-preview, .preview-only .customize-controls-preview-toggle .controls { display: block; } .wp-core-ui.wp-customizer .button { padding: 0 14px; line-height: 2.14285714; /* 30px */ font-size: 14px; vertical-align: middle; } .customize-control .attachment-media-view .upload-button { text-align: center; } #customize-control-changeset_status .customize-inside-control-row { padding-top: 15px; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { width: 100%; } #available-widgets .customize-section-title, #available-menu-items .customize-section-title { border: 0; clip-path: none; height: inherit; margin: 0; overflow: hidden; padding: 0; width: auto; position: static; } #available-widgets .customize-section-title button, #available-menu-items .customize-section-title button { display: block; } #available-widgets .customize-section-back, #available-menu-items .customize-section-back { height: 69px; } #available-widgets .customize-section-title h3, #available-menu-items .customize-section-title h3 { font-size: 20px; font-weight: 200; padding: 9px 14px 12px 10px; margin: 0; line-height: 24px; color: #50575e; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets .customize-section-title .customize-action, #available-menu-items .customize-section-title .customize-action { font-size: 13px; display: block; font-weight: 400; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } #available-widgets-filter { position: relative; width: 100%; height: auto; } #available-widgets-list { top: 152px; } #available-menu-items-search .clear-results { top: 40px; left: 16px; } .reorder, .reordering .reorder-done { padding: 8px; } } @media screen and (max-width: 600px) { .wp-full-overlay.expanded { margin-right: 0; } body.adding-widget div#available-widgets, body.adding-menu-items div#available-menu-items, body.outer-section-open div#customize-sidebar-outer-content { top: 46px; z-index: 10; } body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content { right: -100%; } body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { right: 0; } } css/dashboard.css000066600000073311152330733730010014 0ustar00#wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody-content #dashboard-widgets.columns-2 .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets.columns-2 #postbox-container-2, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 { float: right; width: 50.5%; } #wpbody-content #dashboard-widgets.columns-3 .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets.columns-3 #postbox-container-3, #wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 { float: right; } #wpbody-content #dashboard-widgets.columns-4 .postbox-container { width: 25%; } #dashboard-widgets .postbox-container { width: 25%; } #dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container { border: none !important; } #dashboard-widgets-wrap { overflow: hidden; margin: 0 -8px; } #dashboard-widgets .postbox { border-radius: 8px; } #dashboard-widgets .postbox-header .hndle { padding: 12px 16px; } #dashboard-widgets .postbox .inside { margin-bottom: 0; } #dashboard-widgets .meta-box-sortables { display: flow-root; /* avoid margin collapsing between parent and first/last child elements */ /* Required min-height to make the jQuery UI Sortable drop zone work. */ min-height: 0; margin: 0 8px 20px; } #dashboard-widgets .meta-box-sortables:not(:empty) { margin-bottom: 16px; } #dashboard-widgets .postbox-container .empty-container { outline: 2px dashed rgb(0, 0, 0, 0.15); outline-offset: -2px; border-radius: 8px; height: 250px; margin: 4px; } /* Only highlight drop zones when dragging. */ .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); min-height: 100px; } .is-dragging-metaboxes #dashboard-widgets .postbox-container .empty-container { background: rgb(0, 0, 0, 0.01); } #dashboard-widgets .postbox-container .empty-container:after { content: attr(data-emptystring); margin: auto; position: absolute; top: 50%; left: 0; right: 0; transform: translateY( -50% ); padding: 0 2em; text-align: center; color: #646970; font-size: 16px; line-height: 1.5; display: none; } /* @todo: this was originally in this section, but likely belongs elsewhere */ #the-comment-list td.comment p.comment-author { margin-top: 0; margin-left: 0; } #the-comment-list p.comment-author img { float: left; margin-right: 8px; } #the-comment-list p.comment-author strong a { border: none; } #the-comment-list td { vertical-align: top; } #the-comment-list td.comment { word-wrap: break-word; } #the-comment-list td.comment img { max-width: 100%; } /* Screen meta exception for when the "Dashboard" heading is missing or located below the Welcome Panel. */ .index-php #screen-meta-links { margin: 0 20px 8px 0; } /* Welcome Panel */ .welcome-panel { position: relative; overflow: auto; margin: 16px 0; border-radius: 8px; font-size: 14px; line-height: 1.3; clear: both; } .welcome-panel h2 { margin: 0; font-size: 48px; font-weight: 600; line-height: 1.25; } .welcome-panel h3 { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.4; } .welcome-panel p { font-size: inherit; line-height: inherit; } .welcome-panel-header { position: relative; color: #fff; } .welcome-panel-header-image { position: absolute !important; top: 0; right: 0; bottom: 0; left: 0; z-index: 0 !important; overflow: hidden; } .welcome-panel-header-image svg { display: block; margin: auto; width: 100%; height: 100%; } .rtl .welcome-panel-header-image svg { transform: scaleX(-1); } .welcome-panel-header * { color: inherit; position: relative; z-index: 1; } .welcome-panel-header a:focus, .welcome-panel-header a:hover { color: inherit; text-decoration: none; } .welcome-panel-header a:focus, .welcome-panel .welcome-panel-close:focus { outline-color: currentColor; outline-offset: 1px; box-shadow: none; } .welcome-panel-header p { margin: 0.5em 0 0; font-size: 20px; line-height: 1.4; } .welcome-panel .welcome-panel-close { display: flex; align-items: center; position: absolute; top: 10px; right: 10px; padding: 10px 15px; font-size: 13px; line-height: 1.23076923; /* Chrome rounding, needs to be 16px equivalent */ text-decoration: none; z-index: 1; /* Raise above the version image. */ } .welcome-panel .welcome-panel-close:before { transition: all .1s ease-in-out; content: '\f335'; font-size: 24px; color: #fff; } .welcome-panel .welcome-panel-close { color: #fff; } .welcome-panel .welcome-panel-close:hover, .welcome-panel .welcome-panel-close:focus, .welcome-panel .welcome-panel-close:hover::before, .welcome-panel .welcome-panel-close:focus::before { color: #fff972; } /* @deprecated 5.9.0 -- Button removed from panel. */ .wp-core-ui .welcome-panel .button.button-hero { margin: 15px 13px 3px 0; padding: 12px 36px; height: auto; line-height: 1.4285714; white-space: normal; } .welcome-panel-content { min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; } .welcome-panel-header-wrap { background-color: #151515; } .welcome-panel-header { box-sizing: border-box; margin-left: auto; margin-right: auto; max-width: 1500px; width: 100%; padding: 48px 0 80px 48px; } .welcome-panel .welcome-panel-column-container { box-sizing: border-box; width: 100%; clear: both; display: grid; z-index: 1; padding: 24px; grid-template-columns: repeat(3, 1fr); gap: 32px; align-self: flex-end; background: #ffffff; border: 1px solid #c3c4c7; border-top: 0; border-radius: 0 0 8px 8px; } [class*="welcome-panel-icon"] { height: 60px; width: 60px; background-position: center; background-size: 24px 24px; background-repeat: no-repeat; border-radius: 100%; } .welcome-panel-column > svg { margin-top: 4px; } .welcome-panel-column { display: grid; grid-template-columns: min-content 1fr; gap: 24px; } .welcome-panel-icon-pages { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 13.8h6v-1.5H7v1.5zM18 16V4c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2zM5.5 16V4c0-.3.2-.5.5-.5h10c.3 0 .5.2.5.5v12c0 .3-.2.5-.5.5H6c-.3 0-.5-.2-.5-.5zM7 10.5h8V9H7v1.5zm0-3.3h8V5.8H7v1.4zM20.2 6v13c0 .7-.6 1.2-1.2 1.2H8v1.5h11c1.5 0 2.7-1.2 2.7-2.8V6h-1.5z' /%3E%3C/svg%3E"); } .welcome-panel-icon-layout { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 5.5H6a.5.5 0 00-.5.5v3h13V6a.5.5 0 00-.5-.5zm.5 5H10v8h8a.5.5 0 00.5-.5v-7.5zm-10 0h-3V18a.5.5 0 00.5.5h2.5v-8zM6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2z' /%3E%3C/svg%3E"); } .welcome-panel-icon-styles { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 4c-4.4 0-8 3.6-8 8v.1c0 4.1 3.2 7.5 7.2 7.9h.8c4.4 0 8-3.6 8-8s-3.6-8-8-8zm0 15V5c3.9 0 7 3.1 7 7s-3.1 7-7 7z' /%3E%3C/svg%3E"); } /* @deprecated 5.9.0 -- Section removed from welcome panel. */ .welcome-panel .welcome-widgets-menus { line-height: 1.14285714; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.8em 1em 1em 0; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li { font-size: 14px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel li a { text-decoration: none; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { line-height: 1.14285714; list-style-type: none; padding: 0 0 8px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon { background: transparent !important; } /* Welcome Panel and Right Now common Icons style */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-icon:before, #dashboard_right_now li a:before, #dashboard_right_now li span:before, #dashboard_right_now .search-engines-info:before { color: #646970; font: normal 20px/1 dashicons; display: inline-block; padding: 0 10px 0 0; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; vertical-align: top; } /* Welcome Panel specific Icons styles */ /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-write-blog:before, .welcome-panel .welcome-edit-page:before { content: "\f119"; content: "\f119" / ''; top: -3px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-add-page:before { content: "\f132"; content: "\f132" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-setup-home:before { content: "\f102"; content: "\f102" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-view-site:before { content: "\f115"; content: "\f115" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets-menus:before { content: "\f116"; content: "\f116" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-widgets:before { content: "\f538"; content: "\f538" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-menus:before { content: "\f163"; content: "\f163" / ''; top: -2px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-comments:before { content: "\f117"; content: "\f117" / ''; top: -1px; } /* @deprecated 5.9.0 -- Icons removed from welcome panel. */ .welcome-panel .welcome-learn-more:before { content: "\f118"; content: "\f118" / ''; top: -1px; } /* Right Now specific Icons styles */ #dashboard_right_now .search-engines-info:before, #dashboard_right_now li a:before, #dashboard_right_now li > span:before { /* get only the first level span to exclude screen-reader-text in mu-storage */ padding: 0 5px 0 0; /* generic icon for items added by CPTs ? */ content: "\f159"; content: "\f159" / ''; } #dashboard_right_now .page-count a:before, #dashboard_right_now .page-count span:before { content: "\f105"; content: "\f105" / ''; } #dashboard_right_now .post-count a:before, #dashboard_right_now .post-count span:before { content: "\f109"; content: "\f109" / ''; } #dashboard_right_now .comment-count a:before { content: "\f101"; content: "\f101" / ''; } #dashboard_right_now .comment-mod-count a:before { content: "\f125"; content: "\f125" / ''; } #dashboard_right_now .storage-count a:before { content: "\f104"; content: "\f104" / ''; } #dashboard_right_now .storage-count.warning a:before { content: "\f153"; content: "\f153" / ''; } #dashboard_right_now .search-engines-info:before { content: "\f348"; content: "\f348" / ''; color: #d63638; } /* Dashboard WordPress events */ .community-events-errors { margin: 0; } .community-events-loading { padding: 10px 12px 8px; } .community-events { margin-bottom: 6px; padding: 0 12px; } .community-events .spinner { margin: 0 2px 0; } .community-events-errors[aria-hidden="true"], .community-events-errors [aria-hidden="true"], .community-events-loading[aria-hidden="true"], .community-events[aria-hidden="true"], .community-events form[aria-hidden="true"] { display: none; } .community-events .activity-block:first-child, .community-events h2 { padding-top: 12px; padding-bottom: 10px; } .community-events-form { margin: 15px 0 5px; display: flex; gap: 5px; align-items: center; flex-wrap: wrap; } .community-events-form .regular-text { width: 40%; margin: 0; min-height: 32px; padding: 0 8px; } #dashboard-widgets .community-events-form .button { min-height: 32px; line-height: 2.30769231; padding: 0 12px; } .community-events li.event-none { border-left: 4px solid var(--wp-admin-theme-color, #3858e9); } #dashboard-widgets .community-events li.event-none a { text-decoration: underline; } .community-events-form label { line-height: 2.14285714; } .community-events .activity-block > p { margin-bottom: 0; display: inline; } .community-events-toggle-location { vertical-align: middle; } /* Needs higher specificity than #dashboard-widgets .button-link */ #dashboard-widgets .community-events-cancel.button-link { text-decoration: underline; } .community-events ul { background-color: rgba(var(--wp-admin-theme-color--rgb),.08); padding-left: 0; padding-right: 0; padding-bottom: 0; } .community-events li { margin: 0; padding: 8px 12px; color: #2c3338; } .community-events li:first-child { border-top: 1px solid #e9e9ed; } .community-events li ~ li { border-top: 1px solid #e9e9ed; } .community-events .activity-block.last { border-bottom: 1px solid #e9e9ed; padding-top: 0; margin-top: -1px; } .community-events .event-info { display: block; } .community-events .ce-separator::before { content: "\2022"; content: "\2022" / ''; } .event-icon { height: 18px; padding-right: 10px; width: 18px; display: none; /* Hide on smaller screens */ } .event-icon:before { color: #646970; font-size: 18px; } .event-meetup .event-icon:before { content: "\f484"; content: "\f484" / ''; } .event-wordcamp .event-icon:before { content: "\f486"; content: "\f486" / ''; } .community-events .event-title { font-weight: 600; display: block; } .community-events .event-date, .community-events .event-time { display: block; } .community-events-footer { margin-top: 0; margin-bottom: 0; padding: 12px; border-top: 1px solid #f0f0f1; color: #646970; } /* Safari 10 + VoiceOver specific: without this, the hidden text gets read out before the link. */ .community-events-footer .screen-reader-text { height: inherit; white-space: nowrap; } /* Dashboard WordPress news */ #dashboard_primary .inside { margin: 0; padding: 0; } #dashboard_primary .widget-loading { padding: 12px 12px 0; margin-bottom: 1em !important; /* Needs to override `.postbox .inside > p:last-child` in common.css */ } /* Notice when JS is off. */ #dashboard_primary .inside .notice { margin: 0; } body #dashboard-widgets .postbox form .submit { margin: 0; } /* Used only for configurable widgets. */ .dashboard-widget-control-form p { margin-top: 0; } .rssSummary { color: #646970; margin-top: 4px; } #dashboard_primary .rss-widget { font-size: 13px; padding: 0 12px; } #dashboard_primary .rss-widget:last-child { border-bottom: none; padding-bottom: 8px; } #dashboard_primary .rss-widget a { font-weight: 400; } #dashboard_primary .rss-widget span, #dashboard_primary .rss-widget span.rss-date { color: #646970; } #dashboard_primary .rss-widget span.rss-date { margin-left: 12px; } #dashboard_primary .rss-widget ul li { padding: 4px 0; margin: 0; } /* Dashboard right now */ #dashboard_right_now ul { margin: 0; /* contain floats but don't use overflow: hidden */ display: inline-block; width: 100%; } #dashboard_right_now li { width: 50%; float: left; margin-bottom: 10px; } #dashboard_right_now .main p { margin: 0; } #dashboard_right_now #wp-version-message .button { float: right; position: relative; top: -5px; margin-left: 5px; } #dashboard_right_now p.search-engines-info { margin: 1em 0; } .mu-storage { overflow: hidden; } #dashboard-widgets h3.mu-storage { margin: 0 0 10px; padding: 0; font-size: 14px; font-weight: 400; } #network_dashboard_right_now p input { margin: 2px 1px; vertical-align: middle; } /* Dashboard right now - Colors */ #dashboard_right_now .sub { color: #50575e; background: #f6f7f7; border-top: 1px solid #f0f0f1; padding: 10px 12px 6px; } #dashboard_right_now .sub h3 { color: #50575e; } #dashboard_right_now .sub p { margin: 0 0 1em; } #dashboard_right_now .warning a:before, #dashboard_right_now .warning span:before { color: #d63638; } /* Dashboard Quick Draft */ #dashboard_quick_press .inside { margin: 0; padding: 0; } #dashboard_quick_press div.updated { margin-bottom: 10px; border: 1px solid #f0f0f1; border-width: 1px 1px 1px 0; } #dashboard_quick_press form { margin: 12px; } #dashboard_quick_press .drafts { padding: 10px 0 0; } /* Dashboard Quick Draft - Form styling */ #dashboard_quick_press label { display: inline-block; margin-bottom: 4px; } #dashboard_quick_press input, #dashboard_quick_press textarea { box-sizing: border-box; margin: 0; } #dashboard-widgets .postbox form .submit { margin: -39px 0; float: right; } #description-wrap { margin-top: 12px; } #quick-press textarea#content { min-height: 90px; max-height: 1300px; margin: 0 0 8px; padding: 8px 12px; resize: none; } /* Dashboard Quick Draft - Drafts list */ .js #dashboard_quick_press .drafts { border-top: 1px solid #f0f0f1; } #dashboard_quick_press .drafts abbr { border: none; } #dashboard_quick_press .drafts .view-all { float: right; margin: 0 12px 0 0; } #dashboard_primary a.rsswidget { font-weight: 400; } #dashboard_quick_press .drafts ul { margin: 0 12px; } #dashboard_quick_press .drafts li { margin-bottom: 1em; } #dashboard_quick_press .drafts li time { color: #646970; } #dashboard_quick_press .drafts p { margin: 0; word-wrap: break-word; } #dashboard_quick_press .draft-title { word-wrap: break-word; } #dashboard_quick_press .draft-title a, #dashboard_quick_press .draft-title time { margin: 0 5px 0 0; } /* Dashboard common styles */ #dashboard-widgets h4, /* Back-compat for pre-4.4 */ #dashboard-widgets h3, #dashboard_quick_press .drafts h2 { margin: 0 12px 8px; padding: 0; font-size: 14px; font-weight: 400; color: #1d2327; } #dashboard_quick_press .drafts h2 { line-height: inherit; } #dashboard-widgets .inside h4, /* Back-compat for pre-4.4 */ #dashboard-widgets .inside h3 { margin-left: 0; margin-right: 0; } /* Dashboard activity widget */ #dashboard_activity .comment-meta span.approve:before { content: "\f227"; content: "\f227" / ''; font: 20px/.5 dashicons; margin-left: 5px; vertical-align: middle; position: relative; top: -1px; margin-right: 2px; } #dashboard_activity .inside { margin: 0; padding: 0 12px; } #dashboard_activity .no-activity { overflow: hidden; padding: 12px 0; text-align: center; } #dashboard_activity .no-activity p { color: #646970; font-size: 16px; } #dashboard_activity .subsubsub { float: none; border-top: 1px solid #f0f0f1; margin: 0 -12px; padding: 8px 12px 4px; } #dashboard_activity .subsubsub a .count, #dashboard_activity .subsubsub a.current .count { color: #646970; /* white background on the dashboard but #f0f0f1 on list tables */ } #future-posts ul, #published-posts ul { margin: 8px -12px 0 -12px; } #future-posts li, #published-posts li { display: grid; grid-template-columns: clamp(160px, calc(2vw + 140px), 200px) auto; column-gap: 10px; color: #646970; padding: 4px 12px; } #future-posts li:nth-child(odd), #published-posts li:nth-child(odd) { background-color: #f6f7f7; } .activity-block { border-bottom: 1px solid #f0f0f1; margin: 0 -12px 6px -12px; padding: 8px 12px 4px; } .activity-block:last-child { border-bottom: none; margin-bottom: 0; } .activity-block .subsubsub li { color: #646970; } /* Dashboard activity widget - Comments */ /* @todo: needs serious de-duplication */ #activity-widget #the-comment-list tr.undo, #activity-widget #the-comment-list div.undo { background: none; padding: 6px 0; margin-left: 12px; } #activity-widget #the-comment-list .comment-item { background: #f6f7f7; padding: 12px; position: relative; } #activity-widget #the-comment-list .avatar { position: absolute; top: 12px; } #activity-widget #the-comment-list .dashboard-comment-wrap.has-avatar { padding-left: 63px; } #activity-widget #the-comment-list .dashboard-comment-wrap blockquote { margin: 1em 0; } #activity-widget #the-comment-list .comment-item p.row-actions { margin: 4px 0 0; } #activity-widget #the-comment-list .comment-item:first-child { border-top: 1px solid #f0f0f1; } #activity-widget #the-comment-list .unapproved { background-color: #fcf9e8; } #activity-widget #the-comment-list .unapproved:before { content: ""; display: block; position: absolute; left: 0; top: 0; bottom: 0; background: #d63638; width: 4px; } #activity-widget #the-comment-list .spam-undo-inside .avatar, #activity-widget #the-comment-list .trash-undo-inside .avatar { position: relative; top: 0; } /* Browse happy box */ #dashboard-widgets #dashboard_browser_nag.postbox .inside { margin: 10px; } .postbox .button-link .edit-box { display: none; } .edit-box { opacity: 0; } .hndle:hover .edit-box, .edit-box:focus { opacity: 1; } #dashboard-widgets form .input-text-wrap input { width: 100%; } #dashboard-widgets form .textarea-wrap textarea { width: 100%; } #dashboard-widgets .postbox form .submit { float: none; margin: .5em 0 0; padding: 0; border: none; } #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { min-width: 0; } #dashboard-widgets li a, #dashboard-widgets .button-link, .community-events-footer a { text-decoration: none; } #dashboard-widgets h2 a { text-decoration: underline; } #dashboard-widgets .hndle .postbox-title-action { float: right; line-height: 1.2; } #dashboard_plugins h5 { font-size: 14px; } /* Recent Comments */ #latest-comments #the-comment-list { position: relative; margin: 0 -12px; } #activity-widget #the-comment-list .comment, #activity-widget #the-comment-list .pingback { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06); } #activity-widget .comments #the-comment-list .alt { background-color: transparent; } #activity-widget #latest-comments #the-comment-list .comment-item { /* the row-actions paragraph is output only for users with 'edit_comment' capabilities, for other users this needs a min height equal to the gravatar image */ min-height: 50px; margin: 0; padding: 12px; } #latest-comments #the-comment-list .pingback { padding-left: 12px !important; } #latest-comments #the-comment-list .comment-item:first-child { border-top: none; } #latest-comments #the-comment-list .comment-meta { line-height: 1.5; margin: 0; color: #646970; } #latest-comments #the-comment-list .comment-meta cite { font-style: normal; font-weight: 400; } #latest-comments #the-comment-list .comment-item blockquote, #latest-comments #the-comment-list .comment-item blockquote p { margin: 0; padding: 0; display: inline; } #latest-comments #the-comment-list .comment-item p.row-actions { margin: 3px 0 0; padding: 0; font-size: 13px; } /* Feeds */ .rss-widget ul { margin: 0; padding: 0; list-style: none; } a.rsswidget { font-size: 13px; font-weight: 600; line-height: 1.4; } .rss-widget ul li { line-height: 1.5; margin-bottom: 12px; } .rss-widget span.rss-date { color: #646970; font-size: 13px; margin-left: 3px; } .rss-widget cite { display: block; text-align: right; margin: 0 0 1em; padding: 0; } .rss-widget cite:before { content: "\2014"; content: "\2014" / ''; } .dashboard-comment-wrap { word-wrap: break-word; } /* Browser Nag */ #dashboard_browser_nag a.update-browser-link { font-size: 1.2em; font-weight: 600; } #dashboard_browser_nag a { text-decoration: underline; } #dashboard_browser_nag p.browser-update-nag.has-browser-icon { padding-right: 128px; } #dashboard_browser_nag .browser-icon { margin-top: -32px; } #dashboard_browser_nag.postbox { background-color: #b32d2e; background-image: none; border-color: #b32d2e; color: #fff; box-shadow: none; } #dashboard_browser_nag.postbox h2 { border-bottom-color: transparent; background: transparent none; color: #fff; box-shadow: none; } #dashboard_browser_nag a { color: #fff; } #dashboard_browser_nag.postbox .postbox-header { border-color: transparent; } #dashboard_browser_nag h2.hndle { border: none; font-weight: 600; font-size: 20px; padding-top: 10px; } .postbox#dashboard_browser_nag p a.dismiss { font-size: 14px; } .postbox#dashboard_browser_nag p, .postbox#dashboard_browser_nag a, .postbox#dashboard_browser_nag p.browser-update-nag { font-size: 16px; } /* PHP Nag */ #dashboard_php_nag .dashicons-warning { color: #dba617; padding-right: 6px; } #dashboard_php_nag.php-no-security-updates .dashicons-warning, #dashboard_php_nag.php-version-lower-than-future-minimum .dashicons-warning { color: #d63638; } #dashboard_php_nag h2 { display: inline-block; } #dashboard_php_nag p { margin: 12px 0; } .bigger-bolder-text { font-weight: 600; font-size: 14px; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 1600px) { .welcome-panel .welcome-panel-column-container { display: flex; justify-content: center; } .welcome-panel-column { width: 100%; max-width: 460px; } } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content #dashboard-widgets .postbox-container { width: 100%; } #dashboard-widgets .meta-box-sortables { min-height: 0; } .is-dragging-metaboxes #dashboard-widgets .meta-box-sortables { min-height: 100px; } #dashboard-widgets .meta-box-sortables.empty-container { margin-bottom: 0; } } /* two columns on the dash, but keep the setting if one is selected */ @media only screen and (min-width: 800px) and (max-width: 1499px) { #wpbody-content #dashboard-widgets .postbox-container { width: 49.5%; } #wpbody-content #dashboard-widgets #postbox-container-2, #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: right; width: 50.5%; } #dashboard-widgets #postbox-container-3 .empty-container, #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-3 .empty-container:after, #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container { width: 100%; } #wpbody #dashboard-widgets .metabox-holder.columns-1 .postbox-container .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; } /* show the radio buttons for column prefs only for one or two columns */ .index-php .screen-layout, .index-php .columns-prefs { display: block; } .columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* three columns on the dash */ @media only screen and (min-width: 1500px) and (max-width: 1800px) { #wpbody-content #dashboard-widgets .postbox-container { width: 33.5%; } #wpbody-content #dashboard-widgets #postbox-container-1 { width: 33%; } #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 { float: right; } #dashboard-widgets #postbox-container-4 .empty-container { border: none; height: 0; min-height: 0; margin-bottom: 0; display: none; } #dashboard-widgets #postbox-container-4 .empty-container:after { display: none; } #dashboard-widgets .postbox-container .empty-container:after { display: block; } } /* Always show the "Drag boxes here" CSS generated content on large screens. */ @media only screen and (min-width: 1801px) { #dashboard-widgets .postbox-container .empty-container:after { display: block; } } @media screen and (max-width: 870px) { /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column li { display: inline-block; margin-right: 13px; } /* @deprecated 5.9.0 -- Lists removed from welcome panel. */ .welcome-panel .welcome-panel-column ul { margin: 0.4em 0 0; } } @media screen and (max-width: 1180px) and (min-width: 783px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (max-width: 782px) { .welcome-panel .welcome-panel-column-container { grid-template-columns: 1fr; box-sizing: border-box; padding: 32px; width: 100%; } .welcome-panel .welcome-panel-column-content { max-width: 520px; } /* Keep the close icon from overlapping the Welcome text. */ .welcome-panel .welcome-panel-close { overflow: hidden; text-indent: 40px; white-space: nowrap; width: 20px; height: 20px; padding: 5px; top: 5px; right: 5px; } .welcome-panel .welcome-panel-close::before { position: absolute; top: 5px; left: -35px; } #dashboard-widgets h2 { padding: 12px; } #dashboard_recent_comments #the-comment-list .comment-item .avatar { height: 30px; width: 30px; margin: 4px 10px 5px 0; } .community-events-toggle-location { height: 38px; vertical-align: baseline; } #community-events-submit { margin-bottom: 0; } .community-events-form label, #dashboard-widgets .community-events-cancel.button-link { /* Same properties as the submit button for cross-browsers alignment. */ font-size: 14px; line-height: normal; padding: 6px 0; border: 1px solid transparent; } } /* Smartphone */ @media screen and (max-width: 600px) { .welcome-panel-header { padding: 32px 32px 64px; } .welcome-panel-header-image { display: none; } } @media screen and (max-width: 480px) { .welcome-panel-column { gap: 16px; } } @media screen and (max-width: 360px) { .welcome-panel-column { grid-template-columns: 1fr; } [class*="welcome-panel-icon"], .welcome-panel-column > svg { display: none; } } @media screen and (min-width: 355px) { .community-events .event-info { display: table-row; float: left; max-width: 59%; } .event-icon, .event-icon[aria-hidden="true"] { display: table-cell; } .event-info-inner { display: table-cell; } .community-events .event-date-time { float: right; max-width: 39%; } .community-events .event-date, .community-events .event-time { text-align: right; } } css/forms-rtl.css000066600000115716152330733730010020 0ustar00/*! This file is auto-generated */ /* Include margin and padding in the width calculation of input and textarea. */ input, select, textarea, button { box-sizing: border-box; font-family: inherit; font-size: inherit; font-weight: inherit; } textarea, input { font-size: 14px; } textarea { overflow: auto; padding: 8px 12px; /* inherits font size 14px */ line-height: 1.42857143; /* 20px */ resize: vertical; } input, select { margin: 0 1px; } textarea.code { padding: 8px 12px; } input[type="text"], input[type="password"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], select, textarea { box-shadow: 0 0 0 transparent; border-radius: 2px; border: 1px solid #949494; background-color: #fff; color: #1e1e1e; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { padding: 0 12px; /* inherits font size 14px */ min-height: 40px; } select { padding: 0 12px 0 24px; /* inherits font size 14px */ line-height: 2.71428571; /* 38px for 40px min-height */ min-height: 40px; } ::-webkit-datetime-edit { /* inherits font size 14px */ line-height: 1.85714286; /* 26px */ } input[type="text"]:focus, input[type="password"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Checkbox and radio use outset focus style */ input[type="checkbox"]:focus, input[type="radio"]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* rtl:ignore */ .ltr, input[type="password"], input[type="email"], input[type="url"] { direction: ltr; } input[type="checkbox"], input[type="radio"] { border: 1px solid #1e1e1e; border-radius: 2px; background: #fff; color: #1e1e1e; clear: none; cursor: pointer; display: inline-block; line-height: 0; height: 1rem; margin: -0.25rem 0 0 0.25rem; outline: 0; padding: 0 !important; text-align: center; vertical-align: middle; width: 1rem; min-width: 1rem; -webkit-appearance: none; box-shadow: none; transition: .05s border-color ease-in-out; } input[type="radio"]:checked + label:before { color: #949494; } .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active { color: #135e96; } td > input[type="checkbox"], .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: 0; } .wp-admin p label input[type="checkbox"] { margin-top: -4px; } .wp-admin p label input[type="radio"] { margin-top: -2px; } input[type="radio"] { display: inline-flex; border-radius: 50%; margin-left: 0.25rem; align-items: center; justify-content: center; } input[type="checkbox"]:checked::before, input[type="radio"]:checked::before { float: right; display: inline-block; vertical-align: middle; width: 1rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } input[type="checkbox"]:checked::before { /* Use the "Yes" SVG Dashicon */ content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E"); content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E") / ''; margin: -0.1875rem -0.25rem 0 0; height: 1.3125rem; width: 1.3125rem; } input[type="checkbox"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked::before { content: ""; border-radius: 50%; width: 0.5rem; /* 8px */ height: 0.5rem; /* 8px */ margin: auto; background-color: #fff; /* Only visible in Windows High Contrast mode */ outline: 4px solid transparent; } @-moz-document url-prefix() { input[type="checkbox"], input[type="radio"], .form-table input.tog { margin-bottom: -1px; } } /* Search */ input[type="search"] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration { display: none; } input[type="search"]::-webkit-search-cancel-button { cursor: pointer; } .wp-admin input[type="file"] { padding: 3px 0; cursor: pointer; } input.readonly, input[readonly], textarea.readonly, textarea[readonly] { background-color: #f0f0f0; } ::-webkit-input-placeholder { color: #757575; } ::-moz-placeholder { color: #757575; } .form-invalid .form-required, .form-invalid .form-required:focus, .form-invalid.form-required input, .form-invalid.form-required input:focus, .form-invalid.form-required select, .form-invalid.form-required select:focus { border-color: #d63638 !important; box-shadow: 0 0 2px rgba(214, 54, 56, 0.8); } .form-table .form-required.form-invalid td:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin-right: -25px; vertical-align: middle; } /* Adjust error indicator for password layout */ .form-table .form-required.user-pass1-wrap.form-invalid td:after { content: ""; } .form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin: 0 -29px 0 6px; vertical-align: middle; } .form-input-tip { color: #646970; } input:disabled, input.disabled, select:disabled, select.disabled, textarea:disabled, textarea.disabled { background: #f0f0f0; border-color: #cccccc; box-shadow: none; color: #949494; } input[type="file"]:disabled, input[type="file"].disabled, input[type="file"][aria-disabled="true"], input[type="range"]:disabled, input[type="range"].disabled, input[type="range"][aria-disabled="true"] { background: none; box-shadow: none; cursor: default; } input[type="checkbox"]:disabled, input[type="checkbox"].disabled, input[type="checkbox"][aria-disabled="true"], input[type="radio"]:disabled, input[type="radio"].disabled, input[type="radio"][aria-disabled="true"], input[type="checkbox"]:disabled:checked:before, input[type="checkbox"].disabled:checked:before, input[type="radio"]:disabled:checked:before, input[type="radio"].disabled:checked:before { opacity: 0.7; cursor: default; } /*------------------------------------------------------------------------------ 2.0 - Forms ------------------------------------------------------------------------------*/ /* Select styles are based on the default button in buttons.css */ .wp-core-ui select { font-size: 14px; line-height: 2.71428571; /* 38px for 40px min-height */ color: #1e1e1e; border-color: #949494; box-shadow: none; border-radius: 2px; padding: 0 12px 0 24px; min-height: 40px; max-width: 25rem; -webkit-appearance: none; /* The SVG is arrow-down-alt2 from Dashicons. */ background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat left 8px top 55%; background-size: 16px 16px; cursor: pointer; vertical-align: middle; } .wp-core-ui select:hover { color: #1e1e1e; border-color: #1e1e1e; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); color: #1e1e1e; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-core-ui select:active { border-color: #949494; box-shadow: none; } .wp-core-ui select.disabled, .wp-core-ui select:disabled { color: #a7aaad; border-color: #dcdcde; background-color: #f6f7f7; /* The SVG is arrow-down-alt2 from Dashicons. */ background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E'); box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .wp-core-ui select[aria-disabled="true"] { cursor: default; } /* Reset Firefox inner outline that appears on :focus. */ /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ .wp-core-ui select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #0a4b78; } /* Remove background focus style from IE11 while keeping focus style available on option elements. */ .wp-core-ui select::-ms-value { background: transparent; color: #50575e; } .wp-core-ui select:hover::-ms-value { color: #1e1e1e; } .wp-core-ui select:focus::-ms-value { color: #0a4b78; } .wp-core-ui select.disabled::-ms-value, .wp-core-ui select:disabled::-ms-value { color: #a7aaad; } /* Hide the native down arrow for select element on IE. */ .wp-core-ui select::-ms-expand { display: none; } .wp-admin .button-cancel { display: inline-block; min-height: 28px; padding: 0 5px; line-height: 2; } .meta-box-sortables select { max-width: 100%; } .meta-box-sortables input { vertical-align: middle; } .misc-pub-post-status select { margin-top: 0; } .wp-core-ui select[multiple] { height: auto; padding-left: 8px; background: #fff; } .submit { padding: 1.5em 0; margin: 5px 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border: none; } form p.submit a.cancel:hover { text-decoration: none; } p.submit { text-align: right; max-width: 100%; margin-top: 20px; padding-top: 10px; } .textright p.submit { border: none; text-align: left; } table.form-table + p.submit, table.form-table + input + p.submit, table.form-table + input + input + p.submit { border-top: none; padding-top: 0; } #minor-publishing-actions input, #major-publishing-actions input, #minor-publishing-actions .preview { text-align: center; } textarea.all-options, input.all-options { width: 250px; } input.large-text, textarea.large-text { width: 99%; } .regular-text { width: 25em; } input.small-text { width: 50px; padding: 0 8px; } label input.small-text { margin-top: -4px; } input[type="number"].small-text { width: 65px; padding-left: 4px; } input.tiny-text { width: 35px; } input[type="number"].tiny-text { width: 45px; padding-left: 0; } #doaction, #doaction2, #post-query-submit { margin: 0 0 0 8px; } /* @since 5.7.0 secondary bulk action controls require JS. */ .no-js label[for="bulk-action-selector-bottom"], .no-js select#bulk-action-selector-bottom, .no-js input#doaction2, .no-js label[for="new_role2"], .no-js select#new_role2, .no-js input#changeit2 { display: none; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { padding: 0 12px; /* inherits font size 14px */ line-height: 2.14285714; /* 30px for 32px height with 14px font */ min-height: 32px; } .wp-core-ui .tablenav select { float: right; margin-left: 6px; max-width: 12.5rem; padding: 0 8px 0 24px; } .wp-core-ui .tablenav .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } #timezone_string option { margin-right: 1em; } .wp-core-ui .button.wp-hide-pw > .dashicons, .wp-core-ui .button.wp-cancel-pw > .dashicons { width: 1.25rem; height: 1.25rem; font-size: 20px; line-height: 1; vertical-align: middle; } .button.wp-hide-pw.user-new-password-toggle { display: inline-flex; align-items: center; column-gap: 4px; } .wp-cancel-pw .dashicons-no { display: none; } label, #your-profile label + a { vertical-align: middle; } fieldset label, #your-profile label + a { vertical-align: middle; } .options-media-php [for*="_size_"] { min-width: 10em; vertical-align: baseline; } .options-media-php .small-text[name*="_size_"] { margin: 0 0 1em; } .wp-generate-pw { margin-top: 1em; position: relative; } .wp-pwd button { height: min-content; } .wp-pwd { margin-top: 1em; position: relative; } .mailserver-pass-wrap .wp-pwd { display: inline-block; margin-top: 0; } /* rtl:ignore */ #mailserver_pass { padding-right: 2.5rem; } /* rtl:ignore */ .mailserver-pass-wrap .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: 2; width: 2.5rem; min-width: 40px; margin: 0; padding: 0 9px; position: absolute; right: 0; top: 0; } .mailserver-pass-wrap .button.wp-hide-pw:hover { background: transparent; border-color: transparent; } .mailserver-pass-wrap .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .mailserver-pass-wrap .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } #misc-publishing-actions label { vertical-align: baseline; } #pass-strength-result { background-color: #f0f0f0; border: 1px solid #cccccc; border-radius: 2px; color: #1e1e1e; margin: -1px 1px 5px; padding: 3px 5px; text-align: center; width: 25em; box-sizing: border-box; opacity: 0; } #pass-strength-result.short { background-color: #ffabaf; border-color: #e65054; opacity: 1; } #pass-strength-result.bad { background-color: #facfd2; border-color: #f86368; opacity: 1; } #pass-strength-result.good { background-color: #f5e6ab; border-color: #f0c33c; opacity: 1; } #pass-strength-result.strong { background-color: #b8e6bf; border-color: #68de7c; opacity: 1; } .password-input-wrapper { display: inline-block; } .password-input-wrapper input { font-family: Consolas, Monaco, monospace; } #pass1.short, #pass1-text.short { border-color: #e65054; } #pass1.bad, #pass1-text.bad { border-color: #f86368; } #pass1.good, #pass1-text.good { border-color: #f0c33c; } #pass1.strong, #pass1-text.strong { border-color: #68de7c; } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .pw-weak { display: none; } .indicator-hint { padding-top: 8px; } .wp-pwd [type="text"], .wp-pwd [type="password"] { margin-bottom: 0; /* Same height as the buttons */ min-height: 40px; } /* Hide the Edge "reveal password" native button */ .wp-pwd input::-ms-reveal { display: none; } #pass1-text, .show-password #pass1 { display: none; } #pass1-text::-ms-clear { display: none; } .show-password #pass1-text { display: inline-block; } /* Caps lock warning */ .wp-pwd .caps-warning { display: none; position: relative; background: #fcf9e8; border: 1px solid #f0c33c; color: #1d2327; padding: 6px 10px; top: -8px; } .profile-php .wp-pwd .caps-warning { padding: 3px 5px; top: -4px; border-radius: 2px; } .wp-pwd .caps-icon { display: inline-flex; justify-content: center; width: 20px; height: 20px; margin-left: 5px; vertical-align: middle; } .wp-pwd .caps-warning-text { vertical-align: middle; } /* Caps lock warning */ p.search-box { display: flex; flex-wrap: wrap; align-items: center; column-gap: 0.5rem; position: relative; float: left; margin: 11px 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 32px; padding: 0 8px; } p.search-box .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } .network-admin.themes-php p.search-box { clear: right; } .tablenav .search-plugins input[name="s"] { float: right; margin: 0 0 0 4px; } .tagsdiv .newtag { margin: 0; } .js.plugins-php .search-box .wp-filter-search { margin: 0; width: 280px; } input[type="text"].ui-autocomplete-loading, input[type="email"].ui-autocomplete-loading { background-image: url(../images/loading.gif); background-repeat: no-repeat; background-position: left 5px center; visibility: visible; } input.ui-autocomplete-input.open { border-bottom-color: transparent; } ul#add-to-blog-users { margin: 0 14px 0 0; } .ui-autocomplete { padding: 0; margin: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8); background-color: #fff; } .ui-autocomplete li { margin-bottom: 0; padding: 4px 10px; white-space: nowrap; text-align: right; cursor: pointer; } /* Colors for the wplink toolbar autocomplete. */ .ui-autocomplete .ui-state-focus { background-color: #dcdcde; } /* Colors for the tags autocomplete. */ .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected="true"] { background-color: var(--wp-admin-theme-color); color: #fff; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /*------------------------------------------------------------------------------ 15.0 - Comments Screen ------------------------------------------------------------------------------*/ .form-table { border-collapse: collapse; margin-top: 0.5em; width: 100%; clear: both; } .form-table, .form-table td, .form-table th, .form-table td p { font-size: 14px; } .form-table td { margin-bottom: 9px; padding: 15px 10px; line-height: 1.3; vertical-align: middle; } .form-table th, .form-wrap label { color: #1d2327; font-weight: 400; text-shadow: none; vertical-align: baseline; } .form-table th { vertical-align: top; text-align: right; padding: 20px 0 20px 10px; width: 200px; line-height: 1.3; font-weight: 600; } .form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */ .form-table .td-full { width: auto; padding: 20px 0 20px 10px; font-weight: 400; } .form-table td p { margin-top: 4px; margin-bottom: 0; } .form-table .date-time-doc { margin-top: 1em; } .form-table p.timezone-info { margin: 1em 0; display: flex; flex-direction: column; } #local-time { margin-top: 0.5em; } .form-table td fieldset label { margin: 0.35em 0 0.5em !important; display: inline-block; } .form-table td fieldset p label { margin-top: 0 !important; } .form-table td fieldset label, .form-table td fieldset p, .form-table td fieldset li { line-height: 1.4; } .form-table .pre { padding: 8px; margin: 0; } table.form-table td .updated { font-size: 13px; } table.form-table td .updated p { font-size: 13px; margin: 0.3em 0; } /*------------------------------------------------------------------------------ 18.0 - Users ------------------------------------------------------------------------------*/ #profile-page .form-table textarea { width: 500px; margin-bottom: 6px; } #profile-page .form-table #rich_editing { margin-left: 5px } #your-profile legend { font-size: 22px; } #display_name { width: 15em; } #adduser .form-field input, #createuser .form-field input { width: 25em; } .color-option { display: inline-block; width: 24%; padding: 5px 15px 15px; box-sizing: border-box; margin-bottom: 3px; } .color-option:hover, .color-option.selected { background: #dcdcde; } .color-palette { display: table; width: 100%; border-spacing: 0; border-collapse: collapse; } .color-palette .color-palette-shade, .color-palette td { display: table-cell; height: 20px; padding: 0; border: none; } .color-option { cursor: pointer; } .create-application-password .form-field { max-width: 25em; } .create-application-password label { font-weight: 600; } .create-application-password p.submit { margin-bottom: 0; padding-bottom: 0; display: block; } #application-passwords-section .notice { margin-top: 20px; margin-bottom: 0; word-wrap: break-word; } .application-password-display input.code { margin-bottom: 6px; width: 100%; max-width: 20em; } .auth-app-card.card { max-width: 768px; } .authorize-application-php .form-wrap p { display: block; } /*------------------------------------------------------------------------------ 19.0 - Tools ------------------------------------------------------------------------------*/ .tool-box .title { margin: 8px 0; font-size: 18px; font-weight: 400; line-height: 24px; } .label-responsive { vertical-align: middle; } #export-filters p { margin: 0 0 1em; } #export-filters p.submit { margin: 7px 0 5px; } /* Card styles */ .card { position: relative; margin-top: 20px; padding: 16px 24px; min-width: 255px; max-width: 520px; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; background: #ffffff; box-sizing: border-box; } /* Press this styles */ .pressthis h4 { margin: 2em 0 1em; } .pressthis textarea { width: 100%; font-size: 1em; } #pressthis-code-wrap { overflow: auto; } .pressthis-bookmarklet-wrapper { margin: 20px 0 8px; vertical-align: top; position: relative; z-index: 1; } .pressthis-bookmarklet, .pressthis-bookmarklet:hover, .pressthis-bookmarklet:focus, .pressthis-bookmarklet:active { display: inline-block; position: relative; cursor: move; color: #2c3338; background: #dcdcde; border-radius: 5px; border: 1px solid #c3c4c7; font-style: normal; line-height: 16px; font-size: 14px; text-decoration: none; } .pressthis-bookmarklet:active { outline: none; } .pressthis-bookmarklet:after { content: ""; width: 70%; height: 55%; z-index: -1; position: absolute; left: 10px; bottom: 9px; background: transparent; transform: skew(-20deg) rotate(-6deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); } .pressthis-bookmarklet:hover:after { transform: skew(-20deg) rotate(-9deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); } .pressthis-bookmarklet span { display: inline-block; margin: 0; padding: 0 9px 8px 12px; } .pressthis-bookmarklet span:before { color: #787c82; font: normal 20px/1 dashicons; content: "\f157"; content: "\f157" / ''; position: relative; display: inline-block; top: 4px; margin-left: 4px; } .pressthis-js-toggle { margin-right: 10px; padding: 0; height: auto; vertical-align: top; } /* to override the button class being applied */ .pressthis-js-toggle.button.button { margin-right: 10px; padding: 0; height: auto; vertical-align: top; } .pressthis-js-toggle .dashicons { margin: 5px 7px 6px 8px; color: #50575e; } /*------------------------------------------------------------------------------ 20.0 - Settings ------------------------------------------------------------------------------*/ .timezone-info code { white-space: nowrap; } .defaultavatarpicker .avatar { margin: 2px 0; vertical-align: middle; } .options-general-php .date-time-text { display: inline-block; min-width: 10em; } .options-general-php input.small-text { width: 56px; margin: -2px 0; min-height: 32px; } .options-general-php .spinner { float: none; margin: -3px 3px 0; } .settings-php .language-install-spinner, .options-general-php .language-install-spinner, .user-edit-php .language-install-spinner, .profile-php .language-install-spinner { display: inline-block; float: none; margin: -3px 5px 0; vertical-align: middle; } .form-table.permalink-structure .available-structure-tags { margin-top: 8px; } .form-table.permalink-structure .available-structure-tags ul { display: flex; flex-wrap: wrap; margin: 8px 0 0; } .form-table.permalink-structure .available-structure-tags li { margin: 6px 0 0 5px; } .form-table.permalink-structure .available-structure-tags li:last-child { margin-left: 0; } .form-table.permalink-structure .structure-selection .row { margin-bottom: 16px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 24px); display: inline-flex; flex-direction: column; } .form-table.permalink-structure .structure-selection .row label { font-weight: 600; } .form-table.permalink-structure .structure-selection .row p { margin-top: 0; } .permalink-structure-optional-description code { display: inline-block; } /*------------------------------------------------------------------------------ 21.0 - Network Admin ------------------------------------------------------------------------------*/ .setup-php textarea { max-width: 100%; } .form-field #site-address { max-width: 25em; } .form-field #domain { max-width: 22em; } .form-field #site-title, .form-field #admin-email, .form-field #path, .form-field #blog_registered, .form-field #blog_last_updated { max-width: 25em; } .form-field #path { margin-bottom: 5px; } #search-users, #search-sites { max-width: 60%; } .configuration-rules-label { font-weight: 600; margin-bottom: 4px; } /*------------------------------------------------------------------------------ Credentials check dialog for Install and Updates ------------------------------------------------------------------------------*/ .request-filesystem-credentials-dialog { display: none; /* The customizer uses visibility: hidden on the body for full-overlays. */ visibility: visible; } .request-filesystem-credentials-dialog .notification-dialog { top: 10%; max-height: 85%; } .request-filesystem-credentials-dialog-content { margin: 25px; } #request-filesystem-credentials-title { font-size: 1.3em; margin: 1em 0; } .request-filesystem-credentials-form legend { font-size: 1em; padding: 1.33em 0; font-weight: 600; } .request-filesystem-credentials-form input[type="text"], .request-filesystem-credentials-form input[type="password"] { display: block; } .request-filesystem-credentials-dialog input[type="text"], .request-filesystem-credentials-dialog input[type="password"] { width: 100%; } .request-filesystem-credentials-form .field-title { font-weight: 600; } .request-filesystem-credentials-dialog label[for="hostname"], .request-filesystem-credentials-dialog label[for="public_key"], .request-filesystem-credentials-dialog label[for="private_key"] { display: block; margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: right; width: 48%; } .request-filesystem-credentials-dialog .ftp-password { margin-right: 4%; } .request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons { text-align: left; } .request-filesystem-credentials-dialog label[for="ftp"] { margin-left: 10px; } .request-filesystem-credentials-dialog #auth-keys-desc { margin-bottom: 0; } #request-filesystem-credentials-dialog .button:not(:last-child) { margin-left: 10px; } #request-filesystem-credentials-form .cancel-button { display: none; } #request-filesystem-credentials-dialog .cancel-button { display: inline; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: none; width: auto; } .request-filesystem-credentials-dialog .ftp-username { margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-password { margin: 0; } .request-filesystem-credentials-dialog .ftp-password em { color: #757575; } .request-filesystem-credentials-dialog label { display: block; line-height: 1.5; margin-bottom: 1em; } .request-filesystem-credentials-form legend { padding-bottom: 0; } .request-filesystem-credentials-form #ssh-keys legend { font-size: 1.3em; } .request-filesystem-credentials-form .notice { margin: 0 0 20px; clear: both; } /*------------------------------------------------------------------------------ Privacy Policy settings screen ------------------------------------------------------------------------------*/ .tools-privacy-policy-page form { margin-bottom: 1.3em; } .tools-privacy-policy-page input.button { margin: 0 6px 0 1px; } .tools-privacy-policy-page select { margin: 0 6px 0.5em 1px; } .tools-privacy-edit { margin: 1.5em 0; } .tools-privacy-policy-page span { line-height: 2; } .privacy_requests .column-email { width: 40%; } .privacy_requests .column-type { text-align: center; } .privacy_requests thead td:first-child, .privacy_requests tfoot td:first-child { border-right: 4px solid #fff; } .privacy_requests tbody th { border-right: 4px solid #fff; background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests .row-actions { color: #787c82; } .privacy_requests .row-actions.processing { position: static; } .privacy_requests tbody .has-request-results th { box-shadow: none; } .privacy_requests tbody .request-results th .notice { margin: 0 0 5px; } .privacy_requests tbody td { background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests tbody .has-request-results td { box-shadow: none; } .privacy_requests .next_steps .button { word-wrap: break-word; white-space: normal; } .privacy_requests .status-request-confirmed th, .privacy_requests .status-request-confirmed td { background-color: #fff; border-right-color: #72aee6; } .privacy_requests .status-request-failed th, .privacy_requests .status-request-failed td { background-color: #f6f7f7; border-right-color: #d63638; } .privacy_requests .export_personal_data_failed a { vertical-align: baseline; } .status-label { font-weight: 600; } .status-label.status-request-pending { font-weight: 400; font-style: italic; color: #646970; } .status-label.status-request-failed { color: #d63638; font-weight: 600; } .privacy_requests .status-date { display: block; font-weight: 400; } .wp-privacy-request-form { clear: both; } .wp-privacy-request-form-field { margin: 1.5em 0; } .wp-privacy-request-form input { margin: 0; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { /* Input Elements */ textarea { -webkit-appearance: none; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { -webkit-appearance: none; padding: 0 12px; min-height: 40px; } ::-webkit-datetime-edit { line-height: 1.875; /* 30px */ } input[type="checkbox"], .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { -webkit-appearance: none; } .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { margin-bottom: 8px; } input[type="checkbox"]:checked:before, .widefat th input[type="checkbox"]:before, .widefat thead td input[type="checkbox"]:before, .widefat tfoot td input[type="checkbox"]:before { width: 1.875rem; height: 1.875rem; margin: -0.1875rem -0.3125rem; } input[type="radio"], input[type="checkbox"] { height: 1.5625rem; width: 1.5625rem; } .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: -0.1875rem; } input[type="radio"]:checked:before { vertical-align: middle; width: 0.5625rem; height: 0.5625rem; margin: 0.4375rem; line-height: 0.76190476; } .wp-core-ui select, .wp-admin .form-table select { min-height: 40px; font-size: 16px; line-height: 2.5; /* 40px for 16px font */ padding: 0 12px 0 24px; } .wp-admin .button-cancel { margin-bottom: 0; padding: 2px 0; font-size: 14px; vertical-align: middle; } #adduser .form-field input, #createuser .form-field input { width: 100%; } .form-table { box-sizing: border-box; } .form-table th, .form-table td, .label-responsive { display: block; width: auto; vertical-align: middle; } .label-responsive { margin: 0.5em 0; } .export-filters li { margin-bottom: 0; } .form-table .color-palette .color-palette-shade, .form-table .color-palette td { display: table-cell; width: 15px; height: 30px; padding: 0; } .form-table .color-palette { margin-left: 10px; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description, #profile-page .form-table textarea { width: 100%; display: block; max-width: none; box-sizing: border-box; } .form-table .form-required.form-invalid td:after { float: left; margin: -30px 0 0 3px; } input[type="text"].small-text, input[type="search"].small-text, input[type="password"].small-text, input[type="number"].small-text, input[type="number"].small-text, .form-table input[type="text"].small-text { width: auto; max-width: 4.375em; /* 70px, enough for 4 digits to fit comfortably */ display: inline; padding: 3px 6px; margin: 0 3px; } .form-table .regular-text ~ input[type="text"].small-text { margin-top: 5px; } #pass-strength-result { width: 100%; box-sizing: border-box; padding: 8px; } .profile-php .wp-pwd .caps-warning { padding: 8px; } .password-input-wrapper { display: block; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { min-height: 40px; } .wp-core-ui .tablenav .button { min-height: 40px; line-height: 2.71428571; padding: 0 14px; } p.search-box { float: none; width: 100%; margin-bottom: 20px; display: flex; } p.search-box input[name="s"] { width: 100%; float: none; margin-bottom: 10px; vertical-align: middle; } .js.plugins-php .search-box .wp-filter-search { width: 100%; margin-bottom: 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 40px; padding: 0 12px; } p.search-box input[type="submit"].button { margin-bottom: 10px; } .form-table span.description { display: inline; padding: 4px 0 0; line-height: 1.4; font-size: 14px; } .form-table th { padding: 10px 0 0; border-bottom: 0; } .form-table td { margin-bottom: 0; padding: 4px 0 6px; } .form-table.permalink-structure td code { display: inline-block; } .form-table.permalink-structure .structure-selection { margin-top: 8px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 36px); width: 100%; } .form-table.permalink-structure td input[type="text"] { margin-top: 4px; } .permalink-structure-has-blog-prefix { display: flex; align-items: center; } .form-table input.regular-text { width: 100%; } .form-table label { font-size: 14px; } .form-table td > label:first-child { display: inline-block; margin-top: 0.35em; } .background-position-control .button-group > label { font-size: 0; } .form-table fieldset label { display: block; } .form-field #domain { max-width: none; } /* New Password */ .wp-pwd { position: relative; } /* Needs higher specificity than normal input type text and password. */ #profile-page .form-table #pass1 { padding-left: 90px; } .wp-pwd button.button { background: transparent; border: 1px solid transparent; box-shadow: none; line-height: 2; margin: 0; padding: 5px 9px; position: absolute; left: 0; top: 0; width: 2.375rem; height: 2.375rem; min-width: 40px; min-height: 40px; } .wp-pwd button.wp-hide-pw { left: 2.5rem; } body.user-new-php .wp-pwd button.wp-hide-pw { left: 0; } .wp-pwd button.button:hover, .wp-pwd button.button:focus { background: transparent; } .wp-pwd button.button:active { background: transparent; box-shadow: none; transform: none; } .wp-pwd .button .text { display: none; } .wp-pwd [type="text"], .wp-pwd [type="password"] { line-height: 2; padding-left: 5rem; } body.user-new-php .wp-pwd [type="text"], body.user-new-php .wp-pwd [type="password"] { padding-left: 2.5rem; } .wp-cancel-pw .dashicons-no { display: inline-block; } .mailserver-pass-wrap .wp-pwd { display: block; } /* rtl:ignore */ #mailserver_pass { padding-left: 10px; } .options-general-php input[type="text"].small-text { max-width: 6.25em; margin: 0; min-height: 40px; } /* Privacy Policy settings screen */ .tools-privacy-policy-page form.wp-create-privacy-page { margin-bottom: 1em; } .tools-privacy-policy-page input#set-page, .tools-privacy-policy-page select { margin: 10px 0 0; } .tools-privacy-policy-page .wp-create-privacy-page span { display: block; margin-bottom: 1em; } .tools-privacy-policy-page .wp-create-privacy-page .button { margin-right: 0; } .wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) { display: table-cell; } .wp-list-table.privacy_requests.widefat th input, .wp-list-table.privacy_requests.widefat thead td input { margin-right: 5px; } .wp-privacy-request-form-field input[type="text"] { width: 100%; margin-bottom: 10px; vertical-align: middle; } .regular-text { max-width: 100%; } } @media only screen and (max-width: 768px) { .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="password"], .form-field select, .form-field textarea { width: 99%; } .form-wrap .form-field { padding: 0; } } @media only screen and (max-height: 480px), screen and (max-width: 450px) { /* Request Credentials / File Editor Warning */ .request-filesystem-credentials-dialog .notification-dialog, .file-editor-warning .notification-dialog { width: 100%; height: 100%; max-height: 100%; position: fixed; top: 0; margin: 0; right: 0; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Color Picker Options */ .color-option { width: 49%; } } @media only screen and (max-width: 320px) { .options-general-php .date-time-text.date-time-custom-text { min-width: 0; margin-left: 0.5em; } } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(-359deg); } } css/about.min.css000066600000052571152330733730007766 0ustar00/*! This file is auto-generated */ .about__container{--background:#ebe8e5;--subtle-background:#ebe8e5;--text:#1e1e1e;--text-light:#fff;--accent-1:#3858e9;--accent-2:#183ad6;--accent-3:#ececec;--accent-gradient:linear-gradient(90deg, #000000 4.7%, var(--accent-1) 83.84%);--nav-background:#fff;--nav-border:transparent;--nav-color:var(--text);--nav-current:var(--accent-1);--border-radius:0.5rem;--gap:2rem}.about-php,.contribute-php,.credits-php,.freedoms-php,.privacy-php{background:#fff}.about-php #wpcontent,.contribute-php #wpcontent,.credits-php #wpcontent,.freedoms-php #wpcontent,.privacy-php #wpcontent{background:#fff;padding:0 24px}@media screen and (max-width:782px){.about-php.auto-fold #wpcontent,.contribute-php.auto-fold #wpcontent,.credits-php.auto-fold #wpcontent,.freedoms-php.auto-fold #wpcontent,.privacy-php.auto-fold #wpcontent{padding-left:24px}}.about__container{max-width:1000px;margin:24px auto;clear:both}.about__container .alignleft{float:left}.about__container .alignright{float:right}.about__container .aligncenter{text-align:center}.about__container .is-vertically-aligned-top{align-self:start}.about__container .is-vertically-aligned-center{align-self:center}.about__container .is-vertically-aligned-bottom{align-self:end}.about__section{background:0 0;clear:both}.about__container .has-accent-background-color{color:var(--text-light);background-color:var(--accent-2)}.about__container .has-transparent-background-color{background-color:transparent}.about__container .has-accent-color{color:var(--accent-2)}.about__container .has-border{border:3px solid currentColor}.about__container .has-subtle-background-color{background-color:var(--subtle-background);border-radius:var(--border-radius)}.about__container .has-background-image{background-size:contain;background-repeat:no-repeat;background-position:center}.about__section{margin:0}.about__section .column:not(.is-edge-to-edge){padding:var(--gap)}.about__section .column.is-left-padding-zero{padding-left:0}.about__section .column.is-right-padding-zero{padding-right:0}.about__section+.about__section .is-section-header{padding-bottom:var(--gap)}.about__section .column.has-border:not(.is-edge-to-edge),.about__section .column[class*=background-color]:not(.is-edge-to-edge),.about__section:where([class*=background-color]) .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section .column p:first-of-type{margin-top:0}.about__section .column p:last-of-type{margin-bottom:0}.about__section .has-text-columns{columns:2;column-gap:calc(var(--gap) * 2)}.about__section .is-section-header{margin-bottom:0;padding:var(--gap) var(--gap) 0}.about__section .is-section-header p:last-child{margin-bottom:0}.about__section .is-section-header:first-child:last-child{padding:0}.about__section.is-feature{padding:var(--gap)}.about__section.is-feature p{margin:0}.about__section.is-feature p+p{margin-top:calc(var(--gap)/ 2)}.about__section.has-1-column{margin-left:auto;margin-right:auto;max-width:36em}.about__section.has-2-columns,.about__section.has-3-columns,.about__section.has-4-columns,.about__section.has-overlap-style{display:grid}.about__section.has-gutters{gap:var(--gap);margin-bottom:var(--gap)}.about__section.has-2-columns{grid-template-columns:1fr 1fr}.about__section.has-2-columns.is-wider-right{grid-template-columns:2fr 3fr}.about__section.has-2-columns.is-wider-left{grid-template-columns:3fr 2fr}.about__section .is-section-header{grid-column-start:1;grid-column-end:-1}.about__section.has-3-columns{grid-template-columns:repeat(3,1fr)}.about__section.has-4-columns{grid-template-columns:repeat(4,1fr)}.about__section.has-overlap-style{grid-template-columns:repeat(7,1fr)}.about__section.has-overlap-style .column{grid-row-start:1}.about__section.has-overlap-style .column:nth-of-type(odd){grid-column-start:2;grid-column-end:span 3}.about__section.has-overlap-style .column:nth-of-type(2n){grid-column-start:4;grid-column-end:span 3}.about__section.has-overlap-style .column.is-top-layer{z-index:1}@media screen and (max-width:782px){.about__section.has-2-columns.is-wider-left,.about__section.has-2-columns.is-wider-right,.about__section.has-3-columns{display:block;margin-bottom:calc(var(--gap)/ 2)}.about__section .column:not(.is-edge-to-edge){padding-top:var(--gap);padding-bottom:var(--gap)}.about__section.has-2-columns.has-gutters.is-wider-left,.about__section.has-2-columns.has-gutters.is-wider-right,.about__section.has-3-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column,.about__section.has-3-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child,.about__section.has-3-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-3-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns{grid-template-columns:repeat(2,1fr)}.about__section.has-overlap-style{grid-template-columns:1fr}.about__section.has-overlap-style .column.column{grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2}}@media screen and (max-width:600px){.about__section.has-2-columns{display:block;margin-bottom:var(--gap)}.about__section.has-2-columns:not(.has-gutters) .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}.about__section.has-2-columns.has-gutters{margin-bottom:calc(var(--gap) * 2)}.about__section.has-2-columns.has-gutters .column{margin-bottom:var(--gap)}.about__section.has-2-columns.has-gutters .column:last-child{margin-bottom:0}.about__section .column.is-left-padding-zero{padding-right:0}.about__section .column.is-right-padding-zero{padding-left:0}}@media screen and (max-width:480px){.about__section .is-section-header,.about__section.is-feature .column{padding:0}.about__section.has-4-columns{display:block;padding-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column{margin-bottom:calc(var(--gap)/ 2)}.about__section.has-4-columns.has-gutters .column:last-child{margin-bottom:0}.about__section.has-4-columns .column:nth-of-type(n){padding-top:calc(var(--gap)/ 2);padding-bottom:calc(var(--gap)/ 2)}}.about__container{line-height:1.4;color:var(--text)}.about__container h1{padding:0}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:2rem;font-weight:700;line-height:1.16}.about__container h1.is-smaller-heading,.about__container h2.is-smaller-heading,.about__container h3{margin-top:0;margin-bottom:calc(.5 * var(--gap));font-size:1.625rem;font-weight:700;line-height:1.4}.about__container h3.is-smaller-heading,.about__container h4{margin-top:0;font-size:1.125rem;font-weight:600;line-height:1.6}.about__container h1,.about__container h2,.about__container h3,.about__container h4{text-wrap:pretty;color:inherit}.about__container :is(h1,h2,h3,h4,.about__header-text):lang(en){text-wrap:balance}.about__container p{text-wrap:pretty}.about__container p{font-size:inherit;line-height:inherit}.about__container p.is-subheading{margin-top:0;margin-bottom:1rem;font-size:1.5rem;font-weight:300;line-height:160%}.about__section a{color:var(--accent-1);text-decoration:underline}.about__section a:active,.about__section a:focus,.about__section a:hover{color:var(--accent-1);text-decoration:none}.wp-credits-list a{text-decoration:none}.wp-credits-list a:active,.wp-credits-list a:focus,.wp-credits-list a:hover{text-decoration:underline}.about__section a.button.button-hero{padding-top:1.1875rem;padding-bottom:1.1875rem;font-size:1.5rem;line-height:1.4;white-space:normal;text-wrap:pretty}.about__container ul{list-style:disc;margin-left:calc(var(--gap)/ 2)}.about__container li{margin-bottom:.5rem}.about__container img{margin:0;max-width:100%;vertical-align:middle}.about__container .about__image{margin:0}.about__container .about__image img{max-width:100%;width:100%;height:auto;border-radius:var(--border-radius)}.about__container .about__image figcaption{margin-top:.5em;text-align:center}.about__container .about__image .wp-video{margin-left:auto;margin-right:auto}.about__container .about__image svg{vertical-align:middle}.about__container .about__image+h3{margin-top:calc(.75 * var(--gap))}.about__container hr{margin:calc(var(--gap)/ 2) var(--gap);height:0;border:none;border-top:4px solid var(--accent-3)}.about__container hr.is-small{margin-top:0;margin-bottom:0}.about__container hr.is-large{margin:var(--gap) auto}.about__container hr.is-invisible{border:none}.about__container .notice,.about__container div.error,.about__container div.updated{display:none!important}.about__container code{font-size:inherit}.about__section{font-size:1.125rem;line-height:1.55}.about__section.is-feature{font-size:1.6em}.about__section.has-3-columns,.about__section.has-4-columns{font-size:1rem}@media screen and (max-width:480px){.about__section.is-feature{font-size:1.4em}.about__container h1,.about__container h2,.about__container h3.is-larger-heading{font-size:2em}}.about__header{position:relative;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;box-sizing:border-box;padding:calc(var(--gap) * 1.5);padding-right:26rem;min-height:clamp(10rem,25vw,18.75rem);border-radius:var(--border-radius);background-image:url("../images/about-header-default.webp?ver=20260514");background-repeat:no-repeat;background-position:right center;background-size:cover;background-color:var(--background);color:var(--text-light)}.credits-php .about__header{background-image:url("../images/about-header-credits.webp?ver=20260514")}.freedoms-php .about__header{background-image:url("../images/about-header-freedoms.webp?ver=20260514")}.privacy-php .about__header{background-image:url("../images/about-header-privacy.webp?ver=20260514")}.contribute-php .about__header{background-image:url("../images/about-header-get-involved.webp?ver=20260514")}[dir=rtl] .about__header{background-image:url("../images/about-header-default-rtl.webp?ver=20260514")}[dir=rtl] .credits-php .about__header{background-image:url("../images/about-header-credits-rtl.webp?ver=20260514")}[dir=rtl] .freedoms-php .about__header{background-image:url("../images/about-header-freedoms-rtl.webp?ver=20260514")}[dir=rtl] .privacy-php .about__header{background-image:url("../images/about-header-privacy-rtl.webp?ver=20260514")}[dir=rtl] .contribute-php .about__header{background-image:url("../images/about-header-get-involved-rtl.webp?ver=20260514")}.about__header-image{margin:0 0 calc(var(--gap) * 1.5)}.about__header-title{box-sizing:border-box;margin:0;padding:0}.about__header-title h1{margin:0;padding:0;font-size:clamp(2rem, 20vw - 9rem, 4rem);line-height:1;font-weight:600;color:var(--text)}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-text{box-sizing:border-box;max-width:26em;margin:1rem 0 0;padding:0;font-size:1.6rem;line-height:1.15;color:var(--text)}.about__header-navigation{position:relative;z-index:1;display:flex;flex-wrap:wrap;justify-content:space-between;padding-top:0;margin-bottom:var(--gap);background:var(--nav-background);color:var(--nav-color);border-bottom:3px solid var(--nav-border)}.about__header-navigation::after{display:none}.about__header-navigation .nav-tab{margin-left:0;padding:calc(var(--gap) * .75) var(--gap);float:none;font-size:1.4em;line-height:1;border-width:0 0 3px;border-style:solid;border-color:transparent;background:0 0;color:inherit}.about__header-navigation .nav-tab:active,.about__header-navigation .nav-tab:hover{background-color:var(--nav-current);color:var(--text-light);border-radius:var(--border-radius)}.about__header-navigation .nav-tab-active{margin-bottom:-3px;color:var(--nav-current);border-width:0 0 6px;border-color:var(--nav-current)}.about__header-navigation .nav-tab-active:active,.about__header-navigation .nav-tab-active:hover{background-color:var(--nav-current);color:var(--text-light);border-color:var(--nav-current);border-radius:var(--border-radius)}@media screen and (max-width:960px){.about__header{padding-right:21rem}.about-php .about__header-title h1,.contribute-php .about__header-title h1,.credits-php .about__header-title h1,.freedoms-php .about__header-title h1,.privacy-php .about__header-title h1{font-size:clamp(2rem, 20vw - 9rem, 4rem)}.about__header-navigation .nav-tab{padding:calc(var(--gap) * .75) calc(var(--gap) * .5)}}@media screen and (max-width:782px){.about__container .about__header-text{font-size:1.4em}.about__header-container{display:block}.about__header{padding:var(--gap);padding-right:17rem}.about__header-text{margin-top:.5rem}.about__header-navigation .nav-tab{margin-top:0;margin-right:0;font-size:1.2em}}@media screen and (max-width:600px){.about__header{min-height:auto;padding-right:var(--gap)}.about__header-navigation{display:block}.about__header-navigation .nav-tab{display:block;margin-bottom:0;padding:calc(var(--gap)/ 2);border-left-width:6px;border-bottom:none}.about__header-navigation .nav-tab-active{border-bottom:none;border-left-width:6px}}.about__section .wp-people-group-title{margin-bottom:calc(var(--gap) * 2 - 10px);text-align:center}.about__section .wp-people-group{margin:0;display:flex;flex-wrap:wrap}.about__section .wp-person{display:inline-block;vertical-align:top;box-sizing:border-box;margin-bottom:calc(var(--gap) - 10px);width:25%;text-align:center}.about__section .compact .wp-person{height:auto;width:20%}.about__section .wp-person-avatar{display:block;margin:0 auto calc(var(--gap)/ 2);width:140px;height:140px;border-radius:100%;overflow:hidden}.about__section .wp-person .gravatar{width:140px;height:140px;filter:grayscale(100%)}.about__section .compact .wp-person .gravatar,.about__section .compact .wp-person-avatar{width:80px;height:80px}.about__section .wp-person .web{display:block;font-size:1.4em;font-weight:600;padding:10px 10px 0;text-decoration:none}.about__section .wp-person .web:hover{text-decoration:underline}.about__section .compact .wp-person .web{font-size:1.2em}.about__section .wp-person .title{display:block;margin-top:.5em}@media screen and (max-width:782px){.about__section .wp-person{width:33%}.about__section .compact .wp-person{width:25%}.about__section .wp-person .gravatar,.about__section .wp-person-avatar{width:120px;height:120px}}@media screen and (max-width:600px){.about__section .wp-person{width:50%}.about__section .compact .wp-person{width:33%}.about__section .wp-person .web{font-size:1.2em}}@media screen and (max-width:480px){.about__section .wp-person{min-width:100%}.about__section .wp-person .web{font-size:1em}.about__section .compact .wp-person .web{font-size:1em}}.about__section .column .freedom-image{margin-bottom:var(--gap);max-height:180px}.about__section .column .privacy-image{display:block;margin-left:auto;margin-right:auto;max-width:25rem}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap.full-width-layout{max-width:1200px}.about-wrap-content{max-width:1050px}.about-wrap .notice,.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:3em 0 0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;width:100%;height:auto;vertical-align:middle}.about-wrap .inline-svg img{max-width:100%;width:auto;height:auto}.about-wrap video{margin:1.5em auto}.wp-badge{background:#0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat;background-position:center 25px;background-size:80px 80px;color:#fff;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:140px;text-rendering:optimizeLegibility;box-shadow:0 1px 3px rgba(0,0,0,.2)}.svg .wp-badge{background-image:url(../images/wordpress-logo-white.svg?ver=20160308)}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap .nav-tab{padding-right:15px;padding-left:15px;font-size:18px;line-height:1.33333333}.about-wrap h1{margin:.2em 200px 0 0;padding:0;color:#32373c;line-height:1.2;font-size:2.8em;font-weight:400}.about-wrap h2{margin:40px 0 .6em;font-size:2.7em;line-height:1.3;font-weight:300;text-align:center}.about-wrap h3{margin:1.25em 0 .6em;font-size:1.4em;line-height:1.5}.about-wrap h4{font-size:16px;color:#23282d}.about-wrap p{line-height:1.5;font-size:16px}.about-wrap code,.about-wrap ol li p{font-size:14px;font-weight:400}.about-wrap figcaption{font-size:13px;text-align:center;color:#fff;text-overflow:ellipsis}.about-wrap .about-description,.about-wrap .about-text{margin-top:1.4em;font-weight:400;line-height:1.6;font-size:19px}.about-wrap .about-text{margin:1em 200px 1em 0;color:#555d66}.about-wrap .has-1-columns,.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:grid;max-width:800px;margin-top:40px;margin-left:auto;margin-right:auto}.about-wrap .column{margin-right:20px;margin-left:20px}.about-wrap .is-wide{max-width:760px}.about-wrap .is-fullwidth{max-width:100%}.about-wrap .has-1-columns{display:block;max-width:680px;margin:0 auto 40px}.about-wrap .has-2-columns{grid-template-columns:1fr 1fr}.about-wrap .has-2-columns .column:nth-of-type(odd){grid-column-start:1}.about-wrap .has-2-columns .column:nth-of-type(2n){grid-column-start:2}.about-wrap .has-2-columns.is-wider-right{grid-template-columns:1fr 2fr}.about-wrap .has-2-columns.is-wider-left{grid-template-columns:2fr 1fr}.about-wrap .has-3-columns{grid-template-columns:repeat(3,1fr)}.about-wrap .has-3-columns .column:nth-of-type(3n+1){grid-column-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2){grid-column-start:2}.about-wrap .has-3-columns .column:nth-of-type(3n){grid-column-start:3}.about-wrap .has-4-columns{grid-template-columns:repeat(4,1fr)}.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1}.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:3}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:4}.about-wrap .column :first-child{margin-top:0}.about-wrap .aligncenter{text-align:center}.about-wrap .alignleft{float:left;margin-right:40px}.about-wrap .alignright{float:right;margin-left:40px}.about-wrap .is-vertically-aligned-top{align-self:flex-start}.about-wrap .is-vertically-aligned-center{align-self:center}.about-wrap .is-vertically-aligned-bottom{align-self:end}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #ddd}.about-wrap .changelog{margin-bottom:40px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .changelog.feature-section .col{margin-top:40px}.about-wrap .lead-description{font-size:1.5em;text-align:center}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .headline-feature{margin:0 auto 40px;max-width:680px}.about-wrap .headline-feature h2{margin:50px 0 0}.about-wrap .headline-feature img{max-width:600px;width:100%}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:600}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h2.wp-people-group{margin:2.6em 0 1.33em;padding:0;font-size:16px;line-height:inherit;font-weight:600;text-align:left}.about-wrap .wp-people-group{padding:0 5px;margin:0 -15px 0 -5px}.about-wrap .compact{margin-bottom:0}.about-wrap .wp-person{display:inline-block;vertical-align:top;margin-right:10px;padding-bottom:15px;height:70px;width:280px}.about-wrap .compact .wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap .wp-person .gravatar{float:left;margin:0 10px 10px 0;padding:1px;width:60px;height:60px}.about-wrap .compact .wp-person .gravatar{width:30px;height:30px}.about-wrap .wp-person .web{margin:6px 0 2px;font-size:16px;font-weight:400;line-height:2;text-decoration:none}.about-wrap .wp-person .title{display:block}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:600}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .has-3-columns,.about-wrap .has-4-columns{grid-template-columns:1fr 1fr}.about-wrap .has-3-columns .column:nth-of-type(3n+1),.about-wrap .has-4-columns .column:nth-of-type(4n+1){grid-column-start:1;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n+2),.about-wrap .has-4-columns .column:nth-of-type(4n+2){grid-column-start:2;grid-row-start:1}.about-wrap .has-3-columns .column:nth-of-type(3n),.about-wrap .has-4-columns .column:nth-of-type(4n+3){grid-column-start:1;grid-row-start:2}.about-wrap .has-4-columns .column:nth-of-type(4n){grid-column-start:2;grid-row-start:2}}@media screen and (max-width:600px){.about-wrap .has-2-columns,.about-wrap .has-3-columns,.about-wrap .has-4-columns{display:block}.about-wrap :not(.is-wider-right):not(.is-wider-left) .column{margin-right:0;margin-left:0}.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:grid}}@media only screen and (max-width:500px){.about-wrap{margin-right:20px;margin-left:10px}.about-wrap .about-text,.about-wrap h1{margin-right:0}.about-wrap .about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}}@media only screen and (max-width:480px){.about-wrap .has-2-columns.is-wider-left,.about-wrap .has-2-columns.is-wider-right{display:block}.about-wrap .column{margin-right:0;margin-left:0}.about-wrap .has-2-columns.is-wider-left img,.about-wrap .has-2-columns.is-wider-right img{max-width:160px}}css/forms.min.css000066600000074305152330733730010001 0ustar00/*! This file is auto-generated */ button,input,select,textarea{box-sizing:border-box;font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea{font-size:14px}textarea{overflow:auto;padding:8px 12px;line-height:1.42857143;resize:vertical}input,select{margin:0 1px}textarea.code{padding:8px 12px}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{box-shadow:0 0 0 transparent;border-radius:2px;border:1px solid #949494;background-color:#fff;color:#1e1e1e}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{padding:0 12px;min-height:40px}select{padding:0 24px 0 12px;line-height:2.71428571;min-height:40px}::-webkit-datetime-edit{line-height:1.85714286}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color);outline:2px solid transparent}input[type=checkbox]:focus,input[type=radio]:focus{border-color:#1e1e1e;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--wp-admin-theme-color);outline:2px solid transparent}.ltr,input[type=email],input[type=password],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #1e1e1e;border-radius:2px;background:#fff;color:#1e1e1e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-.25rem .25rem 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:none;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#949494}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#135e96}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{display:inline-flex;border-radius:50%;margin-right:.25rem;align-items:center;justify-content:center}input[type=checkbox]:checked::before,input[type=radio]:checked::before{float:left;display:inline-block;vertical-align:middle;width:1rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E");content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E")/'';margin:-.1875rem 0 0 -.25rem;height:1.3125rem;width:1.3125rem}input[type=checkbox]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked{background:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color)}input[type=radio]:checked::before{content:"";border-radius:50%;width:.5rem;height:.5rem;margin:auto;background-color:#fff;outline:4px solid transparent}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}input[type=search]::-webkit-search-cancel-button{cursor:pointer}.wp-admin input[type=file]{padding:3px 0;cursor:pointer}input.readonly,input[readonly],textarea.readonly,textarea[readonly]{background-color:#f0f0f0}::-webkit-input-placeholder{color:#757575}::-moz-placeholder{color:#757575}.form-invalid .form-required,.form-invalid .form-required:focus,.form-invalid.form-required input,.form-invalid.form-required input:focus,.form-invalid.form-required select,.form-invalid.form-required select:focus{border-color:#d63638!important;box-shadow:0 0 2px rgba(214,54,56,.8)}.form-table .form-required.form-invalid td:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin-left:-25px;vertical-align:middle}.form-table .form-required.user-pass1-wrap.form-invalid td:after{content:""}.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after{content:"\f534";content:"\f534"/'';font:normal 20px/1 dashicons;color:#d63638;margin:0 6px 0 -29px;vertical-align:middle}.form-input-tip{color:#646970}input.disabled,input:disabled,select.disabled,select:disabled,textarea.disabled,textarea:disabled{background:#f0f0f0;border-color:#ccc;box-shadow:none;color:#949494}input[type=file].disabled,input[type=file]:disabled,input[type=file][aria-disabled=true],input[type=range].disabled,input[type=range]:disabled,input[type=range][aria-disabled=true]{background:0 0;box-shadow:none;cursor:default}input[type=checkbox].disabled,input[type=checkbox].disabled:checked:before,input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=checkbox][aria-disabled=true],input[type=radio].disabled,input[type=radio].disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before,input[type=radio][aria-disabled=true]{opacity:.7;cursor:default}.wp-core-ui select{font-size:14px;line-height:2.71428571;color:#1e1e1e;border-color:#949494;box-shadow:none;border-radius:2px;padding:0 24px 0 12px;min-height:40px;max-width:25rem;-webkit-appearance:none;background:#fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat right 8px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}.wp-core-ui select:hover{color:#1e1e1e;border-color:#1e1e1e}.wp-core-ui select:focus{border-color:var(--wp-admin-theme-color);color:#1e1e1e;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color)}.wp-core-ui select:active{border-color:#949494;box-shadow:none}.wp-core-ui select.disabled,.wp-core-ui select:disabled{color:#a7aaad;border-color:#dcdcde;background-color:#f6f7f7;background-image:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E');box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.wp-core-ui select[aria-disabled=true]{cursor:default}.wp-core-ui select:-moz-focusring{color:transparent;text-shadow:0 0 0 #0a4b78}.wp-core-ui select::-ms-value{background:0 0;color:#50575e}.wp-core-ui select:hover::-ms-value{color:#1e1e1e}.wp-core-ui select:focus::-ms-value{color:#0a4b78}.wp-core-ui select.disabled::-ms-value,.wp-core-ui select:disabled::-ms-value{color:#a7aaad}.wp-core-ui select::-ms-expand{display:none}.wp-admin .button-cancel{display:inline-block;min-height:28px;padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.meta-box-sortables input{vertical-align:middle}.misc-pub-post-status select{margin-top:0}.wp-core-ui select[multiple]{height:auto;padding-right:8px;background:#fff}.submit{padding:1.5em 0;margin:5px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border:none}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:left;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:none;text-align:right}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:none;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}.regular-text{width:25em}input.small-text{width:50px;padding:0 8px}label input.small-text{margin-top:-4px}input[type=number].small-text{width:65px;padding-right:4px}input.tiny-text{width:35px}input[type=number].tiny-text{width:45px;padding-right:0}#doaction,#doaction2,#post-query-submit{margin:0 8px 0 0}.no-js input#changeit2,.no-js input#doaction2,.no-js label[for=bulk-action-selector-bottom],.no-js label[for=new_role2],.no-js select#bulk-action-selector-bottom,.no-js select#new_role2{display:none}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{padding:0 12px;line-height:2.14285714;min-height:32px}.wp-core-ui .tablenav select{float:left;margin-right:6px;max-width:12.5rem;padding:0 24px 0 8px}.wp-core-ui .tablenav .button{min-height:32px;line-height:2.30769231;padding:0 12px}#timezone_string option{margin-left:1em}.wp-core-ui .button.wp-cancel-pw>.dashicons,.wp-core-ui .button.wp-hide-pw>.dashicons{width:1.25rem;height:1.25rem;font-size:20px;line-height:1;vertical-align:middle}.button.wp-hide-pw.user-new-password-toggle{display:inline-flex;align-items:center;column-gap:4px}.wp-cancel-pw .dashicons-no{display:none}#your-profile label+a,label{vertical-align:middle}#your-profile label+a,fieldset label{vertical-align:middle}.options-media-php [for*="_size_"]{min-width:10em;vertical-align:baseline}.options-media-php .small-text[name*="_size_"]{margin:0 0 1em}.wp-generate-pw{margin-top:1em;position:relative}.wp-pwd button{height:min-content}.wp-pwd{margin-top:1em;position:relative}.mailserver-pass-wrap .wp-pwd{display:inline-block;margin-top:0}#mailserver_pass{padding-right:2.5rem}.mailserver-pass-wrap .button.wp-hide-pw{background:0 0;border:1px solid transparent;box-shadow:none;font-size:14px;line-height:2;width:2.5rem;min-width:40px;margin:0;padding:0 9px;position:absolute;right:0;top:0}.mailserver-pass-wrap .button.wp-hide-pw:hover{background:0 0;border-color:transparent}.mailserver-pass-wrap .button.wp-hide-pw:focus{background:0 0;border-color:var(--wp-admin-theme-color);border-radius:2px;box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.mailserver-pass-wrap .button.wp-hide-pw:active{background:0 0;box-shadow:none;transform:none}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{background-color:#f0f0f0;border:1px solid #ccc;border-radius:2px;color:#1e1e1e;margin:-1px 1px 5px;padding:3px 5px;text-align:center;width:25em;box-sizing:border-box;opacity:0}#pass-strength-result.short{background-color:#ffabaf;border-color:#e65054;opacity:1}#pass-strength-result.bad{background-color:#facfd2;border-color:#f86368;opacity:1}#pass-strength-result.good{background-color:#f5e6ab;border-color:#f0c33c;opacity:1}#pass-strength-result.strong{background-color:#b8e6bf;border-color:#68de7c;opacity:1}.password-input-wrapper{display:inline-block}.password-input-wrapper input{font-family:Consolas,Monaco,monospace}#pass1-text.short,#pass1.short{border-color:#e65054}#pass1-text.bad,#pass1.bad{border-color:#f86368}#pass1-text.good,#pass1.good{border-color:#f0c33c}#pass1-text.strong,#pass1.strong{border-color:#68de7c}#pass1-text:focus,#pass1:focus{box-shadow:0 0 0 .5px var(--wp-admin-theme-color);outline:2px solid transparent}.pw-weak{display:none}.indicator-hint{padding-top:8px}.wp-pwd [type=password],.wp-pwd [type=text]{margin-bottom:0;min-height:40px}.wp-pwd input::-ms-reveal{display:none}#pass1-text,.show-password #pass1{display:none}#pass1-text::-ms-clear{display:none}.show-password #pass1-text{display:inline-block}.wp-pwd .caps-warning{display:none;position:relative;background:#fcf9e8;border:1px solid #f0c33c;color:#1d2327;padding:6px 10px;top:-8px}.profile-php .wp-pwd .caps-warning{padding:3px 5px;top:-4px;border-radius:2px}.wp-pwd .caps-icon{display:inline-flex;justify-content:center;width:20px;height:20px;margin-right:5px;vertical-align:middle}.wp-pwd .caps-warning-text{vertical-align:middle}p.search-box{display:flex;flex-wrap:wrap;align-items:center;column-gap:.5rem;position:relative;float:right;margin:11px 0}p.search-box input[type=search],p.search-box input[type=text]{min-height:32px;padding:0 8px}p.search-box .button{min-height:32px;line-height:2.30769231;padding:0 12px}.network-admin.themes-php p.search-box{clear:left}.tablenav .search-plugins input[name="s"]{float:left;margin:0 4px 0 0}.tagsdiv .newtag{margin:0}.js.plugins-php .search-box .wp-filter-search{margin:0;width:280px}input[type=email].ui-autocomplete-loading,input[type=text].ui-autocomplete-loading{background-image:url(../images/loading.gif);background-repeat:no-repeat;background-position:right 5px center;visibility:visible}input.ui-autocomplete-input.open{border-bottom-color:transparent}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border:1px solid #4f94d4;box-shadow:0 1px 2px rgba(79,148,212,.8);background-color:#fff}.ui-autocomplete li{margin-bottom:0;padding:4px 10px;white-space:nowrap;text-align:left;cursor:pointer}.ui-autocomplete .ui-state-focus{background-color:#dcdcde}.wp-tags-autocomplete .ui-state-focus,.wp-tags-autocomplete [aria-selected=true]{background-color:var(--wp-admin-theme-color);color:#fff;outline:2px solid transparent}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#1d2327;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;width:200px;line-height:1.3;font-weight:600}.form-table .td-full,.form-table th.th-full{width:auto;padding:20px 10px 20px 0;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table .date-time-doc{margin-top:1em}.form-table p.timezone-info{margin:1em 0;display:flex;flex-direction:column}#local-time{margin-top:.5em}.form-table td fieldset label{margin:.35em 0 .5em!important;display:inline-block}.form-table td fieldset p label{margin-top:0!important}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}table.form-table td .updated p{font-size:13px;margin:.3em 0}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#adduser .form-field input,#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#dcdcde}.color-palette{display:table;width:100%;border-spacing:0;border-collapse:collapse}.color-palette .color-palette-shade,.color-palette td{display:table-cell;height:20px;padding:0;border:none}.color-option{cursor:pointer}.create-application-password .form-field{max-width:25em}.create-application-password label{font-weight:600}.create-application-password p.submit{margin-bottom:0;padding-bottom:0;display:block}#application-passwords-section .notice{margin-top:20px;margin-bottom:0;word-wrap:break-word}.application-password-display input.code{margin-bottom:6px;width:100%;max-width:20em}.auth-app-card.card{max-width:768px}.authorize-application-php .form-wrap p{display:block}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.label-responsive{vertical-align:middle}#export-filters p{margin:0 0 1em}#export-filters p.submit{margin:7px 0 5px}.card{position:relative;margin-top:20px;padding:16px 24px;min-width:255px;max-width:520px;border:1px solid rgb(0,0,0,.1);border-radius:8px;background:#fff;box-sizing:border-box}.pressthis h4{margin:2em 0 1em}.pressthis textarea{width:100%;font-size:1em}#pressthis-code-wrap{overflow:auto}.pressthis-bookmarklet-wrapper{margin:20px 0 8px;vertical-align:top;position:relative;z-index:1}.pressthis-bookmarklet,.pressthis-bookmarklet:active,.pressthis-bookmarklet:focus,.pressthis-bookmarklet:hover{display:inline-block;position:relative;cursor:move;color:#2c3338;background:#dcdcde;border-radius:5px;border:1px solid #c3c4c7;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis-bookmarklet:active{outline:0}.pressthis-bookmarklet:after{content:"";width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:0 0;transform:skew(20deg) rotate(6deg);box-shadow:0 10px 8px rgba(0,0,0,.6)}.pressthis-bookmarklet:hover:after{transform:skew(20deg) rotate(9deg);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis-bookmarklet span{display:inline-block;margin:0;padding:0 12px 8px 9px}.pressthis-bookmarklet span:before{color:#787c82;font:normal 20px/1 dashicons;content:"\f157";content:"\f157"/'';position:relative;display:inline-block;top:4px;margin-right:4px}.pressthis-js-toggle{margin-left:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle.button.button{margin-left:10px;padding:0;height:auto;vertical-align:top}.pressthis-js-toggle .dashicons{margin:5px 8px 6px 7px;color:#50575e}.timezone-info code{white-space:nowrap}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .date-time-text{display:inline-block;min-width:10em}.options-general-php input.small-text{width:56px;margin:-2px 0;min-height:32px}.options-general-php .spinner{float:none;margin:-3px 3px 0}.options-general-php .language-install-spinner,.profile-php .language-install-spinner,.settings-php .language-install-spinner,.user-edit-php .language-install-spinner{display:inline-block;float:none;margin:-3px 5px 0;vertical-align:middle}.form-table.permalink-structure .available-structure-tags{margin-top:8px}.form-table.permalink-structure .available-structure-tags ul{display:flex;flex-wrap:wrap;margin:8px 0 0}.form-table.permalink-structure .available-structure-tags li{margin:6px 5px 0 0}.form-table.permalink-structure .available-structure-tags li:last-child{margin-right:0}.form-table.permalink-structure .structure-selection .row{margin-bottom:16px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 24px);display:inline-flex;flex-direction:column}.form-table.permalink-structure .structure-selection .row label{font-weight:600}.form-table.permalink-structure .structure-selection .row p{margin-top:0}.permalink-structure-optional-description code{display:inline-block}.setup-php textarea{max-width:100%}.form-field #site-address{max-width:25em}.form-field #domain{max-width:22em}.form-field #admin-email,.form-field #blog_last_updated,.form-field #blog_registered,.form-field #path,.form-field #site-title{max-width:25em}.form-field #path{margin-bottom:5px}#search-sites,#search-users{max-width:60%}.configuration-rules-label{font-weight:600;margin-bottom:4px}.request-filesystem-credentials-dialog{display:none;visibility:visible}.request-filesystem-credentials-dialog .notification-dialog{top:10%;max-height:85%}.request-filesystem-credentials-dialog-content{margin:25px}#request-filesystem-credentials-title{font-size:1.3em;margin:1em 0}.request-filesystem-credentials-form legend{font-size:1em;padding:1.33em 0;font-weight:600}.request-filesystem-credentials-form input[type=password],.request-filesystem-credentials-form input[type=text]{display:block}.request-filesystem-credentials-dialog input[type=password],.request-filesystem-credentials-dialog input[type=text]{width:100%}.request-filesystem-credentials-form .field-title{font-weight:600}.request-filesystem-credentials-dialog label[for=hostname],.request-filesystem-credentials-dialog label[for=private_key],.request-filesystem-credentials-dialog label[for=public_key]{display:block;margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:left;width:48%}.request-filesystem-credentials-dialog .ftp-password{margin-left:4%}.request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons{text-align:right}.request-filesystem-credentials-dialog label[for=ftp]{margin-right:10px}.request-filesystem-credentials-dialog #auth-keys-desc{margin-bottom:0}#request-filesystem-credentials-dialog .button:not(:last-child){margin-right:10px}#request-filesystem-credentials-form .cancel-button{display:none}#request-filesystem-credentials-dialog .cancel-button{display:inline}.request-filesystem-credentials-dialog .ftp-password,.request-filesystem-credentials-dialog .ftp-username{float:none;width:auto}.request-filesystem-credentials-dialog .ftp-username{margin-bottom:1em}.request-filesystem-credentials-dialog .ftp-password{margin:0}.request-filesystem-credentials-dialog .ftp-password em{color:#757575}.request-filesystem-credentials-dialog label{display:block;line-height:1.5;margin-bottom:1em}.request-filesystem-credentials-form legend{padding-bottom:0}.request-filesystem-credentials-form #ssh-keys legend{font-size:1.3em}.request-filesystem-credentials-form .notice{margin:0 0 20px;clear:both}.tools-privacy-policy-page form{margin-bottom:1.3em}.tools-privacy-policy-page input.button{margin:0 1px 0 6px}.tools-privacy-policy-page select{margin:0 1px .5em 6px}.tools-privacy-edit{margin:1.5em 0}.tools-privacy-policy-page span{line-height:2}.privacy_requests .column-email{width:40%}.privacy_requests .column-type{text-align:center}.privacy_requests tfoot td:first-child,.privacy_requests thead td:first-child{border-left:4px solid #fff}.privacy_requests tbody th{border-left:4px solid #fff;background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests .row-actions{color:#787c82}.privacy_requests .row-actions.processing{position:static}.privacy_requests tbody .has-request-results th{box-shadow:none}.privacy_requests tbody .request-results th .notice{margin:0 0 5px}.privacy_requests tbody td{background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.privacy_requests tbody .has-request-results td{box-shadow:none}.privacy_requests .next_steps .button{word-wrap:break-word;white-space:normal}.privacy_requests .status-request-confirmed td,.privacy_requests .status-request-confirmed th{background-color:#fff;border-left-color:#72aee6}.privacy_requests .status-request-failed td,.privacy_requests .status-request-failed th{background-color:#f6f7f7;border-left-color:#d63638}.privacy_requests .export_personal_data_failed a{vertical-align:baseline}.status-label{font-weight:600}.status-label.status-request-pending{font-weight:400;font-style:italic;color:#646970}.status-label.status-request-failed{color:#d63638;font-weight:600}.privacy_requests .status-date{display:block;font-weight:400}.wp-privacy-request-form{clear:both}.wp-privacy-request-form-field{margin:1.5em 0}.wp-privacy-request-form input{margin:0}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:0 12px;min-height:40px}::-webkit-datetime-edit{line-height:1.875}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox],input[type=checkbox]{-webkit-appearance:none}.widefat tfoot td input[type=checkbox],.widefat th input[type=checkbox],.widefat thead td input[type=checkbox]{margin-bottom:8px}.widefat tfoot td input[type=checkbox]:before,.widefat th input[type=checkbox]:before,.widefat thead td input[type=checkbox]:before,input[type=checkbox]:checked:before{width:1.875rem;height:1.875rem;margin:-.1875rem -.3125rem}input[type=checkbox],input[type=radio]{height:1.5625rem;width:1.5625rem}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-.1875rem}input[type=radio]:checked:before{vertical-align:middle;width:.5625rem;height:.5625rem;margin:.4375rem;line-height:.76190476}.wp-admin .form-table select,.wp-core-ui select{min-height:40px;font-size:16px;line-height:2.5;padding:0 24px 0 12px}.wp-admin .button-cancel{margin-bottom:0;padding:2px 0;font-size:14px;vertical-align:middle}#adduser .form-field input,#createuser .form-field input{width:100%}.form-table{box-sizing:border-box}.form-table td,.form-table th,.label-responsive{display:block;width:auto;vertical-align:middle}.label-responsive{margin:.5em 0}.export-filters li{margin-bottom:0}.form-table .color-palette .color-palette-shade,.form-table .color-palette td{display:table-cell;width:15px;height:30px;padding:0}.form-table .color-palette{margin-right:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=email],.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;display:block;max-width:none;box-sizing:border-box}.form-table .form-required.form-invalid td:after{float:right;margin:-30px 3px 0 0}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:4.375em;display:inline;padding:3px 6px;margin:0 3px}.form-table .regular-text~input[type=text].small-text{margin-top:5px}#pass-strength-result{width:100%;box-sizing:border-box;padding:8px}.profile-php .wp-pwd .caps-warning{padding:8px}.password-input-wrapper{display:block}.wp-core-ui .tablenav input[type=date],.wp-core-ui .tablenav input[type=datetime-local],.wp-core-ui .tablenav input[type=datetime],.wp-core-ui .tablenav input[type=email],.wp-core-ui .tablenav input[type=month],.wp-core-ui .tablenav input[type=number],.wp-core-ui .tablenav input[type=password],.wp-core-ui .tablenav input[type=search],.wp-core-ui .tablenav input[type=tel],.wp-core-ui .tablenav input[type=text],.wp-core-ui .tablenav input[type=time],.wp-core-ui .tablenav input[type=url],.wp-core-ui .tablenav input[type=week],.wp-core-ui .tablenav select{min-height:40px}.wp-core-ui .tablenav .button{min-height:40px;line-height:2.71428571;padding:0 14px}p.search-box{float:none;width:100%;margin-bottom:20px;display:flex}p.search-box input[name="s"]{width:100%;float:none;margin-bottom:10px;vertical-align:middle}.js.plugins-php .search-box .wp-filter-search{width:100%;margin-bottom:0}p.search-box input[type=search],p.search-box input[type=text]{min-height:40px;padding:0 12px}p.search-box input[type=submit].button{margin-bottom:10px}.form-table span.description{display:inline;padding:4px 0 0;line-height:1.4;font-size:14px}.form-table th{padding:10px 0 0;border-bottom:0}.form-table td{margin-bottom:0;padding:4px 0 6px}.form-table.permalink-structure td code{display:inline-block}.form-table.permalink-structure .structure-selection{margin-top:8px}.form-table.permalink-structure .structure-selection .row>div{max-width:calc(100% - 36px);width:100%}.form-table.permalink-structure td input[type=text]{margin-top:4px}.permalink-structure-has-blog-prefix{display:flex;align-items:center}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table td>label:first-child{display:inline-block;margin-top:.35em}.background-position-control .button-group>label{font-size:0}.form-table fieldset label{display:block}.form-field #domain{max-width:none}.wp-pwd{position:relative}#profile-page .form-table #pass1{padding-right:90px}.wp-pwd button.button{background:0 0;border:1px solid transparent;box-shadow:none;line-height:2;margin:0;padding:5px 9px;position:absolute;right:0;top:0;width:2.375rem;height:2.375rem;min-width:40px;min-height:40px}.wp-pwd button.wp-hide-pw{right:2.5rem}body.user-new-php .wp-pwd button.wp-hide-pw{right:0}.wp-pwd button.button:focus,.wp-pwd button.button:hover{background:0 0}.wp-pwd button.button:active{background:0 0;box-shadow:none;transform:none}.wp-pwd .button .text{display:none}.wp-pwd [type=password],.wp-pwd [type=text]{line-height:2;padding-right:5rem}body.user-new-php .wp-pwd [type=password],body.user-new-php .wp-pwd [type=text]{padding-right:2.5rem}.wp-cancel-pw .dashicons-no{display:inline-block}.mailserver-pass-wrap .wp-pwd{display:block}#mailserver_pass{padding-left:10px}.options-general-php input[type=text].small-text{max-width:6.25em;margin:0;min-height:40px}.tools-privacy-policy-page form.wp-create-privacy-page{margin-bottom:1em}.tools-privacy-policy-page input#set-page,.tools-privacy-policy-page select{margin:10px 0 0}.tools-privacy-policy-page .wp-create-privacy-page span{display:block;margin-bottom:1em}.tools-privacy-policy-page .wp-create-privacy-page .button{margin-left:0}.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column){display:table-cell}.wp-list-table.privacy_requests.widefat th input,.wp-list-table.privacy_requests.widefat thead td input{margin-left:5px}.wp-privacy-request-form-field input[type=text]{width:100%;margin-bottom:10px;vertical-align:middle}.regular-text{max-width:100%}}@media only screen and (max-width:768px){.form-field input[type=email],.form-field input[type=password],.form-field input[type=text],.form-field select,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}}@media only screen and (max-height:480px),screen and (max-width:450px){.file-editor-warning .notification-dialog,.request-filesystem-credentials-dialog .notification-dialog{width:100%;height:100%;max-height:100%;position:fixed;top:0;margin:0;left:0}}@media screen and (max-width:600px){.color-option{width:49%}}@media only screen and (max-width:320px){.options-general-php .date-time-text.date-time-custom-text{min-width:0;margin-right:.5em}}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}css/revisions.css000066600000024740152330733730010110 0ustar00/*------------------------------------------------------------------------------ 11.2 - Post Revisions ------------------------------------------------------------------------------*/ .revisions-control-frame, .revisions-diff-frame { position: relative; } .revisions-diff-frame { top: 10px; } .revisions-controls { padding-top: 40px; z-index: 1; } .revisions-controls input[type="checkbox"] { position: relative; top: -1px; vertical-align: text-bottom; } .revisions.pinned .revisions-controls { position: fixed; top: 0; height: 82px; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-tickmarks { position: relative; margin: 0 auto; height: 0.7em; top: 7px; max-width: 70%; box-sizing: border-box; background-color: #fff; } .revisions-tickmarks > div { position: absolute; height: 100%; border-left: 1px solid #a7aaad; box-sizing: border-box; } .revisions-tickmarks > div:first-child { border-width: 0; } .comparing-two-revisions .revisions-controls { height: 140px; } .comparing-two-revisions.pinned .revisions-controls { height: 124px; } .revisions .diff-error { position: absolute; text-align: center; margin: 0 auto; width: 100%; display: none; } .revisions.diff-error .diff-error { display: block; } .revisions .loading-indicator { position: absolute; vertical-align: middle; opacity: 0; width: 100%; width: calc( 100% - 30px ); top: 50%; top: calc( 50% - 10px ); transition: opacity 0.5s; } body.folded .revisions .loading-indicator { margin-left: -32px; } .revisions .loading-indicator span.spinner { display: block; margin: 0 auto; float: none; } .revisions.loading .loading-indicator { opacity: 1; } .revisions .diff { transition: opacity 0.5s; } .revisions.loading .diff { opacity: 0.5; } .revisions.diff-error .diff { visibility: hidden; } .revisions-meta { margin-top: 20px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); overflow: hidden; } .revisions.pinned .revisions-meta { box-shadow: none; } .revision-toggle-compare-mode { position: absolute; top: 0; right: 0; } .comparing-two-revisions .revisions-previous, .comparing-two-revisions .revisions-next, .revisions-meta .diff-meta-to strong { display: none; } .revisions-controls .author-card .date { color: #646970; } .revisions-controls .author-card.autosave { color: #d63638; } .revisions-controls .author-card .author-name { font-weight: 600; } .comparing-two-revisions .diff-meta-to strong { display: block; } .revisions.pinned .revisions-buttons { padding: 0 11px; } .revisions-previous, .revisions-next { position: relative; z-index: 1; } .revisions-previous { float: left; } .revisions-next { float: right; } .revisions-controls .wp-slider { max-width: 70%; margin: 0 auto; top: -3px; } .revisions-diff { padding: 15px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .revisions-diff h3:first-child { margin-top: 0; } /* Revision meta box */ .post-revisions li img, #revisions-meta-restored img { vertical-align: middle; } table.diff { table-layout: fixed; width: 100%; white-space: pre-wrap; } table.diff col.content { width: auto; } table.diff col.content.diffsplit { width: 48%; } table.diff col.diffsplit.middle { width: auto; } table.diff col.ltype { width: 30px; } table.diff tr { background-color: transparent; } table.diff td, table.diff th { font-family: Consolas, Monaco, monospace; font-size: 14px; line-height: 1.57142857; padding: 0.5em 0.5em 0.5em 2em; vertical-align: top; word-wrap: break-word; } table.diff td h1, table.diff td h2, table.diff td h3, table.diff td h4, table.diff td h5, table.diff td h6 { margin: 0; } table.diff .diff-deletedline del, table.diff .diff-addedline ins { text-decoration: none; } table.diff .diff-deletedline { position: relative; background-color: #fcf0f1; } table.diff .diff-deletedline del { background-color: #ffabaf; } table.diff .diff-addedline { position: relative; background-color: #edfaef; } table.diff .diff-deletedline .dashicons, table.diff .diff-addedline .dashicons { position: absolute; top: 0.85714286em; left: 0.5em; width: 1em; height: 1em; font-size: 1em; line-height: 1; } table.diff .diff-addedline .dashicons { /* Compensate the vertically non-centered plus glyph. */ top: 0.92857143em; } table.diff .diff-addedline ins { background-color: #68de7c; } .diff-meta { padding: 5px; clear: both; min-height: 32px; } .diff-title strong { line-height: 2.46153846; min-width: 60px; text-align: right; float: left; margin-right: 5px; } .revisions-controls .author-card .author-info { font-size: 12px; line-height: 1.33333333; } .revisions-controls .author-card .avatar, .revisions-controls .author-card .author-info { float: left; margin-left: 6px; margin-right: 6px; } .revisions-controls .author-card .byline { display: block; font-size: 12px; } .revisions-controls .author-card .avatar { vertical-align: middle; } .diff-meta input.restore-revision { float: right; margin-left: 6px; margin-right: 6px; } .diff-meta-from { display: none; } .comparing-two-revisions .diff-meta-from { display: block; } .revisions-tooltip { position: absolute; bottom: 105px; margin-right: 0; margin-left: -69px; z-index: 0; max-width: 350px; min-width: 130px; padding: 8px 4px; display: none; opacity: 0; } .revisions-tooltip.flipped { margin-left: 0; margin-right: -70px; } .revisions.pinned .revisions-tooltip { display: none !important; } .comparing-two-revisions .revisions-tooltip { bottom: 145px; } .revisions-tooltip-arrow { width: 70px; height: 15px; overflow: hidden; position: absolute; left: 0; margin-left: 35px; bottom: -15px; } .revisions-tooltip.flipped .revisions-tooltip-arrow { margin-left: 0; margin-right: 35px; left: auto; right: 0; } .revisions-tooltip-arrow > span { content: ""; position: absolute; left: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(45deg); } .revisions-tooltip.flipped .revisions-tooltip-arrow > span { left: auto; right: 20px; } .revisions-tooltip, .revisions-tooltip-arrow > span { border: 1px solid #dcdcde; background-color: #fff; } .revisions-tooltip { display: none; } .arrow { width: 70px; height: 16px; overflow: hidden; position: absolute; left: 0; margin-left: -35px; bottom: 90px; z-index: 10000; } .arrow:after { z-index: 9999; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .arrow.top { top: -16px; bottom: auto; } .arrow.left { left: 20%; } .arrow:after { content: ""; position: absolute; left: 20px; top: -20px; width: 25px; height: 25px; transform: rotate(45deg); } .revisions-tooltip, .revisions-tooltip-arrow:after { border-width: 1px; border-style: solid; } div.revisions-controls > .wp-slider > .ui-slider-handle { margin-left: -10px; } .rtl div.revisions-controls > .wp-slider > .ui-slider-handle { margin-right: -10px; } /* jQuery UI Slider */ .wp-slider.ui-slider { position: relative; border: 1px solid #dcdcde; text-align: left; cursor: pointer; } .wp-slider .ui-slider-handle { border-radius: 50%; height: 18px; margin-top: -5px; outline: none; padding: 2px; position: absolute; width: 18px; z-index: 2; touch-action: none; } .wp-slider .ui-slider-handle { background: #f6f7f7; border: 1px solid #c3c4c7; box-shadow: 0 1px 0 #c3c4c7; } .wp-slider .ui-slider-handle:hover, .wp-slider .ui-slider-handle.ui-state-hover { background: #f6f7f7; border-color: #8c8f94; } .wp-slider .ui-slider-handle:active, .wp-slider .ui-slider-handle.ui-state-active { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); transform: translateY(1px); } .wp-slider .ui-slider-handle:focus, .wp-slider .ui-slider-handle.ui-state-focus { background: #f0f0f1; border-color: #8c8f94; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-slider .ui-slider-handle:before { background: none; position: absolute; top: 2px; left: 2px; color: #50575e; content: "\f229"; content: "\f229" / ''; font: normal 18px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-slider .ui-slider-handle:hover:before, .wp-slider .ui-slider-handle.ui-state-hover:before { color: #1d2327; } .wp-slider .ui-slider-handle.from-handle:before, .wp-slider .ui-slider-handle.to-handle:before { font-size: 20px !important; margin: -1px 0 0 -1px; } .wp-slider .ui-slider-handle.from-handle:before { content: "\f139"; content: "\f139" / ''; } .wp-slider .ui-slider-handle.to-handle:before { content: "\f141"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.from-handle:before { content: "\f141"; content: "\f141" / ''; } .rtl .wp-slider .ui-slider-handle.to-handle:before { content: "\f139"; content: "\f139" / ''; right: -1px; } .wp-slider .ui-slider-range { position: absolute; font-size: 0.7em; display: block; border: 0; background-color: transparent; background-image: none; } .wp-slider.ui-slider-horizontal { height: 0.7em; } .wp-slider.ui-slider-horizontal .ui-slider-handle { top: -.25em; margin-left: -.6em; } .wp-slider.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .wp-slider.ui-slider-horizontal .ui-slider-range-min { left: 0; } .wp-slider.ui-slider-horizontal .ui-slider-range-max { right: 0; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .revision-tick.completed-false { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 600px) { .revisions-meta .author-card:not(.comparing-two-revisions .author-card) { display: flex; flex-direction: column; width: fit-content; gap: 16px; } .comparing-two-revisions .revisions-meta .restore-revision { margin-top: 16px; } .revisions-controls { padding-top: 0; } .revision-toggle-compare-mode { position: relative; padding: 1rem 0; } } @media screen and (max-width: 782px) { #diff-next-revision, #diff-previous-revision { margin-top: -1em; } .revisions-buttons { overflow: hidden; margin-bottom: 15px; } .revisions-controls, .comparing-two-revisions .revisions-controls { height: fit-content; } .revisions-tooltip { bottom: 155px; z-index: 2; } .comparing-two-revisions .revisions-tooltip { bottom: 200px; } .diff-meta { overflow: hidden; } table.diff { -ms-word-break: break-all; word-break: break-all; word-wrap: break-word; } } css/customize-widgets.min.css000066600000024216152330733730012335 0ustar00/*! This file is auto-generated */ .wp-full-overlay-sidebar{overflow:visible}.control-section.control-section-sidebar,.customize-control-sidebar_widgets .hide-if-js,.customize-control-sidebar_widgets label{display:none}.control-section.control-section-sidebar .accordion-section-content.ui-sortable{overflow:visible}.customize-control-widget_form .widget-top{background:#fff;transition:opacity .5s}.customize-control .widget-action{color:#787c82}.customize-control .widget-action:focus,.customize-control .widget-top:hover .widget-action{color:#1d2327}.customize-control-widget_form:not(.widget-rendered) .widget-top{opacity:.5}.customize-control-widget_form .widget-control-save{display:none}.customize-control-widget_form .spinner{visibility:hidden;margin-top:0}.customize-control-widget_form.previewer-loading .spinner{visibility:visible}.customize-control-widget_form.widget-form-disabled .widget-content{opacity:.7;pointer-events:none;-webkit-user-select:none;user-select:none}.customize-control-widget_form .widget{margin-bottom:0}.customize-control-widget_form.wide-widget-control .widget-inside{position:fixed;left:299px;top:25%;border:1px solid #dcdcde;overflow:auto}.customize-control-widget_form.wide-widget-control .widget-inside>.form{padding:20px}.customize-control-widget_form.wide-widget-control .widget-top{transition:background-color .4s}.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top,.customize-control-widget_form.wide-widget-control.expanding .widget-top{background-color:#dcdcde}.widget-inside{padding:1px 10px 10px;border-top:none;line-height:1.23076923}.customize-control-widget_form.expanded .widget-action .toggle-indicator:before{content:"\f142"}.customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before{content:"\f139"}.customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before{content:"\f141"}.widget-title-action{cursor:pointer}.customize-control-widget_form .widget .customize-control-title,.widget-top{cursor:move}.control-section.accordion-section.highlighted>.accordion-section-title,.customize-control-widget_form.highlighted{outline:0;box-shadow:0 0 2px rgba(79,148,212,.8);position:relative;z-index:1}#widget-customizer-control-templates{display:none}#customize-theme-controls .widget-reorder-nav{display:none;float:right;background-color:#f6f7f7}.move-widget:before{content:"\f504";content:"\f504"/''}#customize-theme-controls .move-widget-area{display:none;background:#fff;border:1px solid #c3c4c7;border-top:none;cursor:auto}#customize-theme-controls .reordering .move-widget-area.active{display:block}#customize-theme-controls .move-widget-area .description{margin:0;padding:15px 20px;font-weight:400}#customize-theme-controls .widget-area-select{margin:0;padding:0;list-style:none}#customize-theme-controls .widget-area-select li{position:relative;margin:0;padding:13px 15px 15px 42px;color:#50575e;border-top:1px solid #c3c4c7;cursor:pointer;-webkit-user-select:none;user-select:none}#customize-theme-controls .widget-area-select li:before{display:none;content:"\f147";content:"\f147"/'';position:absolute;top:12px;left:10px;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#customize-theme-controls .widget-area-select li:last-child{border-bottom:1px solid #c3c4c7}#customize-theme-controls .widget-area-select .selected{color:#fff;background:var(--wp-admin-theme-color)}#customize-theme-controls .widget-area-select .selected:before{display:block}#customize-theme-controls .move-widget-actions{text-align:right;padding:12px}#customize-theme-controls .reordering .widget-title-action{display:none}#customize-theme-controls .reordering .widget-reorder-nav{display:block}.wp-customizer div.mce-inline-toolbar-grp,.wp-customizer div.mce-tooltip{z-index:500100!important}.wp-customizer .ui-autocomplete.wplink-autocomplete{z-index:500110}.wp-customizer #wp-link-backdrop{z-index:500100}.wp-customizer #wp-link-wrap{z-index:500105}#widgets-left #available-widgets .widget{float:none!important;width:auto!important}#available-widgets .widget-action{display:none}.ios #available-widgets{transition:left 0s}#available-widgets .widget-tpl.selected,#available-widgets .widget-tpl:hover{background:#f6f7f7;border-bottom-color:#c3c4c7;color:var(--wp-admin-theme-color);border-left:4px solid var(--wp-admin-theme-color)}#customize-controls .widget-title h3{font-size:1em}#available-widgets .widget-title h3{padding:0 0 5px;font-size:14px}#available-widgets .widget .widget-description{padding:0;color:#646970}@media (prefers-reduced-motion:no-preference){#customize-preview{transition:all .2s}}body.adding-widget #available-widgets{left:0;visibility:visible}body.adding-widget .wp-full-overlay-main{left:300px}body.adding-widget #customize-preview{opacity:.4}#available-widgets .widget-title{position:relative}#available-widgets .widget-title:before{content:"\f132";content:"\f132"/'';position:absolute;top:-3px;right:100%;margin-right:20px;width:20px;height:20px;color:#2c3338;font:normal 20px/1 dashicons;text-align:center;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-widgets [class*=easy] .widget-title:before{content:"\f328";content:"\f328"/'';top:-4px}#available-widgets [class*=like] .widget-title:before,#available-widgets [class*=super] .widget-title:before{content:"\f155";content:"\f155"/'';top:-4px}#available-widgets [class*=meta] .widget-title:before{content:"\f120";content:"\f120"/''}#available-widgets [class*=archives] .widget-title:before{content:"\f480";content:"\f480"/'';top:-4px}#available-widgets [class*=categor] .widget-title:before{content:"\f318";content:"\f318"/'';top:-4px}#available-widgets [class*=chat] .widget-title:before,#available-widgets [class*=comment] .widget-title:before,#available-widgets [class*=testimonial] .widget-title:before{content:"\f101";content:"\f101"/''}#available-widgets [class*=post] .widget-title:before{content:"\f109";content:"\f109"/''}#available-widgets [class*=page] .widget-title:before{content:"\f105";content:"\f105"/''}#available-widgets [class*=text] .widget-title:before{content:"\f478";content:"\f478"/''}#available-widgets [class*=link] .widget-title:before{content:"\f103";content:"\f103"/''}#available-widgets [class*=search] .widget-title:before{content:"\f179";content:"\f179"/''}#available-widgets [class*=menu] .widget-title:before,#available-widgets [class*=nav] .widget-title:before{content:"\f333";content:"\f333"/''}#available-widgets [class*=tag] .widget-title:before{content:"\f479";content:"\f479"/''}#available-widgets [class*=rss] .widget-title:before{content:"\f303";content:"\f303"/'';top:-6px}#available-widgets [class*=calendar] .widget-title:before,#available-widgets [class*=event] .widget-title:before{content:"\f145";content:"\f145"/'';top:-4px}#available-widgets [class*=image] .widget-title:before,#available-widgets [class*=instagram] .widget-title:before,#available-widgets [class*=photo] .widget-title:before,#available-widgets [class*=slide] .widget-title:before{content:"\f128";content:"\f128"/''}#available-widgets [class*=album] .widget-title:before,#available-widgets [class*=galler] .widget-title:before{content:"\f161";content:"\f161"/''}#available-widgets [class*=tube] .widget-title:before,#available-widgets [class*=video] .widget-title:before{content:"\f126";content:"\f126"/''}#available-widgets [class*=audio] .widget-title:before,#available-widgets [class*=music] .widget-title:before,#available-widgets [class*=radio] .widget-title:before{content:"\f127";content:"\f127"/''}#available-widgets [class*=avatar] .widget-title:before,#available-widgets [class*=grofile] .widget-title:before,#available-widgets [class*=login] .widget-title:before,#available-widgets [class*=member] .widget-title:before,#available-widgets [class*=profile] .widget-title:before,#available-widgets [class*=subscriber] .widget-title:before,#available-widgets [class*=user] .widget-title:before{content:"\f110";content:"\f110"/''}#available-widgets [class*=cart] .widget-title:before,#available-widgets [class*=commerce] .widget-title:before,#available-widgets [class*=shop] .widget-title:before{content:"\f174";content:"\f174"/'';top:-4px}#available-widgets [class*=firewall] .widget-title:before,#available-widgets [class*=secur] .widget-title:before{content:"\f332";content:"\f332"/''}#available-widgets [class*=analytic] .widget-title:before,#available-widgets [class*=poll] .widget-title:before,#available-widgets [class*=stat] .widget-title:before{content:"\f185";content:"\f185"/''}#available-widgets [class*=form] .widget-title:before{content:"\f175";content:"\f175"/''}#available-widgets [class*=contact] .widget-title:before,#available-widgets [class*=mail] .widget-title:before,#available-widgets [class*=news] .widget-title:before,#available-widgets [class*=subscribe] .widget-title:before{content:"\f466";content:"\f466"/''}#available-widgets [class*=share] .widget-title:before,#available-widgets [class*=socia] .widget-title:before{content:"\f237";content:"\f237"/''}#available-widgets [class*=lang] .widget-title:before,#available-widgets [class*=translat] .widget-title:before{content:"\f326";content:"\f326"/''}#available-widgets [class*=locat] .widget-title:before,#available-widgets [class*=map] .widget-title:before{content:"\f231";content:"\f231"/''}#available-widgets [class*=download] .widget-title:before{content:"\f316";content:"\f316"/''}#available-widgets [class*=weather] .widget-title:before{content:"\f176";content:"\f176"/'';top:-4px}#available-widgets [class*=facebook] .widget-title:before{content:"\f304";content:"\f304"/''}#available-widgets [class*=tweet] .widget-title:before,#available-widgets [class*=twitter] .widget-title:before{content:"\f301";content:"\f301"/''}@media screen and (max-height:700px) and (min-width:981px){.customize-control-widget_form{margin-bottom:0}.widget-top{box-shadow:none;margin-top:-1px}.widget-top:hover{position:relative;z-index:1}.last-widget{margin-bottom:15px}.widget-title h3{padding:13px 15px}.widget-top .widget-action{padding:8px 10px}.widget-reorder-nav span{height:39px}.widget-reorder-nav span:before{line-height:39px}#customize-theme-controls .widget-area-select li{padding:9px 15px 11px 42px}#customize-theme-controls .widget-area-select li:before{top:8px}}css/themes.css000066600000125732152330733730007357 0ustar00/*------------------------------------------------------------------------------ 16.0 - Themes ------------------------------------------------------------------------------*/ /*------------------------------------------------------------------------------ 16.1 - Manage Themes ------------------------------------------------------------------------------*/ .themes-php { overflow-y: scroll; } .themes-php #adminmenuwrap { z-index: 10001; /* above Theme Overlay */ } body.js .theme-browser.search-loading { display: none; } .theme-browser .themes { clear: both; } .themes-php .wrap h1 .button { margin-left: 20px; } /* Search form */ .themes-php .search-form { display: inline-flex; align-items: center; position: relative; top: 0; gap: .5rem; width: 100%; justify-content: end; } .themes-php .wp-filter-search { position: relative; margin: 0; width: 280px; } /* Position admin messages */ .theme .notice, .theme .notice.is-dismissible { left: 0; margin: 0; position: absolute; right: 0; top: 0; } /** * Main theme element * (has flexible margins) */ .theme-browser .theme { cursor: pointer; float: left; margin: 0 4% 4% 0; position: relative; width: 30.6%; background: #ffffff; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; box-sizing: border-box; overflow: hidden; } .theme-browser .theme:nth-child(3n) { margin-right: 0; } .theme-browser .theme:hover, .theme-browser .theme.focus { cursor: pointer; } .theme-browser .theme .theme-name { font-size: 15px; font-weight: 600; height: 18px; margin: 0; padding: 16px 15px; border-top: 1px solid rgb(0, 0, 0, 0.1); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; background: #ffffff; } /* Activate and Customize buttons, shown on hover and focus */ .theme-browser .theme .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; transition: opacity 0.1s ease-in-out; height: auto; background: rgba(246, 247, 247, 0.7); border-left: 1px solid rgba(0, 0, 0, 0.05); } .theme-browser .theme:hover .theme-actions, .theme-browser .theme.focus .theme-actions { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } .theme-browser .theme .theme-actions .button-primary { margin-right: 3px; } /* Use compact size for space-constrained theme cards */ .theme-browser .theme .theme-actions .button.updated-message, .theme-browser .theme .theme-actions .button.updating-message, .theme-browser .theme .theme-actions .button { float: none; margin-left: 3px; } .theme-browser .theme .theme-actions .button.updated-message::before, .theme-browser .theme .theme-actions .button.updating-message::before { line-height: 1; vertical-align: text-bottom; position: relative; top: 2px; } /* Secondary buttons need white background for visibility on semi-transparent overlay */ .theme-browser .theme .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme .theme-actions .button:not(.button-primary):focus { background: #fff; } /** * Theme Screenshot * * Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size * It is also responsive. */ .theme-browser .theme .theme-screenshot { display: block; overflow: hidden; position: relative; -webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */ transition: opacity 0.2s ease-in-out; } .theme-browser .theme .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666%; /* using a 3/2 aspect ratio */ } .theme-browser .theme .theme-screenshot img { height: auto; position: absolute; left: 0; top: 0; width: 100%; transition: opacity 0.2s ease-in-out; } .theme-browser .theme:hover .theme-screenshot, .theme-browser .theme.focus .theme-screenshot { background: #fff; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 0.4; } .theme-browser .theme .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; opacity: 0; position: absolute; top: 35%; right: 20%; left: 20%; width: 60%; background: #1d2327; background: rgba(0, 0, 0, 0.7); color: #fff; font-size: 15px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); -webkit-font-smoothing: antialiased; font-weight: 600; padding: 15px 12px; text-align: center; border-radius: 3px; border: none; transition: opacity 0.1s ease-in-out; cursor: pointer; } .theme-browser .theme .more-details:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } .theme-browser .theme.focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .theme-browser .theme.focus .more-details { opacity: 1; } /* Current theme needs to have its action always on view */ .theme-browser .theme.active.focus .theme-actions { display: block; } .theme-browser.rendered .theme:hover .more-details, .theme-browser.rendered .theme.focus .more-details { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; opacity: 1; } /** * The currently active theme */ .theme-browser .theme.active .theme-name { background: #1d2327; color: #fff; padding-right: 115px; font-weight: 300; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5); } .theme-browser .customize-control .theme.active .theme-name { padding-right: 15px; } .theme-browser .theme.active .theme-name span { font-weight: 600; } .theme-browser .theme.active .theme-actions { background: transparent; border-left: none; opacity: 1; } .theme-browser .theme.active .theme-actions .button-primary { border-color: #fff; } .theme-id-container { position: relative; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { position: absolute; top: 50%; transform: translateY(-50%); right: 0; padding: 9px 12px; } .theme-browser .theme:not(.active) .theme-actions { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); } .theme-browser .theme.active .theme-actions .button-primary { margin-right: 0; } /* Active theme secondary buttons need white background for visibility on dark overlay */ .theme-browser .theme.active .theme-actions .button:not(.button-primary) { background: #fff; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):hover { background: #f0f0f0; } .theme-browser .theme.active .theme-actions .button:not(.button-primary):focus { background: #fff; } .theme-browser .theme .theme-author { background: #1d2327; color: #f0f0f1; display: none; font-size: 14px; margin: 0 10px; padding: 5px 10px; position: absolute; bottom: 56px; } .theme-browser .theme.display-author .theme-author { display: block; } .theme-browser .theme.display-author .theme-author a { color: inherit; } /** * Add new theme */ .theme-browser .theme.add-new-theme { background: transparent; border: none; overflow: visible; } .theme-browser .theme.add-new-theme a { text-decoration: none; display: block; position: relative; z-index: 1; } .theme-browser .theme.add-new-theme a:after { display: block; content: ""; background: transparent; background: rgba(0, 0, 0, 0); position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 0; text-shadow: none; border: 5px dashed #dcdcde; border: 5px dashed rgba(0, 0, 0, 0.1); box-sizing: border-box; } .theme-browser .theme.add-new-theme span:after { background: #dcdcde; background: rgba(140, 143, 148, 0.1); border-radius: 50%; display: inline-block; content: "\f132"; content: "\f132" / ''; -webkit-font-smoothing: antialiased; font: normal 74px/115px dashicons; width: 100px; height: 100px; vertical-align: middle; text-align: center; color: #8c8f94; position: absolute; top: 30%; left: 50%; margin-left: -50px; text-indent: -4px; padding: 0; text-shadow: none; z-index: 4; } .rtl .theme-browser .theme.add-new-theme span:after { text-indent: 4px; } .theme-browser .theme.add-new-theme a:hover .theme-screenshot, .theme-browser .theme.add-new-theme a:focus .theme-screenshot { background: none; } .theme-browser .theme.add-new-theme a:hover span:after, .theme-browser .theme.add-new-theme a:focus span:after { background: #fff; color: #2271b1; } .theme-browser .theme.add-new-theme a:hover:after, .theme-browser .theme.add-new-theme a:focus:after { border-color: transparent; color: #fff; background: #2271b1; content: ""; } .theme-browser .theme.add-new-theme .theme-name { background: none; border: none; text-align: center; font-weight: 400; position: relative; top: 0; margin-top: -18px; padding-top: 0; padding-bottom: 48px; } .theme-browser .theme.add-new-theme a:hover .theme-name, .theme-browser .theme.add-new-theme a:focus .theme-name { color: #fff; z-index: 2; } /** * Theme Overlay * Shown when clicking a theme */ .theme-overlay .theme-backdrop { position: absolute; left: -20px; right: 0; top: 0; bottom: 0; background: #f0f0f1; background: rgba(240, 240, 241, 0.9); z-index: 10000; /* Over WP Pointers. */ min-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px)); } .theme-overlay .theme-header { position: absolute; top: 0; left: 0; right: 0; height: 48px; border-bottom: 1px solid #dcdcde; } .theme-overlay .theme-header button { padding: 0; } .theme-overlay .theme-header .close { cursor: pointer; height: 48px; width: 50px; text-align: center; float: right; border: 0; border-left: 1px solid #dcdcde; background-color: transparent; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:before { font: normal 22px/50px dashicons !important; color: #787c82; display: inline-block; content: "\f335"; content: "\f335" / ''; font-weight: 300; } /* Left and right navigation */ .theme-overlay .theme-header .right, .theme-overlay .theme-header .left { cursor: pointer; color: #787c82; background-color: transparent; height: 48px; width: 54px; float: left; text-align: center; border: 0; border-right: 1px solid #dcdcde; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:focus, .theme-overlay .theme-header .left:hover { background: #dcdcde; border-color: #c3c4c7; color: #000; } .theme-overlay .theme-header .close:focus:before, .theme-overlay .theme-header .close:hover:before { color: #000; } .theme-overlay .theme-header .close:focus, .theme-overlay .theme-header .right:focus, .theme-overlay .theme-header .left:focus { box-shadow: none; outline: none; } .theme-overlay .theme-header .left.disabled, .theme-overlay .theme-header .right.disabled, .theme-overlay .theme-header .left.disabled:hover, .theme-overlay .theme-header .right.disabled:hover { color: #c3c4c7; background: inherit; cursor: inherit; } .theme-overlay .theme-header .right:before, .theme-overlay .theme-header .left:before { font: normal 20px/50px dashicons !important; display: inline; font-weight: 300; } .theme-overlay .theme-header .left:before { content: "\f341"; content: "\f341" / ''; } .theme-overlay .theme-header .right:before { content: "\f345"; content: "\f345" / ''; } .theme-overlay .theme-wrap { clear: both; position: fixed; top: 9%; left: 190px; right: 30px; bottom: 3%; background: #fff; box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); z-index: 10000; /* Over WP Pointers. */ box-sizing: border-box; -webkit-overflow-scrolling: touch; } body.folded .theme-browser ~ .theme-overlay .theme-wrap { left: 70px; } .theme-overlay .theme-about { position: absolute; top: 49px; bottom: 57px; left: 0; right: 0; overflow: auto; padding: 2% 4%; } .theme-overlay .theme-actions { position: absolute; text-align: center; bottom: 0; left: 0; right: 0; padding: 10px 25px 5px; background: #f6f7f7; z-index: 30; box-sizing: border-box; border-top: 1px solid #f0f0f1; display: flex; justify-content: center; gap: 5px; } .theme-overlay .theme-actions .button { margin-bottom: 5px; } /* Hide-if-customize for items we can't add classes to */ .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"], .customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"] { display: none; } .broken-themes a.delete-theme, .theme-overlay .theme-actions .delete-theme { color: #b32d2e; text-decoration: none; border-color: transparent; box-shadow: none; background: transparent; } .broken-themes a.delete-theme:hover, .broken-themes a.delete-theme:focus, .theme-overlay .theme-actions .delete-theme:hover, .theme-overlay .theme-actions .delete-theme:focus { background: #b32d2e; color: #fff; border-color: #b32d2e; box-shadow: 0 0 0 1px #b32d2e; } .theme-overlay .theme-actions .active-theme, .theme-overlay.active .theme-actions .inactive-theme { display: none; } .theme-overlay .theme-actions .inactive-theme, .theme-overlay.active .theme-actions .active-theme { display: block; } /** * Theme Screenshots gallery */ .theme-overlay .theme-screenshots { float: left; margin: 0 30px 0 0; width: 55%; max-width: 1200px; /* Recommended theme screenshot width, set here to avoid stretching */ text-align: center; } /* First screenshot, shown big */ .theme-overlay .screenshot { border: 1px solid #fff; box-sizing: border-box; overflow: hidden; position: relative; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); } .theme-overlay .screenshot:after { content: ""; display: block; padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-overlay .screenshot img { height: auto; position: absolute; left: 0; top: 0; width: 100%; } /* Handles old 300px screenshots */ .theme-overlay.small-screenshot .theme-screenshots { position: absolute; width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-left: 350px; width: auto; } /* Other screenshots, shown small and square */ .theme-overlay .screenshot.thumb { background: #c3c4c7; border: 1px solid #f0f0f1; float: none; display: inline-block; margin: 10px 5px 0; width: 140px; height: 80px; cursor: pointer; } .theme-overlay .screenshot.thumb:after { content: ""; display: block; padding-top: 100%; /* using a 1/1 aspect ratio */ } .theme-overlay .screenshot.thumb img { cursor: pointer; height: auto; position: absolute; left: 0; top: 0; width: 100%; height: auto; } .theme-overlay .screenshot.selected { background: transparent; border: 2px solid #72aee6; } .theme-overlay .screenshot.selected img { opacity: 0.8; } /* No screenshot placeholder */ .theme-browser .theme .theme-screenshot.blank, .theme-overlay .screenshot.blank { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=); } /** * Theme heading information */ .theme-overlay .theme-info { width: 40%; float: left; } .theme-overlay .current-label { background: #2c3338; color: #fff; font-size: 11px; display: inline-block; padding: 2px 8px; border-radius: 2px; margin: 0 0 -10px; -webkit-user-select: none; user-select: none; } .theme-overlay .theme-name { color: #1d2327; font-size: 32px; font-weight: 100; margin: 10px 0 0; line-height: 1.3; word-wrap: break-word; overflow-wrap: break-word; } .theme-overlay .theme-version { color: #646970; font-size: 13px; font-weight: 400; float: none; display: inline-block; margin-left: 10px; } .theme-overlay .theme-author { margin: 15px 0 25px; color: #646970; font-size: 16px; font-weight: 400; line-height: inherit; } .theme-overlay .toggle-auto-update { /* Better align spin icon and text. */ display: inline-flex; align-items: center; /* Prevents content after the auto-update toggler from jumping down and up. */ min-height: 20px; /* Same height as the spinning dashicon. */ vertical-align: top; } .theme-overlay .theme-autoupdate .toggle-auto-update { text-decoration: none; } .theme-overlay .theme-autoupdate .toggle-auto-update .label { text-decoration: underline; } .theme-overlay .theme-description { color: #50575e; font-size: 15px; font-weight: 400; line-height: 1.5; margin: 30px 0 0; } .theme-overlay .theme-tags { border-top: 3px solid #f0f0f1; color: #646970; font-size: 13px; font-weight: 400; margin: 30px 0 0; padding-top: 20px; } .theme-overlay .theme-tags span { color: #3c434a; font-weight: 600; margin-right: 5px; } .theme-overlay .parent-theme { background: #fff; border: 1px solid #f0f0f1; border-left: 4px solid #72aee6; font-size: 14px; font-weight: 400; margin-top: 30px; padding: 10px 10px 10px 20px; } .theme-overlay .parent-theme strong { font-weight: 600; } /** * Single Theme Mode * Displays detailed view inline when a user has no switch capabilities */ .single-theme .theme-overlay .theme-backdrop, .single-theme .theme-overlay .theme-header, .single-theme .theme { display: none; } .single-theme .theme-overlay .theme-wrap { clear: both; min-height: 330px; position: relative; left: auto; right: auto; top: auto; bottom: auto; z-index: 10; } .single-theme .theme-overlay .theme-about { padding: 30px 30px 70px; position: static; } .single-theme .theme-overlay .theme-actions { position: absolute; } /** * Basic Responsive structure... * * Shuffles theme columns around based on screen width */ @media only screen and (min-width: 2000px) { #wpwrap .theme-browser .theme { width: 17.6%; margin: 0 3% 3% 0; } #wpwrap .theme-browser .theme:nth-child(3n), #wpwrap .theme-browser .theme:nth-child(4n) { margin-right: 3%; } #wpwrap .theme-browser .theme:nth-child(5n) { margin-right: 0; } } @media only screen and (min-width: 1680px) { .theme-overlay .theme-wrap { width: 1450px; margin: 0 auto; } } /* Maximum screenshot width reaches 440px */ @media only screen and (min-width: 1640px) { .theme-browser .theme { width: 22.7%; margin: 0 3% 3% 0; } .theme-browser .theme .theme-screenshot:after { padding-top: 75%; /* using a 4/3 aspect ratio */ } .theme-browser .theme:nth-child(3n) { margin-right: 3%; } .theme-browser .theme:nth-child(4n) { margin-right: 0; } } /* Maximum screenshot width reaches 440px */ @media only screen and (max-width: 1120px) { .theme-browser .theme { width: 47.5%; margin-right: 0; } .theme-browser .theme:nth-child(even) { margin-right: 0; } .theme-browser .theme:nth-child(odd) { margin-right: 5%; } } /* Admin menu is folded */ @media only screen and (max-width: 960px) { .theme-overlay .theme-wrap { left: 65px; } } @media only screen and (max-width: 782px) { body.folded .theme-overlay .theme-wrap, .theme-overlay .theme-wrap { top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ right: 0; bottom: 0; left: 0; padding: 70px 20px 20px; border: none; z-index: 100000; /* should overlap #wpadminbar. */ position: fixed; } .theme-browser .theme.active .theme-name span { /* Hide the "Active: " label on smaller screens. */ display: none; } .theme-overlay .theme-screenshots { width: 40%; } .theme-overlay .theme-info { width: 50%; } .single-theme .theme-wrap { padding: 10px; } .theme-browser .theme .theme-actions { padding: 5px 10px 4px; } .theme-overlay.small-screenshot .theme-screenshots { position: static; float: none; max-width: 302px; } .theme-overlay.small-screenshot .theme-info { margin-left: 0; width: auto; } .theme:not(.active):hover .theme-actions, .theme:not(.active):focus .theme-actions, .theme:hover .more-details, .theme.focus .more-details { display: none; } .theme-browser.rendered .theme:hover .theme-screenshot img, .theme-browser.rendered .theme.focus .theme-screenshot img { opacity: 1.0; } } @media only screen and (max-width: 480px) { .theme-browser .theme { width: 100%; margin-right: 0; } .theme-browser .theme:nth-child(2n), .theme-browser .theme:nth-child(3n) { margin-right: 0; } .theme-overlay .theme-about { bottom: 105px; } .theme-overlay .theme-actions { padding-left: 4%; padding-right: 4%; } .theme-install-php .wp-filter .filter-count { margin-top: 10px; } } @media only screen and (max-width: 650px) { .theme-overlay .theme-description { margin-left: 0; } .theme-overlay .theme-actions .delete-theme { position: relative; right: auto; bottom: auto; } .theme-overlay .theme-actions .inactive-theme { display: inline; } .theme-overlay .theme-screenshots { width: 100%; float: none; margin: 0; } .theme-overlay .theme-info { width: 100%; } .theme-overlay .theme-author { margin: 5px 0 15px; } .theme-overlay .current-label { margin-top: 10px; font-size: 13px; } .themes-php .wp-filter-search { width: 100%; } .theme-install-php .wp-filter p.search-box { display: grid; row-gap: .5rem; } .theme-browser .theme.add-new-theme span:after { font: normal 60px/90px dashicons; width: 80px; height: 80px; top: 30%; left: 50%; text-indent: 0; margin-left: -40px; } .single-theme .theme-wrap { margin: 0 -12px 0 -10px; padding: 10px; } .single-theme .theme-overlay .theme-about { padding: 10px; overflow: visible; } .single-theme .current-label { display: none; } .single-theme .theme-overlay .theme-actions { position: static; } } .broken-themes { clear: both; } .broken-themes table { text-align: left; width: 50%; border-spacing: 3px; padding: 3px; } /*------------------------------------------------------------------------------ 16.2 - Install Themes ------------------------------------------------------------------------------*/ .update-php .wrap { max-width: 40rem; } /* Already installed theme */ .theme-browser .theme .theme-installed { background: #2271b1; } .theme-browser .theme .notice-success p:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .theme-install.updated-message:before { content: ""; } .theme-install-php .wp-filter { padding-left: 20px; } /* Override column gap adjustment in media library. */ @media only screen and (max-width: 1000px) { .theme-install-php .wp-filter p.search-box { column-gap: .5rem; } } .theme-install-php a.upload, .theme-install-php a.browse-themes { cursor: pointer; } .upload-view-toggle .browse, .plugin-install-tab-upload .upload-view-toggle .upload { display: none; } .plugin-install-tab-upload .upload-view-toggle .browse { display: inline; } .upload-theme, .upload-plugin { box-sizing: border-box; display: none; margin: 0; padding: 50px 0; width: 100%; overflow: hidden; position: relative; top: 10px; text-align: center; } .show-upload-view .upload-theme, .show-upload-view .upload-plugin, .show-upload-view .upload-plugin-wrap, .plugin-install-tab-upload .upload-plugin { display: block; } .upload-theme .wp-upload-form, .upload-plugin .wp-upload-form { position: relative; margin: 30px; display: inline-flex; justify-content: space-between; align-items: center; border: 1px solid #c3c4c7; background: #f6f7f7; } .upload-theme .wp-upload-form input[type="file"], .upload-plugin .wp-upload-form input[type="file"] { background: transparent; margin: 0; padding: 30px 0 30px 30px; } .wp-upload-form input[type="submit"].button { margin-right: 30px; } .upload-theme .install-help, .upload-plugin .install-help { color: #50575e; /* #f1f1f1 background */ font-size: 18px; font-style: normal; margin: 0; padding: 0; text-align: center; } p.no-themes, p.no-themes-local { clear: both; color: #646970; font-size: 18px; font-style: normal; margin: 0; padding: 100px 0; text-align: center; display: none; } .no-results p.no-themes { display: block; } .theme-install-php .add-new-theme { display: none !important; } @media only screen and (max-width: 1120px) { .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { margin: 20px 0; max-width: 100%; } .upload-theme .install-help { font-size: 15px; padding: 20px 0 0; } } .theme-details .theme-rating { line-height: 1.9; } .theme-details .star-rating { display: inline; } .theme-details .num-ratings, .theme-details .no-rating { font-size: 11px; color: #646970; } .theme-details .no-rating { display: block; line-height: 1.9; } .update-from-upload-comparison { border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; text-align: left; margin: 1rem 0 1.4rem; border-collapse: collapse; width: 100%; } .update-from-upload-comparison tr:last-child td { height: 1.4rem; vertical-align: top; } .update-from-upload-comparison tr:first-child th { font-weight: bold; height: 1.4rem; vertical-align: bottom; } .update-from-upload-comparison td.name-label { text-align: right; } .update-from-upload-comparison td, .update-from-upload-comparison th { padding: 0.4rem 1.4rem; } .update-from-upload-comparison td.warning { color: #d63638; } .update-from-upload-actions { margin-top: 1.4rem; } /*------------------------------------------------------------------------------ 16.3 - Custom Header Screen ------------------------------------------------------------------------------*/ .appearance_page_custom-header #headimg { border: 1px solid #dcdcde; overflow: hidden; width: 100%; } .appearance_page_custom-header #upload-form p label { font-size: 12px; } .appearance_page_custom-header .available-headers .default-header { float: left; margin: 0 20px 20px 0; } .appearance_page_custom-header .random-header { clear: both; margin: 0 20px 20px 0; vertical-align: middle; } .appearance_page_custom-header .available-headers label input, .appearance_page_custom-header .random-header label input { margin-right: 10px; } .appearance_page_custom-header .available-headers label img { vertical-align: middle; } /*------------------------------------------------------------------------------ 16.4 - Custom Background Screen ------------------------------------------------------------------------------*/ div#custom-background-image { min-height: 100px; border: 1px solid #dcdcde; } div#custom-background-image img { max-width: 400px; max-height: 300px; } .background-position-control input[type="radio"]:checked ~ .button { background: #f0f0f1; border-color: #8c8f94; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); z-index: 1; } .background-position-control input[type="radio"]:focus ~ .button { border-color: #4f94d4; box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(34, 113, 177, 0.8); color: #1d2327; } .background-position-control .background-position-center-icon, .background-position-control .background-position-center-icon:before { display: inline-block; line-height: 1; text-align: center; transition: background-color .1s ease-in; } .background-position-control .background-position-center-icon { height: 20px; margin-top: 13px; vertical-align: top; width: 20px; } .background-position-control .background-position-center-icon:before { background-color: #50575e; border-radius: 50%; content: ""; height: 12px; width: 12px; } .background-position-control .button:hover .background-position-center-icon:before, .background-position-control input[type="radio"]:focus ~ .button .background-position-center-icon:before { background-color: #1d2327; } .background-position-control .button-group { display: block; } .background-position-control .button-group .button { border-radius: 0; box-shadow: none; /* Following properties are overridden by buttons responsive styles (see: wp-includes/css/buttons.css). */ height: 40px !important; line-height: 2.9 !important; margin: 0 -1px 0 0 !important; padding: 0 10px 1px !important; position: relative; } .background-position-control .button-group .button:active, .background-position-control .button-group .button:hover, .background-position-control .button-group .button:focus { z-index: 1; } .background-position-control .button-group:last-child .button { box-shadow: 0 1px 0 #c3c4c7; } .background-position-control .button-group > label { margin: 0 !important; } .background-position-control .button-group:first-child > label:first-child .button { border-radius: 3px 0 0; } .background-position-control .button-group:first-child > label:first-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group:first-child > label:last-child .button { border-radius: 0 3px 0 0; } .background-position-control .button-group:first-child > label:last-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group:last-child > label:first-child .button { border-radius: 0 0 0 3px; } .background-position-control .button-group:last-child > label:first-child .dashicons { transform: rotate( -45deg ); } .background-position-control .button-group:last-child > label:last-child .button { border-radius: 0 0 3px; } .background-position-control .button-group:last-child > label:last-child .dashicons { transform: rotate( 45deg ); } .background-position-control .button-group + .button-group { margin-top: -1px; } /*------------------------------------------------------------------------------ 23.0 - Full Overlay w/ Sidebar ------------------------------------------------------------------------------*/ body.full-overlay-active { overflow: hidden; /* Hide all the content, the Customizer overlay is then made visible to be the only available content. */ visibility: hidden; } .wp-full-overlay { background: transparent; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; left: 0; right: 0; height: 100%; min-width: 0; } .wp-full-overlay-sidebar { box-sizing: border-box; position: fixed; min-width: 300px; max-width: 600px; width: 18%; height: 100%; top: 0; bottom: 0; left: 0; padding: 0; margin: 0; z-index: 10; background: #f0f0f1; border-right: none; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { overflow: visible; } .wp-full-overlay.collapsed, .wp-full-overlay.expanded .wp-full-overlay-sidebar { margin-left: 0 !important; } .wp-full-overlay.expanded { margin-left: 300px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -300px; } @media screen and (min-width: 1667px) { .wp-full-overlay.expanded { margin-left: 18%; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -18%; } } @media screen and (min-width: 3333px) { .wp-full-overlay.expanded { margin-left: 600px; } .wp-full-overlay.collapsed .wp-full-overlay-sidebar { margin-left: -600px; } } .wp-full-overlay-sidebar:after { content: ""; display: block; position: absolute; top: 0; bottom: 0; right: 0; width: 3px; z-index: 1000; } .wp-full-overlay-main { position: absolute; left: 0; right: 0; top: 0; bottom: 0; height: 100%; } .wp-full-overlay-sidebar .wp-full-overlay-header { position: absolute; left: 0; right: 0; height: 45px; padding: 0 15px; line-height: 3.2; z-index: 10; margin: 0; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-header a.back { margin-top: 3px; /* Vertically center 40px button in 45px header */ } .wp-full-overlay-sidebar .wp-full-overlay-footer { bottom: 0; border-bottom: none; border-top: none; box-shadow: none; } .wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { position: absolute; top: 45px; bottom: 45px; left: 0; right: 0; overflow: auto; } /* Close & Navigation Links */ .theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header { padding: 0; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { display: block; position: relative; float: left; width: 45px; height: 45px; background: #f0f0f1; border-right: 1px solid #dcdcde; color: #3c434a; cursor: pointer; text-decoration: none; transition: color .1s ease-in-out, background .1s ease-in-out; } .theme-install-overlay .close-full-overlay:hover, .theme-install-overlay .close-full-overlay:focus, .theme-install-overlay .previous-theme:hover, .theme-install-overlay .previous-theme:focus, .theme-install-overlay .next-theme:hover, .theme-install-overlay .next-theme:focus { background: #dcdcde; border-color: #c3c4c7; color: #000; outline: none; box-shadow: none; } .theme-install-overlay .close-full-overlay:before { font: normal 22px/1 dashicons; content: "\f335"; content: "\f335" / ''; position: relative; top: 7px; left: 13px; } .theme-install-overlay .previous-theme:before { font: normal 20px/1 dashicons; content: "\f341"; content: "\f341" / ''; position: relative; top: 6px; left: 14px; } .theme-install-overlay .next-theme:before { font: normal 20px/1 dashicons; content: "\f345"; content: "\f345" / ''; position: relative; top: 6px; left: 13px; } .theme-install-overlay .previous-theme.disabled, .theme-install-overlay .next-theme.disabled, .theme-install-overlay .previous-theme.disabled:hover, .theme-install-overlay .previous-theme.disabled:focus, .theme-install-overlay .next-theme.disabled:hover, .theme-install-overlay .next-theme.disabled:focus { color: #c3c4c7; background: #f0f0f1; cursor: default; pointer-events: none; } .theme-install-overlay .close-full-overlay, .theme-install-overlay .previous-theme, .theme-install-overlay .next-theme { border-left: 0; border-top: 0; border-bottom: 0; } .theme-install-overlay .close-full-overlay:before, .theme-install-overlay .previous-theme:before, .theme-install-overlay .next-theme:before { top: 2px; left: 0; } /* Collapse Button */ .wp-core-ui .wp-full-overlay .collapse-sidebar { position: fixed; bottom: 0; left: 0; padding: 9px 0 9px 10px; height: 45px; color: #646970; outline: 0; line-height: 1; background-color: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; } .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { color: #2271b1; } .wp-full-overlay .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar-label { display: inline-block; vertical-align: middle; line-height: 1.6; } .wp-full-overlay .collapse-sidebar-arrow { width: 20px; height: 20px; margin: 0 2px; /* avoid the focus box-shadow to be cut-off */ border-radius: 50%; overflow: hidden; } .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wp-full-overlay .collapse-sidebar-label { margin-left: 3px; } .wp-full-overlay.collapsed .collapse-sidebar-label { display: none; } .wp-full-overlay .collapse-sidebar-arrow:before { display: block; content: "\f148"; content: "\f148" / ''; background: #f0f0f1; font: normal 20px/1 dashicons; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar { padding: 9px 10px; } /* rtl:ignore */ .wp-full-overlay.collapsed .collapse-sidebar-arrow:before, .rtl .wp-full-overlay .collapse-sidebar-arrow:before { transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing */ } .rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { transform: none; } /* Animations */ @media (prefers-reduced-motion: no-preference) { .wp-full-overlay, .wp-full-overlay-sidebar, .wp-full-overlay .collapse-sidebar, .wp-full-overlay-main { transition-property: left, right, top, bottom, width, margin; transition-duration: 0.2s; } } /* Device/preview size toggles */ .wp-full-overlay { background: #1d2327; } .wp-full-overlay-main { background-color: #f0f0f1; } .expanded .wp-full-overlay-footer { position: fixed; bottom: 0; left: 0; min-width: 299px; max-width: 599px; width: 18%; width: calc( 18% - 1px ); height: 45px; border-top: 1px solid #dcdcde; background: #f0f0f1; } .wp-full-overlay-footer .devices-wrapper { float: right; } .wp-full-overlay-footer .devices { position: relative; background: #f0f0f1; box-shadow: -20px 0 10px -5px #f0f0f1; } .wp-full-overlay-footer .devices button { cursor: pointer; background: transparent; border: none; height: 45px; padding: 0 3px; margin: 0 0 0 -4px; box-shadow: none; border-top: 1px solid transparent; border-bottom: 4px solid transparent; transition: .15s color ease-in-out, .15s background-color ease-in-out, .15s border-color ease-in-out; } .wp-full-overlay-footer .devices button:focus { box-shadow: none; outline: none; } .wp-full-overlay-footer .devices button:before { display: inline-block; -webkit-font-smoothing: antialiased; font: normal 20px/30px "dashicons"; vertical-align: top; margin: 3px 0; padding: 4px 8px; color: #646970; } .wp-full-overlay-footer .devices button.active { border-bottom-color: #1d2327; } .wp-full-overlay-footer .devices button:hover, .wp-full-overlay-footer .devices button:focus { background-color: #fff; } .wp-full-overlay-footer .devices button:focus, .wp-full-overlay-footer .devices button.active:hover { border-bottom-color: #2271b1; } .wp-full-overlay-footer .devices button.active:before { color: #1d2327; } .wp-full-overlay-footer .devices button:hover:before, .wp-full-overlay-footer .devices button:focus:before { color: #2271b1; } .wp-full-overlay-footer .devices .preview-desktop:before { content: "\f472"; content: "\f472" / ''; } .wp-full-overlay-footer .devices .preview-tablet:before { content: "\f471"; content: "\f471" / ''; } .wp-full-overlay-footer .devices .preview-mobile:before { content: "\f470"; content: "\f470" / ''; } @media screen and (max-width: 1024px) { .wp-full-overlay-footer .devices { display: none; } } .collapsed .wp-full-overlay-footer .devices button:before { display: none; } .preview-mobile .wp-full-overlay-main { margin: auto 0 auto -160px; width: 320px; height: 480px; max-height: 100%; max-width: 100%; left: 50%; } .preview-tablet .wp-full-overlay-main { margin: auto 0 auto -360px; width: 720px; /* Size is loosely based on a typical "tablet" device size. Intentionally ambiguous - this does not represent any particular device precisely. */ height: 1080px; max-height: 100%; max-width: 100%; left: 50%; } /*------------------------------------------------------------------------------ 24.0 - Customize Loader ------------------------------------------------------------------------------*/ .no-customize-support .hide-if-no-customize, .customize-support .hide-if-customize, .no-customize-support.wp-core-ui .hide-if-no-customize, .no-customize-support .wp-core-ui .hide-if-no-customize, .customize-support.wp-core-ui .hide-if-customize, .customize-support .wp-core-ui .hide-if-customize { display: none; } #customize-container, #customize-controls .notice.notification-overlay { background: #f0f0f1; z-index: 500000; position: fixed; overflow: visible; top: 0; bottom: 0; left: 0; right: 0; height: 100%; } #customize-container { display: none; } /* Make the Customizer and Theme installer overlays the only available content. */ #customize-container, .theme-install-overlay { visibility: visible; } .customize-loading #customize-container iframe { opacity: 0; } #customize-container iframe, .theme-install-overlay iframe { height: 100%; width: 100%; z-index: 20; transition: opacity 0.3s; } #customize-controls { margin-top: 0; } .theme-install-overlay { display: none; } .theme-install-overlay.single-theme { display: block; } .install-theme-info { display: none; padding: 10px 20px 60px; } .single-theme .install-theme-info { padding-top: 15px; } .theme-install-overlay .install-theme-info { display: block; } .install-theme-info .theme-install { float: right; margin-top: 18px; } .install-theme-info .theme-name { font-size: 16px; line-height: 1.5; margin-bottom: 0; margin-top: 0; } .install-theme-info .theme-screenshot { margin: 15px 0; width: 258px; border: 1px solid #c3c4c7; position: relative; overflow: hidden; } .install-theme-info .theme-screenshot > img { width: 100%; height: auto; position: absolute; left: 0; top: 0; } .install-theme-info .theme-screenshot:after { content: ""; display: block; padding-top: 66.66666666%; } .install-theme-info .theme-details { overflow: hidden; } .theme-details .theme-version { margin: 15px 0; } .theme-details .theme-description { float: left; color: #646970; line-height: 1.6; max-width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { float: right; margin: 7px 10px 0 0; /* Vertically center 32px button in 45px header */ min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ } .theme-install-overlay .wp-full-overlay-sidebar { background: #f0f0f1; border-right: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-sidebar-content { background: #fff; border-top: 1px solid #dcdcde; border-bottom: 1px solid #dcdcde; } .theme-install-overlay .wp-full-overlay-main { position: absolute; z-index: 0; background-color: #f0f0f1; } .customize-loading #customize-container { background-color: #f0f0f1; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; z-index: -1; margin: -10px 0 0 -10px; transform: translateZ(0); background: transparent url(../images/spinner.gif) no-repeat center center; background-size: 20px 20px; } #customize-preview.wp-full-overlay-main.iframe-ready:before, .theme-install-overlay.iframe-ready .wp-full-overlay-main:before { background-image: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { .wp-full-overlay .collapse-sidebar-arrow { background-image: url(../images/arrows-2x.png); background-size: 15px 123px; } #customize-preview.wp-full-overlay-main:before, .customize-loading #customize-container:before, #customize-controls .notice.notification-overlay.notification-loading:before, .theme-install-overlay .wp-full-overlay-main:before { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { .available-theme .action-links .delete-theme { float: none; margin: 0; padding: 0; clear: both; } .available-theme .action-links .delete-theme a { padding: 0; } .broken-themes table { width: 100%; } .theme-install-overlay .wp-full-overlay-header .button { font-size: 13px; } .theme-browser .theme .theme-actions .button { margin-bottom: 0; } .theme-browser .theme.active .theme-actions, .theme-browser .theme .theme-actions { padding-top: 4px; padding-bottom: 4px; } .upload-plugin .wp-upload-form, .upload-theme .wp-upload-form { width: 100%; box-sizing: border-box; } .upload-plugin .wp-upload-form input[type=file], .upload-theme .wp-upload-form input[type=file] { padding: 30px 0 30px 30px; width: 100%; } } css/media-rtl.min.css000066600000054575152330733730010540 0ustar00/*! This file is auto-generated */ .media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dcdcde;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:right;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 0 8px 8px;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 10px 0 0}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-list-subtitle{display:block}.media-list-title{display:block}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-left:6px;margin-right:2px}.media-upload-form .align .field label{display:inline;padding:0 23px 0 0;margin:0 3px 0 1em;font-weight:600}.media-upload-form tr.image-size label{margin:0 5px 0 0;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 5px 0 0}.describe-toggle-off,.describe-toggle-on{display:block;line-height:2.76923076;float:left;margin-left:10px}.media-item .attachment-tools{display:flex;align-items:center}.media-item .edit-attachment{padding:14px 0;display:block;margin-left:10px}.media-item .edit-attachment.copy-to-clipboard-container{display:flex;margin-top:0}.media-item-copy-container .success{line-height:0}.media-item button .copy-attachment-url{margin-top:14px}.media-item .copy-to-clipboard-container{margin-top:7px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}.media-upload-form .media-item{min-height:70px;margin-bottom:1px;position:relative;width:100%;background:#fff}.media-upload-form .media-item,.media-upload-form .media-item .error{box-shadow:0 1px 0 #dcdcde}#media-items:empty{border:0 none}.media-item .filename{padding:14px 2px;overflow:hidden;margin-right:4px}.media-item .pinkynail{float:right;margin:14px;max-height:70px;max-width:70px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .progress{display:inline-block;height:22px;margin:0 6px 7px;width:200px;line-height:2em;padding:0;overflow:hidden;border-radius:22px;background:#dcdcde;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;border-radius:22px;background-color:#2271b1;box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}#html-upload-ui #async-upload{font-size:1em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{width:auto;margin:0 0 1px}.media-upload-form .media-item .error{padding:10px 14px 10px 0;min-height:50px}.media-item .error-div button.dismiss{float:left;margin:0 15px 0 10px}.find-box{background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-right:-300px;position:fixed;top:30px;bottom:30px;right:50%;z-index:100105}.find-box-head{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 16px 0 36px;position:absolute;top:0;right:0;left:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;right:105px;position:absolute}#find-posts-response,.find-box-search{position:relative}#find-posts-input,#find-posts-search{float:right}#find-posts-input{width:140px;height:28px;margin:0 0 0 4px}.widefat .found-radio{padding-left:0;width:16px}#find-posts-close{width:36px;height:36px;border:none;padding:0;position:absolute;top:0;left:0;cursor:pointer;text-align:center;background:0 0;color:#646970}#find-posts-close:focus,#find-posts-close:hover{color:var(--wp-admin-theme-color-darker-20,#183ad6)}#find-posts-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}#find-posts-close:before{font:normal 20px/36px dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f158";content:"\f158"/''}.find-box-buttons{padding:8px 16px;background:#fff;border-top:1px solid #dcdcde;position:absolute;bottom:0;right:0;left:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}#delete_all{margin-bottom:0}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;right:0;left:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;z-index:100100}.drag-drop #drag-drop-area{border:4px dashed #c3c4c7;height:200px}.drag-drop .drag-drop-inside{margin:60px auto 0;width:250px}.drag-drop-inside p{font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#9ec2e6}#plupload-upload-ui{position:relative}.post-type-attachment .wp-filter select{margin:0 0 0 6px}.media-frame.mode-grid,.media-frame.mode-grid .attachments-browser.has-load-more .attachments-wrapper,.media-frame.mode-grid .attachments-browser:not(.has-load-more) .attachments,.media-frame.mode-grid .media-frame-content,.media-frame.mode-grid .uploader-inline-content{position:static}.media-frame.mode-grid .media-frame-menu,.media-frame.mode-grid .media-frame-router,.media-frame.mode-grid .media-frame-title{display:none}.media-frame.mode-grid .media-frame-content{background-color:transparent;border:none}.upload-php .mode-grid .media-sidebar{position:relative;width:auto;margin-top:12px;padding:0 16px;border-right:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);background-color:#fff}.upload-php .mode-grid .hide-sidebar .media-sidebar{display:none}.upload-php .mode-grid .media-sidebar .media-uploader-status{border-bottom:none;padding-bottom:0;max-width:100%}.upload-php .mode-grid .media-sidebar .upload-error{margin:12px 0;padding:4px 0 0;border:none;box-shadow:none;background:0 0}.upload-php .mode-grid .media-sidebar .media-uploader-status.errors h2{display:none}.media-frame.mode-grid .uploader-inline{position:relative;top:auto;left:auto;right:auto;bottom:auto;padding-top:0;margin-top:20px;border:4px dashed #c3c4c7}.media-frame.mode-select .attachments-browser.fixed:not(.has-load-more) .attachments,.media-frame.mode-select .attachments-browser.has-load-more.fixed .attachments-wrapper{position:relative;top:94px;padding-bottom:94px}.media-frame.mode-grid .attachment.details:focus,.media-frame.mode-grid .attachment:focus,.media-frame.mode-grid .selected.attachment:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-6px}.media-frame.mode-grid .selected.attachment{box-shadow:inset 0 0 0 5px #f0f0f1,inset 0 0 0 7px #c3c4c7}.media-frame.mode-grid .attachment.details{box-shadow:inset 0 0 0 3px #f0f0f1,inset 0 0 0 7px var(--wp-admin-theme-color,#3858e9)}.media-frame.mode-grid.mode-select .attachment .thumbnail{opacity:.65}.media-frame.mode-select .attachment.selected .thumbnail{opacity:1}.media-frame.mode-grid .media-toolbar{margin-bottom:15px;height:auto}.media-frame.mode-grid .media-toolbar label:not(.media-search-input-label){border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}.media-frame.mode-grid .media-toolbar select{margin:0 0 0 10px;min-height:32px;line-height:2.14285714;padding:0 8px 0 24px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:32px;padding:0 8px}.media-frame.mode-grid .media-toolbar-secondary{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.media-frame.mode-grid.mode-edit .media-toolbar-secondary>.select-mode-toggle-button{margin:0 0 0 8px;height:100%}.media-frame.mode-grid .attachments-browser .bulk-select{display:inline-block;margin:0 0 0 10px}.media-frame.mode-grid .search{margin-top:0}.media-frame-content .media-search-input-label{vertical-align:baseline}.attachments-browser .media-toolbar-secondary>.media-button{margin-left:10px}.media-frame.mode-select .attachments-browser.fixed .media-toolbar{position:fixed;top:32px;right:auto;left:20px;margin-top:0}.media-frame.mode-grid .attachments-browser{padding:0}.media-frame.mode-grid .attachments-browser .attachments{padding:2px}.media-frame.mode-grid .attachments-browser .no-media{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;text-align:center}.edit-attachment-frame{display:block;height:100%;width:100%}.edit-attachment-frame .edit-media-header{overflow:hidden}.upload-php .media-modal-close .media-modal-icon:before{content:"\f335";content:"\f335"/'';font-size:22px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{cursor:pointer;color:#787c82;background-color:transparent;height:50px;width:50px;padding:0;position:absolute;text-align:center;border:0;border-right:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.upload-php .media-modal-close{top:0;left:0}.edit-attachment-frame .edit-media-header .left{left:102px}.edit-attachment-frame .edit-media-header .right{left:51px}.edit-attachment-frame .media-frame-title{right:0;left:150px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .left:hover,.edit-attachment-frame .edit-media-header .right:focus,.edit-attachment-frame .edit-media-header .right:hover,.upload-php .media-modal-close:focus,.upload-php .media-modal-close:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.edit-attachment-frame .edit-media-header .left:focus,.edit-attachment-frame .edit-media-header .right:focus,.upload-php .media-modal-close:focus{outline:2px solid transparent;outline-offset:-2px}.upload-php .media-modal-close:focus .media-modal-icon:before,.upload-php .media-modal-close:hover .media-modal-icon:before{color:#000}.edit-attachment-frame .edit-media-header .left:before{content:"\f345";content:"\f341"/''}.edit-attachment-frame .edit-media-header .right:before{content:"\f341";content:"\f345"/''}.edit-attachment-frame .edit-media-header [disabled],.edit-attachment-frame .edit-media-header [disabled]:hover{color:#c3c4c7;background:inherit;cursor:default}.edit-attachment-frame .media-frame-content,.edit-attachment-frame .media-frame-router{right:0}.edit-attachment-frame .media-frame-content{border-bottom:none;bottom:0;top:50px}.edit-attachment-frame .attachment-details{position:absolute;overflow:auto;top:0;bottom:0;left:0;right:0;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1)}.edit-attachment-frame .attachment-media-view{float:right;width:65%;height:100%}.edit-attachment-frame .attachment-media-view .thumbnail{box-sizing:border-box;padding:16px;height:100%}.edit-attachment-frame .attachment-media-view .details-image{display:block;margin:0 auto 16px;max-width:100%;max-height:90%;max-height:calc(100% - 56px);background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.edit-attachment-frame .attachment-media-view .details-image.icon{background:0 0}.edit-attachment-frame .attachment-media-view .attachment-actions{text-align:center}.edit-attachment-frame .wp-media-wrapper{margin-bottom:12px}.edit-attachment-frame input,.edit-attachment-frame textarea{padding:4px 8px;line-height:1.42857143}.edit-attachment-frame .attachment-info{overflow:auto;box-sizing:border-box;margin-bottom:0;padding:12px 16px 0;width:35%;height:100%;box-shadow:inset 0 4px 4px -4px rgba(0,0,0,.1);border-bottom:0;border-right:1px solid #dcdcde;background:#f6f7f7}.edit-attachment-frame .attachment-info .details,.edit-attachment-frame .attachment-info .settings{position:relative;overflow:hidden;float:none;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #dcdcde}.edit-attachment-frame .attachment-info .filename{font-weight:400;color:#646970}.edit-attachment-frame .attachment-info .thumbnail{margin-bottom:12px}.attachment-info .actions{margin-bottom:16px}.attachment-info .actions a{display:inline;text-decoration:none}.copy-to-clipboard-container{display:flex;align-items:center;margin-top:8px;clear:both}.copy-to-clipboard-container .copy-attachment-url{white-space:normal}.copy-to-clipboard-container .success{color:#007017;margin-right:8px}.wp_attachment_details .attachment-alt-text{margin-bottom:5px}.wp_attachment_details #attachment_alt{max-width:500px;height:3.28571428em}.wp_attachment_details .attachment-alt-text-description{margin-top:5px}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative;padding-top:10px}.image-editor fieldset,.image-editor p{margin:8px 0}.image-editor legend{margin-bottom:5px}.describe .imgedit-wrap .image-editor{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto}.imgedit-panel-content{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:20px}.imgedit-settings{max-width:240px}.imgedit-group-controls>*{display:none}.imgedit-panel-active .imgedit-group-controls>*{display:block}.imgedit-panel-active .imgedit-group-controls>.imgedit-crop-apply{display:flex}.imgedit-crop-apply{gap:4px;flex-wrap:wrap}.wp_attachment_holder .imgedit-wrap .image-editor{float:left;width:250px}.image-editor input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;bottom:0;width:100%;background:#fff;opacity:.7;display:none}.imgedit-wait:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;margin:-10px -10px 0 0;background:transparent url(../images/spinner.gif) no-repeat center;background-size:20px 20px;transform:translateZ(0)}.no-float{float:none}.image-editor .disabled,.media-disabled{color:#a7aaad}.A1B1{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:right}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:right}.imgedit-menu .note-no-rotate{clear:both;margin:0;padding:1em 0 0}.imgedit-menu .button:after,.imgedit-menu .button:before{font:normal 16px/1 dashicons;margin-left:8px;vertical-align:middle;position:relative;top:-2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.imgedit-menu .imgedit-rotate.button:after{content:'\f140';margin-right:2px;margin-left:0}.imgedit-menu .imgedit-rotate.button[aria-expanded=true]:after{content:'\f142'}.imgedit-menu .button.disabled{color:#a7aaad;border-color:#dcdcde;background:#f6f7f7;box-shadow:none;text-shadow:0 1px 0 #fff;cursor:default;transform:none}.imgedit-crop:before{content:"\f165";content:"\f165"/''}.imgedit-scale:before{content:"\f211";content:"\f211"/''}.imgedit-rotate:before{content:"\f167";content:"\f167"/''}.imgedit-undo:before{content:"\f171";content:"\f171"/''}.imgedit-redo:before{content:"\f172";content:"\f172"/''}.imgedit-crop-wrap{position:relative}.imgedit-crop-wrap img{background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.imgedit-crop-wrap{padding:20px;background-image:linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7),linear-gradient(-45deg,#c3c4c7 25%,transparent 25%,transparent 75%,#c3c4c7 75%,#c3c4c7);background-position:100% 0,10px 10px;background-size:20px 20px}.imgedit-crop{margin:0 0 0 8px}.imgedit-rotate{margin:0 3px 0 8px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 3px 0 8px}.imgedit-thumbnail-preview-group{display:flex;flex-wrap:wrap;column-gap:10px}.imgedit-thumbnail-preview{margin:10px 0 0 8px}.imgedit-thumbnail-preview-caption{display:block}#poststuff .imgedit-group-top h2{display:inline-block;margin:0;padding:0;font-size:14px;line-height:1.4}#poststuff .imgedit-group-top .button-link{text-decoration:none;color:#1d2327}.imgedit-applyto .imgedit-label{display:block;padding:.5em 0 0}.imgedit-help,.imgedit-popup-menu{display:none;padding-bottom:8px}.imgedit-panel-tools>.imgedit-menu{display:flex;column-gap:4px;align-items:flex-start;flex-wrap:wrap}.imgedit-popup-menu{width:calc(100% - 20px);position:absolute;background:#fff;padding:10px;box-shadow:0 3px 6px rgba(0,0,0,.3)}.image-editor .imgedit-menu .imgedit-popup-menu button{display:block;margin:2px 0;width:100%;white-space:break-spaces;line-height:1.5;padding-top:3px;padding-bottom:2px}.imgedit-rotate-menu-container{position:relative}.imgedit-help.imgedit-restore{padding-bottom:0}.image-editor .imgedit-settings .imgedit-help-toggle,.image-editor .imgedit-settings .imgedit-help-toggle:active,.image-editor .imgedit-settings .imgedit-help-toggle:hover{border:1px solid transparent;margin:-1px -1px 0 0;padding:0;background:0 0;color:var(--wp-admin-theme-color);font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.image-editor .imgedit-settings .imgedit-help-toggle:focus{color:var(--wp-admin-theme-color);border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 1px var(--wp-admin-theme-color);outline:2px solid transparent}.form-table td.imgedit-response{padding:0}.imgedit-submit-btn{margin-right:20px}.imgedit-wrap .nowrap{white-space:nowrap;font-size:12px;line-height:inherit}span.imgedit-scale-warn{display:flex;align-items:center;margin:4px;gap:4px;color:#b32d2e;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-save-target{margin:8px 0}.imgedit-save-target legend{font-weight:600}.imgedit-group{margin-bottom:20px}.image-editor .imgedit-original-dimensions{display:inline-block}.image-editor .imgedit-crop-ratio input[type=number],.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=number],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale-controls input[type=number],.image-editor .imgedit-scale-controls input[type=text]{width:80px;font-size:14px;padding:0 8px}.imgedit-separator{display:inline-block;width:7px;text-align:center;font-size:13px;color:#3c434a}.image-editor .imgedit-scale-button-wrapper{margin-top:.3077em;display:block}.image-editor .imgedit-scale-controls .button{margin-bottom:0}audio,video{display:inline-block;max-width:100%}.wp-core-ui .mejs-container{width:100%;max-width:100%}.wp-core-ui .mejs-container *{box-sizing:border-box}.wp-core-ui .mejs-time{box-sizing:content-box}@media print,(min-resolution:120dpi){.imgedit-wait:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.edit-attachment-frame input,.edit-attachment-frame textarea{line-height:1.5}.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5}.wp_attachment_details textarea{line-height:1.5}.wp_attachment_details #attachment_alt{height:3.375em}.media-upload-form .media-item .error,.media-upload-form .media-item.error{font-size:13px;line-height:1.5}.media-upload-form .media-item.error{padding:1px 10px}.media-upload-form .media-item .error{padding:10px 12px 10px 0}.image-editor .imgedit-crop-ratio input[type=text],.image-editor .imgedit-crop-sel input[type=text],.image-editor .imgedit-scale input[type=text]{font-size:16px;padding:6px 10px}.wp_attachment_holder .imgedit-wrap .image-editor,.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{float:none;width:auto;max-width:none;padding-bottom:16px}.copy-to-clipboard-container .success{font-size:14px}.imgedit-crop-wrap img{width:100%}.media-modal .imgedit-wrap .image-editor,.media-modal .imgedit-wrap .imgedit-panel-content{position:initial!important}.media-modal .imgedit-wrap .image-editor{box-sizing:border-box;width:100%!important}.image-editor .imgedit-scale-button-wrapper{display:inline-block}}@media only screen and (max-width:600px){.media-item-wrapper{grid-template-columns:1fr}}@media only screen and (max-width:1120px){#wp-media-grid .wp-filter .attachment-filters{max-width:100%}}@media only screen and (max-width:1000px){.wp-filter p.search-box{float:none;width:100%;display:flex;flex-wrap:nowrap;column-gap:0}.wp-filter p.search-box #media-search-input{width:100%}}@media only screen and (max-width:782px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:46px;left:10px}.media-frame.mode-grid .media-toolbar select{min-height:40px;padding:0 12px 0 24px}.media-frame.mode-grid .media-toolbar input[type=search]{min-height:40px;padding:0 12px}.wp-filter p.search-box{margin-bottom:0}}@media only screen and (max-width:600px){.media-frame.mode-select .attachments-browser.fixed .media-toolbar{top:0}}@media only screen and (max-width:480px){.edit-attachment-frame .media-frame-title{left:110px}.edit-attachment-frame .edit-media-header .left,.edit-attachment-frame .edit-media-header .right,.upload-php .media-modal-close{width:40px;height:40px}.edit-attachment-frame .edit-media-header .left:before,.edit-attachment-frame .edit-media-header .right:before{line-height:40px!important}.edit-attachment-frame .edit-media-header .left{left:82px}.edit-attachment-frame .edit-media-header .right{left:41px}.edit-attachment-frame .media-frame-content{top:40px}.edit-attachment-frame .attachment-media-view{float:none;height:auto;width:100%}.edit-attachment-frame .attachment-info{height:auto;width:100%}}@media only screen and (max-width:640px),screen and (max-height:400px){.upload-php .mode-grid .media-sidebar{max-width:100%}}@media only screen and (max-width:375px){.media-item .attachment-tools{align-items:baseline}.media-item .edit-attachment.copy-to-clipboard-container{flex-direction:column}.copy-to-clipboard-container .success{line-height:normal;margin-top:10px}}css/site-health.min.css000066600000012372152330733730011056 0ustar00/*! This file is auto-generated */ .health-check-body h2{line-height:1.4}.health-check-body h3{padding:0;font-weight:400}.site-health-progress-wrapper{margin-bottom:1rem}.site-health-progress{display:inline-block;height:20px;width:20px;margin:0;border-radius:100%;position:relative;font-weight:600;font-size:.4rem}.site-health-progress-count{position:absolute;display:block;height:80px;width:80px;left:50%;top:50%;margin-top:-40px;margin-left:-40px;border-radius:100%;line-height:6.3;font-size:2em}.loading .site-health-progress svg #bar{stroke-dashoffset:0;stroke:#c3c4c7;animation:loadingPulse 3s infinite ease-in-out}.site-health-progress svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#c3c4c7;stroke-width:2em}.site-health-progress svg #bar{stroke-dashoffset:565;stroke:#d63638}.green .site-health-progress #bar{stroke:#00a32a}.green .site-health-progress .site-health-progress-label{color:#00a32a}.orange .site-health-progress #bar{stroke:#dba617}.orange .site-health-progress .site-health-progress-label{color:#dba617}.site-health-progress-label{font-weight:600;line-height:20px;margin-left:.3rem}@keyframes loadingPulse{0%{stroke:#c3c4c7}50%{stroke:var(--wp-admin-theme-color)}100%{stroke:#c3c4c7}}.health-check-tabs-wrapper{display:-ms-inline-grid;-ms-grid-columns:1fr 1fr 1fr 1fr;vertical-align:top;display:inline-grid;grid-template-columns:1fr 1fr 1fr 1fr}.health-check-tabs-wrapper.tab-count-1{grid-template-columns:1fr}.health-check-tabs-wrapper.tab-count-2{grid-template-columns:1fr 1fr}.health-check-tabs-wrapper.tab-count-3{grid-template-columns:1fr 1fr 1fr}.health-check-tab{display:block;text-decoration:none;color:inherit;padding:.5rem 1rem 1rem;margin:0 1rem;transition:box-shadow .5s ease-in-out}.health-check-offscreen-nav-wrapper{position:relative;background:0 0;border:none}.health-check-offscreen-nav-wrapper:focus .health-check-offscreen-nav{left:initial}.health-check-offscreen-nav{display:none;position:absolute;padding-top:10px;right:0;top:100%;width:13rem}.health-check-offscreen-nav-wrapper.visible .health-check-offscreen-nav{display:inline-block}.health-check-offscreen-nav:before{position:absolute;content:"";width:0;height:0;border-style:solid;border-width:0 10px 5px;border-color:transparent transparent #fff;right:20px;top:5px}.health-check-offscreen-nav .health-check-tab{background:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.75)}.health-check-offscreen-nav .health-check-tab.active{box-shadow:inset 3px 0 #3582c4;font-weight:600}.health-check-body{max-width:800px;margin:0 auto}.widefat.health-check-table th{font-size:13px}.health-check-table td:first-child{width:30%}.health-check-table td{width:70%}.health-check-table ol,.health-check-table ul{margin:0}.health-check-body li{line-height:1.5}.health-check-body .good::before,.health-check-body .pass::before{content:"\f147";content:"\f147"/'';color:#00a32a}.health-check-body .warning::before{content:"\f460";content:"\f460"/'';color:#dba617}.health-check-body .info::before{content:"\f348";content:"\f348"/'';color:#72aee6}.health-check-body .error::before,.health-check-body .fail::before{content:"\f335";content:"\f335"/'';color:#d63638}.site-health-copy-buttons{margin:1rem 0}.site-health-copy-buttons .copy-button-wrapper{display:inline-flex;align-items:center;margin:.5rem 0 1rem}.site-health-copy-buttons .success{color:#007017;margin-left:.5rem}.site-status-has-issues.hide{display:none}.site-health-view-more{text-align:center}.site-health-issues-wrapper:first-of-type{margin-top:3rem}.site-health-issues-wrapper{margin-bottom:3rem;margin-top:2rem}.site-status-all-clear{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:100%;width:100%;margin:0 0 3rem}@media all and (min-width:784px){.site-status-all-clear{margin:2rem 0 5rem}}.site-status-all-clear.hide{display:none}.site-status-all-clear .dashicons{font-size:150px;height:150px;margin-bottom:2rem;width:150px}.site-status-all-clear .encouragement{font-size:1.5rem;font-weight:600}.site-status-all-clear p{margin:0}.wp-core-ui .button.site-health-view-passed{position:relative;padding-right:40px;padding-left:20px}.health-check-wp-paths-sizes.spinner{visibility:visible;float:none;margin:0 4px;flex-shrink:0}#dashboard_site_health .site-health-details{padding-left:16px}#dashboard_site_health .site-health-details p:first-child{margin-top:0}#dashboard_site_health .site-health-details p:last-child{margin-bottom:0}#dashboard_site_health .health-check-widget{display:grid;grid-template-columns:1fr 2fr;grid-auto-rows:minmax(64px,auto);column-gap:16px;align-items:center}#dashboard_site_health .site-health-progress-label{margin-left:0}.health-check-widget-title-section{margin-bottom:0;text-align:center}@media screen and (max-width:480px){#dashboard_site_health .health-check-widget{grid-template-columns:100%}}@media screen and (max-width:782px){.site-health-issues-wrapper .health-check-accordion-trigger{flex-direction:column;align-items:flex-start}.health-check-accordion-trigger .badge{margin:1em 0 0}.health-check-table{table-layout:fixed}.health-check-table td,.health-check-table th{box-sizing:border-box;display:block;width:100%;word-wrap:break-word}.health-check-table td:first-child,.widefat.health-check-table th{width:100%;padding-bottom:0;font-weight:600}.wp-core-ui .site-health-copy-buttons .copy-button{margin-bottom:0}}css/forms.css000066600000115654152330733730007222 0ustar00/* Include margin and padding in the width calculation of input and textarea. */ input, select, textarea, button { box-sizing: border-box; font-family: inherit; font-size: inherit; font-weight: inherit; } textarea, input { font-size: 14px; } textarea { overflow: auto; padding: 8px 12px; /* inherits font size 14px */ line-height: 1.42857143; /* 20px */ resize: vertical; } input, select { margin: 0 1px; } textarea.code { padding: 8px 12px; } input[type="text"], input[type="password"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], select, textarea { box-shadow: 0 0 0 transparent; border-radius: 2px; border: 1px solid #949494; background-color: #fff; color: #1e1e1e; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { padding: 0 12px; /* inherits font size 14px */ min-height: 40px; } select { padding: 0 24px 0 12px; /* inherits font size 14px */ line-height: 2.71428571; /* 38px for 40px min-height */ min-height: 40px; } ::-webkit-datetime-edit { /* inherits font size 14px */ line-height: 1.85714286; /* 26px */ } input[type="text"]:focus, input[type="password"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, select:focus, textarea:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Checkbox and radio use outset focus style */ input[type="checkbox"]:focus, input[type="radio"]:focus { border-color: #1e1e1e; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* rtl:ignore */ .ltr, input[type="password"], input[type="email"], input[type="url"] { direction: ltr; } input[type="checkbox"], input[type="radio"] { border: 1px solid #1e1e1e; border-radius: 2px; background: #fff; color: #1e1e1e; clear: none; cursor: pointer; display: inline-block; line-height: 0; height: 1rem; margin: -0.25rem 0.25rem 0 0; outline: 0; padding: 0 !important; text-align: center; vertical-align: middle; width: 1rem; min-width: 1rem; -webkit-appearance: none; box-shadow: none; transition: .05s border-color ease-in-out; } input[type="radio"]:checked + label:before { color: #949494; } .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active { color: #135e96; } td > input[type="checkbox"], .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: 0; } .wp-admin p label input[type="checkbox"] { margin-top: -4px; } .wp-admin p label input[type="radio"] { margin-top: -2px; } input[type="radio"] { display: inline-flex; border-radius: 50%; margin-right: 0.25rem; align-items: center; justify-content: center; } input[type="checkbox"]:checked::before, input[type="radio"]:checked::before { float: left; display: inline-block; vertical-align: middle; width: 1rem; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } input[type="checkbox"]:checked::before { /* Use the "Yes" SVG Dashicon */ content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E"); content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23ffffff%27%2F%3E%3C%2Fsvg%3E") / ''; margin: -0.1875rem 0 0 -0.25rem; height: 1.3125rem; width: 1.3125rem; } input[type="checkbox"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked { background: var(--wp-admin-theme-color); border-color: var(--wp-admin-theme-color); } input[type="radio"]:checked::before { content: ""; border-radius: 50%; width: 0.5rem; /* 8px */ height: 0.5rem; /* 8px */ margin: auto; background-color: #fff; /* Only visible in Windows High Contrast mode */ outline: 4px solid transparent; } @-moz-document url-prefix() { input[type="checkbox"], input[type="radio"], .form-table input.tog { margin-bottom: -1px; } } /* Search */ input[type="search"] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration { display: none; } input[type="search"]::-webkit-search-cancel-button { cursor: pointer; } .wp-admin input[type="file"] { padding: 3px 0; cursor: pointer; } input.readonly, input[readonly], textarea.readonly, textarea[readonly] { background-color: #f0f0f0; } ::-webkit-input-placeholder { color: #757575; } ::-moz-placeholder { color: #757575; } .form-invalid .form-required, .form-invalid .form-required:focus, .form-invalid.form-required input, .form-invalid.form-required input:focus, .form-invalid.form-required select, .form-invalid.form-required select:focus { border-color: #d63638 !important; box-shadow: 0 0 2px rgba(214, 54, 56, 0.8); } .form-table .form-required.form-invalid td:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin-left: -25px; vertical-align: middle; } /* Adjust error indicator for password layout */ .form-table .form-required.user-pass1-wrap.form-invalid td:after { content: ""; } .form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after { content: "\f534"; content: "\f534" / ''; font: normal 20px/1 dashicons; color: #d63638; margin: 0 6px 0 -29px; vertical-align: middle; } .form-input-tip { color: #646970; } input:disabled, input.disabled, select:disabled, select.disabled, textarea:disabled, textarea.disabled { background: #f0f0f0; border-color: #cccccc; box-shadow: none; color: #949494; } input[type="file"]:disabled, input[type="file"].disabled, input[type="file"][aria-disabled="true"], input[type="range"]:disabled, input[type="range"].disabled, input[type="range"][aria-disabled="true"] { background: none; box-shadow: none; cursor: default; } input[type="checkbox"]:disabled, input[type="checkbox"].disabled, input[type="checkbox"][aria-disabled="true"], input[type="radio"]:disabled, input[type="radio"].disabled, input[type="radio"][aria-disabled="true"], input[type="checkbox"]:disabled:checked:before, input[type="checkbox"].disabled:checked:before, input[type="radio"]:disabled:checked:before, input[type="radio"].disabled:checked:before { opacity: 0.7; cursor: default; } /*------------------------------------------------------------------------------ 2.0 - Forms ------------------------------------------------------------------------------*/ /* Select styles are based on the default button in buttons.css */ .wp-core-ui select { font-size: 14px; line-height: 2.71428571; /* 38px for 40px min-height */ color: #1e1e1e; border-color: #949494; box-shadow: none; border-radius: 2px; padding: 0 24px 0 12px; min-height: 40px; max-width: 25rem; -webkit-appearance: none; /* The SVG is arrow-down-alt2 from Dashicons. */ background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%231e1e1e%22%2F%3E%3C%2Fsvg%3E') no-repeat right 8px top 55%; background-size: 16px 16px; cursor: pointer; vertical-align: middle; } .wp-core-ui select:hover { color: #1e1e1e; border-color: #1e1e1e; } .wp-core-ui select:focus { border-color: var(--wp-admin-theme-color); color: #1e1e1e; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); } .wp-core-ui select:active { border-color: #949494; box-shadow: none; } .wp-core-ui select.disabled, .wp-core-ui select:disabled { color: #a7aaad; border-color: #dcdcde; background-color: #f6f7f7; /* The SVG is arrow-down-alt2 from Dashicons. */ background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E'); box-shadow: none; text-shadow: 0 1px 0 #fff; cursor: default; transform: none; } .wp-core-ui select[aria-disabled="true"] { cursor: default; } /* Reset Firefox inner outline that appears on :focus. */ /* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ .wp-core-ui select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #0a4b78; } /* Remove background focus style from IE11 while keeping focus style available on option elements. */ .wp-core-ui select::-ms-value { background: transparent; color: #50575e; } .wp-core-ui select:hover::-ms-value { color: #1e1e1e; } .wp-core-ui select:focus::-ms-value { color: #0a4b78; } .wp-core-ui select.disabled::-ms-value, .wp-core-ui select:disabled::-ms-value { color: #a7aaad; } /* Hide the native down arrow for select element on IE. */ .wp-core-ui select::-ms-expand { display: none; } .wp-admin .button-cancel { display: inline-block; min-height: 28px; padding: 0 5px; line-height: 2; } .meta-box-sortables select { max-width: 100%; } .meta-box-sortables input { vertical-align: middle; } .misc-pub-post-status select { margin-top: 0; } .wp-core-ui select[multiple] { height: auto; padding-right: 8px; background: #fff; } .submit { padding: 1.5em 0; margin: 5px 0; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border: none; } form p.submit a.cancel:hover { text-decoration: none; } p.submit { text-align: left; max-width: 100%; margin-top: 20px; padding-top: 10px; } .textright p.submit { border: none; text-align: right; } table.form-table + p.submit, table.form-table + input + p.submit, table.form-table + input + input + p.submit { border-top: none; padding-top: 0; } #minor-publishing-actions input, #major-publishing-actions input, #minor-publishing-actions .preview { text-align: center; } textarea.all-options, input.all-options { width: 250px; } input.large-text, textarea.large-text { width: 99%; } .regular-text { width: 25em; } input.small-text { width: 50px; padding: 0 8px; } label input.small-text { margin-top: -4px; } input[type="number"].small-text { width: 65px; padding-right: 4px; } input.tiny-text { width: 35px; } input[type="number"].tiny-text { width: 45px; padding-right: 0; } #doaction, #doaction2, #post-query-submit { margin: 0 8px 0 0; } /* @since 5.7.0 secondary bulk action controls require JS. */ .no-js label[for="bulk-action-selector-bottom"], .no-js select#bulk-action-selector-bottom, .no-js input#doaction2, .no-js label[for="new_role2"], .no-js select#new_role2, .no-js input#changeit2 { display: none; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { padding: 0 12px; /* inherits font size 14px */ line-height: 2.14285714; /* 30px for 32px height with 14px font */ min-height: 32px; } .wp-core-ui .tablenav select { float: left; margin-right: 6px; max-width: 12.5rem; padding: 0 24px 0 8px; } .wp-core-ui .tablenav .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } #timezone_string option { margin-left: 1em; } .wp-core-ui .button.wp-hide-pw > .dashicons, .wp-core-ui .button.wp-cancel-pw > .dashicons { width: 1.25rem; height: 1.25rem; font-size: 20px; line-height: 1; vertical-align: middle; } .button.wp-hide-pw.user-new-password-toggle { display: inline-flex; align-items: center; column-gap: 4px; } .wp-cancel-pw .dashicons-no { display: none; } label, #your-profile label + a { vertical-align: middle; } fieldset label, #your-profile label + a { vertical-align: middle; } .options-media-php [for*="_size_"] { min-width: 10em; vertical-align: baseline; } .options-media-php .small-text[name*="_size_"] { margin: 0 0 1em; } .wp-generate-pw { margin-top: 1em; position: relative; } .wp-pwd button { height: min-content; } .wp-pwd { margin-top: 1em; position: relative; } .mailserver-pass-wrap .wp-pwd { display: inline-block; margin-top: 0; } /* rtl:ignore */ #mailserver_pass { padding-right: 2.5rem; } /* rtl:ignore */ .mailserver-pass-wrap .button.wp-hide-pw { background: transparent; border: 1px solid transparent; box-shadow: none; font-size: 14px; line-height: 2; width: 2.5rem; min-width: 40px; margin: 0; padding: 0 9px; position: absolute; right: 0; top: 0; } .mailserver-pass-wrap .button.wp-hide-pw:hover { background: transparent; border-color: transparent; } .mailserver-pass-wrap .button.wp-hide-pw:focus { background: transparent; border-color: var(--wp-admin-theme-color); border-radius: 2px; box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .mailserver-pass-wrap .button.wp-hide-pw:active { background: transparent; box-shadow: none; transform: none; } #misc-publishing-actions label { vertical-align: baseline; } #pass-strength-result { background-color: #f0f0f0; border: 1px solid #cccccc; border-radius: 2px; color: #1e1e1e; margin: -1px 1px 5px; padding: 3px 5px; text-align: center; width: 25em; box-sizing: border-box; opacity: 0; } #pass-strength-result.short { background-color: #ffabaf; border-color: #e65054; opacity: 1; } #pass-strength-result.bad { background-color: #facfd2; border-color: #f86368; opacity: 1; } #pass-strength-result.good { background-color: #f5e6ab; border-color: #f0c33c; opacity: 1; } #pass-strength-result.strong { background-color: #b8e6bf; border-color: #68de7c; opacity: 1; } .password-input-wrapper { display: inline-block; } .password-input-wrapper input { font-family: Consolas, Monaco, monospace; } #pass1.short, #pass1-text.short { border-color: #e65054; } #pass1.bad, #pass1-text.bad { border-color: #f86368; } #pass1.good, #pass1-text.good { border-color: #f0c33c; } #pass1.strong, #pass1-text.strong { border-color: #68de7c; } #pass1:focus, #pass1-text:focus { box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .pw-weak { display: none; } .indicator-hint { padding-top: 8px; } .wp-pwd [type="text"], .wp-pwd [type="password"] { margin-bottom: 0; /* Same height as the buttons */ min-height: 40px; } /* Hide the Edge "reveal password" native button */ .wp-pwd input::-ms-reveal { display: none; } #pass1-text, .show-password #pass1 { display: none; } #pass1-text::-ms-clear { display: none; } .show-password #pass1-text { display: inline-block; } /* Caps lock warning */ .wp-pwd .caps-warning { display: none; position: relative; background: #fcf9e8; border: 1px solid #f0c33c; color: #1d2327; padding: 6px 10px; top: -8px; } .profile-php .wp-pwd .caps-warning { padding: 3px 5px; top: -4px; border-radius: 2px; } .wp-pwd .caps-icon { display: inline-flex; justify-content: center; width: 20px; height: 20px; margin-right: 5px; vertical-align: middle; } .wp-pwd .caps-warning-text { vertical-align: middle; } /* Caps lock warning */ p.search-box { display: flex; flex-wrap: wrap; align-items: center; column-gap: 0.5rem; position: relative; float: right; margin: 11px 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 32px; padding: 0 8px; } p.search-box .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } .network-admin.themes-php p.search-box { clear: left; } .tablenav .search-plugins input[name="s"] { float: left; margin: 0 4px 0 0; } .tagsdiv .newtag { margin: 0; } .js.plugins-php .search-box .wp-filter-search { margin: 0; width: 280px; } input[type="text"].ui-autocomplete-loading, input[type="email"].ui-autocomplete-loading { background-image: url(../images/loading.gif); background-repeat: no-repeat; background-position: right 5px center; visibility: visible; } input.ui-autocomplete-input.open { border-bottom-color: transparent; } ul#add-to-blog-users { margin: 0 0 0 14px; } .ui-autocomplete { padding: 0; margin: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8); background-color: #fff; } .ui-autocomplete li { margin-bottom: 0; padding: 4px 10px; white-space: nowrap; text-align: left; cursor: pointer; } /* Colors for the wplink toolbar autocomplete. */ .ui-autocomplete .ui-state-focus { background-color: #dcdcde; } /* Colors for the tags autocomplete. */ .wp-tags-autocomplete .ui-state-focus, .wp-tags-autocomplete [aria-selected="true"] { background-color: var(--wp-admin-theme-color); color: #fff; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /*------------------------------------------------------------------------------ 15.0 - Comments Screen ------------------------------------------------------------------------------*/ .form-table { border-collapse: collapse; margin-top: 0.5em; width: 100%; clear: both; } .form-table, .form-table td, .form-table th, .form-table td p { font-size: 14px; } .form-table td { margin-bottom: 9px; padding: 15px 10px; line-height: 1.3; vertical-align: middle; } .form-table th, .form-wrap label { color: #1d2327; font-weight: 400; text-shadow: none; vertical-align: baseline; } .form-table th { vertical-align: top; text-align: left; padding: 20px 10px 20px 0; width: 200px; line-height: 1.3; font-weight: 600; } .form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */ .form-table .td-full { width: auto; padding: 20px 10px 20px 0; font-weight: 400; } .form-table td p { margin-top: 4px; margin-bottom: 0; } .form-table .date-time-doc { margin-top: 1em; } .form-table p.timezone-info { margin: 1em 0; display: flex; flex-direction: column; } #local-time { margin-top: 0.5em; } .form-table td fieldset label { margin: 0.35em 0 0.5em !important; display: inline-block; } .form-table td fieldset p label { margin-top: 0 !important; } .form-table td fieldset label, .form-table td fieldset p, .form-table td fieldset li { line-height: 1.4; } .form-table .pre { padding: 8px; margin: 0; } table.form-table td .updated { font-size: 13px; } table.form-table td .updated p { font-size: 13px; margin: 0.3em 0; } /*------------------------------------------------------------------------------ 18.0 - Users ------------------------------------------------------------------------------*/ #profile-page .form-table textarea { width: 500px; margin-bottom: 6px; } #profile-page .form-table #rich_editing { margin-right: 5px } #your-profile legend { font-size: 22px; } #display_name { width: 15em; } #adduser .form-field input, #createuser .form-field input { width: 25em; } .color-option { display: inline-block; width: 24%; padding: 5px 15px 15px; box-sizing: border-box; margin-bottom: 3px; } .color-option:hover, .color-option.selected { background: #dcdcde; } .color-palette { display: table; width: 100%; border-spacing: 0; border-collapse: collapse; } .color-palette .color-palette-shade, .color-palette td { display: table-cell; height: 20px; padding: 0; border: none; } .color-option { cursor: pointer; } .create-application-password .form-field { max-width: 25em; } .create-application-password label { font-weight: 600; } .create-application-password p.submit { margin-bottom: 0; padding-bottom: 0; display: block; } #application-passwords-section .notice { margin-top: 20px; margin-bottom: 0; word-wrap: break-word; } .application-password-display input.code { margin-bottom: 6px; width: 100%; max-width: 20em; } .auth-app-card.card { max-width: 768px; } .authorize-application-php .form-wrap p { display: block; } /*------------------------------------------------------------------------------ 19.0 - Tools ------------------------------------------------------------------------------*/ .tool-box .title { margin: 8px 0; font-size: 18px; font-weight: 400; line-height: 24px; } .label-responsive { vertical-align: middle; } #export-filters p { margin: 0 0 1em; } #export-filters p.submit { margin: 7px 0 5px; } /* Card styles */ .card { position: relative; margin-top: 20px; padding: 16px 24px; min-width: 255px; max-width: 520px; border: 1px solid rgb(0, 0, 0, 0.1); border-radius: 8px; background: #ffffff; box-sizing: border-box; } /* Press this styles */ .pressthis h4 { margin: 2em 0 1em; } .pressthis textarea { width: 100%; font-size: 1em; } #pressthis-code-wrap { overflow: auto; } .pressthis-bookmarklet-wrapper { margin: 20px 0 8px; vertical-align: top; position: relative; z-index: 1; } .pressthis-bookmarklet, .pressthis-bookmarklet:hover, .pressthis-bookmarklet:focus, .pressthis-bookmarklet:active { display: inline-block; position: relative; cursor: move; color: #2c3338; background: #dcdcde; border-radius: 5px; border: 1px solid #c3c4c7; font-style: normal; line-height: 16px; font-size: 14px; text-decoration: none; } .pressthis-bookmarklet:active { outline: none; } .pressthis-bookmarklet:after { content: ""; width: 70%; height: 55%; z-index: -1; position: absolute; right: 10px; bottom: 9px; background: transparent; transform: skew(20deg) rotate(6deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); } .pressthis-bookmarklet:hover:after { transform: skew(20deg) rotate(9deg); box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); } .pressthis-bookmarklet span { display: inline-block; margin: 0; padding: 0 12px 8px 9px; } .pressthis-bookmarklet span:before { color: #787c82; font: normal 20px/1 dashicons; content: "\f157"; content: "\f157" / ''; position: relative; display: inline-block; top: 4px; margin-right: 4px; } .pressthis-js-toggle { margin-left: 10px; padding: 0; height: auto; vertical-align: top; } /* to override the button class being applied */ .pressthis-js-toggle.button.button { margin-left: 10px; padding: 0; height: auto; vertical-align: top; } .pressthis-js-toggle .dashicons { margin: 5px 8px 6px 7px; color: #50575e; } /*------------------------------------------------------------------------------ 20.0 - Settings ------------------------------------------------------------------------------*/ .timezone-info code { white-space: nowrap; } .defaultavatarpicker .avatar { margin: 2px 0; vertical-align: middle; } .options-general-php .date-time-text { display: inline-block; min-width: 10em; } .options-general-php input.small-text { width: 56px; margin: -2px 0; min-height: 32px; } .options-general-php .spinner { float: none; margin: -3px 3px 0; } .settings-php .language-install-spinner, .options-general-php .language-install-spinner, .user-edit-php .language-install-spinner, .profile-php .language-install-spinner { display: inline-block; float: none; margin: -3px 5px 0; vertical-align: middle; } .form-table.permalink-structure .available-structure-tags { margin-top: 8px; } .form-table.permalink-structure .available-structure-tags ul { display: flex; flex-wrap: wrap; margin: 8px 0 0; } .form-table.permalink-structure .available-structure-tags li { margin: 6px 5px 0 0; } .form-table.permalink-structure .available-structure-tags li:last-child { margin-right: 0; } .form-table.permalink-structure .structure-selection .row { margin-bottom: 16px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 24px); display: inline-flex; flex-direction: column; } .form-table.permalink-structure .structure-selection .row label { font-weight: 600; } .form-table.permalink-structure .structure-selection .row p { margin-top: 0; } .permalink-structure-optional-description code { display: inline-block; } /*------------------------------------------------------------------------------ 21.0 - Network Admin ------------------------------------------------------------------------------*/ .setup-php textarea { max-width: 100%; } .form-field #site-address { max-width: 25em; } .form-field #domain { max-width: 22em; } .form-field #site-title, .form-field #admin-email, .form-field #path, .form-field #blog_registered, .form-field #blog_last_updated { max-width: 25em; } .form-field #path { margin-bottom: 5px; } #search-users, #search-sites { max-width: 60%; } .configuration-rules-label { font-weight: 600; margin-bottom: 4px; } /*------------------------------------------------------------------------------ Credentials check dialog for Install and Updates ------------------------------------------------------------------------------*/ .request-filesystem-credentials-dialog { display: none; /* The customizer uses visibility: hidden on the body for full-overlays. */ visibility: visible; } .request-filesystem-credentials-dialog .notification-dialog { top: 10%; max-height: 85%; } .request-filesystem-credentials-dialog-content { margin: 25px; } #request-filesystem-credentials-title { font-size: 1.3em; margin: 1em 0; } .request-filesystem-credentials-form legend { font-size: 1em; padding: 1.33em 0; font-weight: 600; } .request-filesystem-credentials-form input[type="text"], .request-filesystem-credentials-form input[type="password"] { display: block; } .request-filesystem-credentials-dialog input[type="text"], .request-filesystem-credentials-dialog input[type="password"] { width: 100%; } .request-filesystem-credentials-form .field-title { font-weight: 600; } .request-filesystem-credentials-dialog label[for="hostname"], .request-filesystem-credentials-dialog label[for="public_key"], .request-filesystem-credentials-dialog label[for="private_key"] { display: block; margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: left; width: 48%; } .request-filesystem-credentials-dialog .ftp-password { margin-left: 4%; } .request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons { text-align: right; } .request-filesystem-credentials-dialog label[for="ftp"] { margin-right: 10px; } .request-filesystem-credentials-dialog #auth-keys-desc { margin-bottom: 0; } #request-filesystem-credentials-dialog .button:not(:last-child) { margin-right: 10px; } #request-filesystem-credentials-form .cancel-button { display: none; } #request-filesystem-credentials-dialog .cancel-button { display: inline; } .request-filesystem-credentials-dialog .ftp-username, .request-filesystem-credentials-dialog .ftp-password { float: none; width: auto; } .request-filesystem-credentials-dialog .ftp-username { margin-bottom: 1em; } .request-filesystem-credentials-dialog .ftp-password { margin: 0; } .request-filesystem-credentials-dialog .ftp-password em { color: #757575; } .request-filesystem-credentials-dialog label { display: block; line-height: 1.5; margin-bottom: 1em; } .request-filesystem-credentials-form legend { padding-bottom: 0; } .request-filesystem-credentials-form #ssh-keys legend { font-size: 1.3em; } .request-filesystem-credentials-form .notice { margin: 0 0 20px; clear: both; } /*------------------------------------------------------------------------------ Privacy Policy settings screen ------------------------------------------------------------------------------*/ .tools-privacy-policy-page form { margin-bottom: 1.3em; } .tools-privacy-policy-page input.button { margin: 0 1px 0 6px; } .tools-privacy-policy-page select { margin: 0 1px 0.5em 6px; } .tools-privacy-edit { margin: 1.5em 0; } .tools-privacy-policy-page span { line-height: 2; } .privacy_requests .column-email { width: 40%; } .privacy_requests .column-type { text-align: center; } .privacy_requests thead td:first-child, .privacy_requests tfoot td:first-child { border-left: 4px solid #fff; } .privacy_requests tbody th { border-left: 4px solid #fff; background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests .row-actions { color: #787c82; } .privacy_requests .row-actions.processing { position: static; } .privacy_requests tbody .has-request-results th { box-shadow: none; } .privacy_requests tbody .request-results th .notice { margin: 0 0 5px; } .privacy_requests tbody td { background: #fff; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); } .privacy_requests tbody .has-request-results td { box-shadow: none; } .privacy_requests .next_steps .button { word-wrap: break-word; white-space: normal; } .privacy_requests .status-request-confirmed th, .privacy_requests .status-request-confirmed td { background-color: #fff; border-left-color: #72aee6; } .privacy_requests .status-request-failed th, .privacy_requests .status-request-failed td { background-color: #f6f7f7; border-left-color: #d63638; } .privacy_requests .export_personal_data_failed a { vertical-align: baseline; } .status-label { font-weight: 600; } .status-label.status-request-pending { font-weight: 400; font-style: italic; color: #646970; } .status-label.status-request-failed { color: #d63638; font-weight: 600; } .privacy_requests .status-date { display: block; font-weight: 400; } .wp-privacy-request-form { clear: both; } .wp-privacy-request-form-field { margin: 1.5em 0; } .wp-privacy-request-form input { margin: 0; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { /* Input Elements */ textarea { -webkit-appearance: none; } input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] { -webkit-appearance: none; padding: 0 12px; min-height: 40px; } ::-webkit-datetime-edit { line-height: 1.875; /* 30px */ } input[type="checkbox"], .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { -webkit-appearance: none; } .widefat th input[type="checkbox"], .widefat thead td input[type="checkbox"], .widefat tfoot td input[type="checkbox"] { margin-bottom: 8px; } input[type="checkbox"]:checked:before, .widefat th input[type="checkbox"]:before, .widefat thead td input[type="checkbox"]:before, .widefat tfoot td input[type="checkbox"]:before { width: 1.875rem; height: 1.875rem; margin: -0.1875rem -0.3125rem; } input[type="radio"], input[type="checkbox"] { height: 1.5625rem; width: 1.5625rem; } .wp-admin p input[type="checkbox"], .wp-admin p input[type="radio"] { margin-top: -0.1875rem; } input[type="radio"]:checked:before { vertical-align: middle; width: 0.5625rem; height: 0.5625rem; margin: 0.4375rem; line-height: 0.76190476; } .wp-core-ui select, .wp-admin .form-table select { min-height: 40px; font-size: 16px; line-height: 2.5; /* 40px for 16px font */ padding: 0 24px 0 12px; } .wp-admin .button-cancel { margin-bottom: 0; padding: 2px 0; font-size: 14px; vertical-align: middle; } #adduser .form-field input, #createuser .form-field input { width: 100%; } .form-table { box-sizing: border-box; } .form-table th, .form-table td, .label-responsive { display: block; width: auto; vertical-align: middle; } .label-responsive { margin: 0.5em 0; } .export-filters li { margin-bottom: 0; } .form-table .color-palette .color-palette-shade, .form-table .color-palette td { display: table-cell; width: 15px; height: 30px; padding: 0; } .form-table .color-palette { margin-right: 10px; } textarea, input { font-size: 16px; } .form-table td input[type="text"], .form-table td input[type="email"], .form-table td input[type="password"], .form-table td select, .form-table td textarea, .form-table span.description, #profile-page .form-table textarea { width: 100%; display: block; max-width: none; box-sizing: border-box; } .form-table .form-required.form-invalid td:after { float: right; margin: -30px 3px 0 0; } input[type="text"].small-text, input[type="search"].small-text, input[type="password"].small-text, input[type="number"].small-text, input[type="number"].small-text, .form-table input[type="text"].small-text { width: auto; max-width: 4.375em; /* 70px, enough for 4 digits to fit comfortably */ display: inline; padding: 3px 6px; margin: 0 3px; } .form-table .regular-text ~ input[type="text"].small-text { margin-top: 5px; } #pass-strength-result { width: 100%; box-sizing: border-box; padding: 8px; } .profile-php .wp-pwd .caps-warning { padding: 8px; } .password-input-wrapper { display: block; } .wp-core-ui .tablenav input[type="text"], .wp-core-ui .tablenav input[type="password"], .wp-core-ui .tablenav input[type="date"], .wp-core-ui .tablenav input[type="datetime"], .wp-core-ui .tablenav input[type="datetime-local"], .wp-core-ui .tablenav input[type="email"], .wp-core-ui .tablenav input[type="month"], .wp-core-ui .tablenav input[type="number"], .wp-core-ui .tablenav input[type="search"], .wp-core-ui .tablenav input[type="tel"], .wp-core-ui .tablenav input[type="time"], .wp-core-ui .tablenav input[type="url"], .wp-core-ui .tablenav input[type="week"], .wp-core-ui .tablenav select { min-height: 40px; } .wp-core-ui .tablenav .button { min-height: 40px; line-height: 2.71428571; padding: 0 14px; } p.search-box { float: none; width: 100%; margin-bottom: 20px; display: flex; } p.search-box input[name="s"] { width: 100%; float: none; margin-bottom: 10px; vertical-align: middle; } .js.plugins-php .search-box .wp-filter-search { width: 100%; margin-bottom: 0; } p.search-box input[type="search"], p.search-box input[type="text"] { min-height: 40px; padding: 0 12px; } p.search-box input[type="submit"].button { margin-bottom: 10px; } .form-table span.description { display: inline; padding: 4px 0 0; line-height: 1.4; font-size: 14px; } .form-table th { padding: 10px 0 0; border-bottom: 0; } .form-table td { margin-bottom: 0; padding: 4px 0 6px; } .form-table.permalink-structure td code { display: inline-block; } .form-table.permalink-structure .structure-selection { margin-top: 8px; } .form-table.permalink-structure .structure-selection .row > div { max-width: calc(100% - 36px); width: 100%; } .form-table.permalink-structure td input[type="text"] { margin-top: 4px; } .permalink-structure-has-blog-prefix { display: flex; align-items: center; } .form-table input.regular-text { width: 100%; } .form-table label { font-size: 14px; } .form-table td > label:first-child { display: inline-block; margin-top: 0.35em; } .background-position-control .button-group > label { font-size: 0; } .form-table fieldset label { display: block; } .form-field #domain { max-width: none; } /* New Password */ .wp-pwd { position: relative; } /* Needs higher specificity than normal input type text and password. */ #profile-page .form-table #pass1 { padding-right: 90px; } .wp-pwd button.button { background: transparent; border: 1px solid transparent; box-shadow: none; line-height: 2; margin: 0; padding: 5px 9px; position: absolute; right: 0; top: 0; width: 2.375rem; height: 2.375rem; min-width: 40px; min-height: 40px; } .wp-pwd button.wp-hide-pw { right: 2.5rem; } body.user-new-php .wp-pwd button.wp-hide-pw { right: 0; } .wp-pwd button.button:hover, .wp-pwd button.button:focus { background: transparent; } .wp-pwd button.button:active { background: transparent; box-shadow: none; transform: none; } .wp-pwd .button .text { display: none; } .wp-pwd [type="text"], .wp-pwd [type="password"] { line-height: 2; padding-right: 5rem; } body.user-new-php .wp-pwd [type="text"], body.user-new-php .wp-pwd [type="password"] { padding-right: 2.5rem; } .wp-cancel-pw .dashicons-no { display: inline-block; } .mailserver-pass-wrap .wp-pwd { display: block; } /* rtl:ignore */ #mailserver_pass { padding-left: 10px; } .options-general-php input[type="text"].small-text { max-width: 6.25em; margin: 0; min-height: 40px; } /* Privacy Policy settings screen */ .tools-privacy-policy-page form.wp-create-privacy-page { margin-bottom: 1em; } .tools-privacy-policy-page input#set-page, .tools-privacy-policy-page select { margin: 10px 0 0; } .tools-privacy-policy-page .wp-create-privacy-page span { display: block; margin-bottom: 1em; } .tools-privacy-policy-page .wp-create-privacy-page .button { margin-left: 0; } .wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) { display: table-cell; } .wp-list-table.privacy_requests.widefat th input, .wp-list-table.privacy_requests.widefat thead td input { margin-left: 5px; } .wp-privacy-request-form-field input[type="text"] { width: 100%; margin-bottom: 10px; vertical-align: middle; } .regular-text { max-width: 100%; } } @media only screen and (max-width: 768px) { .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="password"], .form-field select, .form-field textarea { width: 99%; } .form-wrap .form-field { padding: 0; } } @media only screen and (max-height: 480px), screen and (max-width: 450px) { /* Request Credentials / File Editor Warning */ .request-filesystem-credentials-dialog .notification-dialog, .file-editor-warning .notification-dialog { width: 100%; height: 100%; max-height: 100%; position: fixed; top: 0; margin: 0; left: 0; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Color Picker Options */ .color-option { width: 49%; } } @media only screen and (max-width: 320px) { .options-general-php .date-time-text.date-time-custom-text { min-width: 0; margin-right: 0.5em; } } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } css/customize-controls-rtl.min.css000066600000166071152330733730013337 0ustar00/*! This file is auto-generated */ body{overflow:hidden;-webkit-text-size-adjust:100%}.customize-controls-close,.widget-control-actions a{text-decoration:none}#customize-controls h3{font-size:14px}#customize-controls img{max-width:100%}#customize-controls .submit{text-align:center}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked{background-color:rgba(0,0,0,.7);padding:25px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message{margin-right:auto;margin-left:auto;max-width:366px;min-height:64px;width:auto;padding:25px;position:relative;background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;overflow-y:auto;text-align:right;top:calc(50% - 100px)}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message.has-avatar{padding-right:109px}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing{margin-top:0}#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons{margin-bottom:0}.customize-changeset-locked-avatar{width:64px;position:absolute;right:25px;top:25px}.wp-core-ui.wp-customizer .customize-changeset-locked-message a.button{margin-left:10px;margin-top:0}#customize-controls .description{color:#50575e}#customize-save-button-wrapper{float:left;margin-top:7px}body:not(.ready) #customize-save-button-wrapper .save{visibility:hidden}#customize-save-button-wrapper .save{float:right;border-radius:3px;box-shadow:none;margin-top:0}#customize-save-button-wrapper .save.has-next-sibling{border-radius:0 3px 3px 0}#customize-sidebar-outer-content{position:absolute;top:0;bottom:0;right:0;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:100%;margin:0;z-index:-1;background:#f0f0f1;transition:right .18s;border-left:1px solid #dcdcde;border-right:1px solid #dcdcde;height:100%}@media (prefers-reduced-motion:reduce){#customize-sidebar-outer-content{transition:none}}#customize-theme-controls .control-section-outer{display:none!important}#customize-outer-theme-controls .accordion-section-content{padding:12px}#customize-outer-theme-controls .accordion-section-content.open{display:block}.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{visibility:visible;right:100%;transition:right .18s}@media (prefers-reduced-motion:reduce){.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{transition:none}}.customize-outer-pane-parent{margin:0}.outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main{right:300px;opacity:.4}.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main{right:64%}#customize-outer-theme-controls li.notice{padding-top:8px;padding-bottom:8px;margin-right:0;margin-bottom:10px}#publish-settings{text-indent:0;border-radius:3px 0 0 3px;padding-right:0;padding-left:0;box-shadow:none;font-size:14px;width:30px;float:right;transform:none;margin-top:0;line-height:2}body.trashing #customize-save-button-wrapper .save,body.trashing #publish-settings,body:not(.ready) #publish-settings{display:none}#customize-header-actions .spinner{margin-top:13px;margin-left:4px}.saving #customize-header-actions .spinner,.trashing #customize-header-actions .spinner{visibility:visible}#customize-header-actions{border-bottom:1px solid #dcdcde}#customize-controls .wp-full-overlay-sidebar-content{overflow-y:auto;overflow-x:hidden}.outer-section-open #customize-controls .wp-full-overlay-sidebar-content{background:#f0f0f1}#customize-controls .customize-info{border:none;border-bottom:1px solid #dcdcde;margin-bottom:15px}#customize-control-changeset_preview_link input,#customize-control-changeset_status .customize-inside-control-row{background-color:#fff;border-bottom:1px solid #dcdcde;box-sizing:content-box;width:100%;margin-right:-12px;padding-right:12px;padding-left:12px}#customize-control-trash_changeset{margin-top:20px}#customize-control-trash_changeset .button-link{position:relative;padding-right:24px;display:inline-block}#customize-control-trash_changeset .button-link:before{content:"\f182";content:"\f182"/'';font:normal 22px dashicons;text-decoration:none;position:absolute;right:0;top:-2px}#customize-controls .date-input:invalid{border-color:#d63638}#customize-control-changeset_status .customize-inside-control-row{padding-top:10px;padding-bottom:10px;font-weight:500}#customize-control-changeset_status .customize-inside-control-row:first-of-type{border-top:1px solid #dcdcde}#customize-control-changeset_status .customize-control-title{margin-bottom:6px}#customize-control-changeset_status input{margin-right:0}#customize-control-changeset_preview_link{position:relative;display:block}.preview-link-wrapper .customize-copy-preview-link.preview-control-element.button{margin:0;position:absolute;top:50%;transform:translateY(-50%)!important;left:0;background:#fff!important}.preview-link-wrapper{position:relative}.customize-copy-preview-link:after,.customize-copy-preview-link:before{content:"";height:40px;position:absolute;background:#fff;top:0}.customize-copy-preview-link:before{right:-10px;width:9px;opacity:.75}.customize-copy-preview-link:after{right:-5px;width:4px;opacity:.8}#customize-control-changeset_preview_link input{line-height:2.85714286;border-top:1px solid #dcdcde;border-right:none;border-left:none;text-indent:-999px;color:#fff;min-height:40px}#customize-control-changeset_preview_link label{position:relative;display:block}#customize-control-changeset_preview_link a{display:inline-block;position:absolute;white-space:nowrap;overflow:hidden;width:90%;bottom:14px;font-size:14px;text-decoration:none}#customize-control-changeset_preview_link a.disabled,#customize-control-changeset_preview_link a.disabled:active,#customize-control-changeset_preview_link a.disabled:focus,#customize-control-changeset_preview_link a.disabled:visited{color:#000;opacity:.4;cursor:default;outline:0;box-shadow:none}#sub-accordion-section-publish_settings .customize-section-description-container{display:none}#customize-controls .customize-info.section-meta{margin-bottom:15px}.customize-control-date_time .customize-control-description+.date-time-fields.includes-time{margin-top:10px}.customize-control.customize-control-date_time .date-time-fields .date-input.day{margin-left:0}.date-time-fields .date-input.month{width:auto;margin:0}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:46px}.customize-control-date_time select{vertical-align:top}.date-time-fields .date-input.year{width:65px}.date-time-fields .date-input.meridian{width:auto;margin:0}.date-time-fields .time-row{margin-top:12px}#customize-control-changeset_preview_link{margin-top:6px}#customize-control-changeset_status{margin-bottom:0;padding-bottom:0}#customize-control-changeset_scheduled_date{box-sizing:content-box;width:100%;margin-right:-12px;padding:12px;background:#fff;border-bottom:1px solid #dcdcde;margin-bottom:0}#customize-control-changeset_scheduled_date .customize-control-description,#customize-control-site_icon .customize-control-description{font-style:normal}#customize-controls .customize-info.is-in-view,#customize-controls .customize-section-title.is-in-view{position:absolute;z-index:9;width:100%;box-shadow:0 1px 0 rgba(0,0,0,.1)}#customize-controls .customize-section-title.is-in-view{margin-top:0}#customize-controls .customize-info.is-in-view+.accordion-section{margin-top:15px}#customize-controls .customize-info.is-sticky,#customize-controls .customize-section-title.is-sticky{position:fixed;top:46px}#customize-controls .customize-info .accordion-section-title{background:#fff;color:#50575e;border-right:none;border-left:none;border-bottom:none;cursor:default;padding:10px 14px 11px 10px}#customize-controls .customize-info .accordion-section-title:focus:after,#customize-controls .customize-info .accordion-section-title:hover:after,#customize-controls .customize-info.open .accordion-section-title:after{color:#2c3338}#customize-controls .customize-info .accordion-section-title:after{display:none}#customize-controls .customize-info .preview-notice{font-size:13px;line-height:1.9;margin:0;font-weight:400;color:#50575e}#customize-controls .customize-info .panel-title,#customize-controls .customize-pane-child .customize-section-title h3,#customize-controls .customize-pane-child h3.customize-section-title,#customize-outer-theme-controls .customize-pane-child .customize-section-title h3,#customize-outer-theme-controls .customize-pane-child h3.customize-section-title{font-size:20px;font-weight:200;line-height:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-section-title span.customize-action{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#customize-controls .customize-info .customize-help-toggle{position:absolute;top:4px;left:1px;padding:20px 10px 10px 20px;width:20px;height:20px;cursor:pointer;box-shadow:none;background:0 0;color:#50575e;border:none}#customize-controls .customize-info .customize-help-toggle:before{position:absolute;top:5px;right:6px}#customize-controls .customize-info .customize-panel-description,#customize-controls .customize-info .customize-section-description,#customize-controls .no-widget-areas-rendered-notice,#customize-outer-theme-controls .customize-info .customize-section-description{color:#50575e;display:none;background:#fff;padding:12px 15px;border-top:1px solid #dcdcde}#customize-controls .customize-info .customize-panel-description.open+.no-widget-areas-rendered-notice{border-top:none}.no-widget-areas-rendered-notice{font-style:italic}.no-widget-areas-rendered-notice p:first-child{margin-top:0}.no-widget-areas-rendered-notice p:last-child{margin-bottom:0}#customize-controls .customize-info .customize-section-description{margin-bottom:15px}#customize-controls .customize-info .customize-panel-description p:first-child,#customize-controls .customize-info .customize-section-description p:first-child{margin-top:0}#customize-controls .customize-info .customize-panel-description p:last-child,#customize-controls .customize-info .customize-section-description p:last-child{margin-bottom:0}#customize-controls .current-panel .control-section>h3.accordion-section-title{padding-left:30px}#customize-outer-theme-controls .control-section,#customize-theme-controls .control-section{border:none}#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{color:#50575e;background-color:#fff;border-bottom:1px solid #dcdcde;border-right:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}#customize-controls .current-panel .control-section>h3.accordion-section-title:has(button.accordion-trigger),.accordion-section-title:has(button.accordion-trigger){padding:0}.accordion-section-title button.accordion-trigger{all:unset;width:100%;padding:10px 14px 11px 30px;display:flex;align-items:center;box-sizing:border-box}.accordion-section-title button.accordion-trigger:has(.menu-in-location){display:block}.accordion-section-title button.accordion-trigger .spinner{margin-top:0}@media (prefers-reduced-motion:reduce){#customize-outer-theme-controls .accordion-section-title,#customize-theme-controls .accordion-section-title{transition:none}}#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title{color:#50575e;background-color:#fff;border-right:4px solid #fff}#customize-outer-theme-controls .accordion-section-title:after,#customize-theme-controls .accordion-section-title:after{content:"\f341";content:"\f345"/'';color:#a7aaad;pointer-events:none}#customize-outer-theme-controls .accordion-section-content,#customize-theme-controls .accordion-section-content{color:#50575e;background:0 0}#accordion-section-themes+.control-section{border-top:1px solid #dcdcde}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{background:#f6f7f7}#customize-theme-controls .control-section.open{border-bottom:1px solid #f0f0f1}#customize-outer-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section.open .accordion-section-title{border-bottom-color:#f0f0f1!important}#customize-theme-controls .control-section:last-of-type.open,#customize-theme-controls .control-section:last-of-type>.accordion-section-title{border-bottom-color:#dcdcde}#customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2),#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu,#customize-theme-controls .control-section-nav_menu_locations .accordion-section-title{border-top:1px solid #dcdcde}#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu+.control-section-nav_menu{border-top:none}#customize-theme-controls>ul{margin:0}#customize-theme-controls .accordion-section-content{position:absolute;top:0;right:100%;width:100%;margin:0;padding:12px;box-sizing:border-box}#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{overflow:visible;width:100%;margin:0;padding:0;box-sizing:border-box;transition:.18s transform cubic-bezier(.645, .045, .355, 1)}@media (prefers-reduced-motion:reduce){#customize-info,#customize-theme-controls .customize-pane-child,#customize-theme-controls .customize-pane-parent{transition:none}}#customize-theme-controls .customize-pane-child.skip-transition{transition:none}#customize-info,#customize-theme-controls .customize-pane-parent{position:relative;visibility:visible;height:auto;max-height:none;overflow:auto;transform:none}#customize-theme-controls .customize-pane-child{position:absolute;top:0;right:0;visibility:hidden;height:0;max-height:none;overflow:hidden;transform:translateX(-100%)}#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open{transform:none}.in-sub-panel #customize-info,.in-sub-panel #customize-theme-controls .customize-pane-parent,.in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel,.section-open #customize-info,.section-open #customize-theme-controls .customize-pane-parent{visibility:hidden;height:0;overflow:hidden;transform:translateX(100%)}#customize-theme-controls .customize-pane-child.busy,#customize-theme-controls .customize-pane-child.current-panel,#customize-theme-controls .customize-pane-child.open,.busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel,.in-sub-panel #customize-info.busy,.in-sub-panel #customize-theme-controls .customize-pane-parent.busy,.section-open #customize-info.busy,.section-open #customize-theme-controls .customize-pane-parent.busy{visibility:visible;height:auto;overflow:auto}#customize-theme-controls .customize-pane-child.accordion-section-content,#customize-theme-controls .customize-pane-child.accordion-sub-container{display:block;overflow-x:hidden}#customize-theme-controls .customize-pane-child.accordion-section-content{padding:12px}#customize-theme-controls .customize-pane-child.menu li{position:static}.control-section-nav_menu .customize-section-description-container,.control-section-new_menu .customize-section-description-container,.customize-section-description-container{margin-bottom:15px}.control-section-nav_menu .customize-control,.control-section-new_menu .customize-control{margin-bottom:0}.customize-section-title{margin:-12px -12px 0;border-bottom:1px solid #dcdcde;background:#fff}div.customize-section-description{margin-top:22px}.customize-info div.customize-section-description{margin-top:0}div.customize-section-description p:first-child{margin-top:0}div.customize-section-description p:last-child{margin-bottom:0}#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{border-bottom:1px solid #dcdcde;padding:12px}.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child{padding:12px 12px 13px}.customize-section-title h3,h3.customize-section-title{padding:10px 14px 12px 10px;margin:0;line-height:21px;color:#50575e}.accordion-sub-container.control-panel-content{display:none;position:absolute;top:0;width:100%}.accordion-sub-container.control-panel-content.busy{display:block}.current-panel .accordion-sub-container.control-panel-content{width:100%}.customize-controls-close{display:block;position:absolute;top:0;right:0;width:45px;height:41px;padding:0 0 0 2px;background:#f0f0f1;border:none;border-top:4px solid #f0f0f1;border-left:1px solid #dcdcde;color:#3c434a;text-align:right;cursor:pointer;box-sizing:content-box}@media (prefers-reduced-motion:no-preference){.customize-controls-close{transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}}.customize-panel-back,.customize-section-back{display:block;float:right;width:48px;height:71px;padding:0 0 0 24px;margin:0;background:#fff;border:none;border-left:1px solid #dcdcde;border-right:4px solid #fff;box-shadow:none;cursor:pointer;transition:color .15s ease-in-out,border-color .15s ease-in-out,background .15s ease-in-out}.customize-section-back{height:74px}.ios .customize-panel-back{display:none}.ios .expanded.in-sub-panel .customize-panel-back{display:block}#customize-controls .panel-meta.customize-info .accordion-section-title{margin-right:48px;border-right:none}#customize-controls .cannot-expand:hover .accordion-section-title,#customize-controls .panel-meta.customize-info .accordion-section-title:hover{background:#fff;color:#50575e;border-right-color:#fff}.customize-controls-close:focus,.customize-controls-close:hover,.customize-controls-preview-toggle:focus,.customize-controls-preview-toggle:hover{background:#fff;box-shadow:none;outline:1px solid transparent}#customize-theme-controls .accordion-section-title:focus .customize-action{outline:1px solid transparent;outline-offset:1px}.customize-panel-back:focus,.customize-panel-back:hover,.customize-section-back:focus,.customize-section-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.customize-controls-close:before{font:normal 22px/45px dashicons;content:"\f335";content:"\f335"/'';position:relative;top:-3px;right:13px}.customize-panel-back:before,.customize-section-back:before{font:normal 20px/72px dashicons;content:"\f345";content:"\f341"/'';position:relative;right:9px}.wp-full-overlay-sidebar .wp-full-overlay-header{background-color:#f0f0f1;transition:padding ease-in-out .18s}.in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header{padding-right:62px}p.customize-section-description{font-style:normal;margin-top:22px;margin-bottom:0}.customize-section-description ul{margin-right:1em}.customize-section-description ul>li{list-style:disc}.section-description-buttons{text-align:left}.customize-control{width:100%;float:right;clear:both;margin-bottom:12px}.customize-control input[type=email],.customize-control input[type=number],.customize-control input[type=password],.customize-control input[type=range],.customize-control input[type=search],.customize-control input[type=tel],.customize-control input[type=text],.customize-control input[type=url]{width:100%;margin:0}.customize-control-hidden{margin:0}.customize-control-textarea textarea{width:100%;resize:vertical}.customize-control select{width:100%}.customize-control select[multiple]{height:auto}.customize-control-title{display:block;font-size:14px;line-height:1.75;font-weight:600;margin-bottom:4px}.customize-control-description{display:block;font-style:italic;line-height:1.4;margin-top:0;margin-bottom:5px}.customize-section-description a.external-link:after{font:16px/11px dashicons;content:"\f504";content:"\f504"/'';top:3px;position:relative;padding-right:3px;display:inline-block;text-decoration:none}.customize-control-color .color-picker,.customize-control-upload div{line-height:28px}.customize-control .customize-inside-control-row{line-height:1.6;display:block;margin-right:24px;padding-top:6px;padding-bottom:6px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-left:4px;margin-right:-24px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:1.6}.customize-control-radio .customize-control-title+.customize-control-description{margin-top:7px}.customize-control-checkbox label,.customize-control-radio label{vertical-align:top}.customize-control .attachment-thumb.type-icon{float:right;margin:10px;width:auto}.customize-control .attachment-title{font-weight:600;margin:0;padding:5px 10px}.customize-control .attachment-meta{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;padding:0 10px}.customize-control .attachment-meta-title{padding-top:7px}.customize-control .thumbnail-image,.customize-control .wp-media-wrapper.wp-video,.customize-control-header .current{line-height:0}.customize-control .thumbnail-image img{cursor:pointer}#customize-controls .thumbnail-audio .thumbnail{max-width:64px;max-height:64px;margin:10px;float:right}#available-menu-items .accordion-section-content .new-content-item-wrapper,.customize-control-dropdown-pages .new-content-item-wrapper{width:calc(100% - 30px);padding:8px 15px;position:absolute;bottom:0;z-index:10;background:#f0f0f1}.customize-control-dropdown-pages .new-content-item-wrapper{width:100%;padding:0;position:static}#available-menu-items .new-content-item-wrapper>label,.customize-control-dropdown-pages .new-content-item-wrapper>label{margin-bottom:4px;display:block}#available-menu-items .accordion-section-content .new-content-item,.customize-control-dropdown-pages .new-content-item{display:flex}.customize-control-dropdown-pages .new-content-item{width:100%;padding:5px 1px 5px 0;position:relative}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item{padding:0}.customize-control-dropdown-pages .new-content-item-wrapper .new-content-item label{line-height:1.6}#available-menu-items .new-content-item .create-item-input,.customize-control-dropdown-pages .new-content-item .create-item-input{flex-grow:10;width:100%}#available-menu-items .new-content-item .create-item-input{min-height:32px;line-height:2.15384615}#available-menu-items .new-content-item .add-content,.customize-control-dropdown-pages .new-content-item .add-content{margin:0 6px 0 0;flex-grow:1}#available-menu-items .new-content-item .add-content{min-height:32px;line-height:2.30769231}.customize-control-dropdown-pages .new-content-item .create-item-input.invalid{border:1px solid #d63638}.customize-control-dropdown-pages .add-new-toggle{margin-right:1px;font-weight:600;line-height:2.2}#customize-preview iframe{width:100%;height:100%;position:absolute}#customize-preview iframe+iframe{visibility:hidden}.wp-full-overlay-sidebar{background:#f0f0f1;border-left:1px solid #dcdcde}#customize-controls .customize-control-notifications-container{margin:4px 0 8px;padding:0;cursor:default}#customize-controls .customize-control-widget_form.has-error .widget .widget-top,.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle{box-shadow:inset 0 0 0 2px #d63638;transition:.15s box-shadow linear}#customize-controls .customize-control-notifications-container li.notice{list-style:none;margin:0 0 6px;padding:9px 14px;overflow:hidden}#customize-controls .customize-control-notifications-container .notice.is-dismissible{padding-left:38px}.customize-control-notifications-container li.notice:last-child{margin-bottom:0}#customize-controls .customize-control-nav_menu_item .customize-control-notifications-container{margin-top:0}#customize-controls .customize-control-widget_form .customize-control-notifications-container{margin-top:8px}.customize-control-text.has-error input{outline:2px solid #d63638}#customize-controls #customize-notifications-area{position:absolute;top:46px;width:100%;border-bottom:1px solid #dcdcde;display:block;padding:0;margin:0}.wp-full-overlay.collapsed #customize-controls #customize-notifications-area{display:none!important}#customize-controls #customize-notifications-area:not(.has-overlay-notifications),#customize-controls .customize-section-title>.customize-control-notifications-container:not(.has-overlay-notifications),#customize-controls .panel-meta>.customize-control-notifications-container:not(.has-overlay-notifications){max-height:210px;overflow-x:hidden;overflow-y:auto}#customize-controls #customize-notifications-area .notice,#customize-controls #customize-notifications-area>ul,#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container .notice{margin:0}#customize-controls .customize-section-title>.customize-control-notifications-container,#customize-controls .panel-meta>.customize-control-notifications-container{border-top:1px solid #dcdcde}#customize-controls #customize-notifications-area .notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice{padding:9px 14px}#customize-controls #customize-notifications-area .notice.is-dismissible,#customize-controls .customize-section-title>.customize-control-notifications-container .notice.is-dismissible,#customize-controls .panel-meta>.customize-control-notifications-container .notice.is-dismissible{padding-left:38px}#customize-controls #customize-notifications-area .notice+.notice,#customize-controls .customize-section-title>.customize-control-notifications-container .notice+.notice,#customize-controls .panel-meta>.customize-control-notifications-container .notice+.notice{margin-top:1px}@keyframes customize-fade-in{0%{opacity:0}100%{opacity:1}}#customize-controls #customize-notifications-area .notice.notification-overlay,#customize-controls .notice.notification-overlay{margin:0;border-right:0}#customize-controls .customize-control-notifications-container.has-overlay-notifications{animation:customize-fade-in .5s;z-index:30}#customize-controls #customize-notifications-area .notice.notification-overlay .notification-message{clear:both;color:#1d2327;font-size:18px;font-style:normal;margin:0;padding:2em 0;text-align:center;width:100%;display:block;top:50%;position:relative}#customize-control-show_on_front.has-error{margin-bottom:0}#customize-control-show_on_front.has-error .customize-control-notifications-container{margin-top:12px}.accordion-section .dropdown{float:right;display:block;position:relative;cursor:pointer}.accordion-section .dropdown-content{overflow:hidden;float:right;min-width:30px;height:16px;line-height:16px;margin-left:16px;padding:4px 5px;border:2px solid #f0f0f1;-webkit-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;left:0;width:20px;background:#f0f0f1}.customize-control .dropdown-arrow:after{content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#2c3338}.customize-control .dropdown-status{color:#2c3338;background:#f0f0f1;display:none;max-width:112px}.customize-control-color .dropdown{margin-left:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#50575e;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.ios .wp-full-overlay{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}.customize-control .actions .button{margin-top:12px}.customize-control-header .actions,.customize-control-header .uploaded{margin-bottom:18px}.customize-control-header .default button:not(.random),.customize-control-header .uploaded button:not(.random){width:100%;padding:0;margin:0;background:0 0;border:none;color:inherit;cursor:pointer}.customize-control-header button img{display:block}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control .attachment-media-view .upload-button,.customize-control-header button.new,.customize-control-header button.remove{width:auto;height:auto;white-space:normal}.customize-control .attachment-media-view .upload-button{width:100%;text-align:center}.customize-control .attachment-media-view .upload-button.control-focus{width:auto}.customize-control.customize-control-header .actions .upload-button.button.new{width:100%;text-align:center}.customize-control .attachment-media-view .thumbnail,.customize-control-header .current .container{overflow:hidden}.customize-control .attachment-media-view .button-add-media,.customize-control .attachment-media-view .placeholder,.customize-control-header .placeholder{width:100%;position:relative;text-align:center;cursor:default;border:1px dashed #c3c4c7;box-sizing:border-box;padding:9px 0;line-height:1.6}.customize-control .attachment-media-view .button-add-media{cursor:pointer;background-color:#f0f0f1;color:#2c3338}.customize-control .attachment-media-view .button-add-media:hover{background-color:#fff}.customize-control .attachment-media-view .button-add-media:focus{background-color:#fff;border-color:#3582c4;border-style:solid;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.customize-control-header .inner{display:none;position:absolute;width:100%;color:#50575e;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.customize-control-header .inner,.customize-control-header .inner .dashicons{line-height:20px;top:8px}.customize-control-header .list .inner,.customize-control-header .list .inner .dashicons{top:9px}.customize-control-header .header-view{position:relative;width:100%;margin-bottom:12px}.customize-control-header .header-view:last-child{margin-bottom:0}.customize-control-header .header-view:after{border:0}.customize-control-header .header-view.selected .choice:focus{outline:0}.customize-control-header .header-view.selected:after{content:"";position:absolute;height:auto;top:0;right:0;bottom:0;left:0;border:4px solid #72aee6;border-radius:2px}.customize-control-header .header-view.button.selected{border:0}.customize-control-header .uploaded .header-view .close{font-size:20px;color:#fff;background:#50575e;background:rgba(0,0,0,.5);position:absolute;top:10px;right:-999px;z-index:1;width:26px;height:26px;cursor:pointer}.customize-control-header .header-view .close:focus,.customize-control-header .header-view:hover .close{right:auto;left:10px}.customize-control-header .header-view .close:focus{outline:1px solid #4f94d4}.customize-control-header .random.placeholder{cursor:pointer;border-radius:2px;height:40px}.customize-control-header button.random{width:100%;height:auto;min-height:40px;white-space:normal}.customize-control-header button.random .dice{margin-top:0}.customize-control-header .header-view:hover>button.random .dice,.customize-control-header .placeholder:hover .dice{animation:dice-color-change 3s infinite}.button-see-me{animation:bounce .7s 1;transform-origin:center bottom}@keyframes bounce{20%,53%,80%,from,to{animation-timing-function:cubic-bezier(0.215,0.610,0.355,1.000);transform:translate3d(0,0,0)}40%,43%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-12px,0)}70%{animation-timing-function:cubic-bezier(0.755,0.050,0.855,0.060);transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-1px,0)}}.customize-control-header .choice{position:relative;display:block;margin-bottom:9px}.customize-control-header .choice:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.customize-control-header .uploaded div:last-child>.choice{margin-bottom:0}.customize-control .attachment-media-view .thumbnail-image img,.customize-control-header img{max-width:100%}.customize-control .attachment-media-view .default-button,.customize-control .attachment-media-view .remove-button,.customize-control-header .remove{margin-left:8px}.customize-control-background_position .background-position-control .button-group{display:block}.customize-control-code_editor textarea{width:100%;font-family:Consolas,Monaco,monospace;font-size:12px;padding:6px 8px;tab-size:2}.customize-control-code_editor .CodeMirror,.customize-control-code_editor textarea{height:14em}#customize-controls .customize-section-description-container.section-meta.customize-info{border-bottom:none}#sub-accordion-section-custom_css .customize-control-notifications-container{margin-bottom:15px}#customize-control-custom_css textarea{display:block;height:500px}.customize-section-description-container+#customize-control-custom_css .customize-control-title{margin-right:12px}.customize-section-description-container+#customize-control-custom_css:last-child textarea{border-left:0;border-right:0;height:calc(100vh - 185px);resize:none}.customize-section-description-container+#customize-control-custom_css:last-child{margin-right:-12px;width:299px;width:calc(100% + 24px);margin-bottom:-12px}.customize-section-description-container+#customize-control-custom_css:last-child .CodeMirror{height:calc(100vh - 185px)}.CodeMirror-hints,.CodeMirror-lint-tooltip{z-index:500000!important}.customize-section-description-container+#customize-control-custom_css:last-child .customize-control-notifications-container{margin-right:12px;margin-left:12px}.theme-browser .theme.active .theme-actions,.wp-customizer .theme-browser .theme .theme-actions{padding:9px 15px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}@media screen and (max-width:640px){.customize-section-description-container+#customize-control-custom_css:last-child{margin-left:0}.customize-section-description-container+#customize-control-custom_css:last-child textarea{height:calc(100vh - 140px)}}#customize-theme-controls .control-panel-themes{border-bottom:none}#customize-theme-controls .control-panel-themes>.accordion-section-title,#customize-theme-controls .control-panel-themes>.accordion-section-title:hover{cursor:default;background:#fff;color:#50575e;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;border-right:none;border-left:none;margin:0 0 15px;padding:12px 15px 15px 100px}#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child,#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover{border-top:0}#customize-theme-controls .control-section-themes>.accordion-section-title,#customize-theme-controls .control-section-themes>.accordion-section-title:hover{margin:0 0 15px}#customize-controls .customize-themes-panel .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title:hover{margin:15px -8px}#customize-controls .control-section-themes .accordion-section-title,#customize-controls .customize-themes-panel .accordion-section-title{padding-left:100px}#customize-controls .control-section-themes .accordion-section-title span.customize-action,#customize-controls .customize-section-title span.customize-action,.control-panel-themes .accordion-section-title span.customize-action{font-size:13px;display:block;font-weight:400}#customize-theme-controls .control-panel-themes .accordion-section-title .change-theme{position:absolute;left:10px;top:50%;margin-top:-20px;font-weight:400}#customize-notifications-area .notification-message button.switch-to-editor{display:block;margin-top:6px;font-weight:400}#customize-theme-controls .control-panel-themes>.accordion-section-title:after{display:none}.control-panel-themes .customize-themes-full-container{position:fixed;top:0;right:0;transition:.18s right ease-in-out;margin:0 300px 0 0;padding:71px 0 25px;overflow-y:scroll;width:calc(100% - 300px);height:calc(100% - 96px);background:#f0f0f1;z-index:20}@media (prefers-reduced-motion:reduce){.control-panel-themes .customize-themes-full-container{transition:none}}@media screen and (min-width:1670px){.control-panel-themes .customize-themes-full-container{width:82%;left:0;right:initial}}.modal-open .control-panel-themes .customize-themes-full-container{overflow-y:visible}#customize-header-actions .customize-controls-preview-toggle,#customize-header-actions .spinner,#customize-save-button-wrapper{transition:.18s margin ease-in-out}#customize-footer-actions,#customize-footer-actions .collapse-sidebar{bottom:0;transition:.18s bottom ease-in-out}.in-themes-panel:not(.animating) #customize-footer-actions,.in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel:not(.animating) #customize-header-actions .spinner,.in-themes-panel:not(.animating) #customize-preview{visibility:hidden}.wp-full-overlay.in-themes-panel{background:#f0f0f1}.in-themes-panel #customize-header-actions .customize-controls-preview-toggle,.in-themes-panel #customize-header-actions .spinner,.in-themes-panel #customize-save-button-wrapper{margin-top:-46px}.in-themes-panel #customize-footer-actions,.in-themes-panel #customize-footer-actions .collapse-sidebar{bottom:-45px}.in-themes-panel.animating .control-panel-themes .filter-themes-count{display:none}.in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content{bottom:0}.themes-filter-bar .feature-filter-toggle{min-height:32px;line-height:2.30769231}.themes-filter-bar .feature-filter-toggle:before{content:"\f111";content:"\f111"/'';margin:0 0 0 5px;font:normal 16px/1 dashicons;vertical-align:text-bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .feature-filter-toggle.open{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.themes-filter-bar .feature-filter-toggle .filter-count-filters{display:none}.filter-drawer{box-sizing:border-box;width:100%;position:absolute;top:46px;right:0;padding:25px 25px 25px 0;border-top:0;margin:0;background:#f0f0f1;border-bottom:1px solid #dcdcde}.filter-drawer .filter-group{margin:0 0 0 25px;width:calc((100% - 75px)/ 3);min-width:200px;max-width:320px}@keyframes themes-fade-in{0%{opacity:0}50%{opacity:0}100%{opacity:1}}.control-panel-themes .customize-themes-full-container.animate{animation:.6s themes-fade-in 1}.in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count{animation:.6s themes-fade-in 1}.control-panel-themes .filter-themes-count .themes-displayed{font-weight:600;color:#50575e}.customize-themes-notifications{margin:0}.control-panel-themes .customize-themes-notifications .notice{margin:0 0 25px}.customize-themes-full-container .customize-themes-section{display:none!important;overflow:hidden}.customize-themes-full-container .customize-themes-section.current-section{display:list-item!important}.control-section .customize-section-text-before{padding:0 15px 8px 0;margin:15px 0 0;line-height:16px;border-bottom:1px solid #dcdcde;color:#50575e}.control-panel-themes .customize-themes-section-title{width:100%;background:#fff;box-shadow:none;outline:0;border-top:none;border-bottom:1px solid #dcdcde;border-right:4px solid #fff;border-left:none;cursor:pointer;padding:10px 15px;position:relative;text-align:right;font-size:14px;font-weight:600;color:#50575e;text-shadow:none}.control-panel-themes #accordion-section-installed_themes{border-top:1px solid #dcdcde}.control-panel-themes .theme-section{margin:0;position:relative}.control-panel-themes .customize-themes-section-title:focus,.control-panel-themes .customize-themes-section-title:hover{background:#f6f7f7}.customize-themes-section-title:not(.selected):after{content:"";display:block;position:absolute;top:9px;left:15px;width:18px;height:18px;border-radius:100%;border:1px solid #c3c4c7;background:#fff}.control-panel-themes .theme-section .customize-themes-section-title.selected:after{content:"\f147";content:"\f147"/'';font:16px/1 dashicons;box-sizing:border-box;width:20px;height:20px;padding:3px 1px 1px 3px;border-radius:100%;position:absolute;top:9px;left:15px;color:#fff}#customize-theme-controls .themes.accordion-section-content{position:relative;right:0;padding:0;width:100%}.loading .customize-themes-section .spinner{display:block;visibility:visible;position:relative;clear:both;width:20px;height:20px;right:calc(50% - 10px);float:none;margin-top:50px}.customize-themes-section .no-themes,.customize-themes-section .no-themes-local{display:none}.themes-section-installed_themes .theme .notice-success:not(.updated-message){display:none}.customize-control-theme .theme{width:100%;margin:0;border:1px solid #dcdcde;background:#fff}.customize-control-theme .theme .theme-actions,.customize-control-theme .theme .theme-name{background:#fff;border:none}.customize-control.customize-control-theme{box-sizing:border-box;width:25%;max-width:600px;margin:0 0 25px 25px;padding:0;clear:none}@media screen and (min-width:2101px){.customize-control.customize-control-theme{width:calc((100% - 125px)/ 5 - 1px)}}@media screen and (min-width:1601px) and (max-width:2100px){.customize-control.customize-control-theme{width:calc((100% - 100px)/ 4 - 1px)}}@media screen and (min-width:1201px) and (max-width:1600px){.customize-control.customize-control-theme{width:calc((100% - 75px)/ 3 - 1px)}}@media screen and (min-width:851px) and (max-width:1200px){.customize-control.customize-control-theme{width:calc((100% - 50px)/ 2 - 1px)}}@media screen and (max-width:850px){.customize-control.customize-control-theme{width:100%}}.wp-customizer .theme-browser .themes{padding:0 25px 25px 0;transition:.18s margin-top linear}.wp-customizer .theme-browser .theme .theme-actions{opacity:1}#customize-controls h3.theme-name{font-size:15px}#customize-controls .theme-overlay .theme-name{font-size:32px}.customize-preview-header.themes-filter-bar{position:fixed;top:0;right:300px;width:calc(100% - 300px);height:46px;background:#f0f0f1;z-index:10;padding:6px 25px;box-sizing:border-box;border-bottom:1px solid #dcdcde}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.customize-preview-header.themes-filter-bar .search-form-input{position:relative}.customize-preview-header .filter-themes-wrapper{display:grid;align-items:center;gap:10px;grid-template-columns:auto 1fr}.customize-preview-header .filter-themes-wrapper .filter-themes-count{justify-self:end}@media screen and (min-width:1670px){.customize-preview-header.themes-filter-bar{width:82%;left:0;right:initial}}.themes-filter-bar .themes-filter-container{margin:0;padding:0;display:flex;align-items:center;gap:10px}.themes-filter-bar .wp-filter-search{padding:0 30px 0 10px;max-width:100%;width:40%;min-width:300px;height:32px;min-height:32px;margin:1px 0;top:0;right:0}@media screen and (max-height:540px),screen and (max-width:1018px){.customize-preview-header.themes-filter-bar{position:relative;right:0;width:100%;margin:0 0 25px}.filter-drawer{top:46px}.wp-customizer .theme-browser .themes{padding:0 25px 25px 0;overflow:hidden}.control-panel-themes .customize-themes-full-container{margin-top:0;padding:0;height:100%;width:calc(100% - 300px)}}@media screen and (max-width:1018px){.filter-drawer .filter-group{width:calc((100% - 50px)/ 2)}}@media screen and (max-width:960px){.customize-preview-header.themes-filter-bar{height:96px}}@media screen and (max-width:900px){.themes-filter-bar .wp-filter-search{width:100%;margin:0;min-width:200px}.customize-preview-header.themes-filter-bar,.customize-preview-header.themes-filter-bar .search-form .themes-filter-bar .themes-filter-container{display:grid;gap:4px}.customize-preview-header.themes-filter-bar .search-form-input{display:flex;flex-grow:1}.filter-drawer{top:86px}.control-panel-themes .filter-themes-count{float:right}}@media screen and (max-width:792px){.filter-drawer .filter-group{width:calc(100% - 25px)}}.control-panel-themes .customize-themes-mobile-back{display:none}@media screen and (max-width:600px){.filter-drawer{top:132px}.wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes{display:block;float:left}.control-panel-themes .customize-themes-full-container{width:100%;margin:0;padding-top:46px;height:calc(100% - 46px);z-index:1;display:none}.showing-themes .control-panel-themes .customize-themes-full-container{display:block}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back{display:block;position:fixed;top:0;right:0;background:#f0f0f1;color:#3c434a;border-radius:0;box-shadow:none;border:none;height:46px;width:100%;z-index:10;text-align:right;text-shadow:none;border-bottom:1px solid #dcdcde;border-right:4px solid transparent;margin:0;padding:0;font-size:0;overflow:hidden}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before{right:0;top:0;height:46px;width:26px;display:block;line-height:2.3;padding:0 8px;border-left:1px solid #dcdcde}.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus,.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover{background:#f6f7f7;box-shadow:none;outline:2px solid transparent;outline-offset:-2px}.showing-themes #customize-header-actions{display:none}#customize-controls{width:100%}}.wp-customizer .theme-overlay{display:none}.wp-customizer.modal-open .theme-overlay{position:fixed;right:0;top:0;left:0;bottom:0;z-index:109}.wp-customizer.modal-open #customize-header-actions,.wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after,.wp-customizer.modal-open .control-panel-themes .filter-themes-count{z-index:-1}.wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-overlay .theme-backdrop{background:rgba(240,240,241,.75);position:fixed;z-index:110}.wp-customizer .theme-overlay .star-rating{float:right;margin-left:8px}.wp-customizer .theme-rating .num-ratings{line-height:20px}.wp-customizer .theme-overlay .theme-wrap{right:90px;left:90px;top:45px;bottom:45px;z-index:120}.wp-customizer .theme-overlay .theme-actions{text-align:left;padding:10px 25px 5px;background:#f0f0f1;border-top:1px solid #dcdcde}.wp-customizer .theme-overlay .theme-actions .theme-install.preview{margin-right:8px}.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content{overflow:visible}.wp-customizer .theme-header{background:#f0f0f1}.wp-customizer .theme-overlay .theme-header .close:before,.wp-customizer .theme-overlay .theme-header button{color:#3c434a}.wp-customizer .theme-overlay .theme-header .close:focus,.wp-customizer .theme-overlay .theme-header .close:hover,.wp-customizer .theme-overlay .theme-header .left:focus,.wp-customizer .theme-overlay .theme-header .left:hover,.wp-customizer .theme-overlay .theme-header .right:focus,.wp-customizer .theme-overlay .theme-header .right:hover{background:#fff}.wp-customizer .theme-overlay .theme-header .close:focus:before,.wp-customizer .theme-overlay .theme-header .close:hover:before{color:var(--wp-admin-theme-color)}.wp-customizer .theme-overlay .theme-header button.disabled,.wp-customizer .theme-overlay .theme-header button.disabled:focus,.wp-customizer .theme-overlay .theme-header button.disabled:hover{border-bottom:none;background:0 0;color:#c3c4c7}@media (max-width:850px),(max-height:472px){.wp-customizer .theme-overlay .theme-wrap{right:0;left:0;top:0;bottom:0}.wp-customizer .theme-browser .themes{padding-left:25px}}body.cheatin{font-size:medium;height:auto;background:#fff;border:1px solid #c3c4c7;margin:50px auto 2em;padding:1em 2em;max-width:700px;min-width:0;box-shadow:0 1px 1px rgba(0,0,0,.04)}body.cheatin h1{border-bottom:1px solid #dcdcde;clear:both;color:#50575e;font-size:24px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:30px 0 0;padding:0 0 7px}body.cheatin p{font-size:14px;line-height:1.5;margin:25px 0 20px}#customize-theme-controls .add-new-menu-item,#customize-theme-controls .add-new-widget{cursor:pointer;float:left;margin:0 10px 0 0;transition:all .2s;-webkit-user-select:none;user-select:none;outline:0}.reordering .add-new-menu-item,.reordering .add-new-widget{opacity:.2;pointer-events:none;cursor:not-allowed}#available-menu-items .new-content-item .add-content:before,.add-new-menu-item:before,.add-new-widget:before{content:"\f132";content:"\f132"/'';display:inline-block;position:relative;right:-2px;top:0;font:normal 20px/1 dashicons;vertical-align:middle;transition:all .2s;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.reorder-toggle{float:left;padding:5px 8px;text-decoration:none;cursor:pointer;outline:0}.reorder,.reordering .reorder-done{display:block;padding:5px 8px}.reorder-done,.reordering .reorder{display:none}.menu-item-reorder-nav button,.widget-reorder-nav span{position:relative;overflow:hidden;float:right;display:block;width:33px;height:43px;color:#8c8f94;text-indent:-9999px;cursor:pointer;outline:0}.menu-item-reorder-nav button{width:30px;height:40px;background:0 0;border:none;box-shadow:none}.menu-item-reorder-nav button:before,.widget-reorder-nav span:before{display:inline-block;position:absolute;top:0;left:0;width:100%;height:100%;font:normal 20px/43px dashicons;text-align:center;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.menu-item-reorder-nav button:focus,.menu-item-reorder-nav button:hover,.widget-reorder-nav span:focus,.widget-reorder-nav span:hover{color:#1d2327;background:#f0f0f1}.menus-move-down:before,.move-widget-down:before{content:"\f347";content:"\f347"/''}.menus-move-up:before,.move-widget-up:before{content:"\f343";content:"\f343"/''}#customize-theme-controls .first-widget .move-widget-up,#customize-theme-controls .last-widget .move-widget-down,.move-down-disabled .menus-move-down,.move-left-disabled .menus-move-left,.move-right-disabled .menus-move-right,.move-up-disabled .menus-move-up{color:#dcdcde;background-color:#fff;cursor:default;pointer-events:none}.wp-full-overlay-main{left:auto;width:100%}.add-menu-toggle.open,.add-menu-toggle.open:hover,.adding-menu-items .add-new-menu-item,.adding-menu-items .add-new-menu-item:hover,body.adding-widget .add-new-widget,body.adding-widget .add-new-widget:hover{background:#f0f0f1;border-color:#8c8f94;color:#2c3338;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}#accordion-section-add_menu .add-new-menu-item.open:before,.adding-menu-items .add-new-menu-item:before,body.adding-widget .add-new-widget:before{transform:rotate(-45deg)}#available-menu-items,#available-widgets{position:absolute;top:0;bottom:0;right:-301px;visibility:hidden;overflow-x:hidden;overflow-y:auto;width:300px;margin:0;z-index:4;background:#f0f0f1;transition:right .18s;border-left:1px solid #dcdcde}#available-menu-items .accordion-section-title,#available-widgets .accordion-section-title{z-index:2}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;word-break:normal!important}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:none}#available-widgets-list{top:82px;position:absolute;overflow:auto;bottom:0;width:100%;border-top:1px solid #dcdcde}.no-widgets-found #available-widgets-list{border-top:none}#available-widgets-filter{position:fixed;top:0;z-index:1;width:300px;background:#f0f0f1}#available-menu-items-search .accordion-section-title,#available-widgets-filter{padding:13px 15px;box-sizing:border-box}#available-menu-items-search input,#available-widgets-filter input{width:100%;min-height:40px;margin:1px 0;padding:0 30px}#available-menu-items-search input::-ms-clear,#available-widgets-filter input::-ms-clear{display:none}#available-menu-items-search .search-icon,#available-widgets-filter .search-icon{display:block;position:absolute;bottom:19px;right:16px;width:30px;height:30px;line-height:2.1;text-align:center;color:#646970}#available-menu-items-search .accordion-section-title .clear-results,#available-widgets-filter .clear-results{position:absolute;top:40px;left:16px;width:30px;height:30px;padding:0;border:0;cursor:pointer;background:0 0;color:#d63638;text-decoration:none;outline:0}#available-menu-items-search .clear-results,#available-menu-items-search.loading .clear-results.is-visible,#available-widgets-filter .clear-results{display:none}#available-menu-items-search .clear-results.is-visible,#available-widgets-filter .clear-results.is-visible{display:block}#available-menu-items-search .clear-results:before,#available-widgets-filter .clear-results:before{content:"\f335";content:"\f335"/'';font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-menu-items-search .clear-results:focus,#available-menu-items-search .clear-results:hover,#available-widgets-filter .clear-results:focus,#available-widgets-filter .clear-results:hover{color:#d63638}#available-menu-items-search .clear-results:focus,#available-widgets-filter .clear-results:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#available-menu-items-search .search-icon:after,#available-widgets-filter .search-icon:after,.themes-filter-bar .search-icon:after{content:"\f179";font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.themes-filter-bar .search-icon{position:absolute;top:2px;right:2px;z-index:1;color:#646970;height:30px;width:30px;line-height:2;text-align:center}.no-widgets-found-message{display:none;margin:0;padding:0 15px;line-height:inherit}.no-widgets-found .no-widgets-found-message{display:block}#available-menu-items .item-top,#available-menu-items .item-top:hover,#available-widgets .widget-top,#available-widgets .widget-top:hover{border:none;background:0 0;box-shadow:none}#available-menu-items .item-tpl,#available-widgets .widget-tpl{position:relative;padding:15px 60px 15px 15px;background:#fff;border-bottom:1px solid #dcdcde;border-right:4px solid #fff;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out;cursor:pointer;display:none}#available-menu-items .item,#available-widgets .widget{position:static}.customize-controls-preview-toggle{display:none}@media only screen and (max-width:782px){.wp-customizer .theme:not(.active):focus .theme-actions,.wp-customizer .theme:not(.active):hover .theme-actions{display:block}.wp-customizer .theme-browser .theme.active .theme-name span{display:inline}.customize-control-header button.random .dice{margin-top:0}.customize-control-checkbox .customize-inside-control-row,.customize-control-nav_menu_auto_add .customize-inside-control-row,.customize-control-radio .customize-inside-control-row{margin-right:32px}.customize-control-checkbox input,.customize-control-nav_menu_auto_add input,.customize-control-radio input{margin-right:-32px}.customize-control input[type=checkbox]+label+br,.customize-control input[type=radio]+label+br{line-height:2.5}.customize-control .date-time-fields select{height:39px}.date-time-fields .date-input.month{width:79px}.date-time-fields .date-input.day,.date-time-fields .date-input.hour,.date-time-fields .date-input.minute{width:55px}.date-time-fields .date-input.year{width:80px}#customize-control-changeset_preview_link a{bottom:16px}.media-widget-control .media-widget-buttons .button.change-media,.media-widget-control .media-widget-buttons .button.edit-media,.media-widget-control .media-widget-buttons .button.select-media{margin-top:12px}.customize-preview-header.themes-filter-bar .search-icon{top:6px}}@media screen and (max-width:1200px){.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main{right:67%}}@media screen and (max-width:640px){.wp-full-overlay.collapsed #customize-controls{margin-right:0}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{bottom:0}.customize-controls-preview-toggle{display:block;position:absolute;top:0;right:48px;line-height:2.6;font-size:14px;padding:0 12px 4px;margin:0;height:45px;background:#f0f0f1;border:0;border-left:1px solid #dcdcde;border-top:4px solid #f0f0f1;color:#50575e;cursor:pointer;transition:color .1s ease-in-out,background .1s ease-in-out}#customize-footer-actions,.customize-controls-preview-toggle .controls,.preview-only .customize-controls-preview-toggle .preview,.preview-only .wp-full-overlay-sidebar-content{display:none}.preview-only #customize-save-button-wrapper{margin-top:-46px}.customize-controls-preview-toggle .controls:before,.customize-controls-preview-toggle .preview:before{font:normal 20px/1 dashicons;content:"\f177";content:"\f177"/'';position:relative;top:4px;margin-left:6px}.customize-controls-preview-toggle .controls:before{content:"\f540";content:"\f540"/''}.preview-only #customize-controls{height:45px}.preview-only #customize-preview,.preview-only .customize-controls-preview-toggle .controls{display:block}.wp-core-ui.wp-customizer .button{padding:0 14px;line-height:2.14285714;font-size:14px;vertical-align:middle}.customize-control .attachment-media-view .upload-button{text-align:center}#customize-control-changeset_status .customize-inside-control-row{padding-top:15px}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{width:100%}#available-menu-items .customize-section-title,#available-widgets .customize-section-title{border:0;clip-path:none;height:inherit;margin:0;overflow:hidden;padding:0;width:auto;position:static}#available-menu-items .customize-section-title button,#available-widgets .customize-section-title button{display:block}#available-menu-items .customize-section-back,#available-widgets .customize-section-back{height:69px}#available-menu-items .customize-section-title h3,#available-widgets .customize-section-title h3{font-size:20px;font-weight:200;padding:9px 14px 12px 10px;margin:0;line-height:24px;color:#50575e;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-menu-items .customize-section-title .customize-action,#available-widgets .customize-section-title .customize-action{font-size:13px;display:block;font-weight:400;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#available-widgets-filter{position:relative;width:100%;height:auto}#available-widgets-list{top:152px}#available-menu-items-search .clear-results{top:40px;left:16px}.reorder,.reordering .reorder-done{padding:8px}}@media screen and (max-width:600px){.wp-full-overlay.expanded{margin-right:0}body.adding-menu-items div#available-menu-items,body.adding-widget div#available-widgets,body.outer-section-open div#customize-sidebar-outer-content{top:46px;z-index:10}body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content{right:-100%}body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content{right:0}}css/code-editor.css000066600000003053152330733730010257 0ustar00.wrap [class*="CodeMirror-lint-marker"], .wp-core-ui [class*="CodeMirror-lint-message"], .wrap .CodeMirror-lint-marker-multiple { background-image: none; } .wp-core-ui .CodeMirror-lint-marker-error, .wp-core-ui .CodeMirror-lint-marker-warning { cursor: help; } .wrap .CodeMirror-lint-marker-multiple { position: absolute; top: 0; } .wrap [class*="CodeMirror-lint-marker"]:before { font: normal 18px/1 dashicons; position: relative; top: -2px; } .wp-core-ui [class*="CodeMirror-lint-message"]:before { font: normal 16px/1 dashicons; left: 16px; position: absolute; } .wp-core-ui .CodeMirror-lint-message-error, .wp-core-ui .CodeMirror-lint-message-warning { box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); margin: 5px 0 2px; padding: 3px 12px 3px 28px; } .wp-core-ui .CodeMirror-lint-message-warning { background-color: #fcf9e8; border-left: 4px solid #dba617; } .wrap .CodeMirror-lint-marker-warning:before, .wp-core-ui .CodeMirror-lint-message-warning:before { content: "\f534"; color: #dba617; } .wp-core-ui .CodeMirror-lint-message-error { background-color: #fcf0f1; border-left: 4px solid #d63638; } .wrap .CodeMirror-lint-marker-error:before, .wp-core-ui .CodeMirror-lint-message-error:before { content: "\f153"; color: #d63638; } .wp-core-ui .CodeMirror-lint-tooltip { background: none; border: none; border-radius: 0; direction: ltr; } .wrap .CodeMirror .CodeMirror-matchingbracket { background: rgba(219, 166, 23, 0.3); color: inherit; } .CodeMirror { text-align: left; } .wrap .CodeMirror .CodeMirror-linenumber { color: #646970; } css/view-transitions.css000066600000000271152330733730011405 0ustar00@media (prefers-reduced-motion: no-preference) { @view-transition { navigation: auto; } #adminmenu > .menu-top { view-transition-name: attr(id type(), none); } } css/color-picker-rtl.css000066600000007565152330733730011265 0ustar00/*! This file is auto-generated */ /* rtl:ignore */ .wp-color-picker { width: 80px; direction: ltr; } .wp-picker-container .hidden { display: none; } /* Needs higher specificity to override `.wp-core-ui .button`. */ .wp-picker-container .wp-color-result.button { min-height: 32px; margin: 0 0 6px 6px; padding: 0 30px 0 0; font-size: 11px; } .wp-color-result-text { background: #f6f7f7; border-radius: 2px 0 0 2px; border-right: 1px solid #c3c4c7; color: #50575e; display: block; line-height: 2.72727273; /* 30px */ padding: 0 6px; text-align: center; } .wp-color-result:hover, .wp-color-result:focus { background: #f6f7f7; border-color: #8c8f94; color: #1d2327; } .wp-color-result:hover:after, .wp-color-result:focus:after { color: #1d2327; border-color: #a7aaad; border-right: 1px solid #8c8f94; } .wp-picker-container { display: inline-block; } .wp-color-result:focus { border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); } .wp-color-result:active { /* See Trac ticket #39662 */ transform: none !important; } .wp-picker-open + .wp-picker-input-wrap { display: inline-block; vertical-align: top; } .wp-picker-input-wrap label { display: inline-block; vertical-align: top; } /* For the old `custom-background` page, to override the inline-block and margins from `.form-table td fieldset label`. */ .form-table .wp-picker-input-wrap label { margin: 0 !important; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear, .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { margin-right: 6px; padding: 0 8px; line-height: 2.72727273; /* 30px */ min-height: 32px; } .wp-picker-container .iris-square-slider .ui-slider-handle:focus { background-color: #50575e } .wp-picker-container .iris-picker { border-radius: 0; border-color: #dcdcde; margin-top: 6px; } .wp-picker-container input[type="text"].wp-color-picker { width: 4rem; font-size: 12px; font-family: monospace; margin: 0; padding: 0 5px; vertical-align: top; min-height: 32px; } .wp-color-picker::-webkit-input-placeholder { color: #646970; } .wp-color-picker::-moz-placeholder { color: #646970; } .wp-picker-container input[type="text"].iris-error { background-color: #fcf0f1; border-color: #d63638; color: #000; } .iris-picker .ui-square-handle:focus, .iris-picker .iris-strip .ui-slider-handle:focus { border-color: var(--wp-admin-theme-color, #3858e9); border-style: solid; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .iris-picker .iris-palette:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); } @media screen and (max-width: 782px) { .wp-picker-container input[type="text"].wp-color-picker { width: 5rem; font-size: 16px; line-height: 1.875; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-container input[type="text"].wp-color-picker { padding: 0 5px; } .wp-picker-input-wrap .button.wp-picker-default, .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-customizer .wp-picker-input-wrap .button.wp-picker-default, .wp-customizer .wp-picker-input-wrap .button.wp-picker-clear { padding: 0 8px; font-size: 14px; line-height: 2.14285714; /* 30px */ min-height: 32px; } .wp-picker-container .wp-color-result.button { padding: 0 40px 0 0; font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-customizer .wp-picker-container .wp-color-result.button { font-size: 14px; line-height: 2.14285714; /* 30px */ } .wp-picker-container .wp-color-result-text { padding: 0 14px; font-size: inherit; line-height: inherit; } .wp-customizer .wp-picker-container .wp-color-result-text { padding: 0 10px; } } css/code-editor-rtl.min.css000066600000002637152330733730011647 0ustar00/*! This file is auto-generated */ .wp-core-ui [class*=CodeMirror-lint-message],.wrap .CodeMirror-lint-marker-multiple,.wrap [class*=CodeMirror-lint-marker]{background-image:none}.wp-core-ui .CodeMirror-lint-marker-error,.wp-core-ui .CodeMirror-lint-marker-warning{cursor:help}.wrap .CodeMirror-lint-marker-multiple{position:absolute;top:0}.wrap [class*=CodeMirror-lint-marker]:before{font:normal 18px/1 dashicons;position:relative;top:-2px}.wp-core-ui [class*=CodeMirror-lint-message]:before{font:normal 16px/1 dashicons;right:16px;position:absolute}.wp-core-ui .CodeMirror-lint-message-error,.wp-core-ui .CodeMirror-lint-message-warning{box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 2px;padding:3px 28px 3px 12px}.wp-core-ui .CodeMirror-lint-message-warning{background-color:#fcf9e8;border-right:4px solid #dba617}.wp-core-ui .CodeMirror-lint-message-warning:before,.wrap .CodeMirror-lint-marker-warning:before{content:"\f534";color:#dba617}.wp-core-ui .CodeMirror-lint-message-error{background-color:#fcf0f1;border-right:4px solid #d63638}.wp-core-ui .CodeMirror-lint-message-error:before,.wrap .CodeMirror-lint-marker-error:before{content:"\f153";color:#d63638}.wp-core-ui .CodeMirror-lint-tooltip{background:0 0;border:none;border-radius:0;direction:rtl}.wrap .CodeMirror .CodeMirror-matchingbracket{background:rgba(219,166,23,.3);color:inherit}.CodeMirror{text-align:right}.wrap .CodeMirror .CodeMirror-linenumber{color:#646970}css/customize-widgets-rtl.css000066600000032432152330733730012351 0ustar00/*! This file is auto-generated */ .wp-full-overlay-sidebar { overflow: visible; } /** * Hide all sidebar sections by default, only show them (via JS) once the * preview loads and we know whether the sidebars are used in the template. */ .control-section.control-section-sidebar, .customize-control-sidebar_widgets label, .customize-control-sidebar_widgets .hide-if-js { /* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */ display: none; } .control-section.control-section-sidebar .accordion-section-content.ui-sortable { overflow: visible; } /* Note: widget-tops are more compact when (max-height: 700px) and (min-width: 981px). */ .customize-control-widget_form .widget-top { background: #fff; transition: opacity 0.5s; } .customize-control .widget-action { color: #787c82; } .customize-control .widget-top:hover .widget-action, .customize-control .widget-action:focus { color: #1d2327; } .customize-control-widget_form:not(.widget-rendered) .widget-top { opacity: 0.5; } .customize-control-widget_form .widget-control-save { display: none; } .customize-control-widget_form .spinner { visibility: hidden; margin-top: 0; } .customize-control-widget_form.previewer-loading .spinner { visibility: visible; } .customize-control-widget_form.widget-form-disabled .widget-content { opacity: 0.7; pointer-events: none; -webkit-user-select: none; user-select: none; } .customize-control-widget_form .widget { margin-bottom: 0; } .customize-control-widget_form.wide-widget-control .widget-inside { position: fixed; right: 299px; top: 25%; border: 1px solid #dcdcde; overflow: auto; } .customize-control-widget_form.wide-widget-control .widget-inside > .form { padding: 20px; } .customize-control-widget_form.wide-widget-control .widget-top { transition: background-color 0.4s; } .customize-control-widget_form.wide-widget-control.expanding .widget-top, .customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top { background-color: #dcdcde; } .widget-inside { padding: 1px 10px 10px; border-top: none; line-height: 1.23076923; } .customize-control-widget_form.expanded .widget-action .toggle-indicator:before { content: "\f142"; } .customize-control-widget_form.wide-widget-control .widget-action .toggle-indicator:before { content: "\f141"; } .customize-control-widget_form.wide-widget-control.expanded .widget-action .toggle-indicator:before { content: "\f139"; } .widget-title-action { cursor: pointer; } .widget-top, .customize-control-widget_form .widget .customize-control-title { cursor: move; } .control-section.accordion-section.highlighted > .accordion-section-title, .customize-control-widget_form.highlighted { outline: none; box-shadow: 0 0 2px rgba(79, 148, 212, 0.8); position: relative; z-index: 1; } #widget-customizer-control-templates { display: none; } /** * Widget reordering styles */ #customize-theme-controls .widget-reorder-nav { display: none; float: left; background-color: #f6f7f7; } .move-widget:before { content: "\f504"; content: "\f504" / ''; } #customize-theme-controls .move-widget-area { display: none; background: #fff; border: 1px solid #c3c4c7; border-top: none; cursor: auto; } #customize-theme-controls .reordering .move-widget-area.active { display: block; } #customize-theme-controls .move-widget-area .description { margin: 0; padding: 15px 20px; font-weight: 400; } #customize-theme-controls .widget-area-select { margin: 0; padding: 0; list-style: none; } #customize-theme-controls .widget-area-select li { position: relative; margin: 0; padding: 13px 42px 15px 15px; color: #50575e; border-top: 1px solid #c3c4c7; cursor: pointer; -webkit-user-select: none; user-select: none; } #customize-theme-controls .widget-area-select li:before { display: none; content: "\f147"; content: "\f147" / ''; position: absolute; top: 12px; right: 10px; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #customize-theme-controls .widget-area-select li:last-child { border-bottom: 1px solid #c3c4c7; } #customize-theme-controls .widget-area-select .selected { color: #fff; background: var(--wp-admin-theme-color); } #customize-theme-controls .widget-area-select .selected:before { display: block; } #customize-theme-controls .move-widget-actions { text-align: left; padding: 12px; } #customize-theme-controls .reordering .widget-title-action { display: none; } #customize-theme-controls .reordering .widget-reorder-nav { display: block; } /* Text Widget */ .wp-customizer div.mce-inline-toolbar-grp, .wp-customizer div.mce-tooltip { z-index: 500100 !important; } .wp-customizer .ui-autocomplete.wplink-autocomplete { z-index: 500110; /* originally 100110, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-backdrop { z-index: 500100; /* originally 100100, but z-index of .wp-full-overlay is 500000 */ } .wp-customizer #wp-link-wrap { z-index: 500105; /* originally 100105, but z-index of .wp-full-overlay is 500000 */ } /** * Styles for new widget addition panel */ /* override widgets admin page rules in wp-admin/css/widgets.css */ #widgets-left #available-widgets .widget { float: none !important; width: auto !important; } /* Keep rule that is no longer necessary on widgets.php. */ #available-widgets .widget-action { display: none; } .ios #available-widgets { transition: right 0s; } #available-widgets .widget-tpl:hover, #available-widgets .widget-tpl.selected { background: #f6f7f7; border-bottom-color: #c3c4c7; color: var(--wp-admin-theme-color);; border-right: 4px solid var(--wp-admin-theme-color); } #customize-controls .widget-title h3 { font-size: 1em; } #available-widgets .widget-title h3 { padding: 0 0 5px; font-size: 14px; } #available-widgets .widget .widget-description { padding: 0; color: #646970; } @media (prefers-reduced-motion: no-preference) { #customize-preview { transition: all 0.2s; } } body.adding-widget #available-widgets { right: 0; visibility: visible; } body.adding-widget .wp-full-overlay-main { right: 300px; } body.adding-widget #customize-preview { opacity: 0.4; } /** * Widget Icon styling * No plurals in naming. * Ordered from lowest to highest specificity. */ #available-widgets .widget-title { position: relative; } #available-widgets .widget-title:before { content: "\f132"; content: "\f132" / ''; position: absolute; top: -3px; left: 100%; margin-left: 20px; width: 20px; height: 20px; color: #2c3338; font: normal 20px/1 dashicons; text-align: center; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* dashicons-smiley */ #available-widgets [class*="easy"] .widget-title:before { content: "\f328"; content: "\f328" / ''; top: -4px; } /* dashicons-star-filled */ #available-widgets [class*="super"] .widget-title:before, #available-widgets [class*="like"] .widget-title:before { content: "\f155"; content: "\f155" / ''; top: -4px; } /* dashicons-wordpress */ #available-widgets [class*="meta"] .widget-title:before { content: "\f120"; content: "\f120" / ''; } /* dashicons-archive */ #available-widgets [class*="archives"] .widget-title:before { content: "\f480"; content: "\f480" / ''; top: -4px; } /* dashicons-category */ #available-widgets [class*="categor"] .widget-title:before { content: "\f318"; content: "\f318" / ''; top: -4px; } /* dashicons-admin-comments */ #available-widgets [class*="comment"] .widget-title:before, #available-widgets [class*="testimonial"] .widget-title:before, #available-widgets [class*="chat"] .widget-title:before { content: "\f101"; content: "\f101" / ''; } /* dashicons-admin-post */ #available-widgets [class*="post"] .widget-title:before { content: "\f109"; content: "\f109" / ''; } /* dashicons-admin-page */ #available-widgets [class*="page"] .widget-title:before { content: "\f105"; content: "\f105" / ''; } /* dashicons-text */ #available-widgets [class*="text"] .widget-title:before { content: "\f478"; content: "\f478" / ''; } /* dashicons-admin-links */ #available-widgets [class*="link"] .widget-title:before { content: "\f103"; content: "\f103" / ''; } /* dashicons-search */ #available-widgets [class*="search"] .widget-title:before { content: "\f179"; content: "\f179" / ''; } /* dashicons-menu */ #available-widgets [class*="menu"] .widget-title:before, #available-widgets [class*="nav"] .widget-title:before { content: "\f333"; content: "\f333" / ''; } /* dashicons-tagcloud */ #available-widgets [class*="tag"] .widget-title:before { content: "\f479"; content: "\f479" / ''; } /* dashicons-rss */ #available-widgets [class*="rss"] .widget-title:before { content: "\f303"; content: "\f303" / ''; top: -6px; } /* dashicons-calendar */ #available-widgets [class*="event"] .widget-title:before, #available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; content: "\f145" / ''; top: -4px; } /* dashicons-format-image */ #available-widgets [class*="image"] .widget-title:before, #available-widgets [class*="photo"] .widget-title:before, #available-widgets [class*="slide"] .widget-title:before, #available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; content: "\f128" / ''; } /* dashicons-format-gallery */ #available-widgets [class*="album"] .widget-title:before, #available-widgets [class*="galler"] .widget-title:before { content: "\f161"; content: "\f161" / ''; } /* dashicons-format-video */ #available-widgets [class*="video"] .widget-title:before, #available-widgets [class*="tube"] .widget-title:before { content: "\f126"; content: "\f126" / ''; } /* dashicons-format-audio */ #available-widgets [class*="music"] .widget-title:before, #available-widgets [class*="radio"] .widget-title:before, #available-widgets [class*="audio"] .widget-title:before { content: "\f127"; content: "\f127" / ''; } /* dashicons-admin-users */ #available-widgets [class*="login"] .widget-title:before, #available-widgets [class*="user"] .widget-title:before, #available-widgets [class*="member"] .widget-title:before, #available-widgets [class*="avatar"] .widget-title:before, #available-widgets [class*="subscriber"] .widget-title:before, #available-widgets [class*="profile"] .widget-title:before, #available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; content: "\f110" / ''; } /* dashicons-cart */ #available-widgets [class*="commerce"] .widget-title:before, #available-widgets [class*="shop"] .widget-title:before, #available-widgets [class*="cart"] .widget-title:before { content: "\f174"; content: "\f174" / ''; top: -4px; } /* dashicons-shield */ #available-widgets [class*="secur"] .widget-title:before, #available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; content: "\f332" / ''; } /* dashicons-chart-bar */ #available-widgets [class*="analytic"] .widget-title:before, #available-widgets [class*="stat"] .widget-title:before, #available-widgets [class*="poll"] .widget-title:before { content: "\f185"; content: "\f185" / ''; } /* dashicons-feedback */ #available-widgets [class*="form"] .widget-title:before { content: "\f175"; content: "\f175" / ''; } /* dashicons-email-alt */ #available-widgets [class*="subscribe"] .widget-title:before, #available-widgets [class*="news"] .widget-title:before, #available-widgets [class*="contact"] .widget-title:before, #available-widgets [class*="mail"] .widget-title:before { content: "\f466"; content: "\f466" / ''; } /* dashicons-share */ #available-widgets [class*="share"] .widget-title:before, #available-widgets [class*="socia"] .widget-title:before { content: "\f237"; content: "\f237" / ''; } /* dashicons-translation */ #available-widgets [class*="lang"] .widget-title:before, #available-widgets [class*="translat"] .widget-title:before { content: "\f326"; content: "\f326" / ''; } /* dashicons-location-alt */ #available-widgets [class*="locat"] .widget-title:before, #available-widgets [class*="map"] .widget-title:before { content: "\f231"; content: "\f231" / ''; } /* dashicons-download */ #available-widgets [class*="download"] .widget-title:before { content: "\f316"; content: "\f316" / ''; } /* dashicons-cloud */ #available-widgets [class*="weather"] .widget-title:before { content: "\f176"; content: "\f176" / ''; top: -4px; } /* dashicons-facebook */ #available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; content: "\f304" / ''; } /* dashicons-twitter */ #available-widgets [class*="tweet"] .widget-title:before, #available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; content: "\f301" / ''; } @media screen and (max-height: 700px) and (min-width: 981px) { /* Compact widget-tops on smaller laptops, but not tablets. See ticket #27112#comment:4 */ .customize-control-widget_form { margin-bottom: 0; } .widget-top { box-shadow: none; margin-top: -1px; } .widget-top:hover { position: relative; z-index: 1; } .last-widget { margin-bottom: 15px; } .widget-title h3 { padding: 13px 15px; } .widget-top .widget-action { padding: 8px 10px; } .widget-reorder-nav span { height: 39px; } .widget-reorder-nav span:before { line-height: 39px; } /* Compact the move widget areas. */ #customize-theme-controls .widget-area-select li { padding: 9px 42px 11px 15px; } #customize-theme-controls .widget-area-select li:before { top: 8px; } } css/common.css000066600000235702152330733730007361 0ustar00/* 2 column liquid layout */ #wpwrap { height: auto; min-height: 100%; width: 100%; position: relative; -webkit-font-smoothing: subpixel-antialiased; } #wpcontent { height: 100%; padding-left: 20px; } #wpcontent, #wpfooter { margin-left: 160px; } .folded #wpcontent, .folded #wpfooter { margin-left: 36px; } #wpbody-content { padding-bottom: 65px; float: left; width: 100%; overflow: visible; } /* inner 2 column liquid layout */ .inner-sidebar { float: right; clear: right; display: none; width: 281px; position: relative; } .columns-2 .inner-sidebar { margin-right: auto; width: 286px; display: block; } .inner-sidebar #side-sortables, .columns-2 .inner-sidebar #side-sortables { min-height: 300px; width: 280px; padding: 0; } .has-right-sidebar .inner-sidebar { display: block; } .has-right-sidebar #post-body { float: left; clear: left; width: 100%; margin-right: -2000px; } .has-right-sidebar #post-body-content { margin-right: 300px; float: none; width: auto; } /* 2 columns main area */ #col-left { float: left; width: 35%; } #col-right { float: right; width: 65%; } #col-left .col-wrap { padding: 0 6px 0 0; } #col-right .col-wrap { padding: 0 0 0 6px; } /* utility classes */ .alignleft { float: left; } .alignright { float: right; } .textleft { text-align: left; } .textright { text-align: right; } .clear { clear: both; } /* modern clearfix */ .wp-clearfix:after { content: ""; display: table; clear: both; } /* Hide visually but not from screen readers */ .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible { border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; /* Many screen reader and browser combinations announce broken words as they would appear visually. */ word-wrap: normal !important; word-break: normal !important; } .button .screen-reader-text { height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ } .screen-reader-text + .dashicons-external { margin-top: -1px; margin-left: 2px; text-decoration: none; } .screen-reader-shortcut { position: absolute; top: -1000em; left: 6px; height: auto; width: auto; display: block; font-size: 14px; font-weight: 600; padding: 15px 23px 14px; /* Background and color set to prevent false positives in automated accessibility tests. */ background: #ffffff; color: var(--wp-admin-theme-color, #3858e9); z-index: 100000; line-height: normal; } .screen-reader-shortcut:focus { top: -25px; /* Overrides a:focus in the admin. See ticket #56789. */ color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); text-decoration: none; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .hidden, .js .closed .inside, .js .hide-if-js, .no-js .hide-if-no-js, .js.wp-core-ui .hide-if-js, .js .wp-core-ui .hide-if-js, .no-js.wp-core-ui .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js { display: none; } /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */ .widget-top, .menu-item-handle, .widget-inside, #menu-settings-column .accordion-container, #menu-management .menu-edit, .manage-menus, table.widefat, .stuffbox, p.popular-tags, .widgets-holder-wrap, .wp-editor-container, .popular-tags, .feature-filter, .comment-ays { border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } table.widefat, .wp-editor-container, .stuffbox, p.popular-tags, .widgets-holder-wrap, .popular-tags, .feature-filter, .comment-ays { background: #fff; } /* general */ html, body { height: 100%; margin: 0; padding: 0; } body { background: #f0f0f1; color: #3c434a; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4em; min-width: 600px; } body.iframe { min-width: 0; padding-top: 1px; } body.modal-open { overflow: hidden; } body.mobile.modal-open #wpwrap { overflow: hidden; position: fixed; height: 100%; } iframe, img { border: 0; } td { font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; } /* Any change to the default link style must be applied to button-link too. */ a { color: #2271b1; transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } a, div { outline: 0; } a:hover, a:active { color: #135e96; } a:focus, a:focus .media-icon img, a:focus .plugin-icon, .wp-person a:focus .gravatar { color: #043959; border-radius: 2px; box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #adminmenu a:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; outline-offset: -1px; } .screen-reader-text:focus { box-shadow: none; outline: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } p, .wp-die-message { font-size: 13px; line-height: 1.5; margin: 1em 0; } blockquote { margin: 1em; } li, dd { margin-bottom: 6px; } h1, h2, h3, h4, h5, h6 { display: block; font-weight: 600; } h1 { color: #1d2327; font-size: 2em; margin: .67em 0; } h2, h3 { color: #1d2327; font-size: 1.3em; margin: 1em 0; } .update-core-php h2 { margin-top: 4em; } .update-php h2, .update-messages h2, h4 { font-size: 1em; margin: 1.33em 0; } h5 { font-size: 0.83em; margin: 1.67em 0; } h6 { font-size: 0.67em; margin: 2.33em 0; } ul, ol { padding: 0; } ul { list-style: none; } ol { list-style-type: decimal; margin-left: 2em; } ul.ul-disc { list-style: disc outside; } ul.ul-square { list-style: square outside; } ol.ol-decimal { list-style: decimal outside; } ul.ul-disc, ul.ul-square, ol.ol-decimal { margin-left: 1.8em; } ul.ul-disc > li, ul.ul-square > li, ol.ol-decimal > li { margin: 0 0 0.5em; } /* rtl:ignore */ .ltr { direction: ltr; } /* rtl:ignore */ .code, code { font-family: Consolas, Monaco, monospace; direction: ltr; unicode-bidi: embed; } kbd, code { padding: 3px 5px 2px; margin: 0 1px; background: #f0f0f1; background: rgba(0, 0, 0, 0.07); font-size: 13px; } .subsubsub { list-style: none; margin: 8px 0 0; padding: 0; font-size: 13px; float: left; color: #646970; } .subsubsub a { line-height: 2; padding: .2em; text-decoration: none; } .subsubsub a .count, .subsubsub a.current .count { color: #50575e; /* #f1f1f1 background */ font-weight: 400; } .subsubsub a.current { font-weight: 600; border: none; } .subsubsub li { display: inline-block; margin: 0; padding: 0; white-space: nowrap; } /* .widefat - main style for tables */ .widefat { border-spacing: 0; width: 100%; clear: both; margin: 0; } .widefat * { word-wrap: break-word; } .widefat a, .widefat button.button-link { text-decoration: none; } .widefat td, .widefat th { padding: 8px 10px; } .widefat thead th, .widefat thead td { border-bottom: 1px solid #c3c4c7; } .widefat tfoot th, .widefat tfoot td { border-top: 1px solid #c3c4c7; border-bottom: none; } .widefat .no-items td { border-bottom-width: 0; } .widefat td { vertical-align: top; } .widefat td, .widefat td p, .widefat td ol, .widefat td ul { font-size: 13px; line-height: 1.5em; } .widefat th, .widefat thead td, .widefat tfoot td { text-align: left; line-height: 1.3em; font-size: 14px; } .widefat th input, .updates-table td input, .widefat thead td input, .widefat tfoot td input { margin: 0 0 0 8px; padding: 0; vertical-align: text-top; } .widefat .check-column { width: 2.2em; padding: 6px 0 25px; vertical-align: top; } .widefat tbody th.check-column { padding: 9px 0 22px; } .widefat thead td.check-column, .widefat tbody th.check-column, .updates-table tbody td.check-column, .widefat tfoot td.check-column { padding: 11px 0 0 3px; } .widefat thead td.check-column, .widefat tfoot td.check-column { padding-top: 4px; vertical-align: middle; } .update-php div.updated, .update-php div.error { margin-left: 0; } .js-update-details-toggle .dashicons { text-decoration: none; } .js-update-details-toggle[aria-expanded="true"] .dashicons::before { content: "\f142"; content: "\f142" / ''; } .no-js .widefat thead .check-column input, .no-js .widefat tfoot .check-column input { display: none; } .widefat .num, .column-comments, .column-links, .column-posts { text-align: center; } .widefat th#comments { vertical-align: middle; } .wrap { margin: 10px 20px 0 2px; } .wrap > h2:first-child, /* Back-compat for pre-4.4 */ .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ .postbox .inside h2, /* Back-compat for pre-4.4 */ .wrap h1 { font-size: 23px; font-weight: 400; margin: 0; padding: 9px 0 4px; line-height: 1.3; } .wrap h1.wp-heading-inline { display: inline-block; margin-right: 5px; } .wp-header-end { visibility: hidden; margin: -2px 0 0; } .subtitle { margin: 0; padding-left: 25px; color: #50575e; font-size: 14px; font-weight: 400; line-height: 1; } .subtitle strong { word-break: break-all; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { display: inline-block; position: relative; box-sizing: border-box; cursor: pointer; white-space: nowrap; text-decoration: none; text-shadow: none; top: -3px; margin-left: 4px; border: 1px solid #2271b1; border-radius: 2px; background: transparent; font-size: 13px; font-weight: 500; min-height: 32px; line-height: 2.30769231; /* 30px for 32px height */ color: #2271b1; /* use the standard color used for buttons */ padding: 0 12px; -webkit-appearance: none; } .wrap .wp-heading-inline + .page-title-action { margin-left: 0; } .wrap .add-new-h2:hover, /* deprecated */ .wrap .page-title-action:hover { border-color: #0a4b78; color: #0a4b78; } /* lower specificity: color needs to be overridden by :hover and :active */ .page-title-action:focus { color: #0a4b78; } /* Dashicon for language options on General Settings and Profile screens */ .form-table th label[for="locale"] .dashicons, .form-table th label[for="WPLANG"] .dashicons { margin-left: 5px; } .wrap .page-title-action:focus { border-color: #3582c4; box-shadow: 0 0 0 1px #3582c4; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .wrap h1.long-header { padding-right: 0; } .wp-dialog { background-color: #fff; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .sorthelper { background-color: #c5d9ed; } .ac_match, .subsubsub a.current { color: #000; } .striped > tbody > :nth-child(odd), ul.striped > :nth-child(odd), .alternate { background-color: #f6f7f7; } .bar { background-color: #f0f0f1; border-right-color: var(--wp-admin-theme-color); } /* Helper classes for plugins to leverage the active WordPress color scheme */ .highlight { background-color: rgba(var(--wp-admin-theme-color--rgb), 0.08); color: #3c434a; } .wp-ui-primary { color: #fff; background-color: #2c3338; } .wp-ui-text-primary { color: #2c3338; } .wp-ui-highlight { color: #fff; background-color: #2271b1; } .wp-ui-text-highlight { color: #2271b1; } .wp-ui-notification { color: #fff; background-color: #d63638; } .wp-ui-text-notification { color: #d63638; } .wp-ui-text-icon { color: #8c8f94; /* same as new icons */ } /* For emoji replacement images */ img.emoji { display: inline !important; border: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; box-shadow: none !important; } /*------------------------------------------------------------------------------ 1.0 - Text Styles ------------------------------------------------------------------------------*/ .widget .widget-top, .postbox .hndle, .stuffbox .hndle, .control-section .accordion-section-title, .sidebar-name, #nav-menu-header, #nav-menu-footer, .menu-item-handle, .checkbox, .side-info, #your-profile #rich_editing, .widefat thead th, .widefat thead td, .widefat tfoot th, .widefat tfoot td { line-height: 1.4em; } .widget .widget-top, .menu-item-handle { background: #f6f7f7; color: #1d2327; } .stuffbox .hndle { border-bottom: 1px solid #c3c4c7; } .quicktags { background-color: #c3c4c7; color: #000; font-size: 12px; } .icon32 { display: none; } /* @todo can we combine these into a class or use an existing dashicon one? */ .welcome-panel .welcome-panel-close:before, .tagchecklist .ntdelbutton .remove-tag-icon:before, #bulk-titles .ntdelbutton:before, .notice-dismiss:before { background: none; color: #1e1e1e; content: "\f335"; content: "\f335" / ''; display: block; font: normal 20px/1 dashicons; height: 1em; text-align: center; width: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .welcome-panel .welcome-panel-close:before { margin: 0; } .tagchecklist .ntdelbutton .remove-tag-icon:before { margin-left: 2px; border-radius: 50%; color: var(--wp-admin-theme-color, #3858e9); /* vertically center the icon cross browsers */ line-height: 1.1; } .tagchecklist .ntdelbutton:focus { outline: 0; } .tagchecklist .ntdelbutton:hover .remove-tag-icon:before, .tagchecklist .ntdelbutton:focus .remove-tag-icon:before, #bulk-titles .ntdelbutton:hover:before, #bulk-titles .ntdelbutton:focus:before { color: #d63638; } .tagchecklist .ntdelbutton:focus .remove-tag-icon:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .key-labels label { line-height: 24px; } strong, b { font-weight: 600; } .pre { /* https://developer.mozilla.org/en-US/docs/CSS/white-space */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* IE 5.5 - 7 */ } .howto { color: #646970; display: block; } p.install-help { margin: 8px 0; font-style: italic; } .no-break { white-space: nowrap; } hr { border: 0; border-top: 1px solid #dcdcde; border-bottom: 1px solid #f6f7f7; } .row-actions span.delete a, .row-actions span.trash a, .row-actions span.spam a, .plugins a.delete, #all-plugins-table .plugins a.delete, #search-plugins-table .plugins a.delete, .submitbox .submitdelete, #media-items a.delete, #media-items a.delete-permanently, #nav-menu-footer .menu-delete, #delete-link a.delete, a#remove-post-thumbnail, .privacy_requests .remove-personal-data .remove-personal-data-handle { color: #b32d2e; } abbr.required, span.required, .file-error, .row-actions .delete a:hover, .row-actions .trash a:hover, .row-actions .spam a:hover, .plugins a.delete:hover, #all-plugins-table .plugins a.delete:hover, #search-plugins-table .plugins a.delete:hover, .submitbox .submitdelete:hover, #media-items a.delete:hover, #media-items a.delete-permanently:hover, #nav-menu-footer .menu-delete:hover, #delete-link a.delete:hover, a#remove-post-thumbnail:hover, .privacy_requests .remove-personal-data .remove-personal-data-handle:hover { color: #b32d2e; border: none; } .application-password-display .success { color: #007017; margin-left: 0.5rem; } /*------------------------------------------------------------------------------ 3.0 - Actions ------------------------------------------------------------------------------*/ #major-publishing-actions { padding: 10px; clear: both; border-top: 1px solid #dcdcde; background: #f6f7f7; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; } #delete-action { line-height: 2.30769231; /* 30px */ } #delete-link a { text-decoration: none; } #publishing-action { text-align: right; margin-left: auto; line-height: 1.9; } #publishing-action .spinner { float: none; } #misc-publishing-actions { padding: 6px 0 0; } .misc-pub-section { padding: 6px 10px 8px; } .word-wrap-break-word, .misc-pub-filename { word-wrap: break-word; } #minor-publishing-actions { padding: 10px 10px 0; text-align: right; } #save-post { float: left; } .preview { float: right; } #sticky-span { margin-left: 18px; } .approve, .unapproved .unapprove { display: none; } .unapproved .approve, .spam .approve, .trash .approve { display: inline; } td.action-links, th.action-links { text-align: right; } #misc-publishing-actions .notice { margin-left: 10px; margin-right: 10px; } /* Filter bar */ .wp-filter { display: inline-block; position: relative; box-sizing: border-box; margin: 12px 0 25px; padding: 0 10px; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); border: 1px solid #c3c4c7; background: #fff; color: #50575e; font-size: 13px; } .wp-filter a { text-decoration: none; } .filter-count { display: inline-block; vertical-align: middle; min-width: 4em; } .title-count, .filter-count .count { display: inline-block; position: relative; top: -1px; padding: 4px 10px; border-radius: 30px; background: #646970; color: #fff; font-size: 14px; font-weight: 600; } /* not a part of filter bar, but derived from it, so here for now */ .title-count { display: inline; top: -3px; margin-left: 5px; margin-right: 20px; } .filter-items { float: left; } .filter-links { display: inline-block; margin: 0; } .filter-links li { display: inline-block; margin: 0; } .filter-links li > a { display: inline-block; margin: 0 10px; padding: 15px 0; border-bottom: 4px solid #fff; color: #646970; cursor: pointer; } .filter-links .current { box-shadow: none; border-bottom: 4px solid var(--wp-admin-theme-color); color: #1d2327; } .filter-links li > a:hover, .filter-links li > a:focus, .show-filters .filter-links a.current:hover, .show-filters .filter-links a.current:focus { color: var(--wp-admin-theme-color); } .wp-filter .search-form { float: right; display: flex; align-items: center; column-gap: .5rem; } .wp-filter .search-form input[type="search"] { width: 280px; max-width: 100%; } .wp-filter .search-form select { margin: 0; } .wp-filter .search-form input[type="search"] { min-height: 32px; padding: 0 8px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 32px; line-height: 2.14285714; /* 30px for 32px height with 14px font */ padding: 0 24px 0 8px; } .wp-filter .button { min-height: 32px; line-height: 2.30769231; /* 30px for 32px height with 13px font */ padding: 0 12px; } /* Use flexbox only on the plugins install page and upload page. The `filter-links` and search form children will become flex items. */ .plugin-install-php .wp-filter, .upload-php .wp-filter { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; } .wp-filter .search-form.search-plugins select, .wp-filter .search-form.search-plugins .wp-filter-search, .no-js .wp-filter .search-form.search-plugins .button { display: inline-block; vertical-align: top; } .wp-filter .button.drawer-toggle { margin: 10px 9px 0; padding: 0 10px 0 6px; border-color: transparent; background-color: transparent; color: #646970; vertical-align: baseline; box-shadow: none; } .wp-filter .drawer-toggle:before { content: "\f111"; content: "\f111" / ''; margin: 0 5px 0 0; color: #646970; font: normal 16px/1 dashicons; vertical-align: text-bottom; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .wp-filter .button.drawer-toggle:hover, .wp-filter .drawer-toggle:hover:before, .wp-filter .button.drawer-toggle:focus, .wp-filter .drawer-toggle:focus:before { background-color: transparent; color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:hover, .wp-filter .button.drawer-toggle:focus:active { border-color: transparent; } .wp-filter .button.drawer-toggle:focus { border-color: var(--wp-admin-theme-color); } .wp-filter .button.drawer-toggle:active { background: transparent; box-shadow: none; transform: none; } .wp-filter .drawer-toggle.current:before { color: #fff; } .filter-drawer, .wp-filter .favorites-form { display: none; margin: 0 -10px 0 -20px; padding: 20px; border-top: 1px solid #f0f0f1; background: #f6f7f7; overflow: hidden; } .wp-filter .favorites-form .favorites-username { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; } .wp-filter .favorites-form .favorites-username input { margin: 0; } .show-filters .filter-drawer, .show-favorites-form .favorites-form { display: block; } .show-filters .filter-links a.current { border-bottom: none; } .show-filters .wp-filter .button.drawer-toggle { border-radius: 2px; background: #646970; color: #fff; } .show-filters .wp-filter .drawer-toggle:hover, .show-filters .wp-filter .drawer-toggle:focus { background: var(--wp-admin-theme-color); } .show-filters .wp-filter .drawer-toggle:before { color: #fff; } .filter-group { box-sizing: border-box; position: relative; float: left; margin: 0 1% 0 0; padding: 20px 10px 10px; width: 24%; background: #fff; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .filter-group legend { position: absolute; top: 10px; display: block; margin: 0; padding: 0; font-size: 1em; font-weight: 600; } .filter-drawer .filter-group-feature { margin: 28px 0 0; list-style-type: none; font-size: 12px; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 1.4; } .filter-drawer .filter-group-feature input { position: absolute; margin: 0; } .filter-group .filter-group-feature label { display: block; margin: 14px 0 14px 23px; } .filter-drawer .buttons { clear: both; margin-bottom: 20px; } .filter-drawer .filter-group + .buttons { margin-bottom: 0; padding-top: 20px; } .filter-drawer .buttons .button span { display: inline-block; opacity: 0.8; font-size: 12px; text-indent: 10px; } .wp-filter .button.clear-filters { display: none; margin-left: 10px; } .wp-filter .button-link.edit-filters { padding: 0 5px; line-height: 2.2; } .filtered-by { display: none; margin: 0; } .filtered-by > span { font-weight: 600; } .filtered-by a { margin-left: 10px; } .filtered-by .tags { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; } .filtered-by .tag { padding: 4px 8px; border: 1px solid #dcdcde; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; font-size: 11px; } .filters-applied .filter-group, .filters-applied .filter-drawer .buttons, .filters-applied .filter-drawer br { display: none; } .filters-applied .filtered-by { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; } .filters-applied .filter-drawer { padding: 20px; } .show-filters .favorites-form, .show-filters .content-filterable, .show-filters.filters-applied.loading-content .content-filterable, .loading-content .content-filterable, .error .content-filterable { display: none; } .show-filters.filters-applied .content-filterable { display: block; } .loading-content .spinner { display: block; margin: 40px auto 0; float: none; } @media only screen and (max-width: 1138px) { .wp-filter .search-form { margin: 11px 0; } } @media only screen and (max-width: 1250px) { .wp-filter:has(.plugin-install-search) .search-form { margin: 11px 0; } } @media only screen and (max-width: 1120px) { .filter-drawer { border-bottom: 1px solid #f0f0f1; } .filter-group { margin-bottom: 0; margin-top: 5px; width: 100%; } .filter-group li { margin: 10px 0; } } @media only screen and (max-width: 1000px) { .filter-items { float: none; } .wp-filter .media-toolbar-primary, .wp-filter .media-toolbar-secondary, .wp-filter .search-form { float: none; /* Remove float from media-views.css */ position: relative; max-width: 100%; } .wp-filter .search-form { margin: 11px 0; flex-wrap: wrap; row-gap: 10px; } } @media only screen and (max-width: 782px) { .filter-group li { padding: 0; width: 50%; } .wp-filter .search-form input[type="search"] { min-height: 40px; padding: 0 12px; } .wp-filter .search-form select, .wp-filter .filter-items select { min-height: 40px; padding: 0 24px 0 12px; } } @media only screen and (max-width: 320px) { .filter-count { display: none; } .wp-filter .drawer-toggle { margin: 10px 0; } .filter-group li, .wp-filter .search-form input[type="search"] { width: 100%; } } /*------------------------------------------------------------------------------ 4.0 - Notifications ------------------------------------------------------------------------------*/ .notice, div.updated, div.error { background: #fff; border: none; border-left: 4px solid #c3c4c7; box-shadow: none; margin: 5px 15px 2px; padding: 8px 12px; } div[class="update-message"] { /* back-compat for pre-4.6 */ padding: 0.5em 12px 0.5em 0; } .notice p, .notice-title, div.updated p, div.error p, .form-table td .notice p { margin: 0.5em 0; padding: 0; font-size: 13px; line-height: 1.54; color: #1e1e1e; } div.notice a, div.error a, div.updated a { color: var(--wp-admin-theme-color-darker-10); text-decoration: underline; } div.notice a:hover, div.error a:hover, div.updated a:hover { color: var(--wp-admin-theme-color-darker-20); } div.notice a:focus, div.error a:focus, div.updated a:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); outline: 2px solid transparent; border-radius: 2px; } .notice-alt { box-shadow: none; } .notice-large { padding: 10px 20px; } .notice-title { display: inline-block; color: #1d2327; font-size: 18px; } .wp-core-ui .notice.is-dismissible { padding-right: 48px; position: relative; } .notice-dismiss { position: absolute; top: 12px; right: 12px; border: none; margin: 0; padding: 0; background: none; color: #1e1e1e; cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 2px; } .notice-dismiss:hover:before, .notice-dismiss:active:before { color: #1e1e1e; opacity: 0.7; } .notice-dismiss:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .notice-dismiss:focus:before { color: #1e1e1e; } .notice-success, div.updated { border-left-color: #4ab866; background-color: #eff9f1; } .notice-success.notice-alt, div.updated.notice-alt { background-color: #eff9f1; } .notice-warning { border-left-color: #f0b849; background-color: #fef8ee; } .notice-warning.notice-alt { background-color: #fef8ee; } .notice-error, div.error { border-left-color: #cc1818; background-color: #fcf0f0; } .notice-error.notice-alt, div.error.notice-alt { background-color: #fcf0f0; } .notice-info { border-left-color: #3858e9; background-color: #fff; } .notice-info.notice-alt { background-color: #fff; } #plugin-information-footer .update-now:not(.button-disabled):before { color: #d63638; content: "\f463"; content: "\f463" / ''; display: inline-block; font: normal 20px/1 dashicons; margin: -3px 5px 0 -2px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: middle; } #plugin-information-footer .notice { margin-top: -5px; } .update-message p:before, .updating-message p:before, .updated-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activating-message:before, .button.activated-message:before { display: inline-block; font: normal 20px/1 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; vertical-align: top; } .wrap .notice, .wrap div.updated, .wrap div.error, .media-upload-form .notice, .media-upload-form div.error { margin: 5px 0 15px; } .wrap #templateside .notice { display: block; margin: 0; padding: 5px 8px; font-weight: 600; text-decoration: none; } .wrap #templateside span.notice { margin-left: -12px; } #templateside li.notice a { padding: 0; } /* Update icon. */ .update-message p:before, .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before { color: #d63638; content: "\f463"; content: "\f463" / ''; } /* Spins the update icon. */ .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: rotation 2s infinite linear; } @media (prefers-reduced-motion: reduce) { .updating-message p:before, .import-php .updating-message:before, .button.updating-message:before, .button.installing:before, .button.activating-message:before, .plugins .column-auto-updates .dashicons-update.spin, .theme-overlay .theme-autoupdate .dashicons-update.spin { animation: none; } } .theme-overlay .theme-autoupdate .dashicons-update.spin { margin-right: 3px; } /* Updated icon (check mark). */ .updated-message p:before, .installed p:before, .button.updated-message:before, .button.activated-message:before { color: #68de7c; content: "\f147"; content: "\f147" / ''; } /* Error icon. */ .update-message.notice-error p:before { color: #d63638; content: "\f534"; content: "\f534" / ''; } .wrap .notice p:before, .import-php .updating-message:before { margin-right: 6px; } .import-php .updating-message:before { vertical-align: bottom; } #update-nag, .update-nag { display: inline-block; line-height: 1.4; padding: 11px 15px; font-size: 14px; margin: 25px 20px 0 2px; } ul#dismissed-updates { display: none; } #dismissed-updates li > p { margin-top: 0; } #dismiss, #undismiss { margin-left: 0.5em; } form.upgrade { margin-top: 8px; } form.upgrade .hint { font-style: italic; font-size: 85%; margin: -0.5em 0 2em; } .update-php .spinner { float: none; margin: -4px 0; } h2.wp-current-version { margin-bottom: .3em; } p.update-last-checked { margin-top: 0; } p.auto-update-status { margin-top: 2em; line-height: 1.8; } #ajax-loading, .ajax-loading, .ajax-feedback, .imgedit-wait-spin, .list-ajax-loading { /* deprecated */ visibility: hidden; } #ajax-response.alignleft { margin-left: 2em; } .button.updating-message:before, .button.updated-message:before, .button.installed:before, .button.installing:before, .button.activated-message:before, .button.activating-message:before { margin: 0 5px 0 -2px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button { padding: 0 14px; line-height: 2.71428571; /* 38px */ font-size: 14px; vertical-align: middle; min-height: 40px; margin-bottom: 4px; } #plugin-information-footer .button.installed:before, #plugin-information-footer .button.installing:before, #plugin-information-footer .button.updating-message:before, #plugin-information-footer .button.updated-message:before, #plugin-information-footer .button.activated-message:before, #plugin-information-footer .button.activating-message:before { margin: 0 5px 0 -2px; line-height: 1.9; /* 38px (20px * 1.9) - matches button */ vertical-align: top; } #plugin-information-footer .button.update-now.updating-message:before { margin: 0 5px 0 -2px; } .button-primary.updating-message:before, .button-primary.activating-message:before { color: #fff; } .button-primary.updated-message:before, .button-primary.activated-message:before { color: #9ec2e6; } .button.updated-message, .button.activated-message { transition-property: border, background, color; transition-duration: .05s; transition-timing-function: ease-in-out; } /* @todo: this does not need its own section anymore */ /*------------------------------------------------------------------------------ 6.0 - Admin Header ------------------------------------------------------------------------------*/ #adminmenu a, #taglist a, #catlist a { text-decoration: none; } /*------------------------------------------------------------------------------ 6.1 - Screen Options Tabs ------------------------------------------------------------------------------*/ #screen-options-wrap, #contextual-help-wrap { margin: 0; padding: 8px 20px 12px; position: relative; } #contextual-help-wrap { overflow: auto; margin-left: 0; } #screen-meta-links { float: right; margin: 0 20px 0 0; } /* screen options and help tabs revert */ #screen-meta { display: none; margin: 0 20px -1px 0; position: relative; background-color: #fff; border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 0 0 transparent; } #screen-options-link-wrap, #contextual-help-link-wrap { float: left; margin: 0 0 0 6px; } #screen-meta-links .screen-meta-toggle { position: relative; top: 0; } #screen-meta-links .show-settings { border: 1px solid #c3c4c7; border-top: none; height: auto; margin-bottom: 0; padding: 0 6px 0 16px; background: #fff; border-radius: 0 0 4px 4px; color: #646970; box-shadow: 0 0 0 transparent; transition: box-shadow 0.1s linear; } #screen-meta-links .show-settings:hover, #screen-meta-links .show-settings:active, #screen-meta-links .show-settings:focus { color: #2c3338; } #screen-meta-links .show-settings:focus { border-color: var(--wp-admin-theme-color, #3858e9); box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #screen-meta-links .show-settings:active { transform: none; } #screen-meta-links .show-settings:after { right: 0; content: "\f140"; content: "\f140" / ''; font: normal 20px/1.5 dashicons; /* line-height 1.5 = 30px to match compact button */ display: inline-block; padding: 0 5px 0 0; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } #screen-meta-links .screen-meta-active:after { content: "\f142"; content: "\f142" / ''; } /* end screen options and help tabs */ .toggle-arrow { background-repeat: no-repeat; background-position: top left; background-color: transparent; height: 22px; line-height: 22px; display: block; } .toggle-arrow-active { background-position: bottom left; } #screen-options-wrap h5, /* Back-compat for old plugins */ #screen-options-wrap legend, #contextual-help-wrap h5 { margin: 0; padding: 8px 0; font-size: 13px; font-weight: 600; } .metabox-prefs label { display: inline-block; padding-right: 15px; line-height: 2.35; } #number-of-columns { display: inline-block; vertical-align: middle; line-height: 30px; } .metabox-prefs input[type=checkbox] { margin-top: 0; margin-right: 6px; } .metabox-prefs label input, .metabox-prefs label input[type=checkbox] { margin: -4px 5px 0 0; } .metabox-prefs .columns-prefs label input { margin: -1px 2px 0 0; } .metabox-prefs label a { display: none; } .metabox-prefs .screen-options input, .metabox-prefs .screen-options label { margin-top: 0; margin-bottom: 0; vertical-align: middle; } .metabox-prefs .screen-options .screen-per-page { margin-right: 15px; padding-right: 0; } .metabox-prefs .screen-options label { line-height: 2.2; padding-right: 0; } .screen-options + .screen-options { margin-top: 10px; } .metabox-prefs .submit { margin-top: 1em; padding: 0; } /*------------------------------------------------------------------------------ 6.2 - Help Menu ------------------------------------------------------------------------------*/ #contextual-help-wrap { padding: 0; } #contextual-help-columns { position: relative; } #contextual-help-back { position: absolute; top: 0; bottom: 0; left: 150px; right: 170px; border: 1px solid #c3c4c7; border-top: none; border-bottom: none; background: rgba(var(--wp-admin-theme-color--rgb), 0.08); } #contextual-help-wrap.no-sidebar #contextual-help-back { right: 0; border-right-width: 0; border-bottom-right-radius: 2px; } .contextual-help-tabs { float: left; width: 150px; margin: 0; } .contextual-help-tabs ul { margin: 1em 0; } .contextual-help-tabs li { margin-bottom: 0; list-style-type: none; border-style: solid; border-width: 0 0 0 2px; border-color: transparent; } .contextual-help-tabs a { display: block; padding: 5px 5px 5px 12px; line-height: 1.4; text-decoration: none; border: 1px solid transparent; border-right: none; border-left: none; } .contextual-help-tabs a:hover { color: #2c3338; } .contextual-help-tabs .active { padding: 0; margin: 0 -1px 0 0; border-left: 2px solid var(--wp-admin-theme-color); background: color-mix(in srgb, var(--wp-admin-theme-color) 8%, white); box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02); } .contextual-help-tabs .active a { border-color: #c3c4c7; color: #2c3338; } .contextual-help-tabs-wrap { padding: 0 20px; overflow: auto; } .help-tab-content { display: none; margin: 0 22px 12px 0; line-height: 1.6; } .help-tab-content.active { display: block; } .help-tab-content ul li { list-style-type: disc; margin-left: 18px; } .contextual-help-sidebar { width: 150px; float: right; padding: 0 8px 0 12px; overflow: auto; } /*------------------------------------------------------------------------------ 8.0 - Layout Blocks ------------------------------------------------------------------------------*/ html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); box-sizing: border-box; -ms-overflow-style: scrollbar; /* See ticket #48545 */ } .widefat th, .widefat td { color: #50575e; } .widefat th, .widefat thead td, .widefat tfoot td { font-weight: 400; } .widefat thead tr th, .widefat thead tr td, .widefat tfoot tr th, .widefat tfoot tr td { color: #2c3338; } .widefat td p { margin: 2px 0 0.8em; } .widefat p, .widefat ol, .widefat ul { color: #2c3338; } .widefat .column-comment p { margin: 0.6em 0; } .widefat .column-comment ul { list-style: initial; margin-left: 2em; } /* Screens with postboxes */ .postbox-container { float: left; } .postbox-container .meta-box-sortables { box-sizing: border-box; } #wpbody-content .metabox-holder { padding-top: 10px; } .metabox-holder .postbox-container .meta-box-sortables { /* The jQuery UI Sortables need some initial height to work properly. */ min-height: 1px; position: relative; } #post-body-content { width: 100%; min-width: 463px; float: left; } #post-body.columns-2 #postbox-container-1 { float: right; margin-right: -300px; width: 280px; } #post-body.columns-2 #side-sortables { min-height: 250px; } /* one column on the dash */ @media only screen and (max-width: 799px) { #wpbody-content .metabox-holder .postbox-container .empty-container { outline: none; height: 0; min-height: 0; } } .js .widget .widget-top, .js .postbox .hndle { cursor: move; } .js .widget .widget-top.is-non-sortable, .js .postbox .hndle.is-non-sortable { cursor: auto; } /* Configurable dashboard widgets "Configure" edit-box link. */ .hndle a { font-size: 12px; font-weight: 400; } .postbox-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #c3c4c7; } .postbox-header .hndle { flex-grow: 1; /* Handle the alignment for the configurable dashboard widgets "Configure" edit-box link. */ display: flex; justify-content: space-between; align-items: center; } .postbox-header .handle-actions { flex-shrink: 0; } /* Post box order and toggle buttons. */ .postbox .handle-order-higher, .postbox .handle-order-lower, .postbox .handlediv { width: 1.62rem; height: 1.62rem; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; } .postbox .handle-order-higher, .postbox .handle-order-lower { color: #646970; width: 1.62rem; } /* Post box order buttons in the block editor meta boxes area. */ .edit-post-meta-boxes-area .postbox .handle-order-higher, .edit-post-meta-boxes-area .postbox .handle-order-lower { width: 44px; height: 44px; color: #1d2327 } .postbox .handle-order-higher[aria-disabled="true"], .postbox .handle-order-lower[aria-disabled="true"] { cursor: default; color: #a7aaad; } .sortable-placeholder:not(.empty-container .sortable-placeholder) { border: 1px dashed #c3c4c7; border-radius: 8px; margin-bottom: 20px; } .postbox, .stuffbox { margin-bottom: 20px; padding: 0; line-height: 1; } .postbox.closed .postbox-header { border-bottom: 0; } /* user-select is not a part of the CSS standard - may change behavior in the future */ .postbox .hndle, .stuffbox .hndle { -webkit-user-select: none; user-select: none; } .postbox .inside { padding: 0 12px 12px; line-height: 1.4; font-size: 13px; } .stuffbox .inside { padding: 0; line-height: 1.4; font-size: 13px; margin-top: 0; } .postbox .inside { margin: 11px 0; position: relative; } .postbox .inside > p:last-child, .rss-widget ul li:last-child { margin-bottom: 1px !important; } .postbox.closed h3 { border: none; box-shadow: none; } .postbox table.form-table { margin-bottom: 0; } .postbox table.widefat { box-shadow: none; } .temp-border { border: 1px dotted #c3c4c7; } .columns-prefs label { padding: 0 10px 0 0; } /* @todo: what is this doing here */ #dashboard_right_now .versions .b, #post-status-display, #post-visibility-display, #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:hover, .media-item .percent, .plugins .name, #pass-strength-result.strong, #pass-strength-result.short, #ed_reply_toolbar #ed_reply_strong, .item-controls .item-order a, .feature-filter .feature-name, #comment-status-display { font-weight: 600; } /*------------------------------------------------------------------------------ 21.0 - Admin Footer ------------------------------------------------------------------------------*/ #wpfooter { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 20px; color: #50575e; } #wpfooter p { font-size: 13px; margin: 0; line-height: 1.55; } #footer-thankyou { font-style: italic; } /*------------------------------------------------------------------------------ 25.0 - Tabbed Admin Screen Interface (Experimental) ------------------------------------------------------------------------------*/ .nav-tab { float: left; border: 1px solid #c3c4c7; border-bottom: none; margin-left: 0.5em; /* half the font size so set the font size properly */ padding: 5px 10px; font-size: 14px; line-height: 1.71428571; font-weight: 600; background: #dcdcde; color: #50575e; text-decoration: none; white-space: nowrap; } h3 .nav-tab, /* Back-compat for pre-4.4 */ .nav-tab-small .nav-tab { padding: 5px 14px; font-size: 12px; line-height: 1.33; } .nav-tab:hover, .nav-tab:focus { background-color: #fff; color: #3c434a; } .nav-tab-active, .nav-tab:focus:active { box-shadow: none; } .nav-tab-active { margin-bottom: -1px; color: #3c434a; } .nav-tab-active, .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #f0f0f1; background: #f0f0f1; color: #000; } h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */ .nav-tab-wrapper { border-bottom: 1px solid #c3c4c7; margin: 0; padding-top: 9px; padding-bottom: 0; line-height: inherit; } /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */ .nav-tab-wrapper:not(.wp-clearfix):after { content: ""; display: table; clear: both; } /*------------------------------------------------------------------------------ 26.0 - Misc ------------------------------------------------------------------------------*/ .spinner { background: url(../images/spinner.gif) no-repeat; background-size: 20px 20px; display: inline-block; visibility: hidden; float: right; vertical-align: middle; opacity: 0.7; filter: alpha(opacity=70); width: 20px; height: 20px; margin: 10px 10px 0; } .spinner.is-active, .loading-content .spinner { visibility: visible; } #template > div { margin-right: 16em; } #template .notice { margin-top: 1em; margin-right: 3%; } #template .notice p { width: auto; } #template .submit .spinner { float: none; vertical-align: top; } .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder h2.hndle { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } /* Back-compat for nav-menus screen */ .nav-menus-php .metabox-holder h3 { padding: 0; } .accordion-container h3.accordion-section-title { padding: 0 !important; } .accordion-section-title button.accordion-trigger, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger { background: inherit; color: #1d2327; display: block; position: relative; text-align: left; width: 100%; outline: none; border: 0; padding: 10px 10px 11px 14px; line-height: 1.5; cursor: pointer; } .accordion-section-title button.accordion-trigger:focus, .nav-menus-php .metabox-holder .accordion-section-title button.accordion-trigger:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); outline: 2px solid transparent; } .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down { position: absolute; right: 10px; left: auto; color: #787c82; border-radius: 50px; top: 50%; transform: translateY(-50%); } .accordion-section-title:hover span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section-title:hover span.dashicons.dashicons-arrow-down { color: #1d2327; } .accordion-section-title span.dashicons.dashicons-arrow-down::before, .nav-menus-php .metabox-holder .accordion-section-title span.dashicons.dashicons-arrow-down::before { position: relative; left: -1px; } .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down, .nav-menus-php .metabox-holder .accordion-section.open .accordion-section-title span.dashicons.dashicons-arrow-down { transform: rotate(180deg) translate(0, 50%); } #templateside ul li a { text-decoration: none; } .plugin-install #description, .plugin-install-network #description { width: 60%; } table .vers, table .column-visible, table .column-rating { text-align: left; } .attention, .error-message { color: #d63638; font-weight: 600; } /* Scrollbar fix for bulk upgrade iframe */ body.iframe { height: 98%; } /* Upgrader styles, Specific to Language Packs */ .lp-show-latest p { display: none; } .lp-show-latest p:last-child, .lp-show-latest .lp-error p { display: block; } /* - Only used once or twice in all of WP - deprecate for global style ------------------------------------------------------------------------------*/ .media-icon { width: 62px; /* icon + border */ text-align: center; } .media-icon img { border: 1px solid #dcdcde; border: 1px solid rgba(0, 0, 0, 0.07); } #howto { font-size: 11px; margin: 0 5px; display: block; } .importers { font-size: 16px; width: auto; } .importers td { padding-right: 14px; line-height: 1.4; } .importers .import-system { max-width: 250px; } .importers td.desc { max-width: 500px; } .importer-title, .importer-desc, .importer-action { display: block; } .importer-title { color: #000; font-size: 14px; font-weight: 400; margin-bottom: .2em; } .importer-action { line-height: 1.55; /* Same as with .updating-message */ color: #50575e; margin-bottom: 1em; } #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */ #post-body #post-body-content #namediv h2 { margin-top: 0; } .edit-comment-author { color: #1d2327; border-bottom: 1px solid #f0f0f1; } #namediv h3 label, /* Back-compat for pre-4.4 */ #namediv h2 label { vertical-align: baseline; } #namediv table { width: 100%; } #namediv td.first { width: 10px; white-space: nowrap; } #namediv input { width: 100%; } #namediv p { margin: 10px 0; } /* - Used - but could/should be deprecated with a CSS reset ------------------------------------------------------------------------------*/ .zerosize { height: 0; width: 0; margin: 0; border: 0; padding: 0; overflow: hidden; position: absolute; } br.clear { height: 2px; line-height: 0.15; } .checkbox { border: none; margin: 0; padding: 0; } fieldset { border: 0; padding: 0; margin: 0; } .post-categories { display: inline; margin: 0; padding: 0; } .post-categories li { display: inline; } /* Star Ratings - Back-compat for pre-3.8 */ div.star-holder { position: relative; height: 17px; width: 100px; background: url(../images/stars.png?ver=20121108) repeat-x bottom left; } div.star-holder .star-rating { background: url(../images/stars.png?ver=20121108) repeat-x top left; height: 17px; float: left; } /* Star Ratings */ .star-rating { white-space: nowrap; } .star-rating .star { display: inline-block; width: 20px; height: 20px; -webkit-font-smoothing: antialiased; font-size: 20px; line-height: 1; font-family: dashicons; text-decoration: inherit; font-weight: 400; font-style: normal; vertical-align: top; transition: color .1s ease-in; text-align: center; color: #dba617; } .star-rating .star-full:before { content: "\f155"; content: "\f155" / ''; } .star-rating .star-half:before { content: "\f459"; content: "\f459" / ''; } .rtl .star-rating .star-half { transform: rotateY(180deg); } .star-rating .star-empty:before { content: "\f154"; content: "\f154" / ''; } div.action-links { font-weight: 400; margin: 6px 0 0; } /* Plugin install thickbox */ #plugin-information { background: #fff; position: fixed; top: 0; right: 0; bottom: 0; left: 0; height: 100%; padding: 0; } #plugin-information-scrollable { overflow: auto; -webkit-overflow-scrolling: touch; height: 100%; } #plugin-information-title { padding: 0 26px; background: #f6f7f7; font-size: 22px; font-weight: 600; line-height: 2.4; position: relative; height: 56px; } #plugin-information-title.with-banner { margin-right: 0; height: 250px; background-size: cover; } #plugin-information-title h2 { font-size: 1em; font-weight: 600; padding: 0; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #plugin-information-title.with-banner h2 { position: relative; font-family: "Helvetica Neue", sans-serif; display: inline-block; font-size: 30px; line-height: 1.68; box-sizing: border-box; max-width: 100%; padding: 0 15px; margin-top: 174px; color: #fff; background: rgba(29, 35, 39, 0.9); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); border-radius: 8px; } #plugin-information-title div.vignette { display: none; } #plugin-information-title.with-banner div.vignette { position: absolute; display: block; top: 0; left: 0; height: 250px; width: 100%; background: transparent; box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } #plugin-information-tabs { padding: 0 16px; position: relative; right: 0; left: 0; min-height: 36px; font-size: 0; z-index: 1; border-bottom: 1px solid #dcdcde; background: #f6f7f7; } #plugin-information-tabs a { position: relative; display: inline-block; padding: 9px 10px; margin: 0; height: 18px; line-height: 1.3; font-size: 14px; text-decoration: none; transition: none; } #plugin-information-tabs a.current { margin: 0 -1px -1px; background: #fff; border: 1px solid #dcdcde; border-bottom-color: #fff; padding-top: 8px; color: #2c3338; } #plugin-information-tabs.with-banner a.current { border-top: none; padding-top: 9px; } #plugin-information-tabs a:active, #plugin-information-tabs a:focus { outline: none; } #plugin-information-content { overflow: hidden; /* equal height column trick */ background: #fff; position: relative; top: 0; right: 0; left: 0; min-height: 100%; /* Height of title + tabs + install now */ min-height: calc( 100% - 152px ); } #plugin-information-content.with-banner { /* Height of banner + tabs + install now */ min-height: calc( 100% - 346px ); } #section-holder { position: relative; top: 0; right: 250px; bottom: 0; left: 0; margin-top: 10px; margin-right: 250px; /* FYI box */ padding: 10px 26px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ } #section-holder .notice { margin: 5px 0 15px; } #section-holder .updated { margin: 16px 0; } #plugin-information .fyi { float: right; position: relative; top: 0; right: 0; padding: 16px 16px 99999px; /* equal height column trick */ margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ width: 217px; border-left: 1px solid #dcdcde; background: #f6f7f7; color: #646970; } #plugin-information .fyi strong { color: #3c434a; } #plugin-information .fyi h3 { font-weight: 600; text-transform: uppercase; font-size: 12px; color: #646970; margin: 24px 0 8px; } #plugin-information .fyi h2 { font-size: 0.9em; margin-bottom: 0; margin-right: 0; } #plugin-information .fyi ul { padding: 0; margin: 0; list-style: none; } #plugin-information .fyi li { margin: 0 0 10px; } #plugin-information .fyi-description { margin-top: 0; } #plugin-information .counter-container { margin: 3px 0; } #plugin-information .counter-label { float: left; margin-right: 5px; min-width: 55px; } #plugin-information .counter-back { height: 17px; width: 92px; background-color: #dcdcde; float: left; } #plugin-information .counter-bar { height: 17px; background-color: #f0c33c; /* slightly lighter than stars due to larger expanse */ float: left; } #plugin-information .counter-count { margin-left: 5px; } #plugin-information .fyi ul.contributors { margin-top: 10px; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-right: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li { display: inline-block; margin-right: 8px; vertical-align: middle; } #plugin-information .fyi ul.contributors li img { vertical-align: middle; margin-right: 4px; } #plugin-information-footer { padding: 13px 16px; position: absolute; right: 0; bottom: 0; left: 0; height: 40px; /* actual height: 40+13+13+1=67 */ border-top: 1px solid #dcdcde; background: #f6f7f7; } /* rtl:ignore */ #plugin-information .section { direction: ltr; } /* rtl:ignore */ #plugin-information .section ul, #plugin-information .section ol { list-style-type: disc; margin-left: 24px; } #plugin-information .section, #plugin-information .section p { font-size: 14px; line-height: 1.7; } #plugin-information #section-screenshots ol { list-style: none; margin: 0; } #plugin-information #section-screenshots li img { vertical-align: text-top; margin-top: 16px; max-width: 100%; width: auto; height: auto; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* rtl:ignore */ #plugin-information #section-screenshots li p { font-style: italic; padding-left: 20px; } #plugin-information pre { padding: 7px; overflow: auto; border: 1px solid #c3c4c7; } #plugin-information blockquote { border-left: 2px solid #dcdcde; color: #646970; font-style: italic; margin: 1em 0; padding: 0 0 0 1em; } /* rtl:ignore */ #plugin-information .review { overflow: hidden; /* clearfix */ width: 100%; margin-bottom: 20px; border-bottom: 1px solid #dcdcde; } #plugin-information .review-title-section { overflow: hidden; /* clearfix */ } /* rtl:ignore */ #plugin-information .review-title-section h4 { display: inline-block; float: left; margin: 0 6px 0 0; } #plugin-information .reviewer-info p { clear: both; margin: 0; padding-top: 2px; } /* rtl:ignore */ #plugin-information .reviewer-info .avatar { float: left; margin: 4px 6px 0 0; } /* rtl:ignore */ #plugin-information .reviewer-info .star-rating { float: left; } /* rtl:ignore */ #plugin-information .review-meta { float: left; margin-left: 0.75em; } /* rtl:ignore */ #plugin-information .review-body { float: left; width: 100%; } .plugin-version-author-uri { font-size: 13px; } /* For non-js plugin installation screen ticket #36430. */ .update-php .button.button-primary { margin-right: 1em; } @media screen and (max-width: 771px) { #plugin-information-title.with-banner { height: 100px; } #plugin-information-title.with-banner h2 { margin-top: 30px; font-size: 20px; line-height: 2; max-width: 85%; } #plugin-information-title.with-banner div.vignette { height: 100px; } #plugin-information-tabs { overflow: hidden; /* clearfix */ padding: 0; height: auto; /* let tabs wrap */ } #plugin-information-tabs a.current { margin-bottom: 0; border-bottom: none; } #plugin-information .fyi { float: none; border: 1px solid #dcdcde; position: static; width: auto; margin: 26px 26px 0; padding-bottom: 0; /* reset from the two column height fix */ } #section-holder { position: static; margin: 0; padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */ } #plugin-information .fyi h3, #plugin-information .fyi small { display: none; } #plugin-information-footer { padding: 12px 16px 0; height: 46px; } } /* Thickbox for the Plugin details modal. */ #TB_window.plugin-details-modal { background: #fff; } #TB_window.plugin-details-modal.thickbox-loading:before { content: ""; display: block; width: 20px; height: 20px; position: absolute; left: 50%; top: 50%; z-index: -1; margin: -10px 0 0 -10px; background: #fff url(../images/spinner.gif) no-repeat center; background-size: 20px 20px; transform: translateZ(0); } @media print, (min-resolution: 120dpi) { #TB_window.plugin-details-modal.thickbox-loading:before { background-image: url(../images/spinner-2x.gif); } } .plugin-details-modal #TB_title { float: left; height: 1px; } .plugin-details-modal #TB_ajaxWindowTitle { display: none; } .plugin-details-modal #TB_closeWindowButton { left: auto; right: -30px; color: #f0f0f1; } .plugin-details-modal #TB_closeWindowButton:hover, .plugin-details-modal #TB_closeWindowButton:focus { outline: none; box-shadow: none; } .plugin-details-modal #TB_closeWindowButton:hover::after, .plugin-details-modal #TB_closeWindowButton:focus::after { outline: 2px solid; outline-offset: -4px; border-radius: 4px; } .plugin-details-modal .tb-close-icon { display: none; } .plugin-details-modal #TB_closeWindowButton:after { content: "\f335"; content: "\f335" / ''; font: normal 32px/29px 'dashicons'; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* move plugin install close icon to top on narrow screens */ @media screen and (max-width: 830px) { .plugin-details-modal #TB_closeWindowButton { right: 0; top: -30px; } } /* @todo: move this. */ img { border: none; } /* Metabox collapse arrow indicators */ .sidebar-name .toggle-indicator::before, .meta-box-sortables .postbox .toggle-indicator::before, .meta-box-sortables .postbox .order-higher-indicator::before, .meta-box-sortables .postbox .order-lower-indicator::before, .bulk-action-notice .toggle-indicator::before, .privacy-text-box .toggle-indicator::before { content: "\f142"; content: "\f142" / ''; display: inline-block; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .js .widgets-holder-wrap.closed .toggle-indicator::before, .meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before, .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before, .privacy-text-box.closed .toggle-indicator::before { content: "\f140"; content: "\f140" / ''; } .postbox .handle-order-higher .order-higher-indicator::before { content: "\f343"; content: "\f343" / ''; color: inherit; } .postbox .handle-order-lower .order-lower-indicator::before { content: "\f347"; content: "\f347" / ''; color: inherit; } .postbox .handle-order-higher .order-higher-indicator::before, .postbox .handle-order-lower .order-lower-indicator::before { position: relative; top: 0.11rem; width: 20px; height: 20px; } .postbox .handlediv .toggle-indicator::before { width: 20px; border-radius: 50%; } .postbox .handlediv .toggle-indicator::before { position: relative; top: 0.05rem; text-indent: -1px; /* account for the dashicon glyph uneven horizontal alignment */ } .rtl .postbox .handlediv .toggle-indicator::before { text-indent: 1px; /* account for the dashicon glyph uneven horizontal alignment */ } .bulk-action-notice .toggle-indicator::before { line-height: 16px; vertical-align: top; color: #787c82; } .postbox .handle-order-higher:focus, .postbox .handle-order-lower:focus, .postbox .handlediv:focus { box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); border-radius: 50%; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .postbox .handle-order-higher:focus .order-higher-indicator::before, .postbox .handle-order-lower:focus .order-lower-indicator::before, .postbox .handlediv:focus .toggle-indicator::before { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } /* @todo: appears to be Press This only and overridden */ #photo-add-url-div input[type="text"] { width: 300px; } /* Theme/Plugin file editor */ .alignleft h2 { margin: 0; } #template textarea { font-family: Consolas, Monaco, monospace; font-size: 13px; background: #f6f7f7; tab-size: 4; } #template textarea, #template .CodeMirror { width: 100%; min-height: 60vh; height: calc( 100vh - 295px ); border: 1px solid #dcdcde; box-sizing: border-box; } #templateside > h2 { padding-top: 6px; padding-bottom: 7px; margin: 0; } #templateside ol, #templateside ul { margin: 0; padding: 0; } #templateside > ul { box-sizing: border-box; margin-top: 0; overflow: auto; padding: 0; min-height: 60vh; height: calc(100vh - 295px); background-color: #f6f7f7; border: 1px solid #dcdcde; border-left: none; } #templateside ul ul { padding-left: 12px; } #templateside > ul > li > ul[role=group] { padding-left: 0; } /* * Styles for Theme and Plugin file editors. */ /* Hide collapsed items. */ [role="treeitem"][aria-expanded="false"] > ul { display: none; } /* Use arrow dashicons for folder states, but hide from screen readers. */ [role="treeitem"] span[aria-hidden] { display: inline; font-family: dashicons; font-size: 20px; position: absolute; pointer-events: none; } [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after { content: "\f139"; content: "\f139" / ''; } [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after { content: "\f140"; content: "\f140" / ''; } [role="treeitem"] .folder-label { display: block; padding: 3px 3px 3px 12px; cursor: pointer; } /* Remove outline, and create our own focus and hover styles */ [role="treeitem"] { outline: 0; } [role="treeitem"] a:focus, [role="treeitem"] .folder-label.focus { color: #043959; /* Reset default focus style. */ box-shadow: none; /* Use an inset outline instead, so it's visible also over the current file item. */ outline: 2px solid var(--wp-admin-theme-color, #3858e9); outline-offset: -2px; } [role="treeitem"].hover, [role="treeitem"] .folder-label.hover { background-color: #f0f0f1; } .tree-folder { margin: 0; position: relative; } [role="treeitem"] li { position: relative; } /* Styles for folder indicators/depth */ .tree-folder .tree-folder::after { content: ""; display: block; position: absolute; left: 2px; border-left: 1px solid #c3c4c7; top: -13px; bottom: 10px; } .tree-folder > li::before { content: ""; position: absolute; display: block; border-left: 1px solid #c3c4c7; left: 2px; top: -5px; height: 18px; width: 7px; border-bottom: 1px solid #c3c4c7; } .tree-folder > li::after { content: ""; position: absolute; display: block; border-left: 1px solid #c3c4c7; left: 2px; bottom: -7px; top: 0; } /* current-file needs to adjustment for .notice styles */ #templateside .current-file { margin: -4px 0 -2px; } .tree-folder > .current-file::before { left: 4px; height: 15px; width: 0; border-left: none; top: 3px; } .tree-folder > .current-file::after { bottom: -4px; height: 7px; left: 2px; top: auto; } /* Lines shouldn't continue on last item */ .tree-folder > li:last-child::after, .tree-folder li:last-child > .tree-folder::after { display: none; } #theme-plugin-editor-selector, #theme-plugin-editor-label, #documentation label { font-weight: 600; } #theme-plugin-editor-label { display: inline-block; margin-bottom: 1em; } /* rtl:ignore */ #template textarea, #docs-list { direction: ltr; } .fileedit-sub #theme, .fileedit-sub #plugin { max-width: 40%; } .fileedit-sub .alignright { text-align: right; } #template p { width: 97%; } #file-editor-linting-error { margin-top: 1em; margin-bottom: 1em; } #file-editor-linting-error > .notice { margin: 0; display: inline-block; } #file-editor-linting-error > .notice > p { width: auto; } #template .submit { margin-top: 1em; padding: 0; } #template .submit input[type=submit][disabled] { cursor: not-allowed; } #templateside { float: right; width: 16em; word-wrap: break-word; } #postcustomstuff p.submit { margin: 0; } #templateside h4 { margin: 1em 0 0; } #templateside li { margin: 4px 0; } #templateside li:not(.howto) a, .theme-editor-php .highlight { display: block; padding: 3px 0 3px 12px; text-decoration: none; } #templateside li.current-file > a { padding-bottom: 0; } #templateside li:not(.howto) > a:first-of-type { padding-top: 0; } #templateside li.howto { padding: 6px 12px 12px; } .theme-editor-php .highlight { margin: -3px 3px -3px -12px; } #templateside .highlight { border: none; font-weight: 600; } .nonessential { color: #646970; font-size: 11px; font-style: italic; padding-left: 12px; } #documentation { margin-top: 10px; } #documentation label { line-height: 1.8; vertical-align: baseline; } .fileedit-sub { padding: 10px 0 8px; line-height: 180%; } #file-editor-warning .file-editor-warning-content { margin: 25px; } /* @todo: can we use a common class for these? */ .nav-menus-php .item-edit:before, .wp-customizer .control-section .accordion-section-title:after, .wp-customizer .accordion-section-title:after, .widget-top .widget-action .toggle-indicator:before { content: "\f140"; content: "\f140" / ''; font: normal 20px/1 dashicons; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none; } .widget-top .widget-action .toggle-indicator:before { padding: 1px 2px 1px 0; border-radius: 50%; } .handlediv, .postbox .handlediv.button-link, .item-edit, .toggle-indicator { color: #646970; } .widget-action { color: #50575e; /* #fafafa background in the Widgets screen */ } .widget-top:hover .widget-action, .widget-action:focus, .handlediv:hover, .handlediv:focus, .postbox .handlediv.button-link:hover, .postbox .handlediv.button-link:focus, .item-edit:hover, .item-edit:focus, .sidebar-name:hover .toggle-indicator { color: #1d2327; /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .widget-top .widget-action:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } #customize-info.open .accordion-section-title:after, .nav-menus-php .menu-item-edit-active .item-edit:before, .widget.open .widget-top .widget-action .toggle-indicator:before, .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before { content: "\f142"; content: "\f142" / ''; } /*! * jQuery UI Draggable/Sortable 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ .ui-draggable-handle, .ui-sortable-handle { touch-action: none; } /* Accordion */ .accordion-section { border-bottom: 1px solid #dcdcde; margin: 0; } .accordion-section.open .accordion-section-content, .no-js .accordion-section .accordion-section-content { display: block; } .accordion-section.open:hover { border-bottom-color: #dcdcde; } .accordion-section-content { display: none; padding: 10px 20px 15px; overflow: hidden; background: #fff; } .accordion-section-title { margin: 0; position: relative; border-left: 1px solid #dcdcde; border-right: 1px solid #dcdcde; -webkit-user-select: none; user-select: none; } .js .accordion-section-title { cursor: pointer; } .js .accordion-section-title:after { position: absolute; top: 12px; right: 10px; z-index: 1; } .accordion-section-title:focus { /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .accordion-section-title:hover:after, .accordion-section-title:focus:after { border-color: #a7aaad transparent; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } .cannot-expand .accordion-section-title { cursor: auto; } .cannot-expand .accordion-section-title:after { display: none; } .control-section .accordion-section-title, .customize-pane-child .accordion-section-title { border-left: none; border-right: none; padding: 10px 10px 11px 14px; line-height: 1.55; background: #fff; } .control-section .accordion-section-title:after, .customize-pane-child .accordion-section-title:after { top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */ } .js .control-section:hover .accordion-section-title, .js .control-section .accordion-section-title:hover, .js .control-section.open .accordion-section-title, .js .control-section .accordion-section-title:focus { color: #1d2327; background: #f6f7f7; } .control-section.open .accordion-section-title { /* When expanded */ border-bottom: 1px solid #dcdcde; } /* Edit Site */ .network-admin .edit-site-actions { margin-top: 0; } /* My Sites */ .my-sites { display: block; overflow: auto; zoom: 1; } .my-sites li { display: block; padding: 8px 3%; min-height: 130px; margin: 0; } @media only screen and (max-width: 599px) { .my-sites li { min-height: 0; } } @media only screen and (min-width: 600px) { .my-sites.striped li { background-color: #fff; position: relative; } .my-sites.striped li:after { content: ""; width: 1px; height: 100%; position: absolute; top: 0; right: 0; background: #c3c4c7; } } @media only screen and (min-width: 600px) and (max-width: 699px) { .my-sites li{ float: left; width: 44%; } .my-sites.striped li { background-color: #fff; } .my-sites.striped li:nth-of-type(2n+1) { clear: left; } .my-sites.striped li:nth-of-type(2n+2):after { content: none; } .my-sites li:nth-of-type(4n+1), .my-sites li:nth-of-type(4n+2) { background-color: #f6f7f7; } } @media only screen and (min-width: 700px) and (max-width: 1199px) { .my-sites li { float: left; width: 27.333333%; background-color: #fff; } .my-sites.striped li:nth-of-type(3n+3):after { content: none; } .my-sites li:nth-of-type(6n+1), .my-sites li:nth-of-type(6n+2), .my-sites li:nth-of-type(6n+3) { background-color: #f6f7f7; } } @media only screen and (min-width: 1200px) and (max-width: 1399px) { .my-sites li { float: left; width: 21%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(4n+1) { clear: left; } .my-sites.striped li:nth-of-type(4n+4):after { content: none; } .my-sites li:nth-of-type(8n+1), .my-sites li:nth-of-type(8n+2), .my-sites li:nth-of-type(8n+3), .my-sites li:nth-of-type(8n+4) { background-color: #f6f7f7; } } @media only screen and (min-width: 1400px) and (max-width: 1599px) { .my-sites li { float: left; width: 16%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(5n+1) { clear: left; } .my-sites.striped li:nth-of-type(5n+5):after { content: none; } .my-sites li:nth-of-type(10n+1), .my-sites li:nth-of-type(10n+2), .my-sites li:nth-of-type(10n+3), .my-sites li:nth-of-type(10n+4), .my-sites li:nth-of-type(10n+5) { background-color: #f6f7f7; } } @media only screen and (min-width: 1600px) { .my-sites li { float: left; width: 12.666666%; padding: 8px 2%; background-color: #fff; } .my-sites.striped li:nth-of-type(6n+1) { clear: left; } .my-sites.striped li:nth-of-type(6n+6):after { content: none; } .my-sites li:nth-of-type(12n+1), .my-sites li:nth-of-type(12n+2), .my-sites li:nth-of-type(12n+3), .my-sites li:nth-of-type(12n+4), .my-sites li:nth-of-type(12n+5), .my-sites li:nth-of-type(12n+6) { background-color: #f6f7f7; } } .my-sites li a { text-decoration: none; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { /* Back-compat for pre-3.8 */ div.star-holder, div.star-holder .star-rating { background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left; background-size: 21px 37px; } .spinner { background-image: url(../images/spinner-2x.gif); } } @media screen and (max-width: 782px) { html.wp-toolbar { padding-top: var(--wp-admin--admin-bar--height); } .screen-reader-shortcut:focus { top: -39px; } .block-editor-page .screen-reader-shortcut:focus { top: 7px; } .screen-reader-shortcut[href="#wp-toolbar"] { display: none; } body { min-width: 240px; overflow-x: hidden; } body * { -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; } #wpcontent { position: relative; margin-left: 0; padding-left: 10px; } #wpbody-content { padding-bottom: 100px; } .wrap { clear: both; margin-right: 12px; margin-left: 0; } /* categories */ #col-left, #col-right { float: none; width: auto; } #col-left .col-wrap, #col-right .col-wrap { padding: 0; } /* Hidden Elements */ #collapse-menu, .post-format-select { display: none !important; } .wrap h1.wp-heading-inline { margin-bottom: 0.5em; } .wrap .add-new-h2, /* deprecated */ .wrap .add-new-h2:active, /* deprecated */ .wrap .page-title-action, .wrap .page-title-action:active { padding: 0 14px; font-size: 14px; white-space: nowrap; min-height: 40px; line-height: 2.71428571; vertical-align: middle; } /* Feedback Messages */ .notice, .wrap div.updated, .wrap div.error, .media-upload-form div.error { margin: 20px 0 10px; padding: 5px 10px; font-size: 14px; line-height: 175%; } .wp-core-ui .notice.is-dismissible { padding-right: 46px; } .notice-dismiss { padding: 13px; } .wrap .icon32 + h2 { margin-top: -2px; } .wp-responsive-open #wpbody { right: -16em; } code { word-wrap: break-word; word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */ word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */ } /* General Metabox */ .postbox { font-size: 14px; } .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ .metabox-holder h2 { padding: 12px; } .nav-menus-php .metabox-holder h3 { padding: 0; } .postbox .handlediv { margin-top: 3px; } /* Subsubsub Nav */ .subsubsub { font-size: 16px; text-align: center; margin-bottom: 15px; } /* Theme/Plugin File Editor */ #template textarea, #template .CodeMirror { box-sizing: border-box; } #templateside { float: none; width: auto; } #templateside > ul { border-left: 1px solid #dcdcde; } #templateside li { margin: 0; } #templateside li:not(.howto) a { display: block; padding: 5px; } #templateside li.howto { padding: 12px; } #templateside .highlight { padding: 5px; margin-left: -5px; margin-top: -5px; } #template > div, #template .notice { float: none; margin: 1em 0; width: auto; } #template .CodeMirror, #template textarea { width: 100%; } #templateside ul ul { padding-left: 1.5em; } [role="treeitem"] .folder-label { display: block; padding: 5px; } .tree-folder > li::before, .tree-folder > li::after, .tree-folder .tree-folder::after { left: -8px; } .tree-folder > li::before { top: 0; height: 13px; } .tree-folder > .current-file::before { left: -5px; top: 7px; width: 4px; } .tree-folder > .current-file::after { height: 9px; left: -8px; } .wrap #templateside span.notice { margin-left: -5px; width: 100%; } .fileedit-sub .alignright { float: left; margin-top: 15px; width: 100%; text-align: left; } .fileedit-sub .alignright label { display: block; } .fileedit-sub #theme, .fileedit-sub #plugin { margin-left: 0; max-width: 70%; } .fileedit-sub input[type="submit"] { margin-bottom: 0; } #documentation label[for="docs-list"] { display: block; } #documentation select[name="docs-list"] { margin-left: 0; max-width: 60%; } #documentation input[type="button"] { margin-bottom: 0; } #wpfooter { display: none; } #comments-form .checkforspam { display: none; } .edit-comment-author { margin: 2px 0 0; } .filter-drawer .filter-group-feature input, .filter-drawer .filter-group-feature label { line-height: 2.1; } .filter-drawer .filter-group-feature label { margin-left: 32px; } .wp-filter .button.drawer-toggle { font-size: 13px; line-height: 2; height: 28px; } /* Fix help tab columns for smaller screens */ #screen-meta #contextual-help-wrap { overflow: visible; } #screen-meta #contextual-help-back, #screen-meta .contextual-help-sidebar { display: none; } #screen-meta .contextual-help-tabs { clear: both; width: 100%; float: none; } #screen-meta .contextual-help-tabs ul { margin: 0 0 1em; padding: 1em 0 0; } #screen-meta .contextual-help-tabs .active { margin: 0; } #screen-meta .contextual-help-tabs-wrap { clear: both; max-width: 100%; float: none; } #screen-meta, #screen-meta-links { margin-right: 10px; } #screen-meta-links { margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */ } #screen-meta-links .show-settings:after { line-height: 1.9; } .wp-filter .search-form input[type="search"] { font-size: 1rem; } .wp-filter .search-form.search-plugins { /* This element is a flex item. */ min-width: 100%; } } /* Smartphone */ @media screen and (max-width: 600px) { /* Disable horizontal scroll when responsive menu is open since we push the main content off to the right. */ #wpwrap.wp-responsive-open { overflow-x: hidden; } html.wp-toolbar { padding-top: 0; } .screen-reader-shortcut:focus { top: 7px; } #wpbody { padding-top: 46px; } /* Keep full-width boxes on Edit Post page from causing horizontal scroll */ div#post-body.metabox-holder.columns-1 { overflow-x: hidden; } h1.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, .nav-tab-wrapper { border-bottom: 0; } h1 .nav-tab, h2 .nav-tab, h3 .nav-tab, nav .nav-tab { margin: 10px 10px 0 0; border-bottom: 1px solid #c3c4c7; } .nav-tab-active:hover, .nav-tab-active:focus, .nav-tab-active:focus:active { border-bottom: 1px solid #c3c4c7; } .wp-filter .search-form.search-plugins label { width: 100%; } } @media screen and (max-width: 480px) { .metabox-prefs-container { display: grid; } .metabox-prefs-container > * { display: inline-block; padding: 2px; } } @media screen and (max-width: 320px) { /* Prevent default center alignment and larger font for the Right Now widget when the network dashboard is viewed on a small mobile device. */ #network_dashboard_right_now .subsubsub { font-size: 14px; text-align: left; } } css/deprecated-media-rtl.min.css000066600000012571152330733730012624 0ustar00/*! This file is auto-generated */ div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:600;position:relative;border-bottom:1px solid #dcdcde;background:#f6f7f7}#sidemenu{overflow:hidden;float:none;position:relative;right:0;bottom:-1px;margin:0 5px;padding-right:10px;list-style:none;font-size:12px;font-weight:400}#sidemenu a{padding:0 7px;display:block;float:right;line-height:28px;border-top:1px solid #f6f7f7;border-bottom:1px solid #dcdcde;background-color:#f6f7f7;text-decoration:none;transition:none}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-right:6px;padding-left:6px;border:1px solid #dcdcde;border-bottom-color:#f0f0f1;background-color:#f0f0f1;color:#000}#media-upload:after{content:"";display:table;clear:both}#media-upload .slidetoggle{border-top-color:#dcdcde}#media-upload input[type=radio]{padding:0}.media-upload-form label.form-help,td.help{color:#646970}form{margin:1em}#search-filter{text-align:left}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:none;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center right}.image-align-left-label{background:url(../images/align-left.png) no-repeat center right}.image-align-center-label{background:url(../images/align-center.png) no-repeat center right}.image-align-right-label{background:url(../images/align-right.png) no-repeat center right}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#gallery-form .progress,#library-form .progress,.describe.startclosed,.describe.startopen,.insert-gallery{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required,span.required{text-decoration:none;border:none}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload label.help,#media-upload p.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#media-upload .tablenav-pages .current,#media-upload .tablenav-pages a{display:inline-block;padding:4px 5px 6px;font-size:16px;line-height:1;text-align:center;text-decoration:none}#media-upload .tablenav-pages a{min-width:17px;border:1px solid #c3c4c7;background:#f6f7f7}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:left;font-size:11px;margin:8px 10px 0}.menu_order_input{border:1px solid #dcdcde;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #a7aaad;opacity:.6}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 0 5px 5px}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #dcdcde}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #dcdcde;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#50575e}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:right}#gallery-settings .describe{padding:5px;width:100%;clear:both;cursor:default;background:#fff}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#3c434a;margin-left:15px}#gallery-settings .align .field label{margin:0 3px 0 1em}#gallery-settings p.ml-submit{border-top:1px solid #dcdcde}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 0 -8px 25px;text-align:left;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-right:5px}#sort-buttons span{margin-left:25px}p.media-types{margin:0;padding:1em}p.media-types-required-info{padding-top:0}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}css/edit.css000066600000113500152330733730007005 0ustar00#poststuff { padding-top: 10px; min-width: 763px; } #poststuff #post-body { padding: 0; } #poststuff .postbox-container { width: 100%; } #poststuff #post-body.columns-2 { margin-right: 300px; } /*------------------------------------------------------------------------------ 11.0 - Write/Edit Post Screen ------------------------------------------------------------------------------*/ #show-comments { overflow: hidden; } #save-action .spinner, #show-comments a { float: left; } #show-comments .spinner { float: none; margin-top: 0; } #lost-connection-notice .spinner { visibility: visible; float: left; margin: 0 5px 0 0; } #titlediv { position: relative; } #titlediv label { cursor: text; } #titlediv div.inside { margin: 0; } #poststuff #titlewrap { border: 0; padding: 0; } #titlediv #title { padding: 3px 8px; font-size: 1.7em; line-height: 100%; height: 1.7em; width: 100%; outline: none; margin: 0 0 3px; background-color: #fff; } #titlediv #title-prompt-text { color: #646970; position: absolute; font-size: 1.7em; padding: 10px; pointer-events: none; } #titlewrap .skiplink { background: #fff; line-height: 2.30769231; /* 30px for 32px min-height */ min-height: 32px; right: 4px; } #titlewrap .skiplink:focus { clip: inherit; clip-path: inherit; top: 4px; width: auto; } input#link_description, input#link_url { width: 100%; } #pending { background: 0 none; border: 0 none; padding: 0; font-size: 11px; margin-top: -1px; } #edit-slug-box, #comment-link-box { line-height: 1.84615384; min-height: 25px; margin-top: 5px; padding: 0 10px; color: #646970; } #sample-permalink { display: inline-block; max-width: 100%; word-wrap: break-word; } #edit-slug-box .cancel { margin-right: 10px; padding: 0; } #comment-link-box { margin: 5px 0; padding: 0 5px; } #editable-post-name-full { display: none; } #editable-post-name { font-weight: 600; } #editable-post-name input { font-size: 13px; font-weight: 400; min-height: 32px; margin: 0; width: 16em; } .postarea h3 label { float: left; } body.post-new-php .submitbox .submitdelete { display: none; } .submitbox .submit a:hover { text-decoration: underline; } .submitbox .submit input { margin-bottom: 8px; margin-right: 4px; padding: 6px; } #post-status-select { margin-top: 3px; } body.post-type-wp_navigation div#minor-publishing, body.post-type-wp_navigation .inline-edit-status { display: none; } /* Post Screen */ /* Only highlight drop zones when dragging and only in the 2 columns layout. */ .is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables { border-radius: 8px; background: rgb(var(--wp-admin-theme-color--rgb), 0.04); /* * This min-height is meant to limit jumpiness while dragging. It's equivalent * to the minimum height of the sortable-placeholder which is given by the height * of a collapsed post box (36px + 1px top and bottom borders) + the placeholder * bottom margin (20px) + 2 additional pixels to compensate browsers rounding. */ min-height: 60px; margin-bottom: 20px; } .postbox { position: relative; min-width: 255px; border: 1px solid #c3c4c7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); background: #fff; } #trackback_url { width: 99%; } #normal-sortables .postbox .submit { background: transparent none; border: 0 none; float: right; padding: 0 12px; margin: 0; } .category-add input[type="text"], .category-add select { width: 100%; max-width: 260px; vertical-align: baseline; } #side-sortables .category-add input[type="text"], #side-sortables .category-add select { margin: 0 0 1em; } ul.category-tabs li, #side-sortables .add-menu-item-tabs li, .wp-tab-bar li { display: inline; line-height: 1.35; } .no-js .category-tabs li.hide-if-no-js { display: none; } .category-tabs a, #side-sortables .add-menu-item-tabs a, .wp-tab-bar a { text-decoration: none; } /* @todo: do these really need to be so specific? */ #side-sortables .category-tabs .tabs a, #side-sortables .add-menu-item-tabs .tabs a, .wp-tab-bar .wp-tab-active a, #post-body ul.category-tabs li.tabs a, #post-body ul.add-menu-item-tabs li.tabs a { color: #2c3338; } .category-tabs { margin: 8px 0 5px; } /* Back-compat for pre-4.4 */ #category-adder h4 { margin: 0; } .taxonomy-add-new { display: inline-block; margin: 10px 0; font-weight: 600; } #side-sortables .add-menu-item-tabs, .wp-tab-bar { margin-bottom: 3px; } #normal-sortables .postbox #replyrow .submit { float: none; margin: 0; padding: 5px 7px 10px; overflow: hidden; } #side-sortables .submitbox .submit input, #side-sortables .submitbox .submit .preview, #side-sortables .submitbox .submit a.preview:hover { border: 0 none; } /* @todo: make this a more generic class */ ul.category-tabs, ul.add-menu-item-tabs, ul.wp-tab-bar { margin-top: 12px; } ul.category-tabs li, ul.add-menu-item-tabs li { border: solid 1px transparent; position: relative; } ul.category-tabs li.tabs, ul.add-menu-item-tabs li.tabs, .wp-tab-active { border: 1px solid #dcdcde; border-bottom-color: #fff; background-color: #fff; } ul.category-tabs li, ul.add-menu-item-tabs li, ul.wp-tab-bar li { padding: 3px 5px 6px; } #set-post-thumbnail { display: inline-block; max-width: 100%; } #postimagediv .inside img { max-width: 100%; height: auto; vertical-align: top; background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 0 0, 10px 10px; background-size: 20px 20px; } form#tags-filter { position: relative; } /* Global classes */ .wp-hidden-children .wp-hidden-child, .ui-tabs-hide { display: none; } #post-body .tagsdiv #newtag { margin-right: 0; flex: 1; min-width: 0; } #side-sortables input#post_password { width: 94% } #side-sortables .tagsdiv #newtag { flex: 1; min-width: 0; } #post-status-info { width: 100%; border-spacing: 0; border: 1px solid #c3c4c7; border-top: none; background-color: #f6f7f7; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); z-index: 999; } #post-status-info td { font-size: 12px; } .autosave-info { padding: 2px 10px; text-align: right; } #editorcontent #post-status-info { border: none; } #content-resize-handle { background: transparent url(../images/resize.gif) no-repeat scroll right bottom; width: 12px; cursor: row-resize; } /*rtl:ignore*/ .rtl #content-resize-handle { background-image: url(../images/resize-rtl.gif); background-position: left bottom; } .wp-editor-expand #content-resize-handle { display: none; } #postdivrich #content { resize: none; } #wp-word-count { padding: 2px 10px; } #wp-content-editor-container { position: relative; } .wp-editor-expand #wp-content-editor-tools { z-index: 1000; border-bottom: 1px solid #c3c4c7; } .wp-editor-expand #wp-content-editor-container { box-shadow: none; margin-top: -1px; } .wp-editor-expand #wp-content-editor-container { border-bottom: 0 none; } .wp-editor-expand div.mce-statusbar { z-index: 1; } .wp-editor-expand #post-status-info { border-top: 1px solid #c3c4c7; } .wp-editor-expand div.mce-toolbar-grp { z-index: 999; } /* TinyMCE native fullscreen mode override */ .mce-fullscreen #wp-content-wrap .mce-menubar, .mce-fullscreen #wp-content-wrap .mce-toolbar-grp, .mce-fullscreen #wp-content-wrap .mce-edit-area, .mce-fullscreen #wp-content-wrap .mce-statusbar { position: static !important; width: auto !important; padding: 0 !important; } .mce-fullscreen #wp-content-wrap .mce-statusbar { visibility: visible !important; } .mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw { display: none; } .post-php.mce-fullscreen #wpadminbar, .mce-fullscreen #wp-content-wrap .mce-wp-dfw { display: none; } /* End TinyMCE native fullscreen mode override */ #wp-content-editor-tools { background-color: #f0f0f1; padding-top: 20px; } #poststuff #post-body.columns-2 #side-sortables { width: 280px; } #timestampdiv select { vertical-align: top; font-size: 12px; line-height: 2.33333333; /* 28px */ } #aa, #jj, #hh, #mn { padding: 6px 1px; font-size: 12px; line-height: 1.16666666; /* 14px */ } #jj, #hh, #mn { width: 2em; } #aa { width: 3.4em; } .curtime #timestamp { padding: 2px 0 1px; display: inline !important; height: auto !important; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { color: #8c8f94; } #post-body .misc-pub-post-status:before, #post-body #visibility:before, .curtime #timestamp:before, #post-body .misc-pub-uploadedby:before, #post-body .misc-pub-uploadedto:before, #post-body .misc-pub-revisions:before, #post-body .misc-pub-response-to:before, #post-body .misc-pub-comment-status:before { font: normal 20px/1 dashicons; display: inline-block; margin-left: -1px; padding-right: 3px; vertical-align: top; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } #post-body .misc-pub-post-status:before, #post-body .misc-pub-comment-status:before { content: "\f173"; content: "\f173" / ''; } #post-body #visibility:before { content: "\f177"; content: "\f177" / ''; } .curtime #timestamp:before { content: "\f145"; content: "\f145" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedby:before { content: "\f110"; content: "\f110" / ''; position: relative; top: -1px; } #post-body .misc-pub-uploadedto:before { content: "\f318"; content: "\f318" / ''; position: relative; top: -1px; } #post-body .misc-pub-revisions:before { content: "\f321"; content: "\f321" / ''; } #post-body .misc-pub-response-to:before { content: "\f101"; content: "\f101" / ''; } #timestampdiv { padding-top: 5px; line-height: 1.76923076; } #timestampdiv p { margin: 8px 0 6px; } #timestampdiv input { text-align: center; } .notification-dialog { position: fixed; top: 30%; max-height: 70%; left: 50%; width: 450px; margin-left: -225px; background: #fff; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); line-height: 1.5; z-index: 1000005; overflow-y: auto; } .notification-dialog-background { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #000; opacity: 0.7; filter: alpha(opacity=70); z-index: 1000000; } #post-lock-dialog .post-locked-message, #post-lock-dialog .post-taken-over { margin: 25px; } #post-lock-dialog .post-locked-message a.button, #file-editor-warning .button { margin-right: 10px; } #post-lock-dialog .post-locked-avatar { float: left; margin: 0 20px 20px 0; } #post-lock-dialog .wp-tab-first { outline: 0; } #post-lock-dialog .locked-saving img { float: left; margin-right: 3px; } #post-lock-dialog.saving .locked-saving, #post-lock-dialog.saved .locked-saved { display: inline; } #excerpt { display: block; margin: 12px 0 0; height: 4em; width: 100%; } .tagchecklist { margin-left: 14px; font-size: 12px; overflow: auto; } .tagchecklist br { display: none; } .tagchecklist strong { margin-left: -8px; position: absolute; } .tagchecklist > li { float: left; margin-right: 25px; font-size: 13px; line-height: 1.8; cursor: default; max-width: 100%; overflow: hidden; text-overflow: ellipsis; } .tagchecklist .ntdelbutton { position: absolute; width: 24px; height: 24px; border: none; margin: 0 0 0 -19px; padding: 0; background: none; cursor: pointer; text-indent: 0; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { font-size: 14px; padding: 8px 12px; margin: 0; line-height: 1.4; } #poststuff .stuffbox h2 { padding: 8px 10px; } #poststuff .stuffbox > h2 { border-bottom: 1px solid #f0f0f1; } #poststuff .inside { margin: 6px 0 0; } .link-php #poststuff .inside, .link-add-php #poststuff .inside { margin-top: 12px; } #poststuff .stuffbox .inside { margin: 0; } #poststuff .inside #parent_id, #poststuff .inside #page_template { max-width: 100%; } .post-attributes-label-wrapper { margin-bottom: 0.5em; } .post-attributes-label { vertical-align: baseline; font-weight: 600; } #post-visibility-select, #comment-status-radio { line-height: 1.5; margin-top: 3px; } #linksubmitdiv .inside, /* Old Link Manager back-compat. */ #poststuff #submitdiv .inside { margin: 0; padding: 0; } #post-body-content, .edit-form-section { margin-bottom: 20px; } .wp_attachment_details .attachment-content-description { margin-top: 0.5385em; display: inline-block; min-height: 1.6923em; } /** * Privacy Settings section * * Note: This section includes selectors from * Site Health where duplicate styling is used. */ /* General */ .privacy-settings #wpcontent, .privacy-settings.auto-fold #wpcontent, .site-health #wpcontent, .site-health.auto-fold #wpcontent { padding-left: 0; } /* Better position for the WordPress admin notices. */ .privacy-settings .notice, .site-health .notice { margin: 25px 20px 15px 22px; } .privacy-settings .notice ~ .notice, .site-health .notice ~ .notice { margin-top: 5px; } /* Emulates .wrap h1 styling */ .privacy-settings-header h1, .health-check-header h1 { display: inline-block; font-weight: 600; margin: 0 0.8rem 1rem; font-size: 23px; padding: 9px 0 4px; line-height: 1.3; } /* Header */ .privacy-settings-header, .health-check-header { text-align: center; margin: 0 0 1rem; background: #fff; border-bottom: 1px solid #dcdcde; } .privacy-settings-title-section, .health-check-title-section { display: flex; align-items: center; justify-content: center; clear: both; padding-top: 8px; } .privacy-settings-tabs-wrapper { /* IE 11 */ display: -ms-inline-grid; -ms-grid-columns: 1fr 1fr; vertical-align: top; /* modern browsers */ display: inline-grid; grid-template-columns: 1fr 1fr; } .privacy-settings-tab { display: block; /* IE 11 */ text-decoration: none; color: inherit; padding: 0.5rem 1rem 1rem; margin: 0 1rem; transition: box-shadow 0.5s ease-in-out; } .privacy-settings-tab:nth-child(1), .health-check-tab:nth-child(1) { -ms-grid-column: 1; /* IE 11 */ } .privacy-settings-tab:nth-child(2), .health-check-tab:nth-child(2) { -ms-grid-column: 2; /* IE 11 */ } .privacy-settings-tab:focus, .health-check-tab:focus { color: #1d2327; outline: 1px solid #787c82; box-shadow: none; } .privacy-settings-tab.active, .health-check-tab.active { box-shadow: inset 0 -3px var(--wp-admin-theme-color); font-weight: 600; } /* Body */ .privacy-settings-body, .health-check-body { max-width: 800px; margin: 0 auto; } .tools-privacy-policy-page th { min-width: 230px; } .hr-separator { margin-top: 20px; margin-bottom: 15px; } /* Accordions */ .privacy-settings-accordion, .health-check-accordion { border: 1px solid #c3c4c7; } .privacy-settings-accordion-heading, .health-check-accordion-heading { margin: 0; border-top: 1px solid #c3c4c7; font-size: inherit; line-height: inherit; font-weight: 600; color: inherit; } .privacy-settings-accordion-heading:first-child, .health-check-accordion-heading:first-child { border-top: none; } .privacy-settings-accordion-trigger, .health-check-accordion-trigger { background: #fff; border: 0; color: #2c3338; cursor: pointer; display: flex; font-weight: 400; margin: 0; padding: 1em 3.5em 1em 1.5em; min-height: 46px; position: relative; text-align: left; width: 100%; align-items: center; justify-content: space-between; -webkit-user-select: auto; user-select: auto; } .privacy-settings-accordion-trigger:hover, .privacy-settings-accordion-trigger:active, .health-check-accordion-trigger:hover, .health-check-accordion-trigger:active { background: #f6f7f7; } .privacy-settings-accordion-trigger:focus, .health-check-accordion-trigger:focus { color: #1d2327; border: none; box-shadow: none; outline-offset: -1px; outline: 2px solid var(--wp-admin-theme-color); background-color: #f6f7f7; } .privacy-settings-accordion-trigger .title, .health-check-accordion-trigger .title { pointer-events: none; font-weight: 600; flex-grow: 1; } .privacy-settings-accordion-trigger .icon, .privacy-settings-view-read .icon, .health-check-accordion-trigger .icon, .site-health-view-passed .icon { border: solid #50575e; border-width: 0 2px 2px 0; height: 0.5rem; pointer-events: none; position: absolute; right: 1.5em; top: 50%; transform: translateY(-70%) rotate(45deg); width: 0.5rem; } .privacy-settings-accordion-trigger .badge, .health-check-accordion-trigger .badge { padding: 0.1rem 0.5rem 0.15rem; color: #2c3338; font-weight: 600; } .privacy-settings-accordion-trigger .badge { margin-left: 0.5rem; } .privacy-settings-accordion-trigger .badge.blue, .health-check-accordion-trigger .badge.blue { border: 1px solid var(--wp-admin-theme-color); } .privacy-settings-accordion-trigger .badge.orange, .health-check-accordion-trigger .badge.orange { border: 1px solid #dba617; } .privacy-settings-accordion-trigger .badge.red, .health-check-accordion-trigger .badge.red { border: 1px solid #e65054; } .privacy-settings-accordion-trigger .badge.green, .health-check-accordion-trigger .badge.green { border: 1px solid #00ba37; } .privacy-settings-accordion-trigger .badge.purple, .health-check-accordion-trigger .badge.purple { border: 1px solid #2271b1; } .privacy-settings-accordion-trigger .badge.gray, .health-check-accordion-trigger .badge.gray { border: 1px solid #c3c4c7; } .privacy-settings-accordion-trigger[aria-expanded="true"] .icon, .privacy-settings-view-passed[aria-expanded="true"] .icon, .health-check-accordion-trigger[aria-expanded="true"] .icon, .site-health-view-passed[aria-expanded="true"] .icon { transform: translateY(-30%) rotate(-135deg) } .privacy-settings-accordion-panel, .health-check-accordion-panel { margin: 0; padding: 1em 1.5em; background: #fff; } .privacy-settings-accordion-panel[hidden], .health-check-accordion-panel[hidden] { display: none; } .privacy-settings-accordion-panel a .dashicons, .health-check-accordion-panel a .dashicons { text-decoration: none; } .privacy-settings-accordion-actions { justify-content: right; display: flex; align-items: center; flex-wrap: wrap; gap: 1em; } .privacy-settings-accordion-actions .success { display: none; color: #007017; } .privacy-settings-accordion-actions .success.visible { display: inline-block; } /* Suggested text for privacy policy */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial, .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy { display: none; } .privacy-settings-accordion-panel strong.wp-policy-help, /* For back-compat, see #49282 */ .privacy-settings-accordion-panel strong.privacy-policy-tutorial { display: block; margin: 0 0 1em; } .privacy-text-copy span { pointer-events: none; } .privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p), .privacy-settings-accordion-panel div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p) { margin: 0; padding: 1em; border-left: 2px solid #787c82; } /* Media queries */ @media screen and (max-width: 782px) { .privacy-settings-body, .health-check-body { margin: 0 12px; width: auto; } .privacy-settings .notice, .site-health .notice { margin: 5px 10px 15px; } .privacy-settings .update-nag, .site-health .update-nag { margin-right: 10px; margin-left: 10px; } input#create-page { margin-top: 10px; } .wp-core-ui button.privacy-text-copy { white-space: normal; line-height: 1.8; } #edit-slug-box { padding: 0; } #editable-post-name input { min-height: 40px; } } @media only screen and (max-width: 1004px) { .privacy-settings-body, .health-check-body { margin: 0 22px; width: auto; } } /** * End Privacy Settings section */ /*------------------------------------------------------------------------------ 11.1 - Custom Fields ------------------------------------------------------------------------------*/ #postcustomstuff thead th { padding: 5px 8px 8px; background-color: #f0f0f1; } #postcustom #postcustomstuff .submit { border: 0 none; float: none; padding: 0 8px 8px; } #postcustom #postcustomstuff .add-custom-field { padding: 12px 8px 8px; } #side-sortables #postcustom #postcustomstuff .submit { margin: 0; padding: 0; } #side-sortables #postcustom #postcustomstuff #the-list textarea { height: 85px; } #side-sortables #postcustom #postcustomstuff td.left input, #side-sortables #postcustom #postcustomstuff td.left select, #side-sortables #postcustomstuff #newmetaleft a { margin: 3px 3px 0; } #postcustomstuff table { margin: 0; width: 100%; border: 1px solid #dcdcde; border-spacing: 0; background-color: #f6f7f7; } #postcustomstuff tr { vertical-align: top; } #postcustomstuff table input, #postcustomstuff table select, #postcustomstuff table textarea { width: 96%; margin: 8px; } #side-sortables #postcustomstuff table input, #side-sortables #postcustomstuff table select, #side-sortables #postcustomstuff table textarea { margin: 3px; } #postcustomstuff th.left, #postcustomstuff td.left { width: 38%; } #postcustomstuff .submit input { margin: 0; width: auto; } #postcustomstuff #newmetaleft a, #postcustomstuff #newmeta-button { display: inline-block; margin: 0 8px 8px; text-decoration: none; } .no-js #postcustomstuff #enternew { display: none; } #post-body-content .compat-attachment-fields { margin-bottom: 20px; } .compat-attachment-fields th { padding-top: 5px; padding-right: 10px; } /*------------------------------------------------------------------------------ 11.3 - Featured Images ------------------------------------------------------------------------------*/ #select-featured-image { padding: 4px 0; overflow: hidden; } #select-featured-image img { max-width: 100%; height: auto; margin-bottom: 10px; } #select-featured-image a { float: left; clear: both; } #select-featured-image .remove { display: none; margin-top: 10px; } .js #select-featured-image.has-featured-image .remove { display: inline-block; } .no-js #select-featured-image .choose { display: none; } /*------------------------------------------------------------------------------ 11.4 - Post formats ------------------------------------------------------------------------------*/ .post-format-icon::before { display: inline-block; vertical-align: middle; height: 20px; width: 20px; margin-top: -4px; margin-right: 7px; color: #dcdcde; font: normal 20px/1 dashicons; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a.post-format-icon:hover:before { color: #135e96; } #post-formats-select { line-height: 2; } #post-formats-select .post-format-icon::before { top: 5px; } input.post-format { margin-top: 1px; } label.post-format-icon { margin-left: 0; padding: 2px 0; } .post-format-icon.post-format-standard::before { content: "\f109"; content: "\f109" / ''; } .post-format-icon.post-format-image::before { content: "\f128"; content: "\f128" / ''; } .post-format-icon.post-format-gallery::before { content: "\f161"; content: "\f161" / ''; } .post-format-icon.post-format-audio::before { content: "\f127"; content: "\f127" / ''; } .post-format-icon.post-format-video::before { content: "\f126"; content: "\f126" / ''; } .post-format-icon.post-format-chat::before { content: "\f125"; content: "\f125" / ''; } .post-format-icon.post-format-status::before { content: "\f130"; content: "\f130" / ''; } .post-format-icon.post-format-aside::before { content: "\f123"; content: "\f123" / ''; } .post-format-icon.post-format-quote::before { content: "\f122"; content: "\f122" / ''; } .post-format-icon.post-format-link::before { content: "\f103"; content: "\f103" / ''; } /*------------------------------------------------------------------------------ 12.0 - Categories ------------------------------------------------------------------------------*/ .category-adder { margin-left: 120px; padding: 4px 0; } .category-adder h4 { margin: 0 0 8px; } #side-sortables .category-adder { margin: 0; } .wp-tab-panel, .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel, .posttypediv div.tabs-panel, .taxonomydiv div.tabs-panel { min-height: 42px; max-height: 200px; overflow: auto; padding: 0 0.9em; border: solid 1px #dcdcde; background-color: #fff; } div.tabs-panel-active { display: block; } div.tabs-panel-inactive { display: none; } div.tabs-panel-active:focus { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .options-discussion-php .indent-children ul, #front-page-warning, #front-static-pages ul, ul.export-filters, .inline-editor ul.cat-checklist ul, .categorydiv ul.categorychecklist ul, .customlinkdiv ul.categorychecklist ul, .posttypediv ul.categorychecklist ul, .taxonomydiv ul.categorychecklist ul { margin-left: 18px; } ul.categorychecklist li { margin: 0; padding: 0; line-height: 1.69230769; word-wrap: break-word; } .categorydiv .tabs-panel, .customlinkdiv .tabs-panel, .posttypediv .tabs-panel, .taxonomydiv .tabs-panel { border-width: 3px; border-style: solid; } .form-wrap label { display: block; padding: 2px 0; } .form-field input[type="text"], .form-field input[type="password"], .form-field input[type="email"], .form-field input[type="number"], .form-field input[type="search"], .form-field input[type="tel"], .form-field input[type="url"], .form-field textarea { border-style: solid; border-width: 1px; width: 95%; } .form-field select, .form-field p { max-width: 95%; } p.description, .form-wrap p { margin: 2px 0 5px; color: #646970; } p.help, p.description, span.description, .form-wrap p { font-size: 13px; } p.description code { font-style: normal; } p.description code, .form-wrap p code { color: #50575e; } .form-wrap .form-field { margin: 1em 0; padding: 0; } .col-wrap h2 { margin: 12px 0; font-size: 1.1em; } .col-wrap p.submit { margin-top: -10px; } .edit-term-notes { margin-top: 2em; } /*------------------------------------------------------------------------------ 13.0 - Tags ------------------------------------------------------------------------------*/ #poststuff .tagsdiv .ajaxtag { margin-top: 1em; display: flex; gap: 8px; align-items: center; } #poststuff .tagsdiv .howto { margin: 1em 0 6px; } .ajaxtag .newtag { position: relative; } .tagsdiv .newtag { flex: 1; min-width: 0; } .tagsdiv .the-tags { display: block; height: 60px; margin: 0 auto; overflow: auto; width: 260px; } #post-body-content .tagsdiv .the-tags { margin: 0 5px; } p.popular-tags { border: none; line-height: 2em; padding: 8px 12px 12px; text-align: justify; } p.popular-tags a { padding: 0 3px; } .tagcloud { width: 97%; margin: 0 0 40px; text-align: justify; } .tagcloud h2 { margin: 2px 0 12px; } #poststuff .inside .the-tagcloud { margin: 5px 0 10px; padding: 8px; border: 1px solid #dcdcde; line-height: 1.2; word-spacing: 3px; } .the-tagcloud ul { margin: 0; } .the-tagcloud ul li { display: inline-block; } /* Back-compat styles from deprecated jQuery.suggest, see ticket #40260. */ .ac_results { display: none; margin: -1px 0 0; padding: 0; list-style: none; position: absolute; z-index: 10000; border: 1px solid #4f94d4; background-color: #fff; } .wp-customizer .ac_results { z-index: 500000; } .ac_results li { margin: 0; padding: 5px 10px; white-space: nowrap; text-align: left; } .ac_results .ac_over, .ac_over .ac_match { background-color: #2271b1; color: #fff; cursor: pointer; } .ac_match { text-decoration: underline; } #addtag .spinner { float: none; vertical-align: top; } #edittag { max-width: 800px; } .edit-tag-actions { display: flex; align-items: center; gap: 8px; margin-top: 20px; } /* Comments */ .comment-php .wp-editor-area { height: 200px; } .comment-ays th, .comment-ays td { padding: 10px 15px; } .comment-ays .comment-content ul { list-style: initial; margin-left: 2em; } .comment-ays .comment-content a[href]:after { content: "(" attr( href ) ")"; display: inline-block; padding: 0 4px; color: #646970; font-size: 13px; word-break: break-all; } .comment-ays .comment-content p.edit-comment { margin-top: 10px; } .comment-ays .comment-content p.edit-comment a[href]:after { content: ""; padding: 0; } .comment-ays-submit .button-cancel { margin-left: 1em; } .trash-undo-inside, .spam-undo-inside { margin: 1px 8px 1px 0; line-height: 1.23076923; } .spam-undo-inside .avatar, .trash-undo-inside .avatar { height: 20px; width: 20px; margin-right: 8px; vertical-align: middle; } .stuffbox .editcomment { clear: none; margin-top: 0; } #namediv.stuffbox .editcomment input { width: 100%; } #namediv.stuffbox .editcomment.form-table td { padding: 10px; } #comment-status-radio p { margin: 3px 0 5px; } #comment-status-radio input { margin: 2px 3px 5px 0; vertical-align: middle; } #comment-status-radio label { padding: 5px 0; } /* links tables */ table.links-table { width: 100%; border-spacing: 0; } .links-table th { font-weight: 400; text-align: left; vertical-align: top; min-width: 80px; width: 20%; word-wrap: break-word; } .links-table th, .links-table td { padding: 5px 0; } .links-table td label { margin-right: 8px; } .links-table td input[type="text"], .links-table td textarea { width: 100%; } .links-table #link_rel { max-width: 280px; } /* DFW 2 -------------------------------------------------------------- */ #qt_content_dfw { display: none; } .wp-editor-expand #qt_content_dfw { display: inline-block; } .focus-on .wrap > h1, .focus-on .page-title-action, .focus-on #wpfooter, .focus-on .postbox-container > *, .focus-on div.updated, .focus-on div.error, .focus-on div.notice, .focus-on .update-nag, .focus-on #wp-toolbar, .focus-on #screen-meta-links, .focus-on #screen-meta { opacity: 0; transition-duration: 0.6s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-on #wp-toolbar { opacity: 0.3; } .focus-off .wrap > h1, .focus-off .page-title-action, .focus-off #wpfooter, .focus-off .postbox-container > *, .focus-off div.updated, .focus-off div.error, .focus-off div.notice, .focus-off .update-nag, .focus-off #wp-toolbar, .focus-off #screen-meta-links, .focus-off #screen-meta { opacity: 1; transition-duration: 0.2s; transition-property: opacity; transition-timing-function: ease-in-out; } .focus-off #wp-toolbar { -webkit-transform: translate(0, 0); } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transition-duration: 0.6s; transition-property: transform; transition-timing-function: ease-in-out; } .focus-on #adminmenuback, .focus-on #adminmenuwrap { transform: translateX( -100% ); } .focus-off #adminmenuback, .focus-off #adminmenuwrap { transform: translateX( 0 ); transition-duration: 0.2s; transition-property: transform; transition-timing-function: ease-in-out; } /* =Media Queries -------------------------------------------------------------- */ /** * HiDPI Displays */ @media print, (min-resolution: 120dpi) { #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom; background-size: 11px 11px; } /*rtl:ignore*/ .rtl #content-resize-handle, .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize { background-image: url(../images/resize-rtl-2x.gif); background-position: left bottom; } } /* * The edit attachment screen auto-switches to one column layout when the * viewport is smaller than 1200 pixels. */ @media only screen and (max-width: 1200px) { .post-type-attachment #poststuff { min-width: 0; } .post-type-attachment #wpbody-content #poststuff #post-body { margin: 0; } .post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-right: 0; width: 100%; } .post-type-attachment #poststuff #postbox-container-1 .empty-container, .post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty { outline: none; height: 0; min-height: 0; } .post-type-attachment #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } .is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables { border: none; background: transparent; min-height: 0; margin-bottom: 0; } /* hide the radio buttons for column prefs */ .post-type-attachment .screen-layout, .post-type-attachment .columns-prefs { display: none; } } /* one column on the post write/edit screen */ @media only screen and (max-width: 850px) { #poststuff { min-width: 0; } #wpbody-content #poststuff #post-body { margin: 0; } #wpbody-content #post-body.columns-2 #postbox-container-1 { margin-right: 0; width: 100%; } #poststuff #postbox-container-1 .empty-container, #poststuff #postbox-container-1 #side-sortables:empty { height: 0; min-height: 0; } #poststuff #post-body.columns-2 #side-sortables { min-height: 0; width: auto; } /* Increase min-height while dragging for the #side-sortables and any potential sortables area with custom ID. */ .is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container, .is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty, .is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables, .is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables { height: auto; min-height: 60px; } /* hide the radio buttons for column prefs */ .screen-layout, .columns-prefs { display: none; } } @media screen and (max-width: 782px) { .wp-core-ui .edit-tag-actions .button-primary { margin-bottom: 0; } #post-body-content { min-width: 0; } #titlediv #title-prompt-text { padding: 10px; } #poststuff .stuffbox .inside { padding: 0 2px 4px 0; } #poststuff h3.hndle, /* Back-compat for pre-4.4 */ #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ #poststuff h2 { padding: 12px; } #namediv.stuffbox .editcomment.form-table td { padding: 5px 10px; } .post-format-options { padding-right: 0; } .post-format-options a { margin-right: 5px; margin-bottom: 5px; min-width: 52px; } .post-format-options .post-format-title { font-size: 11px; } .post-format-options a div { height: 28px; width: 28px; } .post-format-options a div:before { font-size: 26px !important; } /* Publish Metabox Options */ #post-visibility-select { line-height: 280%; } .wp-core-ui .save-post-visibility, .wp-core-ui .save-timestamp { vertical-align: middle; margin-right: 15px; } .timestamp-wrap select#mm { display: block; width: 100%; margin-bottom: 10px; } .timestamp-wrap #jj, .timestamp-wrap #aa, .timestamp-wrap #hh, .timestamp-wrap #mn { padding: 12px 3px; font-size: 14px; margin-bottom: 5px; width: auto; text-align: center; } /* Categories Metabox */ ul.category-tabs { margin: 30px 0 15px; } ul.category-tabs li.tabs { padding: 15px; } ul.categorychecklist li { margin-bottom: 15px; } ul.categorychecklist ul { margin-top: 15px; } .category-add input[type=text], .category-add select { max-width: none; margin-bottom: 15px; } /* Tags Metabox */ .tagsdiv .newtag { flex: 1; min-width: 0; height: auto; margin-bottom: 0; } .tagchecklist { margin: 25px 10px; } .tagchecklist > li { font-size: 16px; line-height: 1.4; } /* Discussion */ #commentstatusdiv p { line-height: 2.8; } /* TinyMCE Adjustments */ .mceToolbar * { white-space: normal !important; } .mceToolbar tr, .mceToolbar td { float: left !important; } .wp_themeSkin a.mceButton { width: 30px; height: 30px; } .wp_themeSkin .mceButton .mceIcon { margin-top: 5px; margin-left: 5px; } .wp_themeSkin .mceSplitButton { margin-top: 1px; } .wp_themeSkin .mceSplitButton td a.mceAction { padding: 6px 3px 6px 6px; } .wp_themeSkin .mceSplitButton td a.mceOpen, .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen { padding-top: 6px; padding-bottom: 6px; background-position: 1px 6px; } .wp_themeSkin table.mceListBox { margin: 5px; } div.quicktags-toolbar input { padding: 10px 20px; } button.wp-switch-editor { font-size: 16px; line-height: 1; margin: 7px 0 0 7px; padding: 8px 12px; } #wp-content-media-buttons a { font-size: 14px; padding: 6px 10px; } .wp-media-buttons span.wp-media-buttons-icon, .wp-media-buttons span.jetpack-contact-form-icon { width: 22px !important; margin-left: -2px !important; } .wp-media-buttons .add_media span.wp-media-buttons-icon:before, .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before { font-size: 20px !important; } #content_wp_fullscreen { display: none; } .misc-pub-section { padding: 12px 10px; } #delete-action, #publishing-action { line-height: 3.61538461; } #publishing-action .spinner { float: none; margin-top: -2px; /* Half of the Publish button's bottom margin. */ } /* Moderate Comment */ .comment-ays th, .comment-ays td { padding-bottom: 0; } .comment-ays td { padding-top: 6px; } /* Links */ .links-table #link_rel { max-width: none; } .links-table th, .links-table td { padding: 10px 0; } .edit-term-notes { display: none; } .privacy-text-box { width: auto; } .privacy-text-box-toc { float: none; width: auto; height: 100%; display: flex; flex-direction: column; } .privacy-text-section .return-to-top { margin: 2em 0 0; } } css/themes-rtl.min.css000066600000103030152330733730010723 0ustar00/*! This file is auto-generated */ .themes-php{overflow-y:scroll}.themes-php #adminmenuwrap{z-index:10001}body.js .theme-browser.search-loading{display:none}.theme-browser .themes{clear:both}.themes-php .wrap h1 .button{margin-right:20px}.themes-php .search-form{display:inline-flex;align-items:center;position:relative;top:0;gap:.5rem;width:100%;justify-content:end}.themes-php .wp-filter-search{position:relative;margin:0;width:280px}.theme .notice,.theme .notice.is-dismissible{right:0;margin:0;position:absolute;left:0;top:0}.theme-browser .theme{cursor:pointer;float:right;margin:0 0 4% 4%;position:relative;width:30.6%;background:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.theme-browser .theme:nth-child(3n){margin-left:0}.theme-browser .theme.focus,.theme-browser .theme:hover{cursor:pointer}.theme-browser .theme .theme-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:16px 15px;border-top:1px solid rgb(0,0,0,.1);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff}.theme-browser .theme .theme-actions{opacity:0;transition:opacity .1s ease-in-out;height:auto;background:rgba(246,247,247,.7);border-right:1px solid rgba(0,0,0,.05)}.theme-browser .theme.focus .theme-actions,.theme-browser .theme:hover .theme-actions{opacity:1}.theme-browser .theme .theme-actions .button-primary{margin-left:3px}.theme-browser .theme .theme-actions .button,.theme-browser .theme .theme-actions .button.updated-message,.theme-browser .theme .theme-actions .button.updating-message{float:none;margin-right:3px}.theme-browser .theme .theme-actions .button.updated-message::before,.theme-browser .theme .theme-actions .button.updating-message::before{line-height:1;vertical-align:text-bottom;position:relative;top:2px}.theme-browser .theme .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-screenshot{display:block;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;transition:opacity .2s ease-in-out}.theme-browser .theme .theme-screenshot:after{content:"";display:block;padding-top:66.66666%}.theme-browser .theme .theme-screenshot img{height:auto;position:absolute;right:0;top:0;width:100%;transition:opacity .2s ease-in-out}.theme-browser .theme.focus .theme-screenshot,.theme-browser .theme:hover .theme-screenshot{background:#fff}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:.4}.theme-browser .theme .more-details{opacity:0;position:absolute;top:35%;left:20%;right:20%;width:60%;background:#1d2327;background:rgba(0,0,0,.7);color:#fff;font-size:15px;text-shadow:0 1px 0 rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;font-weight:600;padding:15px 12px;text-align:center;border-radius:3px;border:none;transition:opacity .1s ease-in-out;cursor:pointer}.theme-browser .theme .more-details:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9)}.theme-browser .theme.focus{border-color:var(--wp-admin-theme-color);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.theme-browser .theme.focus .more-details{opacity:1}.theme-browser .theme.active.focus .theme-actions{display:block}.theme-browser.rendered .theme.focus .more-details,.theme-browser.rendered .theme:hover .more-details{opacity:1}.theme-browser .theme.active .theme-name{background:#1d2327;color:#fff;padding-left:115px;font-weight:300;box-shadow:inset 0 1px 1px rgba(0,0,0,.5)}.theme-browser .customize-control .theme.active .theme-name{padding-left:15px}.theme-browser .theme.active .theme-name span{font-weight:600}.theme-browser .theme.active .theme-actions{background:0 0;border-right:none;opacity:1}.theme-browser .theme.active .theme-actions .button-primary{border-color:#fff}.theme-id-container{position:relative}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{position:absolute;top:50%;transform:translateY(-50%);left:0;padding:9px 12px}.theme-browser .theme:not(.active) .theme-actions{box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}.theme-browser .theme.active .theme-actions .button-primary{margin-left:0}.theme-browser .theme.active .theme-actions .button:not(.button-primary){background:#fff}.theme-browser .theme.active .theme-actions .button:not(.button-primary):hover{background:#f0f0f0}.theme-browser .theme.active .theme-actions .button:not(.button-primary):focus{background:#fff}.theme-browser .theme .theme-author{background:#1d2327;color:#f0f0f1;display:none;font-size:14px;margin:0 10px;padding:5px 10px;position:absolute;bottom:56px}.theme-browser .theme.display-author .theme-author{display:block}.theme-browser .theme.display-author .theme-author a{color:inherit}.theme-browser .theme.add-new-theme{background:0 0;border:none;overflow:visible}.theme-browser .theme.add-new-theme a{text-decoration:none;display:block;position:relative;z-index:1}.theme-browser .theme.add-new-theme a:after{display:block;content:"";background:0 0;background:rgba(0,0,0,0);position:absolute;top:0;right:0;left:0;bottom:0;padding:0;text-shadow:none;border:5px dashed #dcdcde;border:5px dashed rgba(0,0,0,.1);box-sizing:border-box}.theme-browser .theme.add-new-theme span:after{background:#dcdcde;background:rgba(140,143,148,.1);border-radius:50%;display:inline-block;content:"\f132";content:"\f132"/'';-webkit-font-smoothing:antialiased;font:normal 74px/115px dashicons;width:100px;height:100px;vertical-align:middle;text-align:center;color:#8c8f94;position:absolute;top:30%;right:50%;margin-right:-50px;text-indent:-4px;padding:0;text-shadow:none;z-index:4}.rtl .theme-browser .theme.add-new-theme span:after{text-indent:4px}.theme-browser .theme.add-new-theme a:focus .theme-screenshot,.theme-browser .theme.add-new-theme a:hover .theme-screenshot{background:0 0}.theme-browser .theme.add-new-theme a:focus span:after,.theme-browser .theme.add-new-theme a:hover span:after{background:#fff;color:#2271b1}.theme-browser .theme.add-new-theme a:focus:after,.theme-browser .theme.add-new-theme a:hover:after{border-color:transparent;color:#fff;background:#2271b1;content:""}.theme-browser .theme.add-new-theme .theme-name{background:0 0;border:none;text-align:center;font-weight:400;position:relative;top:0;margin-top:-18px;padding-top:0;padding-bottom:48px}.theme-browser .theme.add-new-theme a:focus .theme-name,.theme-browser .theme.add-new-theme a:hover .theme-name{color:#fff;z-index:2}.theme-overlay .theme-backdrop{position:absolute;right:-20px;left:0;top:0;bottom:0;background:#f0f0f1;background:rgba(240,240,241,.9);z-index:10000;min-height:calc(100vh - var(--wp-admin--admin-bar--height,32px))}.theme-overlay .theme-header{position:absolute;top:0;right:0;left:0;height:48px;border-bottom:1px solid #dcdcde}.theme-overlay .theme-header button{padding:0}.theme-overlay .theme-header .close{cursor:pointer;height:48px;width:50px;text-align:center;float:left;border:0;border-right:1px solid #dcdcde;background-color:transparent;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:before{font:normal 22px/50px dashicons!important;color:#787c82;display:inline-block;content:"\f335";content:"\f335"/'';font-weight:300}.theme-overlay .theme-header .left,.theme-overlay .theme-header .right{cursor:pointer;color:#787c82;background-color:transparent;height:48px;width:54px;float:right;text-align:center;border:0;border-left:1px solid #dcdcde;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:focus,.theme-overlay .theme-header .right:hover{background:#dcdcde;border-color:#c3c4c7;color:#000}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#000}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .right:focus{box-shadow:none;outline:0}.theme-overlay .theme-header .left.disabled,.theme-overlay .theme-header .left.disabled:hover,.theme-overlay .theme-header .right.disabled,.theme-overlay .theme-header .right.disabled:hover{color:#c3c4c7;background:inherit;cursor:inherit}.theme-overlay .theme-header .left:before,.theme-overlay .theme-header .right:before{font:normal 20px/50px dashicons!important;display:inline;font-weight:300}.theme-overlay .theme-header .left:before{content:"\f345";content:"\f341"/''}.theme-overlay .theme-header .right:before{content:"\f341";content:"\f345"/''}.theme-overlay .theme-wrap{clear:both;position:fixed;top:9%;right:190px;left:30px;bottom:3%;background:#fff;box-shadow:0 1px 20px 5px rgba(0,0,0,.1);z-index:10000;box-sizing:border-box;-webkit-overflow-scrolling:touch}body.folded .theme-browser~.theme-overlay .theme-wrap{right:70px}.theme-overlay .theme-about{position:absolute;top:49px;bottom:57px;right:0;left:0;overflow:auto;padding:2% 4%}.theme-overlay .theme-actions{position:absolute;text-align:center;bottom:0;right:0;left:0;padding:10px 25px 5px;background:#f6f7f7;z-index:30;box-sizing:border-box;border-top:1px solid #f0f0f1;display:flex;justify-content:center;gap:5px}.theme-overlay .theme-actions .button{margin-bottom:5px}.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"],.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"]{display:none}.broken-themes a.delete-theme,.theme-overlay .theme-actions .delete-theme{color:#b32d2e;text-decoration:none;border-color:transparent;box-shadow:none;background:0 0}.broken-themes a.delete-theme:focus,.broken-themes a.delete-theme:hover,.theme-overlay .theme-actions .delete-theme:focus,.theme-overlay .theme-actions .delete-theme:hover{background:#b32d2e;color:#fff;border-color:#b32d2e;box-shadow:0 0 0 1px #b32d2e}.theme-overlay .theme-actions .active-theme,.theme-overlay.active .theme-actions .inactive-theme{display:none}.theme-overlay .theme-actions .inactive-theme,.theme-overlay.active .theme-actions .active-theme{display:block}.theme-overlay .theme-screenshots{float:right;margin:0 0 0 30px;width:55%;max-width:1200px;text-align:center}.theme-overlay .screenshot{border:1px solid #fff;box-sizing:border-box;overflow:hidden;position:relative;box-shadow:0 0 0 1px rgba(0,0,0,.2)}.theme-overlay .screenshot:after{content:"";display:block;padding-top:75%}.theme-overlay .screenshot img{height:auto;position:absolute;right:0;top:0;width:100%}.theme-overlay.small-screenshot .theme-screenshots{position:absolute;width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:350px;width:auto}.theme-overlay .screenshot.thumb{background:#c3c4c7;border:1px solid #f0f0f1;float:none;display:inline-block;margin:10px 5px 0;width:140px;height:80px;cursor:pointer}.theme-overlay .screenshot.thumb:after{content:"";display:block;padding-top:100%}.theme-overlay .screenshot.thumb img{cursor:pointer;height:auto;position:absolute;right:0;top:0;width:100%;height:auto}.theme-overlay .screenshot.selected{background:0 0;border:2px solid #72aee6}.theme-overlay .screenshot.selected img{opacity:.8}.theme-browser .theme .theme-screenshot.blank,.theme-overlay .screenshot.blank{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=)}.theme-overlay .theme-info{width:40%;float:right}.theme-overlay .current-label{background:#2c3338;color:#fff;font-size:11px;display:inline-block;padding:2px 8px;border-radius:2px;margin:0 0 -10px;-webkit-user-select:none;user-select:none}.theme-overlay .theme-name{color:#1d2327;font-size:32px;font-weight:100;margin:10px 0 0;line-height:1.3;word-wrap:break-word;overflow-wrap:break-word}.theme-overlay .theme-version{color:#646970;font-size:13px;font-weight:400;float:none;display:inline-block;margin-right:10px}.theme-overlay .theme-author{margin:15px 0 25px;color:#646970;font-size:16px;font-weight:400;line-height:inherit}.theme-overlay .toggle-auto-update{display:inline-flex;align-items:center;min-height:20px;vertical-align:top}.theme-overlay .theme-autoupdate .toggle-auto-update{text-decoration:none}.theme-overlay .theme-autoupdate .toggle-auto-update .label{text-decoration:underline}.theme-overlay .theme-description{color:#50575e;font-size:15px;font-weight:400;line-height:1.5;margin:30px 0 0}.theme-overlay .theme-tags{border-top:3px solid #f0f0f1;color:#646970;font-size:13px;font-weight:400;margin:30px 0 0;padding-top:20px}.theme-overlay .theme-tags span{color:#3c434a;font-weight:600;margin-left:5px}.theme-overlay .parent-theme{background:#fff;border:1px solid #f0f0f1;border-right:4px solid #72aee6;font-size:14px;font-weight:400;margin-top:30px;padding:10px 20px 10px 10px}.theme-overlay .parent-theme strong{font-weight:600}.single-theme .theme,.single-theme .theme-overlay .theme-backdrop,.single-theme .theme-overlay .theme-header{display:none}.single-theme .theme-overlay .theme-wrap{clear:both;min-height:330px;position:relative;right:auto;left:auto;top:auto;bottom:auto;z-index:10}.single-theme .theme-overlay .theme-about{padding:30px 30px 70px;position:static}.single-theme .theme-overlay .theme-actions{position:absolute}@media only screen and (min-width:2000px){#wpwrap .theme-browser .theme{width:17.6%;margin:0 0 3% 3%}#wpwrap .theme-browser .theme:nth-child(3n),#wpwrap .theme-browser .theme:nth-child(4n){margin-left:3%}#wpwrap .theme-browser .theme:nth-child(5n){margin-left:0}}@media only screen and (min-width:1680px){.theme-overlay .theme-wrap{width:1450px;margin:0 auto}}@media only screen and (min-width:1640px){.theme-browser .theme{width:22.7%;margin:0 0 3% 3%}.theme-browser .theme .theme-screenshot:after{padding-top:75%}.theme-browser .theme:nth-child(3n){margin-left:3%}.theme-browser .theme:nth-child(4n){margin-left:0}}@media only screen and (max-width:1120px){.theme-browser .theme{width:47.5%;margin-left:0}.theme-browser .theme:nth-child(2n){margin-left:0}.theme-browser .theme:nth-child(odd){margin-left:5%}}@media only screen and (max-width:960px){.theme-overlay .theme-wrap{right:65px}}@media only screen and (max-width:782px){.theme-overlay .theme-wrap,body.folded .theme-overlay .theme-wrap{top:0;left:0;bottom:0;right:0;padding:70px 20px 20px;border:none;z-index:100000;position:fixed}.theme-browser .theme.active .theme-name span{display:none}.theme-overlay .theme-screenshots{width:40%}.theme-overlay .theme-info{width:50%}.single-theme .theme-wrap{padding:10px}.theme-browser .theme .theme-actions{padding:5px 10px 4px}.theme-overlay.small-screenshot .theme-screenshots{position:static;float:none;max-width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:0;width:auto}.theme.focus .more-details,.theme:hover .more-details,.theme:not(.active):focus .theme-actions,.theme:not(.active):hover .theme-actions{display:none}.theme-browser.rendered .theme.focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:1}}@media only screen and (max-width:480px){.theme-browser .theme{width:100%;margin-left:0}.theme-browser .theme:nth-child(2n),.theme-browser .theme:nth-child(3n){margin-left:0}.theme-overlay .theme-about{bottom:105px}.theme-overlay .theme-actions{padding-right:4%;padding-left:4%}.theme-install-php .wp-filter .filter-count{margin-top:10px}}@media only screen and (max-width:650px){.theme-overlay .theme-description{margin-right:0}.theme-overlay .theme-actions .delete-theme{position:relative;left:auto;bottom:auto}.theme-overlay .theme-actions .inactive-theme{display:inline}.theme-overlay .theme-screenshots{width:100%;float:none;margin:0}.theme-overlay .theme-info{width:100%}.theme-overlay .theme-author{margin:5px 0 15px}.theme-overlay .current-label{margin-top:10px;font-size:13px}.themes-php .wp-filter-search{width:100%}.theme-install-php .wp-filter p.search-box{display:grid;row-gap:.5rem}.theme-browser .theme.add-new-theme span:after{font:normal 60px/90px dashicons;width:80px;height:80px;top:30%;right:50%;text-indent:0;margin-right:-40px}.single-theme .theme-wrap{margin:0 -10px 0 -12px;padding:10px}.single-theme .theme-overlay .theme-about{padding:10px;overflow:visible}.single-theme .current-label{display:none}.single-theme .theme-overlay .theme-actions{position:static}}.broken-themes{clear:both}.broken-themes table{text-align:right;width:50%;border-spacing:3px;padding:3px}.update-php .wrap{max-width:40rem}.theme-browser .theme .theme-installed{background:#2271b1}.theme-browser .theme .notice-success p:before{color:#68de7c;content:"\f147";content:"\f147"/'';display:inline-block;font:normal 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.theme-install.updated-message:before{content:""}.theme-install-php .wp-filter{padding-right:20px}@media only screen and (max-width:1000px){.theme-install-php .wp-filter p.search-box{column-gap:.5rem}}.theme-install-php a.browse-themes,.theme-install-php a.upload{cursor:pointer}.plugin-install-tab-upload .upload-view-toggle .upload,.upload-view-toggle .browse{display:none}.plugin-install-tab-upload .upload-view-toggle .browse{display:inline}.upload-plugin,.upload-theme{box-sizing:border-box;display:none;margin:0;padding:50px 0;width:100%;overflow:hidden;position:relative;top:10px;text-align:center}.plugin-install-tab-upload .upload-plugin,.show-upload-view .upload-plugin,.show-upload-view .upload-plugin-wrap,.show-upload-view .upload-theme{display:block}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{position:relative;margin:30px;display:inline-flex;justify-content:space-between;align-items:center;border:1px solid #c3c4c7;background:#f6f7f7}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{background:0 0;margin:0;padding:30px 30px 30px 0}.wp-upload-form input[type=submit].button{margin-left:30px}.upload-plugin .install-help,.upload-theme .install-help{color:#50575e;font-size:18px;font-style:normal;margin:0;padding:0;text-align:center}p.no-themes,p.no-themes-local{clear:both;color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0;text-align:center;display:none}.no-results p.no-themes{display:block}.theme-install-php .add-new-theme{display:none!important}@media only screen and (max-width:1120px){.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{margin:20px 0;max-width:100%}.upload-theme .install-help{font-size:15px;padding:20px 0 0}}.theme-details .theme-rating{line-height:1.9}.theme-details .star-rating{display:inline}.theme-details .no-rating,.theme-details .num-ratings{font-size:11px;color:#646970}.theme-details .no-rating{display:block;line-height:1.9}.update-from-upload-comparison{border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde;text-align:right;margin:1rem 0 1.4rem;border-collapse:collapse;width:100%}.update-from-upload-comparison tr:last-child td{height:1.4rem;vertical-align:top}.update-from-upload-comparison tr:first-child th{font-weight:700;height:1.4rem;vertical-align:bottom}.update-from-upload-comparison td.name-label{text-align:left}.update-from-upload-comparison td,.update-from-upload-comparison th{padding:.4rem 1.4rem}.update-from-upload-comparison td.warning{color:#d63638}.update-from-upload-actions{margin-top:1.4rem}.appearance_page_custom-header #headimg{border:1px solid #dcdcde;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:right;margin:0 0 20px 20px}.appearance_page_custom-header .random-header{clear:both;margin:0 0 20px 20px;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-left:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dcdcde}div#custom-background-image img{max-width:400px;max-height:300px}.background-position-control input[type=radio]:checked~.button{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);z-index:1}.background-position-control input[type=radio]:focus~.button{border-color:#4f94d4;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(34,113,177,.8);color:#1d2327}.background-position-control .background-position-center-icon,.background-position-control .background-position-center-icon:before{display:inline-block;line-height:1;text-align:center;transition:background-color .1s ease-in}.background-position-control .background-position-center-icon{height:20px;margin-top:13px;vertical-align:top;width:20px}.background-position-control .background-position-center-icon:before{background-color:#50575e;border-radius:50%;content:"";height:12px;width:12px}.background-position-control .button:hover .background-position-center-icon:before,.background-position-control input[type=radio]:focus~.button .background-position-center-icon:before{background-color:#1d2327}.background-position-control .button-group{display:block}.background-position-control .button-group .button{border-radius:0;box-shadow:none;height:40px!important;line-height:2.9!important;margin:0 0 0 -1px!important;padding:0 10px 1px!important;position:relative}.background-position-control .button-group .button:active,.background-position-control .button-group .button:focus,.background-position-control .button-group .button:hover{z-index:1}.background-position-control .button-group:last-child .button{box-shadow:0 1px 0 #c3c4c7}.background-position-control .button-group>label{margin:0!important}.background-position-control .button-group:first-child>label:first-child .button{border-radius:0 3px 0 0}.background-position-control .button-group:first-child>label:first-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group:first-child>label:last-child .button{border-radius:3px 0 0 0}.background-position-control .button-group:first-child>label:last-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group:last-child>label:first-child .button{border-radius:0 0 3px 0}.background-position-control .button-group:last-child>label:first-child .dashicons{transform:rotate(45deg)}.background-position-control .button-group:last-child>label:last-child .button{border-radius:0 0 0 3px}.background-position-control .button-group:last-child>label:last-child .dashicons{transform:rotate(-45deg)}.background-position-control .button-group+.button-group{margin-top:-1px}body.full-overlay-active{overflow:hidden;visibility:hidden}.wp-full-overlay{background:0 0;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%;min-width:0}.wp-full-overlay-sidebar{box-sizing:border-box;position:fixed;min-width:300px;max-width:600px;width:18%;height:100%;top:0;bottom:0;right:0;padding:0;margin:0;z-index:10;background:#f0f0f1;border-left:none}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-right:0!important}.wp-full-overlay.expanded{margin-right:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-300px}@media screen and (min-width:1667px){.wp-full-overlay.expanded{margin-right:18%}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-18%}}@media screen and (min-width:3333px){.wp-full-overlay.expanded{margin-right:600px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-600px}}.wp-full-overlay-sidebar:after{content:"";display:block;position:absolute;top:0;bottom:0;left:0;width:3px;z-index:1000}.wp-full-overlay-main{position:absolute;right:0;left:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;right:0;left:0;height:45px;padding:0 15px;line-height:3.2;z-index:10;margin:0;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-header a.back{margin-top:3px}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:none;border-top:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;right:0;left:0;overflow:auto}.theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header{padding:0}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{display:block;position:relative;float:right;width:45px;height:45px;background:#f0f0f1;border-left:1px solid #dcdcde;color:#3c434a;cursor:pointer;text-decoration:none;transition:color .1s ease-in-out,background .1s ease-in-out}.theme-install-overlay .close-full-overlay:focus,.theme-install-overlay .close-full-overlay:hover,.theme-install-overlay .next-theme:focus,.theme-install-overlay .next-theme:hover,.theme-install-overlay .previous-theme:focus,.theme-install-overlay .previous-theme:hover{background:#dcdcde;border-color:#c3c4c7;color:#000;outline:0;box-shadow:none}.theme-install-overlay .close-full-overlay:before{font:normal 22px/1 dashicons;content:"\f335";content:"\f335"/'';position:relative;top:7px;right:13px}.theme-install-overlay .previous-theme:before{font:normal 20px/1 dashicons;content:"\f345";content:"\f341"/'';position:relative;top:6px;right:14px}.theme-install-overlay .next-theme:before{font:normal 20px/1 dashicons;content:"\f341";content:"\f345"/'';position:relative;top:6px;right:13px}.theme-install-overlay .next-theme.disabled,.theme-install-overlay .next-theme.disabled:focus,.theme-install-overlay .next-theme.disabled:hover,.theme-install-overlay .previous-theme.disabled,.theme-install-overlay .previous-theme.disabled:focus,.theme-install-overlay .previous-theme.disabled:hover{color:#c3c4c7;background:#f0f0f1;cursor:default;pointer-events:none}.theme-install-overlay .close-full-overlay,.theme-install-overlay .next-theme,.theme-install-overlay .previous-theme{border-right:0;border-top:0;border-bottom:0}.theme-install-overlay .close-full-overlay:before,.theme-install-overlay .next-theme:before,.theme-install-overlay .previous-theme:before{top:2px;right:0}.wp-core-ui .wp-full-overlay .collapse-sidebar{position:fixed;bottom:0;right:0;padding:9px 10px 9px 0;height:45px;color:#646970;outline:0;line-height:1;background-color:transparent!important;border:none!important;box-shadow:none!important;border-radius:0!important}.wp-core-ui .wp-full-overlay .collapse-sidebar:focus,.wp-core-ui .wp-full-overlay .collapse-sidebar:hover{color:#2271b1}.wp-full-overlay .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar-label{display:inline-block;vertical-align:middle;line-height:1.6}.wp-full-overlay .collapse-sidebar-arrow{width:20px;height:20px;margin:0 2px;border-radius:50%;overflow:hidden}.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow,.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-full-overlay .collapse-sidebar-label{margin-right:3px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar-arrow:before{display:block;content:"\f148";content:"\f148"/'';background:#f0f0f1;font:normal 20px/1 dashicons;padding:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar{padding:9px 10px}.rtl .wp-full-overlay .collapse-sidebar-arrow:before,.wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:rotate(180.001deg)}.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before{transform:none}@media (prefers-reduced-motion:no-preference){.wp-full-overlay,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main,.wp-full-overlay-sidebar{transition-property:right,left,top,bottom,width,margin;transition-duration:.2s}}.wp-full-overlay{background:#1d2327}.wp-full-overlay-main{background-color:#f0f0f1}.expanded .wp-full-overlay-footer{position:fixed;bottom:0;right:0;min-width:299px;max-width:599px;width:18%;width:calc(18% - 1px);height:45px;border-top:1px solid #dcdcde;background:#f0f0f1}.wp-full-overlay-footer .devices-wrapper{float:left}.wp-full-overlay-footer .devices{position:relative;background:#f0f0f1;box-shadow:20px 0 10px -5px #f0f0f1}.wp-full-overlay-footer .devices button{cursor:pointer;background:0 0;border:none;height:45px;padding:0 3px;margin:0 -4px 0 0;box-shadow:none;border-top:1px solid transparent;border-bottom:4px solid transparent;transition:.15s color ease-in-out,.15s background-color ease-in-out,.15s border-color ease-in-out}.wp-full-overlay-footer .devices button:focus{box-shadow:none;outline:0}.wp-full-overlay-footer .devices button:before{display:inline-block;-webkit-font-smoothing:antialiased;font:normal 20px/30px dashicons;vertical-align:top;margin:3px 0;padding:4px 8px;color:#646970}.wp-full-overlay-footer .devices button.active{border-bottom-color:#1d2327}.wp-full-overlay-footer .devices button:focus,.wp-full-overlay-footer .devices button:hover{background-color:#fff}.wp-full-overlay-footer .devices button.active:hover,.wp-full-overlay-footer .devices button:focus{border-bottom-color:#2271b1}.wp-full-overlay-footer .devices button.active:before{color:#1d2327}.wp-full-overlay-footer .devices button:focus:before,.wp-full-overlay-footer .devices button:hover:before{color:#2271b1}.wp-full-overlay-footer .devices .preview-desktop:before{content:"\f472";content:"\f472"/''}.wp-full-overlay-footer .devices .preview-tablet:before{content:"\f471";content:"\f471"/''}.wp-full-overlay-footer .devices .preview-mobile:before{content:"\f470";content:"\f470"/''}@media screen and (max-width:1024px){.wp-full-overlay-footer .devices{display:none}}.collapsed .wp-full-overlay-footer .devices button:before{display:none}.preview-mobile .wp-full-overlay-main{margin:auto -160px auto 0;width:320px;height:480px;max-height:100%;max-width:100%;right:50%}.preview-tablet .wp-full-overlay-main{margin:auto -360px auto 0;width:720px;height:1080px;max-height:100%;max-width:100%;right:50%}.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#customize-container,#customize-controls .notice.notification-overlay{background:#f0f0f1;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%}#customize-container{display:none}#customize-container,.theme-install-overlay{visibility:visible}.customize-loading #customize-container iframe{opacity:0}#customize-container iframe,.theme-install-overlay iframe{height:100%;width:100%;z-index:20;transition:opacity .3s}#customize-controls{margin-top:0}.theme-install-overlay{display:none}.theme-install-overlay.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 60px}.single-theme .install-theme-info{padding-top:15px}.theme-install-overlay .install-theme-info{display:block}.install-theme-info .theme-install{float:left;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:1.5;margin-bottom:0;margin-top:0}.install-theme-info .theme-screenshot{margin:15px 0;width:258px;border:1px solid #c3c4c7;position:relative;overflow:hidden}.install-theme-info .theme-screenshot>img{width:100%;height:auto;position:absolute;right:0;top:0}.install-theme-info .theme-screenshot:after{content:"";display:block;padding-top:66.66666666%}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0}.theme-details .theme-description{float:right;color:#646970;line-height:1.6;max-width:100%}.theme-install-overlay .wp-full-overlay-header .button{float:left;margin:7px 0 0 10px;min-height:32px;line-height:2.30769231}.theme-install-overlay .wp-full-overlay-sidebar{background:#f0f0f1;border-left:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-sidebar-content{background:#fff;border-top:1px solid #dcdcde;border-bottom:1px solid #dcdcde}.theme-install-overlay .wp-full-overlay-main{position:absolute;z-index:0;background-color:#f0f0f1}.customize-loading #customize-container{background-color:#f0f0f1}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{content:"";display:block;width:20px;height:20px;position:absolute;right:50%;top:50%;z-index:-1;margin:-10px -10px 0 0;transform:translateZ(0);background:transparent url(../images/spinner.gif) no-repeat center center;background-size:20px 20px}#customize-preview.wp-full-overlay-main.iframe-ready:before,.theme-install-overlay.iframe-ready .wp-full-overlay-main:before{background-image:none}@media print,(min-resolution:120dpi){.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);background-size:15px 123px}#customize-controls .notice.notification-overlay.notification-loading:before,#customize-preview.wp-full-overlay-main:before,.customize-loading #customize-container:before,.theme-install-overlay .wp-full-overlay-main:before{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.available-theme .action-links .delete-theme{float:none;margin:0;padding:0;clear:both}.available-theme .action-links .delete-theme a{padding:0}.broken-themes table{width:100%}.theme-install-overlay .wp-full-overlay-header .button{font-size:13px}.theme-browser .theme .theme-actions .button{margin-bottom:0}.theme-browser .theme .theme-actions,.theme-browser .theme.active .theme-actions{padding-top:4px;padding-bottom:4px}.upload-plugin .wp-upload-form,.upload-theme .wp-upload-form{width:100%;box-sizing:border-box}.upload-plugin .wp-upload-form input[type=file],.upload-theme .wp-upload-form input[type=file]{padding:30px 30px 30px 0;width:100%}}css/nav-menus-rtl.css000066600000043337152330733730010602 0ustar00/*! This file is auto-generated */ /* nav-menu */ /* @todo: determine if this is truly for nav menus only */ .no-js #message { display: block; } ul.add-menu-item-tabs li { padding: 3px 8px 4px 5px; } .accordion-section ul.category-tabs, .accordion-section ul.add-menu-item-tabs, .accordion-section ul.wp-tab-bar { margin: 0; } .accordion-section .categorychecklist { margin: 13px 0; } #nav-menu-meta .accordion-section-content { padding: 18px 13px; resize: vertical; } #nav-menu-meta .button-controls { margin-bottom: 0; } .has-no-menu-item .button-controls { display: none; } #nav-menus-frame { margin-right: 300px; margin-top: 23px; } #wpbody-content #menu-settings-column { display: inline; width: 281px; margin-right: -300px; clear: both; float: right; padding-top: 0; } #menu-settings-column .inside { clear: both; margin: 10px 0 0; height: 100%; max-height: inherit; } #menu-settings-column .categorydiv, #menu-settings-column .customlinkdiv, #menu-settings-column .posttypediv, #menu-settings-column .taxonomydiv { max-height: inherit; height: 100%; } #menu-settings-column .wp-tab-panel, #menu-settings-column .categorydiv div.tabs-panel, #menu-settings-column .customlinkdiv div.tabs-panel, #menu-settings-column .posttypediv div.tabs-panel, #menu-settings-column .taxonomydiv div.tabs-panel { /* Allow space for content after tab panels in nav menu editor. */ max-height: calc( 100% - 75px ); height: 100%; } .metabox-holder-disabled .postbox, .metabox-holder-disabled .accordion-section-content, .metabox-holder-disabled .accordion-section-title { opacity: 0.5; filter: alpha(opacity=50); } .metabox-holder-disabled .button-controls .select-all { display: none; } #wpbody { position: relative; } .is-submenu { color: #50575e; /* #fafafa background */ font-style: italic; font-weight: 400; margin-right: 4px; } .manage-menus { margin-top: 23px; padding: 10px; overflow: hidden; background: #fff; } .manage-menus .selected-menu, .manage-menus select, .manage-menus .submit-btn, .nav-menus-php .add-new-menu-action { display: inline-block; margin-left: 3px; vertical-align: middle; } .manage-menus select, .menu-location-menus select { max-width: 100%; } .menu-edit #post-body-content h3 { margin: 1em 0 10px; } #nav-menu-bulk-actions-top { margin: 1em 0; } #nav-menu-bulk-actions-bottom { margin: 1em 0; margin: calc( 1em + 9px ) 0; } .bulk-actions input.button { margin-left: 12px; } .bulk-select-button { position: relative; display: inline-block; padding: 0 10px; font-size: 13px; line-height: 2.15384615; height: auto; min-height: 30px; background: #f6f7f7; vertical-align: top; border: 1px solid #dcdcde; margin: 0; cursor: pointer; border-radius: 3px; white-space: nowrap; box-sizing: border-box; } .bulk-selection .bulk-select-button { color: #2271b1; border-color: #2271b1; background: #f6f7f7; vertical-align: top; } #pending-menu-items-to-delete { display: none; } .bulk-selection #pending-menu-items-to-delete { display: block; margin-top: 1em; } #pending-menu-items-to-delete p { margin-bottom: 0; } #pending-menu-items-to-delete ul { margin-top: 0; list-style: none; } #pending-menu-items-to-delete ul li { display: inline; } input.bulk-select-switcher + .bulk-select-button-label { vertical-align: inherit; } label.bulk-select-button:hover, label.bulk-select-button:active, label.bulk-select-button:focus-within { background: #f0f0f1; border-color: #0a4b78; color: #0a4b78; } input.bulk-select-switcher:focus + .bulk-select-button-label { color: #0a4b78; } .bulk-actions input.menu-items-delete { appearance: none; font-size: inherit; border: 0; line-height: 2.1em; background: none; cursor: pointer; text-decoration: underline; color: #b32d2e; } .bulk-actions input.menu-items-delete:hover { color: #b32d2e; border: none; } .bulk-actions input.menu-items-delete.disabled { display: none; } .menu-settings { border-top: 1px solid #f0f0f1; margin-top: 2em; } .menu-settings-group { margin: 0 0 10px; padding-right: 20%; } .menu-settings-group:last-of-type { margin-bottom: 0; } .menu-settings-input { float: right; margin: 0; width: 100%; } .menu-settings-group-name { float: right; clear: both; width: 25%; padding: 3px 0 0; margin-right: -25%; /* 20 container left padding x ( 100 container % width / 80 this % width ) */ } .menu-settings label { vertical-align: baseline; } .menu-edit .checkbox-input { margin-top: 4px; } .theme-location-set { color: #646970; font-size: 11px; } /* Menu Container */ /* @todo: responsive view. */ #menu-management-liquid { float: right; min-width: 100%; margin-top: 3px; } /* @todo: responsive view. */ #menu-management { position: relative; margin-left: 20px; margin-top: -3px; width: 100%; } #menu-management .menu-edit { margin-bottom: 20px; } .nav-menus-php #post-body { padding: 0 10px; border-top: 1px solid #fff; border-bottom: 1px solid #dcdcde; background: #fff; } #nav-menu-header, #nav-menu-footer { padding: 0 10px; background: #f6f7f7; } #nav-menu-header { border-bottom: 1px solid #dcdcde; margin-bottom: 0; } #nav-menu-header .menu-name-label { display: inline-block; vertical-align: middle; margin-left: 7px; } .nav-menus-php #post-body div.updated, .nav-menus-php #post-body div.error { margin: 0; } .nav-menus-php #post-body-content { position: relative; float: none; } .nav-menus-php #post-body-content .post-body-plain { margin-bottom: 0; } #menu-management .menu-add-new abbr { font-weight: 600; } #select-nav-menu-container { text-align: left; padding: 0 10px 3px; margin-bottom: 5px; } #select-nav-menu { width: 100px; display: inline; } #menu-name-label { margin-top: -2px; } .widefat .menu-locations .menu-location-title { padding: 13px 10px 0; } .menu-location-title label { font-weight: 600; } .menu-location-menus select { float: right; } #locations-nav-menu-wrapper { padding: 5px 0; } .locations-nav-menu-select select { float: right; width: 160px; margin-left: 5px; } .locations-row-links { float: right; margin: 6px 6px 0 0; } .locations-edit-menu-link, .locations-add-menu-link { margin: 0 3px; } .locations-edit-menu-link { padding-left: 3px; border-left: 1px solid #c3c4c7; } #menu-management .inside { padding: 0 10px; } /* Add Menu Item Boxes */ .postbox .howto input { width: 180px; float: left; } .accordion-container .outer-border { margin: 0; } .customlinkdiv p { margin-top: 0 } #nav-menu-theme-locations .howto select { width: 100%; } #nav-menu-theme-locations .button-controls { text-align: left; } .add-menu-item-view-all { height: 400px; } /* Button Primary Actions */ #menu-container .submit { margin: 0 0 10px; padding: 0; } /* @todo: is this actually used? */ #cancel-save { text-decoration: underline; font-size: 12px; margin-right: 20px; margin-top: 5px; } .button.right, .button-secondary.right, .button-primary.right { float: left; } /* Button Secondary Actions */ .list-controls { float: right; } .add-to-menu { float: left; } .button-controls { clear: both; margin: 10px 0; } .show-all, .hide-all { cursor: pointer; } .hide-all { display: none; } /* Create Menu */ #menu-name { width: 270px; vertical-align: middle; } #manage-menu .inside { padding: 0; } /* Custom Links */ #available-links dt { display: block; } #add-custom-link .howto { font-size: 12px; } #add-custom-link label span { display: block; float: right; margin-top: 5px; padding-left: 5px; } .menu-item-textbox { width: 180px; } .customlinkdiv .menu-item-textbox { width: 100%; } .nav-menus-php .howto span { float: right; margin-top: 6px; } /* Menu item types */ .quick-search { width: 190px; } .quick-search-wrap .spinner { float: none; margin: -3px 0 0 -10px; } .nav-menus-php .list-wrap { display: none; clear: both; margin-bottom: 10px; } .nav-menus-php .postbox p.submit { margin-bottom: 0; } /* Listings */ .nav-menus-php .list li { display: none; margin: 0 0 5px; } .nav-menus-php .list li .menu-item-title { cursor: pointer; display: block; } .nav-menus-php .list li .menu-item-title input { margin-left: 3px; margin-top: -3px; } .menu-item-title input[type=checkbox] { display: inline-block; margin-top: -4px; } .menu-item-title .post-state { font-weight: 600; } /* Nav Menu */ #menu-container .inside { padding-bottom: 10px; } .menu { padding-top: 1em; } #menu-to-edit { margin: 0; padding: 0.1em 0; } .menu ul { width: 100%; } .menu li { margin-bottom: 0; position: relative; } .menu-item-bar { clear: both; line-height: 1.5; position: relative; margin: 9px 0 0; } .menu-item-bar .menu-item-handle { border: 1px solid #dcdcde; position: relative; padding: 10px 15px; height: auto; min-height: 20px; max-width: 382px; line-height: 2.30769230; overflow: hidden; word-wrap: break-word; } .menu-item-bar .menu-item-handle:hover { border-color: #8c8f94; } #menu-to-edit .menu-item-invalid .menu-item-handle { background: #fcf0f1; border-color: #d63638; } .no-js .menu-item-edit-active .item-edit { display: none; } .js .menu-item-handle { cursor: move; } .menu li.deleting .menu-item-handle { background-image: none; background-color: #f86368; } .menu-item-handle .item-title { font-size: 13px; font-weight: 600; line-height: 1.53846153; display: block; /* @todo: responsive view. */ margin-left: 13em; } .menu-item-handle .menu-item-checkbox { display: none; } .bulk-selection .menu-item-handle .menu-item-checkbox { display: inline-block; margin-left: 6px; } .menu-item-handle .menu-item-title.no-title { color: #646970; } /* Sortables */ li.menu-item.ui-sortable-helper .menu-item-bar { margin-top: 0; } li.menu-item.ui-sortable-helper .menu-item-transport .menu-item-bar { margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } .menu .sortable-placeholder { height: 35px; width: 410px; margin-top: 9px; /* Must use the same value used by the dragged item .menu-item-bar */ } /* Hide the transport list when it's empty */ .menu-item .menu-item-transport:empty { display: none; } /* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */ .menu-item-depth-0 { margin-right: 0; } .menu-item-depth-1 { margin-right: 30px; } .menu-item-depth-2 { margin-right: 60px; } .menu-item-depth-3 { margin-right: 90px; } .menu-item-depth-4 { margin-right: 120px; } .menu-item-depth-5 { margin-right: 150px; } .menu-item-depth-6 { margin-right: 180px; } .menu-item-depth-7 { margin-right: 210px; } .menu-item-depth-8 { margin-right: 240px; } .menu-item-depth-9 { margin-right: 270px; } .menu-item-depth-10 { margin-right: 300px; } .menu-item-depth-11 { margin-right: 330px; } .menu-item-depth-0 .menu-item-transport { margin-right: 0; } .menu-item-depth-1 .menu-item-transport { margin-right: -30px; } .menu-item-depth-2 .menu-item-transport { margin-right: -60px; } .menu-item-depth-3 .menu-item-transport { margin-right: -90px; } .menu-item-depth-4 .menu-item-transport { margin-right: -120px; } .menu-item-depth-5 .menu-item-transport { margin-right: -150px; } .menu-item-depth-6 .menu-item-transport { margin-right: -180px; } .menu-item-depth-7 .menu-item-transport { margin-right: -210px; } .menu-item-depth-8 .menu-item-transport { margin-right: -240px; } .menu-item-depth-9 .menu-item-transport { margin-right: -270px; } .menu-item-depth-10 .menu-item-transport { margin-right: -300px; } .menu-item-depth-11 .menu-item-transport { margin-right: -330px; } body.menu-max-depth-0 { min-width: 950px !important; } body.menu-max-depth-1 { min-width: 980px !important; } body.menu-max-depth-2 { min-width: 1010px !important; } body.menu-max-depth-3 { min-width: 1040px !important; } body.menu-max-depth-4 { min-width: 1070px !important; } body.menu-max-depth-5 { min-width: 1100px !important; } body.menu-max-depth-6 { min-width: 1130px !important; } body.menu-max-depth-7 { min-width: 1160px !important; } body.menu-max-depth-8 { min-width: 1190px !important; } body.menu-max-depth-9 { min-width: 1220px !important; } body.menu-max-depth-10 { min-width: 1250px !important; } body.menu-max-depth-11 { min-width: 1280px !important; } /* Menu item controls */ .item-type { display: inline-block; padding: 12px 16px; color: #646970; font-size: 12px; line-height: 1.5; } .item-controls { font-size: 12px; position: absolute; left: 20px; top: -1px; } .item-controls a { text-decoration: none; } .item-controls a:hover { cursor: pointer; } .item-controls .item-order { padding-left: 10px; } .nav-menus-php .item-edit { position: absolute; left: -20px; top: 0; display: block; width: 30px; height: 40px; outline: none; } .no-js.nav-menus-php .item-edit { position: static; float: left; width: auto; height: auto; margin: 12px 0 12px -10px; padding: 0; color: #2271b1; text-decoration: underline; font-size: 12px; line-height: 1.5; } .no-js.nav-menus-php .item-edit .screen-reader-text { position: static; clip-path: none; width: auto; height: auto; margin: 0; } .nav-menus-php .item-edit:before { margin-top: 10px; margin-right: 4px; width: 20px; border-radius: 50%; text-indent: -1px; /* account for the dashicon alignment */ } .no-js.nav-menus-php .item-edit:before { display: none; } .rtl .nav-menus-php .item-edit:before { text-indent: 1px; /* account for the dashicon alignment */ } .js.nav-menus-php .item-edit:focus { box-shadow: none; } .nav-menus-php .item-edit:focus:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } /* Menu editing */ .menu-instructions-inactive { display: none; } .menu-item-settings { display: block; max-width: 392px; padding: 10px; position: relative; z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */ border: 1px solid #c3c4c7; border-top: none; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); } .menu-item-settings .field-move { margin: 3px 0 5px; line-height: 1.5; } .field-move-visual-label { float: right; margin-left: 4px; } .menu-item-settings .field-move .button-link { display: none; margin: 0 2px; } .menu-item-edit-active .menu-item-settings { display: block; } .menu-item-edit-inactive .menu-item-settings { display: none; } .add-menu-item-pagelinks { margin: .5em -10px; text-align: center; } .add-menu-item-pagelinks .page-numbers { display: inline-block; min-width: 20px; } .add-menu-item-pagelinks .page-numbers.dots { min-width: 0; } .link-to-original { display: block; margin: 0 0 15px; padding: 3px 5px 5px; border: 1px solid #dcdcde; color: #646970; font-size: 12px; } .link-to-original a { padding-right: 4px; font-style: normal; } .hidden-field { display: none; } .description-group { display: flex; column-gap: 10px; } .description-group > * { flex-grow: 1; } .menu-item-actions { padding-top: 15px; padding-bottom: 7px; } #cancel-save { cursor: pointer; } /* Major/minor publishing actions (classes) */ .nav-menus-php .major-publishing-actions { padding: 10px 0; display: flex; align-items: center; } .nav-menus-php .major-publishing-actions > * { margin-left: 10px; } .nav-menus-php .major-publishing-actions .form-invalid { padding-right: 4px; margin-right: -4px; } #nav-menus-frame, #menu-item-url-wrap, #menu-item-name-wrap { display: block; } .button-controls { display: flex; align-items: center; justify-content: space-between; } .button-controls-customlinkdiv { justify-content: flex-end; } /* =Media Queries -------------------------------------------------------------- */ @media only screen and (min-width: 769px) and (max-width: 1000px) { body.menu-max-depth-0 { min-width: 0 !important; } #menu-management-liquid { width: 100%; } .nav-menus-php #post-body-content { min-width: 0; } } @media screen and (max-width: 782px) { body.nav-menus-php, body.wp-customizer { min-width: 0 !important; } #nav-menus-frame { margin-right: 0; float: none; width: 100%; } #wpbody-content #menu-settings-column { display: block; width: 100%; float: none; margin-right: 0; } #side-sortables .add-menu-item-tabs { margin: 15px 0 14px; } ul.add-menu-item-tabs li.tabs { padding: 13px 15px 14px; } .nav-menus-php .customlinkdiv .howto input { width: 65%; } .nav-menus-php .quick-search { width: 85%; } #menu-management-liquid { margin-top: 25px; } .nav-menus-php .menu-name-label.howto span { margin-top: 13px } #menu-name { width: 100%; } .nav-menus-php #nav-menu-header .major-publishing-actions .publishing-action { padding-top: 1em; } .nav-menus-php .delete-action { font-size: 14px; line-height: 2.14285714; } .menu-item-bar .menu-item-handle, .menu-item-settings { width: auto; } .menu-item-settings { padding: 10px; } .menu-item-settings .description-group { display: block; } .menu-item-settings input { width: 100%; } .menu-item-settings input[type="checkbox"], .menu-item-settings input[type="radio"] { width: 25px; } .menu-settings-group { padding-right: 0; overflow: visible; } .menu-settings-group-name { float: none; width: auto; margin-right: 0; margin-bottom: 15px; } .menu-settings-input { float: none; margin-bottom: 15px; } .menu-edit .checkbox-input { margin-top: 0; } .manage-menus select { margin: 0.5em 0; } .wp-core-ui .manage-menus .button { margin-bottom: 0; } .widefat .menu-locations .menu-location-title { padding-top: 16px; } } @media only screen and (min-width: 783px) { @supports (position: sticky) and (scroll-margin-bottom: 130px) { #nav-menu-footer { position: sticky; bottom: 0; z-index: 10; box-shadow: 0 -1px 0 0 #ddd; } #save_menu_header { display: none; } } } @media only screen and (max-width: 768px) { /* menu locations */ #menu-locations-wrap .widefat { width: 100%; } .bulk-select-button { padding: 5px 10px; } } css/widgets-rtl.css000066600000042737152330733730010342 0ustar00/*! This file is auto-generated */ /* General Widgets Styles */ .widget { margin: 0 auto 10px; position: relative; box-sizing: border-box; } .widget.open { z-index: 99; } .widget.open:focus-within { z-index: 100; } .widget-top { font-size: 13px; font-weight: 600; background: #f6f7f7; } .widget-top .widget-action { border: 0; margin: 0; padding: 10px; background: none; cursor: pointer; } .widget-title h3, .widget-title h4 { margin: 0; padding: 15px; font-size: 1em; line-height: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; -webkit-user-select: none; user-select: none; } .widgets-holder-wrap .widget-inside { border-top: none; padding: 1px 15px 15px; line-height: 1.23076923; } .widget.widget-dirty .widget-control-close-wrapper { display: none; } .in-widget-title, #widgets-right a.widget-control-edit, #available-widgets .widget-description { color: #646970; } .deleting .widget-title, .deleting .widget-top .widget-action .toggle-indicator:before { color: #a7aaad; } /* Media Widgets */ .wp-core-ui .media-widget-control.selected .placeholder, .wp-core-ui .media-widget-control.selected .not-selected, .wp-core-ui .media-widget-control .selected { display: none; } .media-widget-control.selected .selected { display: inline-block; } .media-widget-buttons { text-align: right; margin-top: 0; } .media-widget-control .media-widget-buttons .button { width: auto; height: auto; margin-top: 12px; white-space: normal; } .media-widget-buttons .button:first-child { margin-left: 8px; } .media-widget-control .attachment-media-view .button-add-media, .media-widget-control .placeholder { border: 1px dashed #c3c4c7; box-sizing: border-box; cursor: pointer; line-height: 1.6; padding: 9px 0; position: relative; text-align: center; width: 100%; } .media-widget-control .attachment-media-view .button-add-media { cursor: pointer; background-color: #f0f0f1; color: #2c3338; } .media-widget-control .attachment-media-view .button-add-media:hover { background-color: #fff; } .media-widget-control .attachment-media-view .button-add-media:focus { background-color: #fff; border-style: solid; border-color: #4f94d4; box-shadow: 0 0 3px rgba(34, 113, 177, 0.8); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; outline-offset: -2px; } .media-widget-control .media-widget-preview { background: transparent; text-align: center; } .media-widget-control .media-widget-preview .notice { text-align: initial; } .media-frame .media-widget-embed-notice p code, .media-widget-control .notice p code { padding: 0 0 0 3px; } .media-frame .media-widget-embed-notice { margin-top: 16px; } .media-widget-control .media-widget-preview img { max-width: 100%; vertical-align: middle; background-image: linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(-45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7); background-position: 100% 0, 10px 10px; background-size: 20px 20px; } .media-widget-control .media-widget-preview .wp-video-shortcode { background: #000; } .media-frame.media-widget .media-toolbar-secondary { min-width: 300px; } .media-frame.media-widget .image-details .embed-media-settings .setting.align, .media-frame.media-widget .attachment-display-settings .setting.align, .media-frame.media-widget .embed-media-settings .setting.align, .media-frame.media-widget .embed-media-settings .legend-inline, .media-frame.media-widget .embed-link-settings .setting.link-text, .media-frame.media-widget .replace-attachment, .media-frame.media-widget .checkbox-setting.autoplay { display: none; } .media-widget-video-preview { width: 100%; } .media-widget-video-link { display: inline-block; min-height: 132px; width: 100%; background: #000; } .media-widget-video-link .dashicons { font: normal 60px/1 'dashicons'; position: relative; width: 100%; top: -90px; color: #fff; text-decoration: none; } .media-widget-video-link.no-poster .dashicons { top: 30px; } .media-frame #embed-url-field.invalid, .media-widget-image-link > .link:invalid { border: 1px solid #d63638; } .media-widget-image-link { margin: 1em 0; } .media-widget-gallery-preview { display: flex; justify-content: flex-start; flex-wrap: wrap; margin: -1.79104477%; } .media-widget-preview.media_gallery, .media-widget-preview.media_image { cursor: pointer; } .media-widget-preview .placeholder { background: #f0f0f1; } .media-widget-gallery-preview .gallery-item { box-sizing: border-box; width: 50%; margin: 0; background: transparent; } .media-widget-gallery-preview .gallery-item .gallery-icon { margin: 4.5%; } /* * Use targeted nth-last-child selectors to control the size of each image * based on how many gallery items are present in the grid. * See: https://alistapart.com/article/quantity-queries-for-css */ .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child, .media-widget-gallery-preview .gallery-item:nth-last-child(3):first-child ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+5), .media-widget-gallery-preview .gallery-item:nth-last-child(n+5) ~ .gallery-item, .media-widget-gallery-preview .gallery-item:nth-last-child(n+6), .media-widget-gallery-preview .gallery-item:nth-last-child(n+6) ~ .gallery-item { max-width: 33.33%; } .media-widget-gallery-preview .gallery-item img { height: auto; vertical-align: bottom; } .media-widget-gallery-preview .gallery-icon { position: relative; } .media-widget-gallery-preview .gallery-icon-placeholder { position: absolute; top: 0; bottom: 0; width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.5); } .media-widget-gallery-preview .gallery-icon-placeholder-text { font-weight: 600; font-size: 2em; color: #fff; } /* Widget Dragging Helpers */ .widget.ui-draggable-dragging { min-width: 100%; } .widget.ui-sortable-helper { opacity: 0.8; } .widget-placeholder { border: 1px dashed #c3c4c7; margin: 0 auto 10px; height: 45px; width: 100%; box-sizing: border-box; } #widgets-right .widget-placeholder { margin-top: 0; } #widgets-right .closed .widget-placeholder { height: 0; border: 0; margin-top: -10px; } /* Widget Sidebars */ .sidebar-name { position: relative; box-sizing: border-box; } .js .sidebar-name { cursor: pointer; } .sidebar-name .handlediv { float: left; width: 38px; height: 38px; border: 0; margin: 0; padding: 8px; background: none; cursor: pointer; outline: none; } #widgets-right .sidebar-name .handlediv { margin: 5px 0 0 3px; } .sidebar-name .handlediv:focus { box-shadow: none; /* Only visible in Windows High Contrast mode */ outline: 1px solid transparent; } #widgets-left .sidebar-name .toggle-indicator { display: none; } #widgets-left .widgets-holder-wrap.closed .sidebar-name .toggle-indicator, #widgets-left .sidebar-name:hover .toggle-indicator, #widgets-left .sidebar-name .handlediv:focus .toggle-indicator { display: block; } .sidebar-name .toggle-indicator:before { padding: 1px 0 1px 2px; border-radius: 50%; } .sidebar-name .handlediv:focus .toggle-indicator:before { box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); /* Only visible in Windows High Contrast mode */ outline: 2px solid transparent; } .sidebar-name h2, .sidebar-name h3 { margin: 0; padding: 8px 10px; overflow: hidden; white-space: normal; line-height: 1.5; } .widgets-holder-wrap .description { padding: 0 0 15px; margin: 0; font-style: normal; color: #646970; } .widget-holder .description, .inactive-sidebar .description { color: #50575e; } #widgets-right .widgets-holder-wrap .description { padding-right: 7px; padding-left: 7px; } /* Widgets 2-col Layout */ div.widget-liquid-left { margin: 0; width: 38%; float: right; } div.widget-liquid-right { float: left; width: 58%; } /* Widgets Left - Available Widgets */ div#widgets-left { padding-top: 12px; } div#widgets-left .closed .sidebar-name, div#widgets-left .inactive-sidebar.closed .sidebar-name { margin-bottom: 10px; } div#widgets-left .sidebar-name h2, div#widgets-left .sidebar-name h3 { padding: 10px 0; margin: 0 0 0 10px; } #widgets-left .widgets-holder-wrap, div#widgets-left .widget-holder { background: transparent; border: none; } #widgets-left .widgets-holder-wrap { border: none; box-shadow: none; } #available-widgets .widget { margin: 0; } #available-widgets .widget:nth-child(odd) { clear: both; } #available-widgets .widget .widget-description { display: block; padding: 10px 15px; font-size: 12px; overflow-wrap: break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-word; hyphens: auto; } #available-widgets #widget-list { position: relative; } /* Inactive Sidebars */ #widgets-left .inactive-sidebar { clear: both; width: 100%; background: transparent; padding: 0; margin: 0 0 20px; border: none; box-shadow: none; } #widgets-left .inactive-sidebar.first { margin-top: 40px; } /* Not sure what this is for... */ div#widgets-left .inactive-sidebar .widget.expanded { right: auto; } .widget-title-action { float: left; position: relative; } div#widgets-left .inactive-sidebar .widgets-sortables { min-height: 42px; padding: 0; background: transparent; margin: 0; position: relative; } /* Widgets Right */ div#widgets-right .sidebars-column-1, div#widgets-right .sidebars-column-2 { max-width: 450px; } div#widgets-right .widgets-holder-wrap { margin: 10px 0 0; } div#widgets-right .sidebar-description { min-height: 20px; margin-top: -5px; } div#widgets-right .sidebar-name h2, div#widgets-right .sidebar-name h3 { padding: 15px 7px 15px 15px; } div#widgets-right .widget-top { padding: 0; } div#widgets-right .widgets-sortables { padding: 0 8px; margin-bottom: 9px; position: relative; min-height: 123px; } div#widgets-right .closed .widgets-sortables { min-height: 0; margin-bottom: 0; } .sidebar-name .spinner, .remove-inactive-widgets .spinner { float: none; position: relative; top: -2px; margin: -5px 5px; } .sidebar-name .spinner { position: absolute; top: 18px; left: 30px; } /* Dragging a widget over a closed sidebar */ #widgets-right .widgets-holder-wrap.widget-hover { border-color: #787c82; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* Accessibility Mode */ .widget-access-link { float: left; margin: -5px 10px 10px 0; } .widgets_access #widgets-left .widget .widget-top { cursor: auto; } .widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description, .widgets_access #wpwrap .widgets-holder-wrap.closed .widget, .widgets_access #wpwrap .widget-control-edit { display: block; } .widgets_access #widgets-left .widget .widget-top:hover, .widgets_access #widgets-right .widget .widget-top:hover { border-color: #dcdcde; } #available-widgets .widget-control-edit .edit, #available-widgets .widget-action .edit, #widgets-left .inactive-sidebar .widget-control-edit .add, #widgets-left .inactive-sidebar .widget-action .add, #widgets-right .widget-control-edit .add, #widgets-right .widget-action .add { display: none; } .widget-control-edit { display: block; color: #646970; background: #f0f0f1; padding: 0 15px; line-height: 3.30769230; border-right: 1px solid #dcdcde; } #widgets-left .widget-control-edit:hover, #widgets-right .widget-control-edit:hover { color: #fff; background: #3c434a; border-right: 0; outline: 1px solid #3c434a; } .widgets-holder-wrap .sidebar-name, .widgets-holder-wrap .sidebar-description { -webkit-user-select: none; user-select: none; } .editwidget { margin: 0 auto; } .editwidget .widget-inside { display: block; padding: 0 15px; } .widget-control-actions { display: flex; align-items: center; justify-content: space-between; } .editwidget .widget-control-actions { margin-top: 20px; } .js .widgets-holder-wrap.closed .widget, .js .widgets-holder-wrap.closed .sidebar-description, .js .widgets-holder-wrap.closed .remove-inactive-widgets, .js .widgets-holder-wrap.closed .description, .js .closed br.clear { display: none; } .js .widgets-holder-wrap.closed .widget.ui-sortable-helper { display: block; } /* Hide Widget Settings by Default */ .widget-inside, .widget-description { display: none; } .widget-inside { background: #fff; } .widget-inside select { max-width: 100%; } /* Dragging widgets over the available widget area show's a "Deactivate" message */ #removing-widget { display: none; font-weight: 400; padding-right: 15px; font-size: 12px; line-height: 1; color: #000; } .js #removing-widget { color: #72aee6; } .widget-control-noform, #access-off, .widgets_access .widget-action, .widgets_access .handlediv, .widgets_access #access-on, .widgets_access .widget-holder .description, .no-js .widget-holder .description { display: none; } .widgets_access .widget-holder, .widgets_access #widget-list { padding-top: 10px; } .widgets_access #access-off { display: inline; } .widgets_access .sidebar-name, .widgets_access .widget .widget-top { cursor: default; } /* Widgets Area Chooser */ .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { transition: opacity 0.1s linear; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget, .widget-liquid-left #widgets-left.chooser .inactive-sidebar { /* -webkit-filter: blur(1px); */ opacity: 0.2; pointer-events: none; } .widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question { /* -webkit-filter: none; */ opacity: 1; pointer-events: auto; } .widgets-chooser ul, #widgets-left .widget-in-question .widget-top, #available-widgets .widget-top:hover, div#widgets-right .widget-top:hover, #widgets-left .widget-top:hover { border-color: #8c8f94; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .widgets-chooser ul.widgets-chooser-sidebars { margin: 0; list-style-type: none; max-height: 300px; overflow: auto; } .widgets-chooser { display: none; } .widgets-chooser ul { border: 1px solid #c3c4c7; } .widgets-chooser li { border-bottom: 1px solid #c3c4c7; background: #fff; margin: 0; position: relative; } .widgets-chooser .widgets-chooser-button { width: 100%; padding: 10px 35px 10px 15px; background: transparent; border: 0; box-sizing: border-box; text-align: right; cursor: pointer; transition: background 0.2s ease-in-out; } /* @todo looks like these hover/focus states are overridden by .widgets-chooser-selected */ .widgets-chooser .widgets-chooser-button:hover, .widgets-chooser .widgets-chooser-button:focus { outline: none; text-decoration: underline; } .widgets-chooser li:last-child { border: none; } .widgets-chooser .widgets-chooser-selected .widgets-chooser-button { background: var(--wp-admin-theme-color, #3858e9); color: #fff; } .widgets-chooser .widgets-chooser-selected:before { content: "\f147"; content: "\f147" / ''; display: block; -webkit-font-smoothing: antialiased; font: normal 26px/1 dashicons; color: #fff; position: absolute; top: 7px; right: 5px; } .widgets-chooser .widgets-chooser-actions { padding: 10px 0 12px; text-align: center; } #available-widgets .widget .widget-top { cursor: pointer; } #available-widgets .widget.ui-draggable-dragging .widget-top { cursor: move; } /* =Specific widget styling -------------------------------------------------------------- */ .text-widget-fields { position: relative; } .text-widget-fields [hidden] { display: none; } .text-widget-fields .wp-pointer.wp-pointer-top { position: absolute; z-index: 3; top: 100px; left: 10px; right: 10px; } .text-widget-fields .wp-pointer .wp-pointer-arrow { right: auto; left: 15px; } .text-widget-fields .wp-pointer .wp-pointer-buttons { line-height: 1.4; } .custom-html-widget-fields > p > .CodeMirror { border: 1px solid #dcdcde; } .custom-html-widget-fields code { padding-top: 1px; padding-bottom: 1px; } ul.CodeMirror-hints { z-index: 101; /* Due to z-index 100 set on .widget.open */ } .widget-control-actions .custom-html-widget-save-button.button.validation-blocked { cursor: not-allowed; } /* =Media Queries -------------------------------------------------------------- */ @media screen and (max-width: 782px) { .widgets-holder-wrap .widget-inside input[type="checkbox"], .widgets-holder-wrap .widget-inside input[type="radio"], .editwidget .widget-inside input[type="checkbox"], /* Selectors for the "accessibility mode" page. */ .editwidget .widget-inside input[type="radio"] { margin: 0.25rem 0 0.25rem 0.25rem; } } @media screen and (max-width: 480px) { div.widget-liquid-left { width: 100%; float: none; border-left: none; padding-left: 0; } #widgets-left .sidebar-name { margin-left: 0; } #widgets-left #available-widgets .widget-top { margin-left: 0; } #widgets-left .inactive-sidebar .widgets-sortables { margin-left: 0; } div.widget-liquid-right { width: 100%; float: none; } div.widget { max-width: 480px; } .widget-access-link { float: none; margin: 15px 0 0; } } @media screen and (max-width: 320px) { div.widget { max-width: 320px; } } @media only screen and (min-width: 1250px) { #widgets-left #available-widgets .widget { width: 49%; float: right; } .widget.ui-draggable-dragging { min-width: 49%; } #widgets-left #available-widgets .widget:nth-child(even) { float: left; } #widgets-right .sidebars-column-1, #widgets-right .sidebars-column-2 { float: right; width: 49%; } #widgets-right .sidebars-column-1 { margin-left: 2%; } #widgets-right.single-sidebar .sidebars-column-1, #widgets-right.single-sidebar .sidebars-column-2 { float: none; width: 100%; margin: 0; } } css/site-icon.css000066600000010773152330733730007762 0ustar00/*------------------------------------------------------------------------------ 28.0 - Site Icon ------------------------------------------------------------------------------*/ .site-icon-section { --site-icon-removal: #b32d2e; } .site-icon-preview { --site-icon-input-border: #8c8f94; --site-icon-preview-background: #fff; --site-icon-preview-browser-top: #dcdcde; --site-icon-preview-browser-bottom: #a7aaad; --site-icon-preview-browser-border: rgba(255, 255, 255, 0.2); --site-icon-address-bar-background: #f0f0f1; --site-icon-address-bar-close: #646970; --site-icon-address-bar-text: #3c434a; --site-icon-shadow-1: rgba(0, 0, 0, 0.1); --site-icon-shadow-2: rgba(0, 0, 0, 0.2); --site-icon-shadow-3: rgba(0, 0, 0, 0.5); direction: initial; display: flex; height: 60px; padding: 8px 0 0 8px; align-items: flex-start; position: relative; overflow: hidden; box-sizing: border-box; border: 1px solid var(--site-icon-input-border); border-radius: 4px; background-color: var(--site-icon-preview-background); width: 275px; } @media (prefers-color-scheme: dark) { .site-icon-preview { --site-icon-preview-browser-top: #2c3338; --site-icon-preview-browser-bottom: #111; --site-icon-address-bar-background: #3c434a; --site-icon-address-bar-close: #f0f0f1; --site-icon-address-bar-text: #f0f0f1; } } .site-icon-preview.settings { height: 88px; padding: 16px 0 0 16px; width: 350px; margin: 0 0 16px 0; } .site-icon-preview.crop { width: 258px; height: 100%; display: grid; grid-template-columns: 8px 1fr; grid-template-rows: 64px 1fr; padding-left: 0; row-gap: 16px; direction: inherit; } .site-icon-preview.hidden { display: none; } .site-icon-preview .direction-wrap { grid-template-columns: 44px 1fr; gap: 8px; display: grid; direction: ltr; height: 100%; width: 100%; } .site-icon-preview.settings .direction-wrap { grid-template-columns: 58px 1fr; gap: 16px; } .site-icon-preview:after { --after-size: 150%; aspect-ratio: 1/1; content: ""; display: block; position: absolute; top: 0; left: 0; width: var(--after-size);; transform: translate(calc(var(--after-size) * -0.125), calc(var(--after-size) * -0.125)); filter: blur(5px); opacity: 0.5; background: var(--site-icon-url); } .site-icon-preview .app-icon-preview { aspect-ratio: 1/1; border-radius: 10px; box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3); flex-shrink: 0; width: 100%; z-index: 1; } .site-icon-preview-browser { display: flex; padding: 4px 4px 0 12px; align-items: flex-start; gap: 16px; flex: 1 0 0; z-index: 1; border-top-left-radius: 10px; border-top: 1px solid var(--site-icon-preview-browser-border); border-left: 1px solid var(--site-icon-preview-browser-border); background: linear-gradient(180deg, var(--site-icon-preview-browser-top) 0%, var(--site-icon-preview-browser-bottom) 100%); box-shadow: 0 10px 22px 0 var(--site-icon-shadow-2); } .site-icon-preview .browser-buttons { width: 48px; height: 40px; fill: var(--site-icon-input-border); } .site-icon-preview-tab { padding: 8px; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 4px; background-color: var(--site-icon-address-bar-background); box-shadow: 0 1px 3px 0 var(--site-icon-shadow-1); display: grid; grid-template-columns: 24px auto 24px; } .site-icon-preview-browser .browser-icon-preview { box-shadow: 0 0 20px 0 var(--site-icon-shadow-1); } .site-icon-preview-tab > img, .site-icon-preview-tab > svg { width: 24px; height: 24px; } .site-icon-preview-tab > svg { fill: var(--site-icon-address-bar-close); } .site-icon-preview-site-title { color: var(--site-icon-address-bar-text); text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-weight: 500; } .site-icon-preview-crop-modal .image-preview-wrap.app-icon-preview { width: 64px; height: 64px; margin: 0; grid-column: 2; } .site-icon-preview-crop-modal .site-icon-preview-browser { grid-column: 2; } .site-icon-preview-crop-modal .image-preview-wrap { overflow: hidden; aspect-ratio: 1/1; } .site-icon-preview-crop-modal .image-preview-wrap.browser { width: 24px; height: 24px; } button.reset.remove-site-icon { color: var(--site-icon-removal); text-decoration: none; border-color: currentColor; box-shadow: none; background: transparent; } button.reset.remove-site-icon:focus, button.reset.remove-site-icon:hover { background: var(--site-icon-removal); color: #fff; border-color: var(--site-icon-removal); box-shadow: 0 0 0 1px var(--site-icon-removal); } .site-icon-action-buttons { display: flex; flex-wrap: wrap; gap: 10px; } css/list-tables-rtl.min.css000066600000110254152330733730011667 0ustar00/*! This file is auto-generated */ .response-links{display:block;margin-bottom:1em}.response-links a{display:block}.response-links a.comments-edit-item-link{font-weight:600}.response-links a.comments-view-item-link{font-size:12px}.post-com-count-wrapper strong{font-weight:400}.comments-view-item-link{display:inline-block;clear:both}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:nowrap;word-wrap:normal}.column-comments .post-com-count,.column-response .post-com-count{display:inline-block;vertical-align:top}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:5px}.column-comments .comment-count-approved,.column-comments .comment-count-no-comments,.column-response .comment-count-approved,.column-response .comment-count-no-comments{box-sizing:border-box;display:block;padding:0 8px;min-width:24px;height:2em;border-radius:5px;background-color:#646970;color:#fff;font-size:11px;line-height:1.90909090;text-align:center}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:"";display:block;margin-right:8px;width:0;height:0;border-top:5px solid #646970;border-left:5px solid transparent}.column-comments a.post-com-count-approved:focus .comment-count-approved,.column-comments a.post-com-count-approved:hover .comment-count-approved,.column-response a.post-com-count-approved:focus .comment-count-approved,.column-response a.post-com-count-approved:hover .comment-count-approved{background:#3858e9}.column-comments a.post-com-count-approved:focus:after,.column-comments a.post-com-count-approved:hover:after,.column-response a.post-com-count-approved:focus:after,.column-response a.post-com-count-approved:hover:after{border-top-color:#3858e9}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:relative;right:-3px;padding:0 5px;min-width:7px;height:17px;border:2px solid #fff;border-radius:11px;background:#d63638;color:#fff;font-size:9px;line-height:1.88888888;text-align:center}.column-comments .post-com-count-no-pending,.column-response .post-com-count-no-pending{display:none}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom:1px solid #c3c4c7}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#submitted-on,.submitted-on{color:#50575e}#replyrow td{padding:2px}#replysubmit{margin:0;padding:5px 7px 10px;overflow:hidden}#replysubmit .reply-submit-buttons{margin-bottom:0}#replysubmit .button{margin-left:5px}#replysubmit .spinner{float:none;margin:-4px 0 0}#replyrow.inline-edit-row fieldset.comment-reply{font-size:inherit;line-height:inherit}#replyrow legend{margin:0;padding:.2em 5px 0;font-size:13px;line-height:1.4;font-weight:600}#replyrow.inline-edit-row label{display:inline;vertical-align:baseline;line-height:inherit}#commentsdiv #edithead .inside,#edithead .inside{float:right;padding:3px 5px 2px 0;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;box-shadow:none}#replyerror{border-color:#dcdcde;background-color:#f6f7f7}.commentlist .avatar{vertical-align:text-top}#the-comment-list div.undo,#the-comment-list tr.undo{background-color:#f6f7f7}#the-comment-list .unapproved td,#the-comment-list .unapproved th{background-color:#fcf9e8}#the-comment-list .unapproved th.check-column{border-right:4px solid #d63638}#the-comment-list .unapproved th.check-column input{margin-right:4px}#the-comment-list .approve a{color:#007017}#the-comment-list .unapprove a{color:#996800}#the-comment-list td,#the-comment-list th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}#the-comment-list tr:last-child td,#the-comment-list tr:last-child th{box-shadow:none}#the-comment-list tr.unapproved+tr.approved td,#the-comment-list tr.unapproved+tr.approved th{border-top:1px solid rgba(0,0,0,.03)}.vim-current,.vim-current td,.vim-current th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)!important}th .comment-grey-bubble{width:16px;position:relative;top:2px}th .comment-grey-bubble:before{content:"\f101";content:"\f101"/'';font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;right:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-author,.fixed .column-format,.fixed .column-links,.fixed .column-parent,.fixed .column-posts{width:10%}.fixed .column-date{width:14%}.column-date span[title]{-webkit-text-decoration:dotted underline;text-decoration:dotted underline}.fixed .column-posts{width:74px}.fixed .column-posts,.fixed .column-role{hyphens:auto}.fixed .column-comment .comment-author{display:none}.fixed .column-categories,.fixed .column-rel,.fixed .column-response,.fixed .column-role,.fixed .column-tags{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:5.5em;text-align:right}.fixed .column-comments .vers{padding-right:3px}td.column-title strong,td.plugin-title strong{display:block;margin-bottom:.2em;font-size:14px}td.column-title p,td.plugin-title p{margin:6px 0}table.media .column-title .media-icon{float:right;min-height:60px;margin:0 0 0 9px}table.media .column-title .media-icon img{max-width:60px;height:auto;vertical-align:top}table.media .column-title .has-media-icon~.row-actions{margin-right:70px}table.media .column-title .filename{margin-bottom:.2em}.media .row-actions .copy-to-clipboard-container{display:inline;position:relative}.media .row-actions .copy-to-clipboard-container .success{position:absolute;right:50%;transform:translate(50%,-100%);background:#000;color:#fff;border-radius:5px;margin:0;padding:2px 5px}.wp-list-table a{transition:none}#the-list tr:last-child td,#the-list tr:last-child th{border-bottom:none!important;box-shadow:none}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:1.38461538}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead td,#commentsdiv .comments-box thead th{background:0 0;padding:0 7px 4px}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv #edithead .inside input{width:160px}.sorting-indicators{display:grid}.sorting-indicator{display:block;width:10px;height:4px;margin-top:4px;margin-right:7px}.sorting-indicator:before{font:normal 20px/1 dashicons;display:inline-block;padding:0;top:-4px;right:-8px;line-height:.5;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#a7aaad}.sorting-indicator.asc:before{content:"\f142";content:"\f142"/''}.sorting-indicator.desc:before{content:"\f140";content:"\f140"/''}th.sorted.desc .sorting-indicator.desc:before{color:#1d2327}th.sorted.asc .sorting-indicator.asc:before{color:#1d2327}th.sorted.asc a:focus .sorting-indicator.asc:before,th.sorted.asc:hover .sorting-indicator.asc:before,th.sorted.desc a:focus .sorting-indicator.desc:before,th.sorted.desc:hover .sorting-indicator.desc:before{color:#a7aaad}th.sorted.asc a:focus .sorting-indicator.desc:before,th.sorted.asc:hover .sorting-indicator.desc:before,th.sorted.desc a:focus .sorting-indicator.asc:before,th.sorted.desc:hover .sorting-indicator.asc:before{color:#1d2327}.wp-list-table .toggle-row{position:absolute;left:8px;top:10px;display:none;padding:0;width:40px;height:40px;border:none;outline:0;background:0 0}.wp-list-table .toggle-row:hover{cursor:pointer}.wp-list-table .toggle-row:focus:before{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}.wp-list-table .toggle-row:active{box-shadow:none}.wp-list-table .toggle-row:before{position:absolute;top:-5px;right:10px;border-radius:50%;display:block;padding:1px 0 1px 2px;color:#3c434a;content:"\f140";content:"\f140"/'';font:normal 20px/1 dashicons;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-list-table .is-expanded .toggle-row:before{content:"\f142";content:"\f142"/''}.check-column{position:relative}.check-column label{box-sizing:border-box;width:100%;height:100%;display:block;position:absolute;top:0;right:0}.check-column input{position:relative;z-index:1}.check-column .label-covers-full-cell:hover+input:not(:disabled){box-shadow:0 0 0 1px #2271b1}.check-column input:hover+label,.check-column label:hover{background:rgba(0,0,0,.05)}.locked-indicator{display:none;margin-right:6px;height:20px;width:16px}.locked-indicator-icon:before{color:#8c8f94;content:"\f160";content:"\f160"/'';display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.locked-info{display:none;margin-top:4px}.locked-text{vertical-align:top}.wp-locked .locked-indicator,.wp-locked .locked-info{display:block}tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .check-column label,tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:8px}th.sortable a:focus,th.sorted a:focus{border-radius:2px;box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}th.sortable a span,th.sorted a span{float:right;cursor:pointer}.tablenav-pages .current-page{vertical-align:top;margin:0 0 0 2px;font-size:13px;text-align:center;min-height:32px;padding:0 8px}.tablenav .total-pages{margin-left:2px}.tablenav #table-paging{margin-right:2px}.tablenav{clear:both;height:32px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:left;margin:0 0 9px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{display:inline-block;vertical-align:baseline;min-width:32px;min-height:32px;margin:0;padding:0 4px;font-size:16px;line-height:1.875;text-align:center}.tablenav .displaying-num{margin-left:7px}.tablenav .one-page .displaying-num{display:inline-block;margin:5px 0}.tablenav .actions{padding:0 0 0 8px}.wp-filter .actions{display:inline-block;vertical-align:middle}.tablenav .delete{margin-left:20px}.tablenav .view-switch{float:left;margin:0 5px;padding-top:3px}.wp-filter .view-switch{display:inline-block;vertical-align:middle;padding:12px 0;margin:0 2px 0 8px}.media-toolbar.wp-filter .view-switch{margin:0 2px 0 12px}.view-switch a{float:right;width:28px;height:28px;text-align:center;line-height:1.84615384;text-decoration:none}.view-switch a:before{color:#c3c4c7;display:inline-block;font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.view-switch a:focus:before,.view-switch a:hover:before{color:#787c82}.view-switch a.current:before{color:#2271b1}.view-switch .view-list:before{content:"\f163";content:"\f163"/''}.view-switch .view-excerpt:before{content:"\f164";content:"\f164"/''}.view-switch .view-grid:before{content:"\f509";content:"\f509"/''}.filter{float:right;margin:-5px 10px 0 0}.filter .subsubsub{margin-right:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter .wp-filter{margin-bottom:0}#posts-filter fieldset{float:right;margin:0 0 1em 1.5ex;padding:0}#posts-filter fieldset legend{padding:0 1px .2em 0}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:600;margin:0 6px}.row-title{font-size:14px!important;font-weight:600}.column-comment .comment-author{margin-bottom:.6em}.column-author img,.column-comment .comment-author img,.column-username img{float:right;margin-left:10px;margin-top:1px}.row-actions{color:#646970;font-size:13px;padding:2px 0 0;position:relative;right:-9999em}.rtl .row-actions a{display:inline-block}.row-actions .network_active,.row-actions .network_only{color:#000}.comment-item:hover .row-actions,.mobile .row-actions,.no-js .row-actions,.row-actions.visible,tr:hover .row-actions{position:static}.row-actions-visible{padding:2px 0 0}#wpbody-content .inline-edit-row fieldset{float:right;margin:0;padding:0 0 0 12px;width:100%;box-sizing:border-box}#wpbody-content .inline-edit-row td fieldset:last-of-type{padding-left:0}tr.inline-edit-row td{padding:0;position:relative}.inline-edit-wrapper{display:flow-root;padding:0 12px;border:1px solid transparent;border-radius:4px}.inline-edit-wrapper:focus{border-color:var(--wp-admin-theme-color,#3858e9);box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .quick-edit-row-page .inline-edit-col-right{width:50%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:left;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both;line-height:2.5}.inline-edit-row .submit{display:flex;flex-wrap:wrap;align-items:center;clear:both;margin:0;padding:.5em 0 1em}.inline-edit-save.submit .button{margin-left:8px}.inline-edit-save .spinner{float:none;margin:0}.inline-edit-row .notice-error{box-sizing:border-box;min-width:100%;margin-top:1em}.inline-edit-row .notice-error .error{margin:.5em 0;padding:2px}#the-list .inline-edit-row .inline-edit-legend{margin:0;padding:.2em 0;line-height:2.5;font-weight:600}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{margin:0;padding:0}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0;line-height:2.5}.inline-edit-row fieldset.inline-edit-date label{display:inline-block;margin:0;vertical-align:baseline;line-height:2}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{display:block;float:right;width:6em;line-height:2.5}#posts-filter fieldset.inline-edit-date legend{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-right:6em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-left:.5em}.inline-edit-row .inline-edit-or{margin:.2em 0 .2em 6px;line-height:2.5}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:middle}.inline-edit-row fieldset label textarea{width:100%;height:4em;vertical-align:top}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:32px;padding:0 8px 0 8px}.inline-edit-row select{line-height:2.14285714;padding-left:24px}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-left:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-row .inline-edit-legend{text-transform:uppercase}.inline-edit-row fieldset .inline-edit-date{float:right}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{vertical-align:middle;text-align:center;padding:0 4px}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}#bulk-titles-list,#bulk-titles-list li,.inline-edit-row fieldset ul.cat-checklist input,.inline-edit-row fieldset ul.cat-checklist li{margin:0;position:relative}.inline-edit-row fieldset ul.cat-checklist input{margin-top:-1px;margin-right:3px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row select[name=page_template],.inline-edit-row select[name=post_parent]{max-width:80%}.quick-edit-row-post fieldset label.inline-edit-status{float:right}#bulk-titles,ul.cat-checklist{height:14em;border:1px solid #ddd;margin:0 0 5px;padding:.2em 5px;overflow-y:scroll}ul.cat-checklist input[name="post_category[]"]:indeterminate::before{content:'';border-top:2px solid grey;width:65%;height:2px;position:absolute;top:calc(50% + 1px);right:50%;transform:translate(50%,-50%)}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{display:inline-block;margin:0;padding:3px 0;line-height:20px;vertical-align:top}#bulk-titles .ntdelitem{padding-right:23px}#bulk-titles .ntdelbutton{width:26px;height:26px;margin:0 -26px 0 0;text-align:center;border-radius:3px}#bulk-titles .ntdelbutton:before{display:inline-block;vertical-align:top}#bulk-titles .ntdelbutton:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:0}.plugins tbody,.plugins tbody th.check-column{padding:8px 2px 0 0}.plugins tbody th.check-column input[type=checkbox]{margin-top:4px}.updates-table .plugin-title p{margin-top:0}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-right:6px}.plugins,.plugins td,.plugins th{color:#000}.plugins tr{background:#fff}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5}.plugins .desc ol,.plugins .desc ul{margin:0 2em 0 0}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{font-size:13px;padding:0}.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th{padding:10px 9px}.plugins .active td,.plugins .active th{background-color:rgba(var(--wp-admin-theme-color--rgb),.08)}.plugins .update td,.plugins .update th{border-bottom:0}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th,.plugins tr.active.plugin-update-tr+tr.inactive td,.plugins tr.active.plugin-update-tr+tr.inactive th{border-top:1px solid rgba(0,0,0,.03);box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #dcdcde}.plugins .update td,.plugins .update th,.plugins .updated td,.plugins .updated th,.plugins tr.active+tr.inactive.update td,.plugins tr.active+tr.inactive.update th,.plugins tr.active+tr.inactive.updated td,.plugins tr.active+tr.inactive.updated th,.upgrade .plugins tr:last-of-type td,.upgrade .plugins tr:last-of-type th{box-shadow:none}.plugin-update-tr.active td,.plugins .active th.check-column{border-right:4px solid var(--wp-admin-theme-color)}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-left:12px;white-space:nowrap}.plugins .plugin-title .dashicons,.plugins .plugin-title img.plugin-icon,.plugins .plugin-title img.updates-table-screenshot{float:right;padding:0 0 0 10px;width:64px;height:64px}.plugins .plugin-title .dashicons:before{padding:2px;background-color:#f0f0f1;box-shadow:inset 0 0 10px rgba(167,170,173,.15);font-size:60px;color:#c3c4c7}#update-themes-table .plugin-title .dashicons,#update-themes-table .plugin-title img.updates-table-screenshot{width:85px}.plugins .column-auto-updates{width:14.2em}.plugins .inactive .plugin-title strong{font-weight:400}.plugins .row-actions,.plugins .second{padding:0 0 5px}.plugins .row-actions{white-space:normal;min-width:12em}.plugins .update .row-actions,.plugins .update .second,.plugins .updated .row-actions,.plugins .updated .second{padding-bottom:0}.plugins-php .widefat tfoot td,.plugins-php .widefat tfoot th{border-top-style:solid;border-top-width:1px}.plugins .plugin-update-tr .plugin-update{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);overflow:hidden;padding:0}.plugins .plugin-update-tr .notice,.plugins .plugin-update-tr div[class=update-message]{margin:5px 40px 15px 20px}.plugins .notice p{margin:.5em 0}.plugins .plugin-description a,.plugins .plugin-update a,.updates-table .plugin-title a{text-decoration:underline}.plugins tr.paused th.check-column{border-right:4px solid #b32d2e}.plugins tr.paused td,.plugins tr.paused th{background-color:#f6f7f7}.plugins .paused .dashicons-warning,.plugins tr.paused .plugin-title{color:#b32d2e}.plugins .paused .error-display code,.plugins .paused .error-display p{font-size:90%;color:rgba(0,0,0,.7)}.plugins .resume-link{color:#b32d2e}.plugin-card .update-now:before{color:#d63638;content:"\f463";content:"\f463"/'';display:inline-block;font:normal 16px/1.875 dashicons;margin:0 -2px 0 5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.plugin-card .updating-message:before{content:"\f463";content:"\f463"/'';animation:rotation 2s infinite linear}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(-359deg)}}.plugin-card .updated-message:before{color:#68de7c;content:"\f147";content:"\f147"/''}.plugin-card .updated-message:before,.plugin-card .updating-message:before{line-height:1;position:relative;top:-2px;vertical-align:middle}.plugin-install-php #the-list{display:flex;flex-wrap:wrap}.plugin-install-php .plugin-card{display:flex;flex-direction:column;justify-content:space-between}.plugin-install-php h2{clear:both}.plugin-install-php h3{margin:2.5em 0 8px}.plugin-install-php .wp-filter{margin-bottom:0}.plugin-group{overflow:hidden;margin-top:1.5em}.plugin-group h3{margin-top:0}.plugin-card{float:right;margin:0 8px 16px;width:48.5%;width:calc(50% - 8px);background-color:#fff;border:1px solid rgb(0,0,0,.1);border-radius:8px;box-sizing:border-box;overflow:hidden}.plugin-card:nth-child(odd){clear:both;margin-right:0}.plugin-card:nth-child(2n){margin-left:0}@media screen and (min-width:1600px) and (max-width:2299px){.plugin-card{width:30%;width:calc(33.1% - 8px)}.plugin-card:nth-child(odd){clear:none;margin-right:8px}.plugin-card:nth-child(2n){margin-left:8px}.plugin-card:nth-child(3n+1){clear:both;margin-right:0}.plugin-card:nth-child(3n){margin-left:0}}@media screen and (min-width:2300px){.plugin-card{width:25%;width:calc(25% - 12px)}.plugin-card:nth-child(odd){clear:none;margin-right:8px}.plugin-card:nth-child(2n){margin-left:8px}.plugin-card:nth-child(4n+1){clear:both;margin-right:0}.plugin-card:nth-child(4n){margin-left:0}}.plugin-card-top{position:relative;padding:16px;min-height:135px}.plugin-action-buttons,div.action-links{margin:0}.plugin-card h3{margin:0 0 16px 12px;font-size:18px;line-height:1.3}.plugin-card .desc{margin-inline:0}.plugin-card .desc>p,.plugin-card .name{margin-right:148px}@media (min-width:1101px){.plugin-card .desc>p,.plugin-card .name{margin-left:128px}}@media (min-width:481px) and (max-width:781px){.plugin-card .desc>p,.plugin-card .name{margin-left:128px}}.plugin-card .column-description{display:flex;flex-direction:column;justify-content:flex-start}.plugin-card .column-description>p{margin-top:0}.plugin-card .column-description p:empty{display:none}.plugin-card .notice.plugin-dependencies{margin:auto 20px 20px;padding:15px}.plugin-card .plugin-dependencies-explainer-text{margin-block:0}.plugin-card .plugin-dependency{align-items:center;display:flex;flex-wrap:wrap;margin-top:.5em;column-gap:1%;row-gap:.5em}.plugin-card .plugin-dependency:last-child,.plugin-card .plugin-dependency:nth-child(2){margin-top:1em}.plugin-card .plugin-dependency-name{flex-basis:74%}.plugin-card .plugin-dependency .more-details-link{margin-right:auto}.rtl .plugin-card .plugin-dependency .more-details-link{margin-left:auto}@media (max-width:939px){.plugin-card .plugin-dependency-name{flex-basis:69%}}.plugins #the-list .required-by,.plugins #the-list .requires{margin-top:1em}.plugin-card .action-links{position:absolute;top:20px;left:20px;width:120px}.plugin-action-buttons{clear:left;float:left;margin-bottom:1em;text-align:left}.plugin-action-buttons li{margin-bottom:10px}.plugin-card-bottom{clear:both;padding:16px;background-color:#f6f7f7;border-top:1px solid rgb(0,0,0,.1);overflow:hidden}.plugin-card-bottom .star-rating{display:inline}.plugin-card-update-failed .update-now{font-weight:600}.plugin-card-update-failed .notice-error{margin:0;padding-right:16px;box-shadow:0 -1px 0 #dcdcde}.plugin-card-update-failed .plugin-card-bottom{display:none}.plugin-card .column-rating{line-height:1.76923076}.plugin-card .column-rating,.plugin-card .column-updated{margin-bottom:4px}.plugin-card .column-downloaded,.plugin-card .column-rating{float:right;clear:right;max-width:180px}.plugin-card .column-compatibility,.plugin-card .column-updated{text-align:left;float:left;clear:left;width:65%;width:calc(100% - 180px)}.plugin-card .column-compatibility span:before{font:normal 20px/.5 dashicons;display:inline-block;padding:0;top:4px;right:-2px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#3c434a}.plugin-card .column-compatibility .compatibility-incompatible:before{content:"\f158";content:"\f158"/'';color:#d63638}.plugin-card .column-compatibility .compatibility-compatible:before{content:"\f147";content:"\f147"/'';color:#007017}.plugin-card .notice{margin:20px 20px 0}.plugin-card .plugin-icon{position:absolute;top:20px;right:20px;width:128px;height:128px;margin:0 0 20px 20px}.no-plugin-results{color:#646970;font-size:18px;font-style:normal;margin:0;padding:100px 0 0;width:100%;text-align:center}.wp-list-table .site-archived,.wp-list-table .site-deleted,.wp-list-table tr.site-archived,.wp-list-table tr.site-deleted{background:#fcf0f1}.wp-list-table .site-mature,.wp-list-table .site-spammed,.wp-list-table tr.site-mature,.wp-list-table tr.site-spammed{background:#fcf9e8}.sites.fixed .column-lastupdated,.sites.fixed .column-registered{width:20%}.sites.fixed .column-users{width:80px}@media screen and (max-width:1100px) and (min-width:782px),(max-width:480px){.plugin-card .action-links{position:static;margin-right:148px;width:auto}.plugin-action-buttons{float:none;margin:1em 0 0;text-align:right}.plugin-action-buttons li{display:inline-block;vertical-align:middle}.plugin-action-buttons li .button{margin-left:20px}.plugin-card h3{margin-left:24px}.plugin-card .desc,.plugin-card .name{margin-left:0}.plugin-card .desc p:first-of-type{margin-top:0}}@media screen and (max-width:782px){.tablenav{height:auto}.tablenav.top{margin:20px 0 5px}.tablenav.bottom{position:relative;margin-top:15px}.tablenav br{display:none}.tablenav br.clear{display:block}.tablenav .view-switch,.tablenav.top .actions{display:none}.view-switch a{width:36px;height:36px;line-height:2.53846153}.tablenav.top .displaying-num{display:none}.tablenav.bottom .displaying-num{position:absolute;left:0;top:11px;margin:0;font-size:14px}.tablenav .tablenav-pages{width:100%;text-align:center;margin:0 0 25px}.tablenav.bottom .tablenav-pages{margin-top:25px}.tablenav.top .tablenav-pages.one-page{display:none}.tablenav.bottom .actions select{margin-bottom:5px}.tablenav.bottom .actions.alignleft+.actions.alignleft{clear:right;margin-top:10px}.tablenav.bottom .tablenav-pages.one-page{margin-top:15px;height:0}.tablenav-pages .pagination-links{font-size:16px}.tablenav .tablenav-pages .button,.tablenav .tablenav-pages .tablenav-pages-navspan{min-width:40px;min-height:40px;padding:10px 8px;font-size:18px;line-height:1}.tablenav-pages .pagination-links .current-page{min-width:40px;padding:10px 6px;font-size:16px;line-height:1.125}.form-wrap>p{display:none}.wp-list-table th.column-primary~th,.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){display:none}.wp-list-table thead th.column-primary{width:100%}.wp-list-table tr th.check-column{display:table-cell}.wp-list-table .check-column{width:2.5em}.wp-list-table .column-primary .toggle-row{display:block}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column){position:relative;clear:both;width:auto!important}.wp-list-table td.column-primary{padding-left:50px}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column){padding:3px 35% 3px 8px}.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before{position:absolute;right:10px;display:block;overflow:hidden;width:32%;content:attr(data-colname);white-space:nowrap;text-overflow:ellipsis}.wp-list-table .is-expanded td:not(.hidden){display:block!important;overflow:hidden}.column-posts,.widefat .num{text-align:right}#comments-form .fixed .column-author,#commentsdiv .fixed .column-author{display:none!important}.fixed .column-comment .comment-author{display:block}.fixed .column-author.hidden~.column-comment .comment-author{display:none}#the-comment-list .is-expanded td{box-shadow:none}#the-comment-list .is-expanded td:last-child{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.post-com-count .screen-reader-text{position:static;clip-path:none;width:auto;height:auto;margin:0}.column-comments .post-com-count-approved:after,.column-comments .post-com-count-no-comments:after,.column-response .post-com-count-approved:after,.column-response .post-com-count-no-comments:after{content:none}.column-comments .post-com-count [aria-hidden=true],.column-response .post-com-count [aria-hidden=true]{display:none}.column-comments .post-com-count-wrapper,.column-response .post-com-count-wrapper{white-space:normal}.column-comments .post-com-count-wrapper>a,.column-response .post-com-count-wrapper>a{display:block}.column-comments .post-com-count-approved,.column-comments .post-com-count-no-comments,.column-response .post-com-count-approved,.column-response .post-com-count-no-comments{margin-top:0;margin-left:.5em}.column-comments .post-com-count-pending,.column-response .post-com-count-pending{position:static;height:auto;min-width:0;padding:0;border:none;border-radius:0;background:0 0;color:#b32d2e;font-size:inherit;line-height:inherit;text-align:right}.column-comments .post-com-count-pending:hover,.column-response .post-com-count-pending:hover{color:#d63638}.widefat tfoot td.check-column,.widefat thead td.check-column{padding-top:10px}.row-actions{margin-left:-8px;padding-top:4px}body:not(.plugins-php) .row-actions{display:flex;flex-wrap:wrap;gap:8px;color:transparent}.row-actions span{font-size:0}.row-actions span .button-link,.row-actions span a{display:inline-block;padding:4px 0 4px 16px;font-size:13px;line-height:1.5}.row-actions span.approve:before,.row-actions span.unapprove:before{content:"| "}#wpbody-content .bulk-edit-row .inline-edit-col-bottom,#wpbody-content .bulk-edit-row .inline-edit-col-left,#wpbody-content .bulk-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .inline-edit-row-post .inline-edit-col-center,#wpbody-content .quick-edit-row-page .inline-edit-col-left,#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .quick-edit-row-post .inline-edit-col-left,#wpbody-content .quick-edit-row-post .inline-edit-col-right{float:none;width:100%;padding:0}#the-list .inline-edit-row .inline-edit-legend,.inline-edit-row span.title{font-size:16px}.inline-edit-row p.howto{font-size:14px}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:0}#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,#wpbody-content .bulk-edit-row fieldset .inline-edit-group label,#wpbody-content .quick-edit-row fieldset .inline-edit-col label,#wpbody-content .quick-edit-row fieldset .inline-edit-group label{max-width:none;float:none;margin-bottom:5px}#wpbody .bulk-edit-row fieldset select{display:block;width:100%;max-width:none;box-sizing:border-box}.inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])),.inline-edit-row select{min-height:40px}.inline-edit-row fieldset input[name=aa],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{font-size:16px;line-height:2;padding:3px 4px}#bulk-titles .ntdelbutton,#bulk-titles .ntdeltitle,.inline-edit-row fieldset ul.cat-checklist label{padding:6px 0;font-size:16px;line-height:28px}#bulk-titles .ntdelitem{padding-right:37px}#bulk-titles .ntdelbutton{width:40px;height:40px;margin:0 -40px 0 0;overflow:hidden}#bulk-titles .ntdelbutton:before{font-size:20px;line-height:28px}.inline-edit-row fieldset label span.title,.inline-edit-row fieldset.inline-edit-date legend{float:none}.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags{padding:0}.inline-edit-row fieldset .timestamp-wrap,.inline-edit-row fieldset label span.input-text-wrap{margin-right:0}.inline-edit-row .inline-edit-or{margin:0 0 0 6px}#commentsdiv #edithead .inside,#edithead .inside{float:none;text-align:right;padding:3px 5px}#commentsdiv #edithead .inside input,#edithead .inside input{width:100%}#edithead label{display:block}#wpbody-content .updates-table .plugin-title{width:auto;white-space:normal}.link-manager-php #posts-filter{margin-top:25px}.link-manager-php .tablenav.bottom{overflow:hidden}.comments-box .toggle-row,.wp-list-table.plugins .toggle-row{display:none}#wpbody-content .wp-list-table.plugins td{display:block;width:auto;padding:10px 9px}#wpbody-content .wp-list-table.plugins .no-items td,#wpbody-content .wp-list-table.plugins .plugin-deleted-tr td{display:table-cell}#wpbody-content .wp-list-table.plugins .desc.hidden{display:none}#wpbody-content .wp-list-table.plugins .column-description{padding-top:2px}#wpbody-content .wp-list-table.plugins .plugin-title,#wpbody-content .wp-list-table.plugins .theme-title{padding-left:12px;white-space:normal}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-top:13px;padding-bottom:4px}.plugins #the-list .update td,.plugins #the-list .update th,.plugins #the-list tr>td:not(:last-child),.wp-list-table.plugins #the-list .theme-title{box-shadow:none;border-top:none}.plugins #the-list tr td{border-top:none}.plugins tbody{padding:1px 0 0}.plugins .plugin-update-tr:before,.plugins tr.active+tr.inactive td.column-description,.plugins tr.active+tr.inactive th.check-column{box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column{border-top:none}.plugins .plugin-update-tr:before{content:"";display:table-cell}.plugins #the-list .plugin-update-tr .plugin-update{border-right:none}.plugin-update-tr .update-message{margin-right:0}.plugins .active.update+.plugin-update-tr:before,.plugins .active.updated+.plugin-update-tr:before{background-color:rgba(var(--wp-admin-theme-color--rgb),.08);border-right:4px solid var(--wp-admin-theme-color)}.plugins .plugin-update-tr .update-message{margin-right:0}.wp-list-table.plugins .plugin-title strong,.wp-list-table.plugins .theme-title strong{font-size:1.4em;line-height:1.5}.plugins tbody th.check-column{padding:8px 5px 0 0}.plugins .inactive th.check-column,.plugins tfoot td.check-column,.plugins thead td.check-column{padding-right:9px}table.plugin-install .column-description,table.plugin-install .column-name,table.plugin-install .column-rating,table.plugin-install .column-version{display:block;width:auto}table.plugin-install th.column-description,table.plugin-install th.column-name,table.plugin-install th.column-rating,table.plugin-install th.column-version{display:none}table.plugin-install td.column-name strong{font-size:1.4em;line-height:1.6em}table.plugin-install #the-list td{box-shadow:none}table.plugin-install #the-list tr{display:block;box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugin-card{margin-right:0;margin-left:0;width:100%}table.media .column-title .has-media-icon~.row-actions{margin-right:0;clear:both}}@media screen and (max-width:480px){.tablenav-pages .current-page{margin:0}.tablenav.bottom .displaying-num{position:relative;top:0;display:block;text-align:left;padding-bottom:.5em}.tablenav.bottom .tablenav-pages.one-page{height:auto}.tablenav-pages .tablenav-paging-text{float:right;width:100%;padding-top:.5em}}user-new.php000066600000060077152330733730007046 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

    ' . __( 'Sorry, you are not allowed to add users to this network.' ) . '

    ', 403 ); } } elseif ( ! current_user_can( 'create_users' ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to create users.' ) . '

    ', 403 ); } if ( is_multisite() ) { add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' ); } if ( isset( $_REQUEST['action'] ) && 'adduser' === $_REQUEST['action'] ) { check_admin_referer( 'add-user', '_wpnonce_add-user' ); $user_details = null; $user_email = wp_unslash( $_REQUEST['email'] ); if ( str_contains( $user_email, '@' ) ) { $user_details = get_user_by( 'email', $user_email ); } else { if ( current_user_can( 'manage_network_users' ) ) { $user_details = get_user_by( 'login', $user_email ); } else { wp_redirect( add_query_arg( array( 'update' => 'enter_email' ), 'user-new.php' ) ); die(); } } if ( ! $user_details ) { wp_redirect( add_query_arg( array( 'update' => 'does_not_exist' ), 'user-new.php' ) ); die(); } if ( ! current_user_can( 'promote_user', $user_details->ID ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to add users to this network.' ) . '

    ', 403 ); } // Adding an existing user to this blog. $new_user_email = array(); $redirect = 'user-new.php'; $username = $user_details->user_login; $user_id = $user_details->ID; if ( array_key_exists( $blog_id, get_blogs_of_user( $user_id ) ) ) { $redirect = add_query_arg( array( 'update' => 'addexisting' ), 'user-new.php' ); } else { if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) { wp_ensure_editable_role( $_REQUEST['role'] ); $result = add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST['role'], ) ); if ( ! is_wp_error( $result ) ) { $redirect = add_query_arg( array( 'update' => 'addnoconfirmation', 'user_id' => $user_id, ), 'user-new.php' ); } else { $redirect = add_query_arg( array( 'update' => 'could_not_add' ), 'user-new.php' ); } } else { $newuser_key = wp_generate_password( 20, false ); add_option( 'new_user_' . $newuser_key, array( 'user_id' => $user_id, 'email' => $user_details->user_email, 'role' => $_REQUEST['role'], ) ); $roles = get_editable_roles(); $role = $roles[ $_REQUEST['role'] ]; /** * Fires immediately after an existing user is invited to join the site, but before the notification is sent. * * @since 4.4.0 * * @param int $user_id The invited user's ID. * @param array $role Array containing role information for the invited user. * @param string $newuser_key The key of the invitation. */ do_action( 'invite_user', $user_id, $role, $newuser_key ); $switched_locale = switch_to_user_locale( $user_id ); if ( '' !== get_option( 'blogname' ) ) { $site_title = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); } else { $site_title = parse_url( home_url(), PHP_URL_HOST ); } /* translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. */ $message = __( 'Hi, You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. Please click the following link to confirm the invite: %4$s' ); $new_user_email['to'] = $user_details->user_email; $new_user_email['subject'] = sprintf( /* translators: Joining confirmation notification email subject. %s: Site title. */ __( '[%s] Joining Confirmation' ), $site_title ); $new_user_email['message'] = sprintf( $message, get_option( 'blogname' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ), home_url( "/newbloguser/$newuser_key/" ) ); $new_user_email['headers'] = ''; /** * Filters the contents of the email sent when an existing user is invited to join the site. * * @since 5.6.0 * * @param array $new_user_email { * Used to build wp_mail(). * * @type string $to The email address of the invited user. * @type string $subject The subject of the email. * @type string $message The content of the email. * @type string $headers Headers. * } * @param int $user_id The invited user's ID. * @param array $role Array containing role information for the invited user. * @param string $newuser_key The key of the invitation. * */ $new_user_email = apply_filters( 'invited_user_email', $new_user_email, $user_id, $role, $newuser_key ); wp_mail( $new_user_email['to'], $new_user_email['subject'], $new_user_email['message'], $new_user_email['headers'] ); if ( $switched_locale ) { restore_previous_locale(); } $redirect = add_query_arg( array( 'update' => 'add' ), 'user-new.php' ); } } wp_redirect( $redirect ); die(); } elseif ( isset( $_REQUEST['action'] ) && 'createuser' === $_REQUEST['action'] ) { check_admin_referer( 'create-user', '_wpnonce_create-user' ); if ( ! current_user_can( 'create_users' ) ) { wp_die( '

    ' . __( 'You need a higher level of permission.' ) . '

    ' . '

    ' . __( 'Sorry, you are not allowed to create users.' ) . '

    ', 403 ); } if ( ! is_multisite() ) { $user_id = edit_user(); if ( is_wp_error( $user_id ) ) { $add_user_errors = $user_id; } else { if ( current_user_can( 'list_users' ) ) { $redirect = 'users.php?update=add&id=' . $user_id; } else { $redirect = add_query_arg( 'update', 'add', 'user-new.php' ); } wp_redirect( $redirect ); die(); } } else { // Adding a new user to this site. $new_user_email = wp_unslash( $_REQUEST['email'] ); $user_details = wpmu_validate_user_signup( $_REQUEST['user_login'], $new_user_email ); if ( is_wp_error( $user_details['errors'] ) && $user_details['errors']->has_errors() ) { $add_user_errors = $user_details['errors']; } else { /** This filter is documented in wp-includes/user.php */ $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) ); if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) { add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email. add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email. } wp_ensure_editable_role( $_REQUEST['role'] ); wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => get_current_blog_id(), 'new_role' => $_REQUEST['role'], ) ); if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) { $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $new_user_email ) ); $new_user = wpmu_activate_signup( $key ); if ( is_wp_error( $new_user ) ) { $redirect = add_query_arg( array( 'update' => 'addnoconfirmation' ), 'user-new.php' ); } elseif ( ! is_user_member_of_blog( $new_user['user_id'] ) ) { $redirect = add_query_arg( array( 'update' => 'created_could_not_add' ), 'user-new.php' ); } else { $redirect = add_query_arg( array( 'update' => 'addnoconfirmation', 'user_id' => $new_user['user_id'], ), 'user-new.php' ); } } else { $redirect = add_query_arg( array( 'update' => 'newuserconfirmation' ), 'user-new.php' ); } wp_redirect( $redirect ); die(); } } } // Used in the HTML title tag. $title = __( 'Add User' ); $parent_file = 'users.php'; $do_both = false; if ( is_multisite() && current_user_can( 'promote_users' ) && current_user_can( 'create_users' ) ) { $do_both = true; } $help = '

    ' . __( 'To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.' ) . '

    '; if ( is_multisite() ) { $help .= '

    ' . __( 'Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.' ) . '

    ' . '

    ' . __( 'New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.' ) . '

    '; } else { $help .= '

    ' . __( 'New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.' ) . '

    ' . '

    ' . __( 'By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.' ) . '

    '; } $help .= '

    ' . __( 'Remember to click the Add User button at the bottom of this screen when you are finished.' ) . '

    '; get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); get_current_screen()->add_help_tab( array( 'id' => 'user-roles', 'title' => __( 'User Roles' ), 'content' => '

    ' . __( 'Here is a basic overview of the different user roles and the permissions associated with each one:' ) . '

    ' . '
      ' . '
    • ' . __( 'Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.' ) . '
    • ' . '
    • ' . __( 'Contributors can write and manage their posts but not publish posts or upload media files.' ) . '
    • ' . '
    • ' . __( 'Authors can publish and manage their own posts, and are able to upload files.' ) . '
    • ' . '
    • ' . __( 'Editors can publish posts, manage posts as well as manage other people’s posts, etc.' ) . '
    • ' . '
    • ' . __( 'Administrators have access to all the administration features.' ) . '
    • ' . '
    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Adding New Users' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); wp_enqueue_script( 'wp-ajax-response' ); wp_enqueue_script( 'user-profile' ); /** * Filters whether to enable user auto-complete for non-super admins in Multisite. * * @since 3.4.0 * * @param bool $enable Whether to enable auto-complete for non-super admins. Default false. */ if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' ) && ( current_user_can( 'manage_network_users' ) || apply_filters( 'autocomplete_users_for_site_admins', false ) ) ) { wp_enqueue_script( 'user-suggest' ); } require_once ABSPATH . 'wp-admin/admin-header.php'; if ( isset( $_GET['update'] ) ) { $messages = array(); if ( is_multisite() ) { $edit_link = ''; if ( ( isset( $_GET['user_id'] ) ) ) { $user_id_new = absint( $_GET['user_id'] ); if ( $user_id_new ) { $edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user_id_new ) ) ); } } switch ( $_GET['update'] ) { case 'newuserconfirmation': $messages[] = __( 'Invitation email sent to new user. A confirmation link must be clicked before their account is created.' ); break; case 'add': $messages[] = __( 'Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.' ); break; case 'addnoconfirmation': $message = __( 'User has been added to your site.' ); if ( $edit_link ) { $message .= sprintf( ' %s', $edit_link, __( 'Edit user' ) ); } $messages[] = $message; break; case 'addexisting': $messages[] = __( 'That user is already a member of this site.' ); break; case 'could_not_add': $add_user_errors = new WP_Error( 'could_not_add', __( 'That user could not be added to this site.' ) ); break; case 'created_could_not_add': $add_user_errors = new WP_Error( 'created_could_not_add', __( 'User has been created, but could not be added to this site.' ) ); break; case 'does_not_exist': $add_user_errors = new WP_Error( 'does_not_exist', __( 'The requested user does not exist.' ) ); break; case 'enter_email': $add_user_errors = new WP_Error( 'enter_email', __( 'Please enter a valid email address.' ) ); break; } } else { if ( 'add' === $_GET['update'] ) { $messages[] = __( 'User added.' ); } } } ?>

    get_error_messages() as $err ) { $error_message .= "
  • $err
  • \n"; } wp_admin_notice( '
      ' . $error_message . '
    ', array( 'additional_classes' => array( 'error' ), 'paragraph_wrap' => false, ) ); endif; if ( ! empty( $messages ) ) { foreach ( $messages as $msg ) { wp_admin_notice( $msg, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } } ?> get_error_messages() as $message ) { $error_message .= "

    $message

    \n"; } wp_admin_notice( $error_message, array( 'additional_classes' => array( 'error' ), 'paragraph_wrap' => false, ) ); endif; ?>
    ' . __( 'Add Existing User' ) . ''; } if ( ! current_user_can( 'manage_network_users' ) ) { echo '

    ' . __( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '

    '; $label = __( 'Email' ); $type = 'email'; } else { echo '

    ' . __( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '

    '; $label = __( 'Email or Username' ); $type = 'text'; } ?>
    > 'addusersub' ) ); ?>
    ' . __( 'Add User' ) . ''; } ?>

    > 'createusersub' ) ); ?>

    Version %s addressed some security issues.' ), '7.0.2' ); ?> the release notes.' ), sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( '7.0.2' ) ) ); ?>

    Version %1$s addressed %2$s bug.', 'Version %1$s addressed %2$s bugs.', 31 ), '7.0.1', 31 ); ?> the release notes.' ), sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( '7.0.1' ) ) ); ?>






    Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.' ), 'https://learn.wordpress.org/', 'https://learn.wordpress.org/online-workshops/' ); ?>


    %2$s | ', esc_url( self_admin_url( 'update-core.php' ) ), is_multisite() ? __( 'Go to Updates' ) : __( 'Go to Dashboard → Updates' ) ); } printf( '%2$s', esc_url( self_admin_url() ), is_blog_admin() ? __( 'Go to Dashboard → Home' ) : __( 'Go to Dashboard' ) ); ?>
    Version %s addressed one security issue.' ); /* translators: %s: WordPress version number. */ __( 'Version %s addressed some security issues.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. */ _n_noop( 'Version %1$s addressed %2$s bug.', 'Version %1$s addressed %2$s bugs.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */ _n_noop( 'Version %1$s addressed a security issue and fixed %2$s bug.', 'Version %1$s addressed a security issue and fixed %2$s bugs.' ); /* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ _n_noop( 'Version %1$s addressed some security issues and fixed %2$s bug.', 'Version %1$s addressed some security issues and fixed %2$s bugs.' ); /* translators: %s: Documentation URL. */ __( 'For more information, see the release notes.' ); /* translators: 1: WordPress version number, 2: Link to update WordPress */ __( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.' ); /* translators: 1: WordPress version number, 2: Link to update WordPress */ __( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.' ); /* translators: %s: The major version of WordPress for this branch. */ __( 'This is the final release of WordPress %s' ); /* translators: The localized WordPress download URL. */ __( 'https://wordpress.org/download/' ); update.php000066600000031406152330733730006555 0ustar00bulk_upgrade( $plugins ); iframe_footer(); } elseif ( 'upgrade-plugin' === $action ) { if ( ! current_user_can( 'update_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to update plugins for this site.' ) ); } check_admin_referer( 'upgrade-plugin_' . $plugin ); // Used in the HTML title tag. $title = __( 'Update Plugin' ); $parent_file = 'plugins.php'; $submenu_file = 'plugins.php'; wp_enqueue_script( 'updates' ); require_once ABSPATH . 'wp-admin/admin-header.php'; $nonce = 'upgrade-plugin_' . $plugin; $url = 'update.php?action=upgrade-plugin&plugin=' . urlencode( $plugin ); $upgrader = new Plugin_Upgrader( new Plugin_Upgrader_Skin( compact( 'title', 'nonce', 'url', 'plugin' ) ) ); $upgrader->upgrade( $plugin ); require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'activate-plugin' === $action ) { if ( ! current_user_can( 'update_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to update plugins for this site.' ) ); } check_admin_referer( 'activate-plugin_' . $plugin ); if ( ! isset( $_GET['failure'] ) && ! isset( $_GET['success'] ) ) { wp_redirect( admin_url( 'update.php?action=activate-plugin&failure=true&plugin=' . urlencode( $plugin ) . '&_wpnonce=' . $_GET['_wpnonce'] ) ); activate_plugin( $plugin, '', ! empty( $_GET['networkwide'] ), true ); wp_redirect( admin_url( 'update.php?action=activate-plugin&success=true&plugin=' . urlencode( $plugin ) . '&_wpnonce=' . $_GET['_wpnonce'] ) ); die(); } iframe_header( __( 'Plugin Reactivation' ), true ); if ( isset( $_GET['success'] ) ) { echo '

    ' . __( 'Plugin reactivated successfully.' ) . '

    '; } if ( isset( $_GET['failure'] ) ) { echo '

    ' . __( 'Plugin failed to reactivate due to a fatal error.' ) . '

    '; error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); ini_set( 'display_errors', true ); // Ensure that fatal errors are displayed. wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $plugin ); include WP_PLUGIN_DIR . '/' . $plugin; } iframe_footer(); } elseif ( 'install-plugin' === $action ) { if ( ! current_user_can( 'install_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to install plugins on this site.' ) ); } require_once ABSPATH . 'wp-admin/includes/plugin-install.php'; // For plugins_api(). check_admin_referer( 'install-plugin_' . $plugin ); $api = plugins_api( 'plugin_information', array( 'slug' => $plugin, 'fields' => array( 'sections' => false, ), ) ); if ( is_wp_error( $api ) ) { wp_die( $api ); } // Used in the HTML title tag. $title = __( 'Plugin Installation' ); $parent_file = 'plugins.php'; $submenu_file = 'plugin-install.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; /* translators: %s: Plugin name and version. */ $title = sprintf( __( 'Installing Plugin: %s' ), $api->name . ' ' . $api->version ); $nonce = 'install-plugin_' . $plugin; $url = 'update.php?action=install-plugin&plugin=' . urlencode( $plugin ); if ( isset( $_GET['from'] ) ) { $url .= '&from=' . urlencode( stripslashes( $_GET['from'] ) ); } $type = 'web'; // Install plugin type, From Web or an Upload. $upgrader = new Plugin_Upgrader( new Plugin_Installer_Skin( compact( 'title', 'url', 'nonce', 'plugin', 'api' ) ) ); $upgrader->install( $api->download_link ); require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'upload-plugin' === $action ) { if ( ! current_user_can( 'upload_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to install plugins on this site.' ) ); } check_admin_referer( 'plugin-upload' ); if ( isset( $_FILES['pluginzip']['name'] ) && ! str_ends_with( strtolower( $_FILES['pluginzip']['name'] ), '.zip' ) ) { wp_die( __( 'Only .zip archives may be uploaded.' ) ); } $file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' ); // Used in the HTML title tag. $title = __( 'Upload Plugin' ); $parent_file = 'plugins.php'; $submenu_file = 'plugin-install.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; /* translators: %s: File name. */ $title = sprintf( __( 'Installing plugin from uploaded file: %s' ), esc_html( basename( $file_upload->filename ) ) ); $nonce = 'plugin-upload'; $url = add_query_arg( array( 'package' => $file_upload->id ), 'update.php?action=upload-plugin' ); $type = 'upload'; // Install plugin type, From Web or an Upload. $overwrite = isset( $_GET['overwrite'] ) ? sanitize_text_field( $_GET['overwrite'] ) : ''; $overwrite = in_array( $overwrite, array( 'update-plugin', 'downgrade-plugin' ), true ) ? $overwrite : ''; $upgrader = new Plugin_Upgrader( new Plugin_Installer_Skin( compact( 'type', 'title', 'nonce', 'url', 'overwrite' ) ) ); $result = $upgrader->install( $file_upload->package, array( 'overwrite_package' => $overwrite ) ); if ( $result || is_wp_error( $result ) ) { $file_upload->cleanup(); } require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'upload-plugin-cancel-overwrite' === $action ) { if ( ! current_user_can( 'upload_plugins' ) ) { wp_die( __( 'Sorry, you are not allowed to install plugins on this site.' ) ); } check_admin_referer( 'plugin-upload-cancel-overwrite' ); // Make sure the attachment still exists, or File_Upload_Upgrader will call wp_die() // that shows a generic "Please select a file" error. if ( ! empty( $_GET['package'] ) ) { $attachment_id = (int) $_GET['package']; if ( get_post( $attachment_id ) ) { $file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' ); $file_upload->cleanup(); } } wp_redirect( self_admin_url( 'plugin-install.php' ) ); exit; } elseif ( 'upgrade-theme' === $action ) { if ( ! current_user_can( 'update_themes' ) ) { wp_die( __( 'Sorry, you are not allowed to update themes for this site.' ) ); } check_admin_referer( 'upgrade-theme_' . $theme ); wp_enqueue_script( 'updates' ); // Used in the HTML title tag. $title = __( 'Update Theme' ); $parent_file = 'themes.php'; $submenu_file = 'themes.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; $nonce = 'upgrade-theme_' . $theme; $url = 'update.php?action=upgrade-theme&theme=' . urlencode( $theme ); $upgrader = new Theme_Upgrader( new Theme_Upgrader_Skin( compact( 'title', 'nonce', 'url', 'theme' ) ) ); $upgrader->upgrade( $theme ); require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'update-selected-themes' === $action ) { if ( ! current_user_can( 'update_themes' ) ) { wp_die( __( 'Sorry, you are not allowed to update themes for this site.' ) ); } check_admin_referer( 'bulk-update-themes' ); if ( isset( $_GET['themes'] ) ) { $themes = explode( ',', stripslashes( $_GET['themes'] ) ); } elseif ( isset( $_POST['checked'] ) ) { $themes = (array) $_POST['checked']; } else { $themes = array(); } $themes = array_map( 'urldecode', $themes ); $url = 'update.php?action=update-selected-themes&themes=' . urlencode( implode( ',', $themes ) ); $nonce = 'bulk-update-themes'; wp_enqueue_script( 'updates' ); iframe_header(); $upgrader = new Theme_Upgrader( new Bulk_Theme_Upgrader_Skin( compact( 'nonce', 'url' ) ) ); $upgrader->bulk_upgrade( $themes ); iframe_footer(); } elseif ( 'install-theme' === $action ) { if ( ! current_user_can( 'install_themes' ) ) { wp_die( __( 'Sorry, you are not allowed to install themes on this site.' ) ); } require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; // For themes_api(). check_admin_referer( 'install-theme_' . $theme ); $api = themes_api( 'theme_information', array( 'slug' => $theme, 'fields' => array( 'sections' => false, 'tags' => false, ), ) ); // Save on a bit of bandwidth. if ( is_wp_error( $api ) ) { wp_die( $api ); } // Used in the HTML title tag. $title = __( 'Install Themes' ); $parent_file = 'themes.php'; $submenu_file = 'themes.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; /* translators: %s: Theme name and version. */ $title = sprintf( __( 'Installing Theme: %s' ), $api->name . ' ' . $api->version ); $nonce = 'install-theme_' . $theme; $url = 'update.php?action=install-theme&theme=' . urlencode( $theme ); $type = 'web'; // Install theme type, From Web or an Upload. $upgrader = new Theme_Upgrader( new Theme_Installer_Skin( compact( 'title', 'url', 'nonce', 'plugin', 'api' ) ) ); $upgrader->install( $api->download_link ); require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'upload-theme' === $action ) { if ( ! current_user_can( 'upload_themes' ) ) { wp_die( __( 'Sorry, you are not allowed to install themes on this site.' ) ); } check_admin_referer( 'theme-upload' ); if ( isset( $_FILES['themezip']['name'] ) && ! str_ends_with( strtolower( $_FILES['themezip']['name'] ), '.zip' ) ) { wp_die( __( 'Only .zip archives may be uploaded.' ) ); } $file_upload = new File_Upload_Upgrader( 'themezip', 'package' ); // Used in the HTML title tag. $title = __( 'Upload Theme' ); $parent_file = 'themes.php'; $submenu_file = 'theme-install.php'; require_once ABSPATH . 'wp-admin/admin-header.php'; /* translators: %s: File name. */ $title = sprintf( __( 'Installing theme from uploaded file: %s' ), esc_html( basename( $file_upload->filename ) ) ); $nonce = 'theme-upload'; $url = add_query_arg( array( 'package' => $file_upload->id ), 'update.php?action=upload-theme' ); $type = 'upload'; // Install theme type, From Web or an Upload. $overwrite = isset( $_GET['overwrite'] ) ? sanitize_text_field( $_GET['overwrite'] ) : ''; $overwrite = in_array( $overwrite, array( 'update-theme', 'downgrade-theme' ), true ) ? $overwrite : ''; $upgrader = new Theme_Upgrader( new Theme_Installer_Skin( compact( 'type', 'title', 'nonce', 'url', 'overwrite' ) ) ); $result = $upgrader->install( $file_upload->package, array( 'overwrite_package' => $overwrite ) ); if ( $result || is_wp_error( $result ) ) { $file_upload->cleanup(); } require_once ABSPATH . 'wp-admin/admin-footer.php'; } elseif ( 'upload-theme-cancel-overwrite' === $action ) { if ( ! current_user_can( 'upload_themes' ) ) { wp_die( __( 'Sorry, you are not allowed to install themes on this site.' ) ); } check_admin_referer( 'theme-upload-cancel-overwrite' ); // Make sure the attachment still exists, or File_Upload_Upgrader will call wp_die() // that shows a generic "Please select a file" error. if ( ! empty( $_GET['package'] ) ) { $attachment_id = (int) $_GET['package']; if ( get_post( $attachment_id ) ) { $file_upload = new File_Upload_Upgrader( 'themezip', 'package' ); $file_upload->cleanup(); } } wp_redirect( self_admin_url( 'theme-install.php' ) ); exit; } else { /** * Fires when a custom plugin or theme update request is received. * * The dynamic portion of the hook name, `$action`, refers to the action * provided in the request for wp-admin/update.php. Can be used to * provide custom update functionality for themes and plugins. * * @since 2.8.0 */ do_action( "update-custom_{$action}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } } custom-background.php000066600000000751152330733730010721 0ustar00comments, 'comment_author', 'tinytext' ) ) { * echo "ok\n"; * } * * // Check the column. * if ( ! check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) { * $ddl = "ALTER TABLE $wpdb->links MODIFY COLUMN link_description varchar(255) NOT NULL DEFAULT '' "; * $q = $wpdb->query( $ddl ); * } * * $error_count = 0; * $tablename = $wpdb->links; * * if ( check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) { * $res .= $tablename . ' - ok
    '; * } else { * $res .= 'There was a problem with ' . $tablename . '
    '; * ++$error_count; * } * * @package WordPress * @subpackage Plugin */ /** Load WordPress Bootstrap */ require_once dirname( __DIR__ ) . '/wp-load.php'; if ( ! function_exists( 'maybe_create_table' ) ) : /** * Creates a table in the database if it doesn't already exist. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $create_ddl SQL statement to create table. * @return bool True on success or if the table already exists. False on failure. */ function maybe_create_table( $table_name, $create_ddl ) { global $wpdb; foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) { if ( $table === $table_name ) { return true; } } // Didn't find it, so try to create it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $create_ddl ); // We cannot directly tell whether this succeeded! foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) { if ( $table === $table_name ) { return true; } } return false; } endif; if ( ! function_exists( 'maybe_add_column' ) ) : /** * Adds column to database table, if it doesn't already exist. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $column_name Table column name. * @param string $create_ddl SQL statement to add column. * @return bool True on success or if the column already exists. False on failure. */ function maybe_add_column( $table_name, $column_name, $create_ddl ) { global $wpdb; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return true; } } // Didn't find it, so try to create it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $create_ddl ); // We cannot directly tell whether this succeeded! // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return true; } } return false; } endif; /** * Drops column from database table, if it exists. * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $column_name Table column name. * @param string $drop_ddl SQL statement to drop column. * @return bool True on success or if the column doesn't exist. False on failure. */ function maybe_drop_column( $table_name, $column_name, $drop_ddl ) { global $wpdb; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { // Found it, so try to drop it. // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query. $wpdb->query( $drop_ddl ); // We cannot directly tell whether this succeeded! // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) { if ( $column === $column_name ) { return false; } } } } // Else didn't find it. return true; } /** * Checks that database table column matches the criteria. * * Uses the SQL DESC for retrieving the table info for the column. It will help * understand the parameters, if you do more research on what column information * is returned by the SQL statement. Pass in null to skip checking that criteria. * * Column names returned from DESC table are case sensitive and are as listed: * * - Field * - Type * - Null * - Key * - Default * - Extra * * @since 1.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $table_name Database table name. * @param string $col_name Table column name. * @param string $col_type Table column type. * @param bool $is_null Optional. Check is null. * @param mixed $key Optional. Key info. * @param mixed $default_value Optional. Default value. * @param mixed $extra Optional. Extra value. * @return bool True, if matches. False, if not matching. */ function check_column( $table_name, $col_name, $col_type, $is_null = null, $key = null, $default_value = null, $extra = null ) { global $wpdb; $diffs = 0; // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names. $results = $wpdb->get_results( "DESC $table_name" ); foreach ( $results as $row ) { if ( $row->Field === $col_name ) { // Got our column, check the params. if ( ( null !== $col_type ) && ( $row->Type !== $col_type ) ) { ++$diffs; } if ( ( null !== $is_null ) && ( $row->Null !== $is_null ) ) { ++$diffs; } if ( ( null !== $key ) && ( $row->Key !== $key ) ) { ++$diffs; } if ( ( null !== $default_value ) && ( $row->Default !== $default_value ) ) { ++$diffs; } if ( ( null !== $extra ) && ( $row->Extra !== $extra ) ) { ++$diffs; } if ( $diffs > 0 ) { return false; } return true; } // End if found our column. } return false; } options-head.php000066600000001155152330733730007663 0ustar00' . __( 'You need a higher level of permission.' ) . '' . '

    ' . __( 'Sorry, you are not allowed to edit comments.' ) . '

    ', 403 ); } $wp_list_table = _get_list_table( 'WP_Comments_List_Table' ); $pagenum = $wp_list_table->get_pagenum(); $doaction = $wp_list_table->current_action(); if ( $doaction ) { check_admin_referer( 'bulk-comments' ); if ( 'delete_all' === $doaction && ! empty( $_REQUEST['pagegen_timestamp'] ) ) { /** * @global wpdb $wpdb WordPress database abstraction object. */ global $wpdb; $comment_status = wp_unslash( $_REQUEST['comment_status'] ); $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) ); $doaction = 'delete'; } elseif ( isset( $_REQUEST['delete_comments'] ) ) { $comment_ids = $_REQUEST['delete_comments']; $doaction = $_REQUEST['action']; } elseif ( isset( $_REQUEST['ids'] ) ) { $comment_ids = array_map( 'absint', explode( ',', $_REQUEST['ids'] ) ); } elseif ( wp_get_referer() ) { wp_safe_redirect( wp_get_referer() ); exit; } $approved = 0; $unapproved = 0; $spammed = 0; $unspammed = 0; $trashed = 0; $untrashed = 0; $deleted = 0; $redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids', ), wp_get_referer() ); $redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to ); wp_defer_comment_counting( true ); foreach ( $comment_ids as $comment_id ) { // Check the permissions on each. if ( ! current_user_can( 'edit_comment', $comment_id ) ) { continue; } switch ( $doaction ) { case 'approve': wp_set_comment_status( $comment_id, 'approve' ); ++$approved; break; case 'unapprove': wp_set_comment_status( $comment_id, 'hold' ); ++$unapproved; break; case 'spam': wp_spam_comment( $comment_id ); ++$spammed; break; case 'unspam': wp_unspam_comment( $comment_id ); ++$unspammed; break; case 'trash': wp_trash_comment( $comment_id ); ++$trashed; break; case 'untrash': wp_untrash_comment( $comment_id ); ++$untrashed; break; case 'delete': wp_delete_comment( $comment_id ); ++$deleted; break; } } if ( ! in_array( $doaction, array( 'approve', 'unapprove', 'spam', 'unspam', 'trash', 'delete' ), true ) ) { $screen = get_current_screen()->id; /** This action is documented in wp-admin/edit.php */ $redirect_to = apply_filters( "handle_bulk_actions-{$screen}", $redirect_to, $doaction, $comment_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } wp_defer_comment_counting( false ); if ( $approved ) { $redirect_to = add_query_arg( 'approved', $approved, $redirect_to ); } if ( $unapproved ) { $redirect_to = add_query_arg( 'unapproved', $unapproved, $redirect_to ); } if ( $spammed ) { $redirect_to = add_query_arg( 'spammed', $spammed, $redirect_to ); } if ( $unspammed ) { $redirect_to = add_query_arg( 'unspammed', $unspammed, $redirect_to ); } if ( $trashed ) { $redirect_to = add_query_arg( 'trashed', $trashed, $redirect_to ); } if ( $untrashed ) { $redirect_to = add_query_arg( 'untrashed', $untrashed, $redirect_to ); } if ( $deleted ) { $redirect_to = add_query_arg( 'deleted', $deleted, $redirect_to ); } if ( $trashed || $spammed ) { $redirect_to = add_query_arg( 'ids', implode( ',', $comment_ids ), $redirect_to ); } wp_safe_redirect( $redirect_to ); exit; } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); exit; } $wp_list_table->prepare_items(); wp_enqueue_script( 'admin-comments' ); enqueue_comment_hotkeys_js(); /** * @global int $post_id */ global $post_id; if ( $post_id ) { $comments_count = wp_count_comments( $post_id ); $draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ); if ( $comments_count->moderated > 0 ) { // Used in the HTML title tag. $title = sprintf( /* translators: 1: Comments count, 2: Post title. */ __( 'Comments (%1$s) on “%2$s”' ), number_format_i18n( $comments_count->moderated ), $draft_or_post_title ); } else { // Used in the HTML title tag. $title = sprintf( /* translators: %s: Post title. */ __( 'Comments on “%s”' ), $draft_or_post_title ); } } else { $comments_count = wp_count_comments(); if ( $comments_count->moderated > 0 ) { // Used in the HTML title tag. $title = sprintf( /* translators: %s: Comments count. */ __( 'Comments (%s)' ), number_format_i18n( $comments_count->moderated ) ); } else { // Used in the HTML title tag. $title = __( 'Comments' ); } } add_screen_option( 'per_page' ); get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

    ' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.' ) . '

    ', ) ); get_current_screen()->add_help_tab( array( 'id' => 'moderating-comments', 'title' => __( 'Moderating Comments' ), 'content' => '

    ' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '

    ' . '

    ' . __( 'In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '

    ' . '

    ' . __( 'In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '

    ' . '

    ' . __( 'In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '

    ' . '

    ' . __( 'In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '

    ' . '

    ' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.' ) . '

    ', ) ); get_current_screen()->set_help_sidebar( '

    ' . __( 'For more information:' ) . '

    ' . '

    ' . __( 'Documentation on Comments' ) . '

    ' . '

    ' . __( 'Documentation on Comment Spam' ) . '

    ' . '

    ' . __( 'Documentation on Keyboard Shortcuts' ) . '

    ' . '

    ' . __( 'Support forums' ) . '

    ' ); get_current_screen()->set_screen_reader_content( array( 'heading_views' => __( 'Filter comments list' ), 'heading_pagination' => __( 'Comments list navigation' ), 'heading_list' => __( 'Comments list' ), ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

    %2$s', get_edit_post_link( $post_id ), wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ) ) ); } else { _e( 'Comments' ); } ?>

    %2$s', get_permalink( $post_id ), $post_type_object->labels->view_item ); } } if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { echo ''; printf( /* translators: %s: Search query. */ __( 'Search results for: %s' ), '' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '' ); echo ''; } ?>
    'moderated', 'additional_classes' => array( 'error' ), ) ); } } if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) || isset( $_REQUEST['spammed'] ) || isset( $_REQUEST['unspammed'] ) || isset( $_REQUEST['same'] ) ) { $approved = (int) ( $_REQUEST['approved'] ?? 0 ); $deleted = (int) ( $_REQUEST['deleted'] ?? 0 ); $trashed = (int) ( $_REQUEST['trashed'] ?? 0 ); $untrashed = (int) ( $_REQUEST['untrashed'] ?? 0 ); $spammed = (int) ( $_REQUEST['spammed'] ?? 0 ); $unspammed = (int) ( $_REQUEST['unspammed'] ?? 0 ); $same = (int) ( $_REQUEST['same'] ?? 0 ); if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) { if ( $approved > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment approved.', '%s comments approved.', $approved ), $approved ); } if ( $spammed > 0 ) { $ids = $_REQUEST['ids'] ?? 0; $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . sprintf( ' %2$s
    ', esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ), __( 'Undo' ) ); } if ( $unspammed > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed ); } if ( $trashed > 0 ) { $ids = $_REQUEST['ids'] ?? 0; $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . sprintf( ' %2$s
    ', esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ), __( 'Undo' ) ); } if ( $untrashed > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed ); } if ( $deleted > 0 ) { $messages[] = sprintf( /* translators: %s: Number of comments. */ _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted ); } if ( $same > 0 ) { $comment = get_comment( $same ); if ( $comment ) { switch ( $comment->comment_approved ) { case '1': $messages[] = __( 'This comment is already approved.' ) . sprintf( ' %2$s', esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), __( 'Edit comment' ) ); break; case 'trash': $messages[] = __( 'This comment is already in the Trash.' ) . sprintf( ' %2$s', esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ), __( 'View Trash' ) ); break; case 'spam': $messages[] = __( 'This comment is already marked as spam.' ) . sprintf( ' %2$s', esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), __( 'Edit comment' ) ); break; } } } wp_admin_notice( implode( "
    \n", $messages ), array( 'id' => 'moderated', 'additional_classes' => array( 'updated' ), 'dismissible' => true, ) ); } } ?> views(); ?>
    search_box( __( 'Search Comments' ), 'comment' ); ?> display(); ?>
    update-core.php000066600000132172152330733730007505 0ustar00current, get_locale() ); if ( 'en_US' === $update->locale && 'en_US' === get_locale() ) { $version_string = $update->current; } elseif ( 'en_US' === $update->locale && $update->packages->partial && $wp_version === $update->partial_version ) { $updates = get_core_updates(); if ( $updates && 1 === count( $updates ) ) { // If the only available update is a partial builds, it doesn't need a language-specific version string. $version_string = $update->current; } } elseif ( 'en_US' === $update->locale && 'en_US' !== get_locale() ) { $version_string = sprintf( '%s–%s', $update->current, $update->locale ); } $current = false; if ( ! isset( $update->response ) || 'latest' === $update->response ) { $current = true; } $message = ''; $form_action = 'update-core.php?action=do-core-upgrade'; $php_version = PHP_VERSION; $mysql_version = $wpdb->db_version(); $show_buttons = true; // Nightly build versions have two hyphens and a commit number. if ( preg_match( '/-\w+-\d+/', $update->current ) ) { // Retrieve the major version number. preg_match( '/^\d+.\d+/', $update->current, $update_major ); /* translators: %s: WordPress version. */ $submit = sprintf( __( 'Update to latest %s nightly' ), $update_major[0] ); } else { /* translators: %s: WordPress version. */ $submit = sprintf( __( 'Update to version %s' ), $version_string ); } if ( 'development' === $update->response ) { $message = __( 'You can update to the latest nightly build manually:' ); } else { if ( $current ) { /* translators: %s: WordPress version. */ $submit = sprintf( __( 'Re-install version %s' ), $version_string ); $form_action = 'update-core.php?action=do-core-reinstall'; } else { $php_compat = version_compare( $php_version, $update->php_version, '>=' ); if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) ) { $mysql_compat = true; } else { $mysql_compat = version_compare( $mysql_version, $update->mysql_version, '>=' ); } $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $update->current ) ); $php_update_message = '

    ' . sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $php_update_message .= '

    ' . $annotation . ''; } if ( ! $mysql_compat && ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */ __( 'You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version ) . $php_update_message; } elseif ( ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */ __( 'You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $update->current, $update->php_version, $php_version ) . $php_update_message; } elseif ( ! $mysql_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */ __( 'You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $update->current, $update->mysql_version, $mysql_version ); } else { $message = sprintf( /* translators: 1: Installed WordPress version number, 2: URL to WordPress release notes, 3: New WordPress version number, including locale if necessary. */ __( 'You can update from WordPress %1$s to WordPress %3$s manually:' ), $wp_version, $version_url, $version_string ); } if ( ! $mysql_compat || ! $php_compat ) { $show_buttons = false; } } } echo '

    '; echo $message; echo '

    '; echo '
    '; wp_nonce_field( 'upgrade-core' ); echo '

    '; echo ''; echo ''; if ( $show_buttons ) { if ( $first_pass ) { submit_button( $submit, $current ? '' : 'primary regular', 'upgrade', false ); $first_pass = false; } else { submit_button( $submit, '', 'upgrade', false ); } } if ( 'en_US' !== $update->locale ) { if ( ! isset( $update->dismissed ) || ! $update->dismissed ) { submit_button( __( 'Hide this update' ), '', 'dismiss', false ); } else { submit_button( __( 'Bring back this update' ), '', 'undismiss', false ); } } echo '

    '; if ( 'en_US' !== $update->locale && ( ! isset( $wp_local_package ) || $wp_local_package !== $update->locale ) ) { echo '

    ' . __( 'This localized version contains both the translation and various other localization fixes.' ) . '

    '; } elseif ( 'en_US' === $update->locale && 'en_US' !== get_locale() && ( ! $update->packages->partial && $wp_version === $update->partial_version ) ) { // Partial builds don't need language-specific warnings. echo '

    ' . sprintf( /* translators: %s: WordPress version. */ __( 'You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.' ), 'development' !== $update->response ? $update->current : '' ) . '

    '; } echo '
    '; } /** * Display dismissed updates. * * @since 2.7.0 */ function dismissed_updates() { $dismissed = get_core_updates( array( 'dismissed' => true, 'available' => false, ) ); if ( $dismissed ) { $show_text = esc_js( __( 'Show hidden updates' ) ); $hide_text = esc_js( __( 'Hide hidden updates' ) ); ?>

    '; echo '
      '; foreach ( (array) $dismissed as $update ) { echo '
    • '; list_core_update( $update ); echo '
    • '; } echo '
    '; } } /** * Display upgrade WordPress for downloading latest or upgrading automatically form. * * @since 2.7.0 */ function core_upgrade_preamble() { $updates = get_core_updates(); // Include an unmodified $wp_version. require ABSPATH . WPINC . '/version.php'; $is_development_version = preg_match( '/alpha|beta|RC/', $wp_version ); if ( isset( $updates[0]->version ) && version_compare( $updates[0]->version, $wp_version, '>' ) ) { echo '

    '; _e( 'An updated version of WordPress is available.' ); echo '

    '; $message = sprintf( /* translators: 1: Documentation on WordPress backups, 2: Documentation on updating WordPress. */ __( 'Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.' ), __( 'https://developer.wordpress.org/advanced-administration/security/backup/' ), __( 'https://wordpress.org/documentation/article/updating-wordpress/' ) ); wp_admin_notice( $message, array( 'type' => 'warning', 'additional_classes' => array( 'inline' ), ) ); } elseif ( $is_development_version ) { echo '

    ' . __( 'You are using a development version of WordPress.' ) . '

    '; } else { echo '

    ' . __( 'You have the latest version of WordPress.' ) . '

    '; } echo '
      '; foreach ( (array) $updates as $update ) { echo '
    • '; list_core_update( $update ); echo '
    • '; } echo '
    '; // Don't show the maintenance mode notice when we are only showing a single re-install option. if ( $updates && ( count( $updates ) > 1 || 'latest' !== $updates[0]->response ) ) { echo '

    ' . __( 'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.' ) . '

    '; } elseif ( ! $updates ) { list( $normalized_version ) = explode( '-', $wp_version ); echo '

    ' . sprintf( /* translators: 1: URL to About screen, 2: WordPress version. */ __( 'Learn more about WordPress %2$s.' ), esc_url( self_admin_url( 'about.php' ) ), $normalized_version ) . '

    '; } dismissed_updates(); } /** * Display WordPress auto-updates settings. * * @since 5.6.0 */ function core_auto_updates_settings() { if ( isset( $_GET['core-major-auto-updates-saved'] ) ) { if ( 'enabled' === $_GET['core-major-auto-updates-saved'] ) { $notice_text = __( 'Automatic updates for all WordPress versions have been enabled. Thank you!' ); wp_admin_notice( $notice_text, array( 'type' => 'success', 'dismissible' => true, ) ); } elseif ( 'disabled' === $_GET['core-major-auto-updates-saved'] ) { $notice_text = __( 'WordPress will only receive automatic security and maintenance releases from now on.' ); wp_admin_notice( $notice_text, array( 'type' => 'success', 'dismissible' => true, ) ); } } require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; $updater = new WP_Automatic_Updater(); // Defaults: $upgrade_dev = get_site_option( 'auto_update_core_dev', 'enabled' ) === 'enabled'; $upgrade_minor = get_site_option( 'auto_update_core_minor', 'enabled' ) === 'enabled'; $upgrade_major = get_site_option( 'auto_update_core_major', 'unset' ) === 'enabled'; $can_set_update_option = true; // WP_AUTO_UPDATE_CORE = true (all), 'beta', 'rc', 'development', 'branch-development', 'minor', false. if ( defined( 'WP_AUTO_UPDATE_CORE' ) ) { if ( false === WP_AUTO_UPDATE_CORE ) { // Defaults to turned off, unless a filter allows it. $upgrade_dev = false; $upgrade_minor = false; $upgrade_major = false; } elseif ( true === WP_AUTO_UPDATE_CORE || in_array( WP_AUTO_UPDATE_CORE, array( 'beta', 'rc', 'development', 'branch-development' ), true ) ) { // ALL updates for core. $upgrade_dev = true; $upgrade_minor = true; $upgrade_major = true; } elseif ( 'minor' === WP_AUTO_UPDATE_CORE ) { // Only minor updates for core. $upgrade_dev = false; $upgrade_minor = true; $upgrade_major = false; } // The UI is overridden by the `WP_AUTO_UPDATE_CORE` constant. $can_set_update_option = false; } if ( $updater->is_disabled() ) { $upgrade_dev = false; $upgrade_minor = false; $upgrade_major = false; /* * The UI is overridden by the `AUTOMATIC_UPDATER_DISABLED` constant * or the `automatic_updater_disabled` filter, * or by `wp_is_file_mod_allowed( 'automatic_updater' )`. * See `WP_Automatic_Updater::is_disabled()`. */ $can_set_update_option = false; } // Is the UI overridden by a plugin using the `allow_major_auto_core_updates` filter? if ( has_filter( 'allow_major_auto_core_updates' ) ) { $can_set_update_option = false; } /** This filter is documented in wp-admin/includes/class-core-upgrader.php */ $upgrade_dev = apply_filters( 'allow_dev_auto_core_updates', $upgrade_dev ); /** This filter is documented in wp-admin/includes/class-core-upgrader.php */ $upgrade_minor = apply_filters( 'allow_minor_auto_core_updates', $upgrade_minor ); /** This filter is documented in wp-admin/includes/class-core-upgrader.php */ $upgrade_major = apply_filters( 'allow_major_auto_core_updates', $upgrade_major ); $auto_update_settings = array( 'dev' => $upgrade_dev, 'minor' => $upgrade_minor, 'major' => $upgrade_major, ); if ( $upgrade_major ) { $wp_version = wp_get_wp_version(); $updates = get_core_updates(); if ( isset( $updates[0]->version ) && version_compare( $updates[0]->version, $wp_version, '>' ) ) { echo '

    ' . wp_get_auto_update_message() . '

    '; } } $action_url = self_admin_url( 'update-core.php?action=core-major-auto-updates-settings' ); ?>

    is_vcs_checkout( ABSPATH ) ) { _e( 'This site appears to be under version control. Automatic updates are disabled.' ); } elseif ( $upgrade_major ) { _e( 'This site is automatically kept up to date with each new version of WordPress.' ); if ( $can_set_update_option ) { echo '
    '; printf( '%s', wp_nonce_url( add_query_arg( 'value', 'disable', $action_url ), 'core-major-auto-updates-nonce' ), __( 'Switch to automatic updates for maintenance and security releases only.' ) ); } } elseif ( $upgrade_minor ) { _e( 'This site is automatically kept up to date with maintenance and security releases of WordPress only.' ); if ( $can_set_update_option ) { echo '
    '; printf( '%s', wp_nonce_url( add_query_arg( 'value', 'enable', $action_url ), 'core-major-auto-updates-nonce' ), __( 'Enable automatic updates for all new versions of WordPress.' ) ); } } else { _e( 'This site will not receive automatic updates for new versions of WordPress.' ); } ?>

    ' . __( 'Plugins' ) . ''; echo '

    ' . __( 'Your plugins are all up to date.' ) . '

    '; return; } $form_action = 'update-core.php?action=do-plugin-upgrade'; $core_updates = get_core_updates(); if ( ! isset( $core_updates[0]->response ) || 'latest' === $core_updates[0]->response || 'development' === $core_updates[0]->response || version_compare( $core_updates[0]->current, $cur_wp_version, '=' ) ) { $core_update_version = false; } else { $core_update_version = $core_updates[0]->current; } $plugins_count = count( $plugins ); ?>

    (%d)', __( 'Plugins' ), number_format_i18n( $plugins_count ) ); ?>

    $plugin_data ) { $plugin_data = (object) _get_plugin_data_markup_translate( $plugin_file, (array) $plugin_data, false, true ); $icon = ''; $preferred_icons = array( 'svg', '2x', '1x', 'default' ); foreach ( $preferred_icons as $preferred_icon ) { if ( ! empty( $plugin_data->update->icons[ $preferred_icon ] ) ) { $icon = ''; break; } } // Get plugin compat for running version of WordPress. if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) { /* translators: %s: WordPress version. */ $compat = '
    ' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $cur_wp_version ); } else { /* translators: %s: WordPress version. */ $compat = '
    ' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $cur_wp_version ); } // Get plugin compat for updated version of WordPress. if ( $core_update_version ) { if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) { /* translators: %s: WordPress version. */ $compat .= '
    ' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $core_update_version ); } else { /* translators: %s: WordPress version. */ $compat .= '
    ' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $core_update_version ); } } $requires_php = $plugin_data->update->requires_php ?? null; $compatible_php = is_php_version_compatible( $requires_php ); if ( ! $compatible_php && current_user_can( 'update_php' ) ) { $compat .= '
    ' . __( 'This update does not work with your version of PHP.' ) . ' '; $compat .= sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $compat .= '

    ' . $annotation . ''; } } // Get the upgrade notice for the new plugin version. if ( isset( $plugin_data->update->upgrade_notice ) ) { $upgrade_notice = '
    ' . strip_tags( $plugin_data->update->upgrade_notice ); } else { $upgrade_notice = ''; } $details_url = self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data->update->slug . '§ion=changelog&TB_iframe=true&width=640&height=662' ); $details = sprintf( '%3$s', esc_url( $details_url ), /* translators: 1: Plugin name, 2: Version number. */ esc_attr( sprintf( __( 'View %1$s version %2$s details' ), $plugin_data->Name, $plugin_data->update->new_version ) ), /* translators: %s: Plugin version. */ sprintf( __( 'View version %s details.' ), $plugin_data->update->new_version ) ); $checkbox_id = 'checkbox_' . md5( $plugin_file ); ?>

    Name; ?> Version, $plugin_data->update->new_version ); echo ' ' . $details . $compat; if ( in_array( $plugin_file, $auto_updates, true ) ) { echo $auto_update_notice; } echo $upgrade_notice; ?>

    ' . __( 'Themes' ) . ''; echo '

    ' . __( 'Your themes are all up to date.' ) . '

    '; return; } $form_action = 'update-core.php?action=do-theme-upgrade'; $themes_count = count( $themes ); ?>

    (%d)', __( 'Themes' ), number_format_i18n( $themes_count ) ); ?>

    Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.' ), __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) ); ?>

    $theme ) { $requires_wp = $theme->update['requires'] ?? null; $requires_php = $theme->update['requires_php'] ?? null; $compatible_wp = is_wp_version_compatible( $requires_wp ); $compatible_php = is_php_version_compatible( $requires_php ); $compat = ''; if ( ! $compatible_wp && ! $compatible_php ) { $compat .= '
    ' . __( 'This update does not work with your versions of WordPress and PHP.' ) . ' '; if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { $compat .= sprintf( /* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */ __( 'Please update WordPress, and then learn more about updating PHP.' ), esc_url( self_admin_url( 'update-core.php' ) ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $compat .= '

    ' . $annotation . ''; } } elseif ( current_user_can( 'update_core' ) ) { $compat .= sprintf( /* translators: %s: URL to WordPress Updates screen. */ __( 'Please update WordPress.' ), esc_url( self_admin_url( 'update-core.php' ) ) ); } elseif ( current_user_can( 'update_php' ) ) { $compat .= sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $compat .= '

    ' . $annotation . ''; } } } elseif ( ! $compatible_wp ) { $compat .= '
    ' . __( 'This update does not work with your version of WordPress.' ) . ' '; if ( current_user_can( 'update_core' ) ) { $compat .= sprintf( /* translators: %s: URL to WordPress Updates screen. */ __( 'Please update WordPress.' ), esc_url( self_admin_url( 'update-core.php' ) ) ); } } elseif ( ! $compatible_php ) { $compat .= '
    ' . __( 'This update does not work with your version of PHP.' ) . ' '; if ( current_user_can( 'update_php' ) ) { $compat .= sprintf( /* translators: %s: URL to Update PHP page. */ __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $compat .= '

    ' . $annotation . ''; } } } $checkbox_id = 'checkbox_' . md5( $theme->get( 'Name' ) ); ?>

    display( 'Name' ); ?> display( 'Version' ), $theme->update['new_version'] ); echo ' ' . $compat; if ( in_array( $stylesheet, $auto_updates, true ) ) { echo $auto_update_notice; } ?>

    ' . __( 'Translations' ) . ''; echo '

    ' . __( 'Your translations are all up to date.' ) . '

    '; } return; } $form_action = 'update-core.php?action=do-translation-upgrade'; ?>

    new_files ) && ! $update->new_files; ?>

    '; return; } if ( ! WP_Filesystem( $credentials, ABSPATH, $allow_relaxed_file_ownership ) ) { // Failed to connect. Error and request again. request_filesystem_credentials( $url, '', true, ABSPATH, array( 'version', 'locale' ), $allow_relaxed_file_ownership ); echo '
    '; return; } if ( $wp_filesystem->errors->has_errors() ) { foreach ( $wp_filesystem->errors->get_error_messages() as $message ) { show_message( $message ); } echo '
    '; return; } if ( $reinstall ) { $update->response = 'reinstall'; } add_filter( 'update_feedback', 'show_message' ); $upgrader = new Core_Upgrader(); $result = $upgrader->upgrade( $update, array( 'allow_relaxed_file_ownership' => $allow_relaxed_file_ownership, ) ); if ( is_wp_error( $result ) ) { show_message( $result ); if ( 'up_to_date' !== $result->get_error_code() && 'locked' !== $result->get_error_code() ) { show_message( __( 'Installation failed.' ) ); } echo '