From fe09b7cedb76474a6baeb59bb6e532d8c4ed5f1a Mon Sep 17 00:00:00 2001
From: agata <automa@insicuri.net>
Date: Fri, 22 May 2020 18:18:53 +0200
Subject: [PATCH] [auto] theme: twentyten 3.0

---
 wp-content/themes/twentyten/404.php           |   60 +-
 wp-content/themes/twentyten/archive.php       |  135 +-
 wp-content/themes/twentyten/attachment.php    |   54 +-
 wp-content/themes/twentyten/author.php        |  159 +-
 wp-content/themes/twentyten/blocks.css        |  510 +--
 wp-content/themes/twentyten/category.php      |   77 +-
 wp-content/themes/twentyten/comments.php      |  190 +-
 wp-content/themes/twentyten/editor-blocks.css |  616 ++--
 .../themes/twentyten/editor-style-rtl.css     |   58 +-
 wp-content/themes/twentyten/editor-style.css  |  594 ++--
 wp-content/themes/twentyten/footer.php        |  135 +-
 wp-content/themes/twentyten/functions.php     | 1492 ++++-----
 wp-content/themes/twentyten/header.php        |  257 +-
 wp-content/themes/twentyten/index.php         |   66 +-
 .../themes/twentyten/languages/twentyten.pot  |  846 ++---
 wp-content/themes/twentyten/license.txt       |  562 ++--
 .../themes/twentyten/loop-attachment.php      |  354 +-
 wp-content/themes/twentyten/loop-page.php     |   96 +-
 wp-content/themes/twentyten/loop-single.php   |  173 +-
 wp-content/themes/twentyten/loop.php          |  405 +--
 .../themes/twentyten/onecolumn-page.php       |   64 +-
 wp-content/themes/twentyten/page.php          |   66 +-
 wp-content/themes/twentyten/readme.txt        |   13 +-
 wp-content/themes/twentyten/rtl.css           |  580 ++--
 wp-content/themes/twentyten/search.php        |   81 +-
 .../themes/twentyten/sidebar-footer.php       |  124 +-
 wp-content/themes/twentyten/sidebar.php       |  118 +-
 wp-content/themes/twentyten/single.php        |   56 +-
 wp-content/themes/twentyten/style.css         | 2889 +++++++++--------
 wp-content/themes/twentyten/tag.php           |   67 +-
 30 files changed, 5497 insertions(+), 5400 deletions(-)

diff --git a/wp-content/themes/twentyten/404.php b/wp-content/themes/twentyten/404.php
index 914ef0108..716f975dd 100644
--- a/wp-content/themes/twentyten/404.php
+++ b/wp-content/themes/twentyten/404.php
@@ -1,30 +1,30 @@
-<?php
-/**
- * Template for displaying 404 pages (Not Found)
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-	<div id="container">
-		<div id="content" role="main">
-
-			<div id="post-0" class="post error404 not-found">
-				<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
-				<div class="entry-content">
-					<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
-					<?php get_search_form(); ?>
-				</div><!-- .entry-content -->
-			</div><!-- #post-0 -->
-
-		</div><!-- #content -->
-	</div><!-- #container -->
-	<script type="text/javascript">
-		// focus on search field after it has loaded
-		document.getElementById('s') && document.getElementById('s').focus();
-	</script>
-
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying 404 pages (Not Found)
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+	<div id="container">
+		<div id="content" role="main">
+
+			<div id="post-0" class="post error404 not-found">
+				<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
+				<div class="entry-content">
+					<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
+					<?php get_search_form(); ?>
+				</div><!-- .entry-content -->
+			</div><!-- #post-0 -->
+
+		</div><!-- #content -->
+	</div><!-- #container -->
+	<script type="text/javascript">
+		// Focus on search field after it has loaded.
+		document.getElementById('s') && document.getElementById('s').focus();
+	</script>
+
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/archive.php b/wp-content/themes/twentyten/archive.php
index bf0a0c4ac..c713e485e 100644
--- a/wp-content/themes/twentyten/archive.php
+++ b/wp-content/themes/twentyten/archive.php
@@ -1,65 +1,70 @@
-<?php
-/**
- * Template for displaying Archive pages
- *
- * Used to display archive-type pages if nothing more specific matches a query.
- * For example, puts together date-based pages if no date.php file exists.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-<?php
-	/*
-	 * Queue the first post, that way we know
-	 * what date we're dealing with (if that is the case).
-	 *
-	 * We reset this later so we can run the loop
-	 * properly with a call to rewind_posts().
-	 */
-if ( have_posts() ) {
-	the_post();
-}
-?>
-
-			<h1 class="page-title">
-<?php if ( is_day() ) : ?>
-				<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
-<?php elseif ( is_month() ) : ?>
-				<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?>
-<?php elseif ( is_year() ) : ?>
-				<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>
-<?php else : ?>
-				<?php _e( 'Blog Archives', 'twentyten' ); ?>
-<?php endif; ?>
-			</h1>
-
-<?php
-	/*
-	 * Since we called the_post() above, we need to
-	 * rewind the loop back to the beginning that way
-	 * we can run the loop properly, in full.
-	 */
-	rewind_posts();
-
-	/*
-	 * Run the loop for the archives page to output the posts.
-	 * If you want to overload this in a child theme then include a file
-	 * called loop-archive.php and that will be used instead.
-	 */
-	get_template_part( 'loop', 'archive' );
-?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying Archive pages
+ *
+ * Used to display archive-type pages if nothing more specific matches a query.
+ * For example, puts together date-based pages if no date.php file exists.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+<?php
+	/*
+	 * Queue the first post, that way we know
+	 * what date we're dealing with (if that is the case).
+	 *
+	 * We reset this later so we can run the loop
+	 * properly with a call to rewind_posts().
+	 */
+if ( have_posts() ) {
+	the_post();
+}
+?>
+
+			<h1 class="page-title">
+			<?php
+			if ( is_day() ) {
+				/* translators: %s: Date. */
+				printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() );
+			} elseif ( is_month() ) {
+				/* translators: %s: Date. */
+				printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) );
+			} elseif ( is_year() ) {
+				/* translators: %s: Date. */
+				printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) );
+			} else {
+				_e( 'Blog Archives', 'twentyten' );
+			}
+			?>
+			</h1>
+
+<?php
+	/*
+	 * Since we called the_post() above, we need
+	 * to rewind the loop back to the beginning.
+	 * That way we can run the loop properly, in full.
+	 */
+	rewind_posts();
+
+	/*
+	 * Run the loop for the archives page to output the posts.
+	 * If you want to overload this in a child theme then include a file
+	 * called loop-archive.php and that will be used instead.
+	 */
+	get_template_part( 'loop', 'archive' );
+?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/attachment.php b/wp-content/themes/twentyten/attachment.php
index 45c337824..883f826d4 100644
--- a/wp-content/themes/twentyten/attachment.php
+++ b/wp-content/themes/twentyten/attachment.php
@@ -1,27 +1,27 @@
-<?php
-/**
- * Template for displaying attachments
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container" class="single-attachment">
-			<div id="content" role="main">
-
-			<?php
-			/*
-			 * Run the loop to output the attachment.
-			 * If you want to overload this in a child theme then include a file
-			 * called loop-attachment.php and that will be used instead.
-			 */
-			get_template_part( 'loop', 'attachment' );
-			?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying attachments
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container" class="single-attachment">
+			<div id="content" role="main">
+
+			<?php
+			/*
+			 * Run the loop to output the attachment.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-attachment.php and that will be used instead.
+			 */
+			get_template_part( 'loop', 'attachment' );
+			?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/author.php b/wp-content/themes/twentyten/author.php
index afb8240f8..a601f92fe 100644
--- a/wp-content/themes/twentyten/author.php
+++ b/wp-content/themes/twentyten/author.php
@@ -1,74 +1,85 @@
-<?php
-/**
- * Template for displaying Author Archive pages
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-<?php
-	/*
-	 * Queue the first post, that way we know who
-	 * the author is when we try to get their name,
-	 * URL, description, avatar, etc.
-	 *
-	 * We reset this later so we can run the loop
-	 * properly with a call to rewind_posts().
-	 */
-if ( have_posts() ) {
-	the_post();
-}
-?>
-
-				<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); ?></h1>
-
-<?php
-// If a user has filled out their description, show a bio on their entries.
-if ( get_the_author_meta( 'description' ) ) :
-	?>
-					<div id="entry-author-info">
-						<div id="author-avatar">
-							<?php
-							/**
-							 * Filter the Twenty Ten author bio avatar size.
-							 *
-							 * @since Twenty Ten 1.0
-							 *
-							 * @param int The height and width avatar dimensions in pixels. Default 60.
-							 */
-							echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) );
-							?>
-						</div><!-- #author-avatar -->
-						<div id="author-description">
-							<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
-							<?php the_author_meta( 'description' ); ?>
-						</div><!-- #author-description	-->
-					</div><!-- #entry-author-info -->
-<?php endif; ?>
-
-<?php
-	/*
-	 * Since we called the_post() above, we need to
-	 * rewind the loop back to the beginning that way
-	 * we can run the loop properly, in full.
-	 */
-	rewind_posts();
-
-	/*
-	 * Run the loop for the author archive page to output the authors posts
-	 * If you want to overload this in a child theme then include a file
-	 * called loop-author.php and that will be used instead.
-	 */
-	get_template_part( 'loop', 'author' );
-?>
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying Author Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+<?php
+	/*
+	 * Queue the first post, that way we know who
+	 * the author is when we try to get their name,
+	 * URL, description, avatar, etc.
+	 *
+	 * We reset this later so we can run the loop
+	 * properly with a call to rewind_posts().
+	 */
+if ( have_posts() ) {
+	the_post();
+}
+?>
+
+				<h1 class="page-title author">
+				<?php
+				/* translators: %s: Author display name. */
+				printf( __( 'Author Archives: %s', 'twentyten' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );
+				?>
+				</h1>
+
+<?php
+// If a user has filled out their description, show a bio on their entries.
+if ( get_the_author_meta( 'description' ) ) :
+	?>
+					<div id="entry-author-info">
+						<div id="author-avatar">
+							<?php
+							/**
+							 * Filter the Twenty Ten author bio avatar size.
+							 *
+							 * @since Twenty Ten 1.0
+							 *
+							 * @param int The height and width avatar dimensions in pixels. Default 60.
+							 */
+							$author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 );
+							echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
+							?>
+						</div><!-- #author-avatar -->
+						<div id="author-description">
+							<h2>
+							<?php
+							/* translators: %s: Author display name. */
+							printf( __( 'About %s', 'twentyten' ), get_the_author() );
+							?>
+							</h2>
+							<?php the_author_meta( 'description' ); ?>
+						</div><!-- #author-description	-->
+					</div><!-- #entry-author-info -->
+<?php endif; ?>
+
+<?php
+	/*
+	 * Since we called the_post() above, we need
+	 * to rewind the loop back to the beginning.
+	 * That way we can run the loop properly, in full.
+	 */
+	rewind_posts();
+
+	/*
+	 * Run the loop for the author archive page to output the authors posts
+	 * If you want to overload this in a child theme then include a file
+	 * called loop-author.php and that will be used instead.
+	 */
+	get_template_part( 'loop', 'author' );
+?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/blocks.css b/wp-content/themes/twentyten/blocks.css
index 6bcc3e8ad..3ebd389be 100644
--- a/wp-content/themes/twentyten/blocks.css
+++ b/wp-content/themes/twentyten/blocks.css
@@ -1,255 +1,255 @@
-/*
-Theme Name: Twenty Ten
-Description: Used to style blocks.
-*/
-
-/*--------------------------------------------------------------
->>> TABLE OF CONTENTS:
-----------------------------------------------------------------
-1.0 General Block Styles
-2.0 Blocks - Common Blocks
-3.0 Blocks - Formatting
-4.0 Blocks - Layout Elements
-5.0 Blocks - Widgets
-6.0 Blocks - Colors
---------------------------------------------------------------*/
-
-/*--------------------------------------------------------------
-1.0 General Block Styles
---------------------------------------------------------------*/
-
-/* Captions */
-
-[class^="wp-block-"]:not(.wp-block-gallery) figcaption {
-	color: #777;
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-
-/* Alignments */
-
-[class^="wp-block-"].alignleft,
-[class^="wp-block-"] .alignleft {
-	margin-right: 24px;
-}
-
-[class^="wp-block-"].alignright,
-[class^="wp-block-"] .alignright {
-	margin-left: 24px;
-}
-
-/*--------------------------------------------------------------
-2.0 Blocks - Common Blocks
---------------------------------------------------------------*/
-
-/* Paragraph */
-
-p.has-drop-cap:not(:focus)::first-letter {
-	font-size: 5em;
-	margin-top: 0.1em;
-}
-
-/* Image */
-
-.wp-block-image figure {
-	margin-bottom: 24px;
-}
-
-.wp-block-image figcaption {
-	margin: -7px 0 20px;;
-	padding: 9px 9px 1.0em;
-	text-align: center;
-}
-
-.wp-block-image.alignfull,
-.wp-block-image.alignfull img {
-	margin: 0;
-}
-
-/* Gallery */
-
-.wp-block-gallery {
-	margin: 0 0 24px;
-}
-
-.wp-block-gallery .blocks-gallery-image figcaption,
-.wp-block-gallery .blocks-gallery-item figcaption {
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-	left: 0;
-	right: 0;
-	width: auto;
-}
-
-/* Quotes */
-
-.wp-block-quote:not(.is-large):not(.is-style-large) {
-	border: none;
-	padding: 0 3em;
-}
-
-.wp-block-quote cite {
-	color: inherit;
-	font-size: inherit;
-	font-weight: 600;
-}
-
-/* Audio */
-
-.wp-block-audio {
-	margin-left: 0;
-	margin-right: 0;
-}
-
-.wp-block-audio audio {
-	display: block;
-	width: 100%;
-}
-
-/* File */
-
-.rtl .wp-block-file * + .wp-block-file__button {
-	margin: 0 0 0 0.75em;
-}
-
-/*--------------------------------------------------------------
-3.0 Blocks - Formatting
---------------------------------------------------------------*/
-
-/* Code */
-
-.wp-block-code {
-	background-color: transparent;
-	border: 0;
-	padding: 0;
-}
-
-/* Pullquote */
-
-.wp-block-pullquote p {
-	font-size: 1.5em;
-}
-
-.wp-block-pullquote__citation,
-.wp-block-pullquote cite {
-	color: inherit;
-	font-size: inherit;
-	font-weight: 600;
-	text-transform: none;
-}
-
-/* Table */
-
-.wp-block-table td,
-.wp-block-table th {
-	border: none;
-}
-
-.wp-block-table td {
-	border-top: 1px solid #e7e7e7;
-}
-
-.wp-block-table tr:nth-child(odd) td {
-	background: #f2f7fc;
-}
-
-/*--------------------------------------------------------------
-4.0 Blocks - Layout Elements
---------------------------------------------------------------*/
-
-/* Separator */
-
-.wp-block-separator {
-	border: 0;
-}
-
-/* Media & Text */
-
-.wp-block-media-text {
-	margin-bottom: 24px;
-}
-
-/*--------------------------------------------------------------
-5.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/* Archives, Categories & Latest Posts */
-
-.wp-block-archives.aligncenter,
-.wp-block-categories.aligncenter,
-.wp-block-latest-posts.aligncenter {
-	margin-left: 20px;
-	text-align: center;
-}
-
-.rtl .wp-block-archives.aligncenter,
-.rtl .wp-block-categories.aligncenter,
-.rtl .wp-block-latest-posts.aligncenter {
-	margin-left: 0;
-	margin-right: 20px;
-}
-
-/* Latest Comments */
-
-.wp-block-latest-comments {
-	margin: 0 0 24px;
-}
-
-/* Latest Posts */
-
-.wp-block-latest-posts.is-grid {
-	margin-left: 0;
-	margin-right: 0;
-}
-
-/*--------------------------------------------------------------
-6.0 Blocks - Colors
---------------------------------------------------------------*/
-
-.has-blue-color,
-.has-blue-color:visited {
-	color: #0066cc;
-}
-
-.has-blue-background-color,
-.has-blue-background-color:visited {
-	background-color: #0066cc;
-}
-
-.has-black-color,
-.has-black-color:visited {
-	color: #000;
-}
-
-.has-black-background-color,
-.has-black-background-color:visited {
-	background-color: #000;
-}
-
-.has-medium-gray-color,
-.has-medium-gray-color:visited {
-	color: #666;
-}
-
-.has-medium-gray-background-color,
-.has-medium-gray-background-color:visited {
-	background-color: #666;
-}
-
-.has-light-gray-color,
-.has-light-gray-color:visited {
-	color: #f1f1f1;
-}
-
-.has-light-gray-background-color,
-.has-light-gray-background-color:visited {
-	background-color: #f1f1f1;
-}
-
-.has-white-color,
-.has-white-color:visited {
-	color: #fff;
-}
-
-.has-white-background-color,
-.has-white-background-color:visited {
-	background-color: #fff;
-}
+/*
+Theme Name: Twenty Ten
+Description: Used to style blocks.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Block Styles
+2.0 Blocks - Common Blocks
+3.0 Blocks - Formatting
+4.0 Blocks - Layout Elements
+5.0 Blocks - Widgets
+6.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Captions */
+
+[class^="wp-block-"]:not(.wp-block-gallery) figcaption {
+	color: #777;
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+
+/* Alignments */
+
+[class^="wp-block-"].alignleft,
+[class^="wp-block-"] .alignleft {
+	margin-right: 24px;
+}
+
+[class^="wp-block-"].alignright,
+[class^="wp-block-"] .alignright {
+	margin-left: 24px;
+}
+
+/*--------------------------------------------------------------
+2.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+	margin-top: 0.1em;
+}
+
+/* Image */
+
+.wp-block-image figure {
+	margin-bottom: 24px;
+}
+
+.wp-block-image figcaption {
+	margin: -7px 0 20px;
+	padding: 9px 9px 1.0em;
+	text-align: center;
+}
+
+.wp-block-image.alignfull,
+.wp-block-image.alignfull img {
+	margin: 0;
+}
+
+/* Gallery */
+
+.wp-block-gallery {
+	margin: 0 0 24px;
+}
+
+.wp-block-gallery .blocks-gallery-image figcaption,
+.wp-block-gallery .blocks-gallery-item figcaption {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+	left: 0;
+	right: 0;
+	width: auto;
+}
+
+/* Quotes */
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border: none;
+	padding: 0 3em;
+}
+
+.wp-block-quote cite {
+	color: inherit;
+	font-size: inherit;
+	font-weight: 600;
+}
+
+/* Audio */
+
+.wp-block-audio {
+	margin-left: 0;
+	margin-right: 0;
+}
+
+.wp-block-audio audio {
+	display: block;
+	width: 100%;
+}
+
+/* File */
+
+.rtl .wp-block-file * + .wp-block-file__button {
+	margin: 0 0 0 0.75em;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	background-color: transparent;
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote p {
+	font-size: 1.5em;
+}
+
+.wp-block-pullquote__citation,
+.wp-block-pullquote cite {
+	color: inherit;
+	font-size: inherit;
+	font-weight: 600;
+	text-transform: none;
+}
+
+/* Table */
+
+.wp-block-table td,
+.wp-block-table th {
+	border: none;
+}
+
+.wp-block-table td {
+	border-top: 1px solid #e7e7e7;
+}
+
+.wp-block-table tr:nth-child(odd) td {
+	background: #f2f7fc;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Separator */
+
+.wp-block-separator {
+	border: 0;
+}
+
+/* Media & Text */
+
+.wp-block-media-text {
+	margin-bottom: 24px;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+.wp-block-archives.aligncenter,
+.wp-block-categories.aligncenter,
+.wp-block-latest-posts.aligncenter {
+	margin-left: 20px;
+	text-align: center;
+}
+
+.rtl .wp-block-archives.aligncenter,
+.rtl .wp-block-categories.aligncenter,
+.rtl .wp-block-latest-posts.aligncenter {
+	margin-left: 0;
+	margin-right: 20px;
+}
+
+/* Latest Comments */
+
+.wp-block-latest-comments {
+	margin: 0 0 24px;
+}
+
+/* Latest Posts */
+
+.wp-block-latest-posts.is-grid {
+	margin-left: 0;
+	margin-right: 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+.has-blue-color,
+.has-blue-color:visited {
+	color: #0066cc;
+}
+
+.has-blue-background-color,
+.has-blue-background-color:visited {
+	background-color: #0066cc;
+}
+
+.has-black-color,
+.has-black-color:visited {
+	color: #000;
+}
+
+.has-black-background-color,
+.has-black-background-color:visited {
+	background-color: #000;
+}
+
+.has-medium-gray-color,
+.has-medium-gray-color:visited {
+	color: #666;
+}
+
+.has-medium-gray-background-color,
+.has-medium-gray-background-color:visited {
+	background-color: #666;
+}
+
+.has-light-gray-color,
+.has-light-gray-color:visited {
+	color: #f1f1f1;
+}
+
+.has-light-gray-background-color,
+.has-light-gray-background-color:visited {
+	background-color: #f1f1f1;
+}
+
+.has-white-color,
+.has-white-color:visited {
+	color: #fff;
+}
+
+.has-white-background-color,
+.has-white-background-color:visited {
+	background-color: #fff;
+}
diff --git a/wp-content/themes/twentyten/category.php b/wp-content/themes/twentyten/category.php
index 00714e85d..df86c93e6 100644
--- a/wp-content/themes/twentyten/category.php
+++ b/wp-content/themes/twentyten/category.php
@@ -1,38 +1,39 @@
-<?php
-/**
- * Template for displaying Category Archive pages
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-				<h1 class="page-title">
-				<?php
-					printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
-				?>
-				</h1>
-				<?php
-					$category_description = category_description();
-				if ( ! empty( $category_description ) ) {
-					echo '<div class="archive-meta">' . $category_description . '</div>';
-				}
-
-				/*
-				 * Run the loop for the category page to output the posts.
-				 * If you want to overload this in a child theme then include a file
-				 * called loop-category.php and that will be used instead.
-				 */
-				get_template_part( 'loop', 'category' );
-				?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying Category Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+				<h1 class="page-title">
+				<?php
+					/* translators: %s: Category title. */
+					printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
+				?>
+				</h1>
+				<?php
+					$category_description = category_description();
+				if ( ! empty( $category_description ) ) {
+					echo '<div class="archive-meta">' . $category_description . '</div>';
+				}
+
+				/*
+				 * Run the loop for the category page to output the posts.
+				 * If you want to overload this in a child theme then include a file
+				 * called loop-category.php and that will be used instead.
+				 */
+				get_template_part( 'loop', 'category' );
+				?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/comments.php b/wp-content/themes/twentyten/comments.php
index 900685632..7f598d395 100644
--- a/wp-content/themes/twentyten/comments.php
+++ b/wp-content/themes/twentyten/comments.php
@@ -1,95 +1,95 @@
-<?php
-/**
- * Template for displaying Comments
- *
- * The area of the page that contains both current comments
- * and the comment form. The actual display of comments is
- * handled by a callback to twentyten_comment which is
- * located in the functions.php file.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?>
-
-			<div id="comments">
-<?php if ( post_password_required() ) : ?>
-				<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
-			</div><!-- #comments -->
-	<?php
-		/*
-		 * Stop the rest of comments.php from being processed,
-		 * but don't kill the script entirely -- we still have
-		 * to fully load the template.
-		 */
-		return;
-	endif;
-?>
-
-<?php
-	// You can start editing here -- including this comment!
-?>
-
-<?php if ( have_comments() ) : ?>
-			<h3 id="comments-title">
-			<?php
-			if ( 1 === get_comments_number() ) {
-				printf(
-					/* translators: %s: The post title. */
-					__( 'One Response to %s', 'twentyten' ),
-					'<em>' . get_the_title() . '</em>'
-				);
-			} else {
-				/* translators: %1$s: The number of comments. %2$s: The post title. */
-				printf(
-					_n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
-					number_format_i18n( get_comments_number() ),
-					'<em>' . get_the_title() . '</em>'
-				);
-			}
-			?>
-			</h3>
-
-	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
-			<div class="navigation">
-				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
-				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
-			</div> <!-- .navigation -->
-	<?php endif; // check for comment navigation ?>
-
-			<ol class="commentlist">
-				<?php
-					/*
-					 * Loop through and list the comments. Tell wp_list_comments()
-					 * to use twentyten_comment() to format the comments.
-					 * If you want to overload this in a child theme then you can
-					 * define twentyten_comment() and that will be used instead.
-					 * See twentyten_comment() in twentyten/functions.php for more.
-					 */
-					wp_list_comments( array( 'callback' => 'twentyten_comment' ) );
-				?>
-			</ol>
-
-	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
-			<div class="navigation">
-				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
-				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
-			</div><!-- .navigation -->
-	<?php endif; // check for comment navigation ?>
-
-	<?php
-	/*
-	 * If there are no comments and comments are closed, let's leave a little note, shall we?
-	 * But we only want the note on posts and pages that had comments in the first place.
-	 */
-	if ( ! comments_open() && get_comments_number() ) :
-		?>
-		<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
-	<?php endif; ?>
-
-<?php endif; // end have_comments() ?>
-
-<?php comment_form(); ?>
-
-</div><!-- #comments -->
+<?php
+/**
+ * Template for displaying Comments
+ *
+ * The area of the page that contains both current comments
+ * and the comment form. The actual display of comments is
+ * handled by a callback to twentyten_comment which is
+ * located in the functions.php file.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?>
+
+			<div id="comments">
+<?php if ( post_password_required() ) : ?>
+				<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></p>
+			</div><!-- #comments -->
+	<?php
+		/*
+		 * Stop the rest of comments.php from being processed,
+		 * but don't kill the script entirely -- we still have
+		 * to fully load the template.
+		 */
+		return;
+	endif;
+?>
+
+<?php
+	// You can start editing here -- including this comment!
+?>
+
+<?php if ( have_comments() ) : ?>
+			<h3 id="comments-title">
+			<?php
+			if ( 1 === get_comments_number() ) {
+				printf(
+					/* translators: %s: The post title. */
+					__( 'One Response to %s', 'twentyten' ),
+					'<em>' . get_the_title() . '</em>'
+				);
+			} else {
+				printf(
+					/* translators: %1$s: The number of comments. %2$s: The post title. */
+					_n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ),
+					number_format_i18n( get_comments_number() ),
+					'<em>' . get_the_title() . '</em>'
+				);
+			}
+			?>
+			</h3>
+
+	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+			<div class="navigation">
+				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+			</div> <!-- .navigation -->
+	<?php endif; // Check for comment navigation. ?>
+
+			<ol class="commentlist">
+				<?php
+					/*
+					 * Loop through and list the comments. Tell wp_list_comments()
+					 * to use twentyten_comment() to format the comments.
+					 * If you want to overload this in a child theme then you can
+					 * define twentyten_comment() and that will be used instead.
+					 * See twentyten_comment() in twentyten/functions.php for more.
+					 */
+					wp_list_comments( array( 'callback' => 'twentyten_comment' ) );
+				?>
+			</ol>
+
+	<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
+			<div class="navigation">
+				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'twentyten' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+			</div><!-- .navigation -->
+	<?php endif; // Check for comment navigation. ?>
+
+	<?php
+	/*
+	 * If there are no comments and comments are closed, let's leave a little note, shall we?
+	 * But we only want the note on posts and pages that had comments in the first place.
+	 */
+	if ( ! comments_open() && get_comments_number() ) :
+		?>
+		<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
+	<?php endif; ?>
+
+<?php endif; // End have_comments(). ?>
+
+<?php comment_form(); ?>
+
+</div><!-- #comments -->
diff --git a/wp-content/themes/twentyten/editor-blocks.css b/wp-content/themes/twentyten/editor-blocks.css
index f4d8e328e..03e11f439 100644
--- a/wp-content/themes/twentyten/editor-blocks.css
+++ b/wp-content/themes/twentyten/editor-blocks.css
@@ -1,308 +1,308 @@
-/*
-Theme Name: Twenty Ten
-Description: Used to style blocks in the editor.
-*/
-
-/*--------------------------------------------------------------
->>> TABLE OF CONTENTS:
-----------------------------------------------------------------
-1.0 General Typography
-2.0 General Block Styles
-3.0 Blocks - Common Blocks
-4.0 Blocks - Formatting
-5.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/*--------------------------------------------------------------
-1.0 General Typography
---------------------------------------------------------------*/
-
-.edit-post-visual-editor .editor-block-list__block,
-.edit-post-visual-editor .editor-block-list__block p,
-.editor-default-block-appender textarea.editor-default-block-appender__content {
-	font-size: 16px;
-}
-
-.editor-default-block-appender textarea.editor-default-block-appender__content {
-	font-family: Georgia, "Bitstream Charter", serif;
-}
-
-.edit-post-visual-editor .editor-block-list__block .mce-content-body,
-.wp-block-freeform.block-library-rich-text__tinymce p,
-.wp-block-freeform.block-library-rich-text__tinymce li {
-	line-height: 1.5;
-}
-
-.edit-post-visual-editor .editor-block-list__block {
-	color: #1a1a1a;
-}
-
-.editor-post-title__block .editor-post-title__input {
-	color: #000;
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-	font-size: 21px;
-	font-weight: bold;
-	line-height: 1.3em;
-}
-
-.edit-post-visual-editor .editor-block-list__block h1 {
-	font-size: 32px;
-}
-
-.edit-post-visual-editor .editor-block-list__block h2 {
-	font-size: 24px;
-}
-
-.edit-post-visual-editor .editor-block-list__block h3 {
-	font-size: 19px;
-}
-
-.edit-post-visual-editor .editor-block-list__block h4 {
-	font-size: 16px;
-}
-
-.edit-post-visual-editor .editor-block-list__block h5 {
-	font-size: 13px;
-}
-
-.edit-post-visual-editor .editor-block-list__block h6 {
-	font-size: 11px;
-}
-
-/*--------------------------------------------------------------
-2.0 General Block Styles
---------------------------------------------------------------*/
-
-/* Main column width */
-
-.wp-block {
-	max-width: 670px; /* 640px + 30px to account for padding */
-}
-
-/* Link styles */
-
-.edit-post-visual-editor a,
-.editor-block-list__block a,
-.wp-block-freeform.block-library-rich-text__tinymce a {
-	color: #0066cc;
-}
-
-/* List styles */
-
-.edit-post-visual-editor ul:not(.wp-block-gallery),
-.editor-block-list__block ul:not(.wp-block-gallery),
-.block-library-list ul,
-.edit-post-visual-editor ol,
-.editor-block-list__block ol,
-.block-library-list ol.editor-rich-text__tinymce {
-	margin: 0 0 18px 1.5em;
-	padding: 0;
-}
-
-.edit-post-visual-editor ul:not(.wp-block-gallery),
-.editor-block-list__block ul:not(.wp-block-gallery),
-.block-library-list ul {
-	list-style: square;
-}
-
-.edit-post-visual-editor ol,
-.editor-block-list__block ol,
-.block-library-list ol {
-	list-style: decimal;
-	margin-left: 1.5em;
-}
-
-.edit-post-visual-editor ul:not(.wp-block-gallery) li,
-.editor-block-list__block ul:not(.wp-block-gallery) li,
-.edit-post-visual-editor ol li,
-.editor-block-list__block ol li,
-.block-library-list li {
-	margin-bottom: 0;
-}
-
-.edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
-.editor-block-list__block ul:not(.wp-block-gallery) li > ul,
-.block-library-list li > ul,
-.edit-post-visual-editor li > ol,
-.editor-block-list__block li > ol,
-.block-library-list li > ol {
-	margin-bottom: 0;
-}
-
-.rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
-.rtl .editor-block-list__block ul:not(.wp-block-gallery),
-.rtl .block-library-list ul,
-.rtl .edit-post-visual-editor ol,
-.rtl .editor-block-list__block ol,
-.rtl .block-library-list ol {
-	margin-left: 0;
-	margin-right: 1.25em;
-	padding: 0;
-}
-
-/* Caption styles */
-
-[class^="wp-block-"] figcaption {
-	color: #777;
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-
-/* Code styles */
-
-.wp-block-freeform.block-library-rich-text__tinymce code {
-	background: transparent;
-}
-
-/* Quote styles */
-
-.wp-block-freeform.block-library-rich-text__tinymce blockquote {
-	border: 0;
-	padding: 0 3em;
-}
-
-/* Table styles */
-
-.editor-block-list__block tr th,
-.editor-block-list__block tr th a {
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-
-/* Definition List styles */
-
-.editor-block-list__block dd {
-	margin-left: 0;
-	margin-right: 0;
-}
-
-/*--------------------------------------------------------------
-3.0 Blocks - Common Blocks
---------------------------------------------------------------*/
-
-/* Paragraph */
-
-p.has-drop-cap:not(:focus)::first-letter {
-	font-size: 5em;
-	margin-top: 0.1em;
-}
-
-/* Image */
-
-.wp-block-image {
-	margin-bottom: 20px;
-}
-
-.wp-block-image figcaption {
-	display: block;
-	margin: -7px 0 0;
-	padding: 9px 9px 1.0em;
-	text-align: center;
-}
-
-/* Gallery */
-
-.editor-block-list__block .wp-block-gallery {
-	margin: 0 0 24px;
-}
-
-/* Quote */
-
-.wp-block-quote {
-	border: 0;
-	padding: 0 3em;
-}
-
-.wp-block-quote:not(.is-large):not(.is-style-large) {
-	border: 0;
-	padding: 0 3em;
-}
-
-.wp-block-quote .wp-block-quote__citation {
-	font-size: 16px;
-	font-weight: 600;
-}
-
-.wp-block-quote.is-large .wp-block-quote__citation,
-.wp-block-quote.is-style-large .wp-block-quote__citation  {
-	font-size: 18px;
-}
-
-/* Cover */
-
-.wp-block-cover-image-text,
-.wp-block-cover-text {
-	font-size: 32px;
-}
-
-/* File */
-
-.wp-block-file .wp-block-file__textlink .editor-rich-text__tinymce {
-	color: #0066cc;
-	font-size: 16px;
-	text-decoration: underline;
-}
-
-/*--------------------------------------------------------------
-4.0 Blocks - Formatting
---------------------------------------------------------------*/
-
-/* Code */
-
-.wp-block-code {
-	border: 0;
-	padding: 0;
-}
-
-/* Pullquote */
-
-.wp-block-pullquote blockquote > .editor-rich-text p {
-	font-size: 1.5em;
-}
-
-.wp-block-pullquote .wp-block-pullquote__citation {
-	color: inherit;
-	font-size: inherit;
-	font-weight: 600;
-	text-transform: none;
-}
-
-/* Table */
-
-.wp-block-table tr:nth-child(odd) td {
-	background: #f2f7fc;
-}
-
-.wp-block-table th .wp-block-table__cell-content {
-	color: #777;
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-
-.editor-block-list__block .wp-block-table tr td {
-	padding-bottom: 0;
-	padding-top: 0;
-}
-
-/*--------------------------------------------------------------
-5.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/* Latest Comments */
-
-.editor-block-list__block .wp-block-latest-comments {
-	margin: 0 0 24px;
-}
-
-.rtl .edit-post-visual-editor .wp-block-latest-comments {
-	margin-right: 0;
-}
-
-/* Latest Posts */
-
-.edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
-	list-style: none;
-	margin-left: 0;
-	margin-right: 0;
-}
-
-.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
-	margin-bottom: 1em;
-}
+/*
+Theme Name: Twenty Ten
+Description: Used to style blocks in the editor.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Typography
+2.0 General Block Styles
+3.0 Blocks - Common Blocks
+4.0 Blocks - Formatting
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Typography
+--------------------------------------------------------------*/
+
+.edit-post-visual-editor .editor-block-list__block,
+.edit-post-visual-editor .editor-block-list__block p,
+.editor-default-block-appender textarea.editor-default-block-appender__content {
+	font-size: 16px;
+}
+
+.editor-default-block-appender textarea.editor-default-block-appender__content {
+	font-family: Georgia, "Bitstream Charter", serif;
+}
+
+.edit-post-visual-editor .editor-block-list__block .mce-content-body,
+.wp-block-freeform.block-library-rich-text__tinymce p,
+.wp-block-freeform.block-library-rich-text__tinymce li {
+	line-height: 1.5;
+}
+
+.edit-post-visual-editor .editor-block-list__block {
+	color: #1a1a1a;
+}
+
+.editor-post-title__block .editor-post-title__input {
+	color: #000;
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+	font-size: 21px;
+	font-weight: bold;
+	line-height: 1.3em;
+}
+
+.edit-post-visual-editor .editor-block-list__block h1 {
+	font-size: 32px;
+}
+
+.edit-post-visual-editor .editor-block-list__block h2 {
+	font-size: 24px;
+}
+
+.edit-post-visual-editor .editor-block-list__block h3 {
+	font-size: 19px;
+}
+
+.edit-post-visual-editor .editor-block-list__block h4 {
+	font-size: 16px;
+}
+
+.edit-post-visual-editor .editor-block-list__block h5 {
+	font-size: 13px;
+}
+
+.edit-post-visual-editor .editor-block-list__block h6 {
+	font-size: 11px;
+}
+
+/*--------------------------------------------------------------
+2.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Main column width */
+
+.wp-block {
+	max-width: 670px; /* 640px + 30px to account for padding */
+}
+
+/* Link styles */
+
+.edit-post-visual-editor a,
+.editor-block-list__block a,
+.wp-block-freeform.block-library-rich-text__tinymce a {
+	color: #0066cc;
+}
+
+/* List styles */
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul,
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol.editor-rich-text__tinymce {
+	margin: 0 0 18px 1.5em;
+	padding: 0;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul {
+	list-style: square;
+}
+
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol {
+	list-style: decimal;
+	margin-left: 1.5em;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery) li,
+.editor-block-list__block ul:not(.wp-block-gallery) li,
+.edit-post-visual-editor ol li,
+.editor-block-list__block ol li,
+.block-library-list li {
+	margin-bottom: 0;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery) li > ul,
+.editor-block-list__block ul:not(.wp-block-gallery) li > ul,
+.block-library-list li > ul,
+.edit-post-visual-editor li > ol,
+.editor-block-list__block li > ol,
+.block-library-list li > ol {
+	margin-bottom: 0;
+}
+
+.rtl .edit-post-visual-editor ul:not(.wp-block-gallery),
+.rtl .editor-block-list__block ul:not(.wp-block-gallery),
+.rtl .block-library-list ul,
+.rtl .edit-post-visual-editor ol,
+.rtl .editor-block-list__block ol,
+.rtl .block-library-list ol {
+	margin-left: 0;
+	margin-right: 1.25em;
+	padding: 0;
+}
+
+/* Caption styles */
+
+[class^="wp-block-"] figcaption {
+	color: #777;
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+
+/* Code styles */
+
+.wp-block-freeform.block-library-rich-text__tinymce code {
+	background: transparent;
+}
+
+/* Quote styles */
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+	border: 0;
+	padding: 0 3em;
+}
+
+/* Table styles */
+
+.editor-block-list__block tr th,
+.editor-block-list__block tr th a {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+
+/* Definition List styles */
+
+.editor-block-list__block dd {
+	margin-left: 0;
+	margin-right: 0;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+	margin-top: 0.1em;
+}
+
+/* Image */
+
+.wp-block-image {
+	margin-bottom: 20px;
+}
+
+.wp-block-image figcaption {
+	display: block;
+	margin: -7px 0 0;
+	padding: 9px 9px 1.0em;
+	text-align: center;
+}
+
+/* Gallery */
+
+.editor-block-list__block .wp-block-gallery {
+	margin: 0 0 24px;
+}
+
+/* Quote */
+
+.wp-block-quote {
+	border: 0;
+	padding: 0 3em;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border: 0;
+	padding: 0 3em;
+}
+
+.wp-block-quote .wp-block-quote__citation {
+	font-size: 16px;
+	font-weight: 600;
+}
+
+.wp-block-quote.is-large .wp-block-quote__citation,
+.wp-block-quote.is-style-large .wp-block-quote__citation  {
+	font-size: 18px;
+}
+
+/* Cover */
+
+.wp-block-cover-image-text,
+.wp-block-cover-text {
+	font-size: 32px;
+}
+
+/* File */
+
+.wp-block-file .wp-block-file__textlink .editor-rich-text__tinymce {
+	color: #0066cc;
+	font-size: 16px;
+	text-decoration: underline;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote blockquote > .editor-rich-text p {
+	font-size: 1.5em;
+}
+
+.wp-block-pullquote .wp-block-pullquote__citation {
+	color: inherit;
+	font-size: inherit;
+	font-weight: 600;
+	text-transform: none;
+}
+
+/* Table */
+
+.wp-block-table tr:nth-child(odd) td {
+	background: #f2f7fc;
+}
+
+.wp-block-table th .wp-block-table__cell-content {
+	color: #777;
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+
+.editor-block-list__block .wp-block-table tr td {
+	padding-bottom: 0;
+	padding-top: 0;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Latest Comments */
+
+.editor-block-list__block .wp-block-latest-comments {
+	margin: 0 0 24px;
+}
+
+.rtl .edit-post-visual-editor .wp-block-latest-comments {
+	margin-right: 0;
+}
+
+/* Latest Posts */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
+	list-style: none;
+	margin-left: 0;
+	margin-right: 0;
+}
+
+.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
+	margin-bottom: 1em;
+}
diff --git a/wp-content/themes/twentyten/editor-style-rtl.css b/wp-content/themes/twentyten/editor-style-rtl.css
index 5868d3c18..dd8fda37c 100644
--- a/wp-content/themes/twentyten/editor-style-rtl.css
+++ b/wp-content/themes/twentyten/editor-style-rtl.css
@@ -1,29 +1,29 @@
-/*
-Theme Name: Twenty Ten
-*/
-/*
-Used to style the TinyMCE editor.
-*/
-html .mceContentBody{
-	direction: rtl;
-	unicode-bidi: embed;
-	float: right;
-	width: 640px;
-}
-* {
-	font-family: Arial, Tahoma, sans-serif;
-}
-/* Text elements */
-ul, ol {
-	margin: 0 -18px 18px 0;
-}
-dd {
-	margin-right: 0;
-}
-blockquote {
-	font-style: normal;
-}
-table {
-	text-align: right;
-	margin: 0 0 24px -1px;
-}
+/*
+Theme Name: Twenty Ten
+*/
+/*
+Used to style the TinyMCE editor.
+*/
+html .mceContentBody{
+	direction: rtl;
+	unicode-bidi: embed;
+	float: right;
+	width: 640px;
+}
+* {
+	font-family: Arial, Tahoma, sans-serif;
+}
+/* Text elements */
+ul, ol {
+	margin: 0 -18px 18px 0;
+}
+dd {
+	margin-right: 0;
+}
+blockquote {
+	font-style: normal;
+}
+table {
+	text-align: right;
+	margin: 0 0 24px -1px;
+}
diff --git a/wp-content/themes/twentyten/editor-style.css b/wp-content/themes/twentyten/editor-style.css
index c397b116c..f723877ed 100644
--- a/wp-content/themes/twentyten/editor-style.css
+++ b/wp-content/themes/twentyten/editor-style.css
@@ -1,297 +1,297 @@
-/*
-Theme Name: Twenty Ten
-Description: Used to style the TinyMCE editor.
-*/
-html .mceContentBody {
-	max-width: 640px;
-}
-* {
-	color: #444;
-	font-family: Georgia, "Bitstream Charter", serif;
-	line-height: 1.5;
-}
-p,
-dl,
-td,
-th,
-ul,
-ol,
-blockquote {
-	font-size: 16px;
-}
-tr th,
-thead th,
-label,
-tr th,
-thead th {
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-pre {
-	font-family: "Courier 10 Pitch", Courier, monospace;
-}
-code, code var {
-	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
-}
-body, input, textarea {
-	font-size: 12px;
-	line-height: 18px;
-}
-hr {
-	background-color: #e7e7e7;
-	border: 0;
-	clear: both;
-	height: 1px;
-	margin-bottom: 18px;
-}
-/* Text elements */
-p {
-	margin-bottom: 18px;
-}
-
-ul,
-ol {
-	margin: 0 0 18px 1.5em;
-	padding: 0;
-}
-
-ul {
-	list-style: square;
-}
-ol {
-	list-style: decimal;
-}
-ol ol {
-	list-style: upper-alpha;
-}
-ol ol ol {
-	list-style: lower-roman;
-}
-ol ol ol ol {
-	list-style: lower-alpha;
-}
-ul ul,
-ol ol,
-ul ol,
-ol ul {
-	margin-bottom: 0;
-}
-dl {
-	margin: 0 0 24px 0;
-}
-dt {
-	font-weight: bold;
-}
-dd {
-	margin-bottom: 18px;
-}
-strong {
-	color: #000;
-	font-weight: bold;
-}
-cite,
-em,
-i {
-	border: none;
-	font-style: italic;
-}
-big {
-	font-size: 131.25%;
-}
-ins {
-	background: #ffc;
-	border: none;
-	color: #333;
-}
-del {
-	text-decoration: line-through;
-	color: #555;
-}
-blockquote {
-	font-style: italic;
-	padding: 0 3em;
-}
-blockquote cite,
-blockquote em,
-blockquote i {
-	font-style: normal;
-}
-pre {
-	background: #f7f7f7;
-	color: #222;
-	line-height: 18px;
-	margin-bottom: 18px;
-	padding: 1.5em;
-}
-abbr,
-acronym {
-	border-bottom: 1px dotted #666;
-	cursor: help;
-}
-ins {
-	text-decoration: none;
-}
-sup,
-sub {
-	font-size: 10px;
-	height: 0;
-	line-height: 1;
-	position: relative;
-	vertical-align: baseline;
-}
-sup {
-	bottom: 1ex;
-}
-sub {
-	top: .5ex;
-}
-a:link {
-	color: #06c;
-}
-a:visited {
-	color: #743399;
-}
-a:active,
-a:hover {
-	color: #ff4b33;
-}
-p,
-ul,
-ol,
-dd,
-pre,
-hr {
-	margin-bottom: 24px;
-}
-ul ul,
-ol ol,
-ul ol,
-ol ul {
-	margin-bottom: 0;
-}
-pre,
-kbd,
-tt,
-var {
-	font-size: 15px;
-	line-height: 21px;
-}
-code {
-	font-size: 13px;
-}
-strong,
-b,
-dt,
-th {
-	color: #000;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-	color: #000;
-	font-weight: normal;
-	line-height: 1.5em;
-	margin: 0 0 20px 0;
-}
-h1 {
-	font-size: 2.4em;
-}
-h2 {
-	font-size: 1.8em;
-}
-h3 {
-	font-size: 1.4em;
-}
-h4 {
-	font-size: 1.2em;
-}
-h5 {
-	font-size: 1em;
-}
-h6 {
-	font-size: 0.9em;
-}
-table {
-	border: 1px solid #e7e7e7 !important;
-	border-collapse: collapse;
-	border-spacing: 0;
-	margin: 0 -1px 24px 0;
-	text-align: left;
-	width: 100%;
-}
-tr th,
-thead th {
-	border: none !important;
-	color: #888;
-	font-size: 12px;
-	font-weight: bold;
-	line-height: 18px;
-	padding: 9px 24px;
-}
-tr td {
-	border: none !important;
-	border-top: 1px solid #e7e7e7 !important;
-	padding: 6px 24px;
-}
-img {
-	margin: 0;
-}
-img.size-auto,
-img.size-large,
-img.size-full,
-img.size-medium {
-	max-width: 100%;
-	height: auto;
-}
-.alignleft,
-img.alignleft {
-	display: inline;
-	float: left;
-	margin-right: 24px;
-	margin-top: 4px;
-}
-.alignright,
-img.alignright {
-	display: inline;
-	float: right;
-	margin-left: 24px;
-	margin-top: 4px;
-}
-.aligncenter,
-img.aligncenter {
-	clear: both;
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-}
-img.alignleft,
-img.alignright,
-img.aligncenter {
-	margin-bottom: 12px;
-}
-.wp-caption {
-	background: #f1f1f1;
-	border: none;
-	-khtml-border-radius: 0;
-	-moz-border-radius: 0;
-	-webkit-border-radius: 0;
-	border-radius: 0;
-	color: #888;
-	font-size: 12px;
-	line-height: 18px;
-	margin-bottom: 20px;
-	max-width: 632px !important; /* prevent too-wide images from breaking layout */
-	padding: 4px;
-	text-align: center;
-}
-.wp-caption img {
-	margin: 5px;
-}
-.wp-caption p.wp-caption-text {
-	margin: 0 0 4px;
-}
-.wp-smiley {
-	margin: 0;
-}
+/*
+Theme Name: Twenty Ten
+Description: Used to style the TinyMCE editor.
+*/
+html .mceContentBody {
+	max-width: 640px;
+}
+* {
+	color: #444;
+	font-family: Georgia, "Bitstream Charter", serif;
+	line-height: 1.5;
+}
+p,
+dl,
+td,
+th,
+ul,
+ol,
+blockquote {
+	font-size: 16px;
+}
+tr th,
+thead th,
+label,
+tr th,
+thead th {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+pre {
+	font-family: "Courier 10 Pitch", Courier, monospace;
+}
+code, code var {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+}
+body, input, textarea {
+	font-size: 12px;
+	line-height: 18px;
+}
+hr {
+	background-color: #e7e7e7;
+	border: 0;
+	clear: both;
+	height: 1px;
+	margin-bottom: 18px;
+}
+/* Text elements */
+p {
+	margin-bottom: 18px;
+}
+
+ul,
+ol {
+	margin: 0 0 18px 1.5em;
+	padding: 0;
+}
+
+ul {
+	list-style: square;
+}
+ol {
+	list-style: decimal;
+}
+ol ol {
+	list-style: upper-alpha;
+}
+ol ol ol {
+	list-style: lower-roman;
+}
+ol ol ol ol {
+	list-style: lower-alpha;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+	margin-bottom: 0;
+}
+dl {
+	margin: 0 0 24px 0;
+}
+dt {
+	font-weight: bold;
+}
+dd {
+	margin-bottom: 18px;
+}
+strong {
+	color: #000;
+	font-weight: bold;
+}
+cite,
+em,
+i {
+	border: none;
+	font-style: italic;
+}
+big {
+	font-size: 131.25%;
+}
+ins {
+	background: #ffc;
+	border: none;
+	color: #333;
+}
+del {
+	text-decoration: line-through;
+	color: #555;
+}
+blockquote {
+	font-style: italic;
+	padding: 0 3em;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+	font-style: normal;
+}
+pre {
+	background: #f7f7f7;
+	color: #222;
+	line-height: 18px;
+	margin-bottom: 18px;
+	padding: 1.5em;
+}
+abbr,
+acronym {
+	border-bottom: 1px dotted #666;
+	cursor: help;
+}
+ins {
+	text-decoration: none;
+}
+sup,
+sub {
+	font-size: 10px;
+	height: 0;
+	line-height: 1;
+	position: relative;
+	vertical-align: baseline;
+}
+sup {
+	bottom: 1ex;
+}
+sub {
+	top: .5ex;
+}
+a:link {
+	color: #06c;
+}
+a:visited {
+	color: #743399;
+}
+a:active,
+a:hover {
+	color: #ff4b33;
+}
+p,
+ul,
+ol,
+dd,
+pre,
+hr {
+	margin-bottom: 24px;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+	margin-bottom: 0;
+}
+pre,
+kbd,
+tt,
+var {
+	font-size: 15px;
+	line-height: 21px;
+}
+code {
+	font-size: 13px;
+}
+strong,
+b,
+dt,
+th {
+	color: #000;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	color: #000;
+	font-weight: normal;
+	line-height: 1.5em;
+	margin: 0 0 20px 0;
+}
+h1 {
+	font-size: 2.4em;
+}
+h2 {
+	font-size: 1.8em;
+}
+h3 {
+	font-size: 1.4em;
+}
+h4 {
+	font-size: 1.2em;
+}
+h5 {
+	font-size: 1em;
+}
+h6 {
+	font-size: 0.9em;
+}
+table {
+	border: 1px solid #e7e7e7 !important;
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin: 0 -1px 24px 0;
+	text-align: left;
+	width: 100%;
+}
+tr th,
+thead th {
+	border: none !important;
+	color: #888;
+	font-size: 12px;
+	font-weight: bold;
+	line-height: 18px;
+	padding: 9px 24px;
+}
+tr td {
+	border: none !important;
+	border-top: 1px solid #e7e7e7 !important;
+	padding: 6px 24px;
+}
+img {
+	margin: 0;
+}
+img.size-auto,
+img.size-large,
+img.size-full,
+img.size-medium {
+	max-width: 100%;
+	height: auto;
+}
+.alignleft,
+img.alignleft {
+	display: inline;
+	float: left;
+	margin-right: 24px;
+	margin-top: 4px;
+}
+.alignright,
+img.alignright {
+	display: inline;
+	float: right;
+	margin-left: 24px;
+	margin-top: 4px;
+}
+.aligncenter,
+img.aligncenter {
+	clear: both;
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+img.alignleft,
+img.alignright,
+img.aligncenter {
+	margin-bottom: 12px;
+}
+.wp-caption {
+	background: #f1f1f1;
+	border: none;
+	-khtml-border-radius: 0;
+	-moz-border-radius: 0;
+	-webkit-border-radius: 0;
+	border-radius: 0;
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+	margin-bottom: 20px;
+	max-width: 632px !important; /* prevent too-wide images from breaking layout */
+	padding: 4px;
+	text-align: center;
+}
+.wp-caption img {
+	margin: 5px;
+}
+.wp-caption p.wp-caption-text {
+	margin: 0 0 4px;
+}
+.wp-smiley {
+	margin: 0;
+}
diff --git a/wp-content/themes/twentyten/footer.php b/wp-content/themes/twentyten/footer.php
index 4763e99ab..9000df602 100644
--- a/wp-content/themes/twentyten/footer.php
+++ b/wp-content/themes/twentyten/footer.php
@@ -1,66 +1,69 @@
-<?php
-/**
- * Template for displaying the footer
- *
- * Contains the closing of the id=main div and all content
- * after. Calls sidebar-footer.php for bottom widgets.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?>
-	</div><!-- #main -->
-
-	<div id="footer" role="contentinfo">
-		<div id="colophon">
-
-<?php
-	/*
-	 * A sidebar in the footer? Yep. You can customize
-	 * your footer with four columns of widgets.
-	 */
-	get_sidebar( 'footer' );
-?>
-
-			<div id="site-info">
-				<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
-					<?php bloginfo( 'name' ); ?>
-				</a>
-				<?php
-				if ( function_exists( 'the_privacy_policy_link' ) ) {
-					the_privacy_policy_link( '<span role="separator" aria-hidden="true"></span>', '' );
-				}
-				?>
-			</div><!-- #site-info -->
-
-			<div id="site-generator">
-				<?php
-				/**
-				 * Fires before the Twenty Ten credits in the footer.
-				 *
-				 * @since Twenty Ten 1.0
-				 */
-				do_action( 'twentyten_credits' );
-				?>
-				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>">
-					<?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?>
-				</a>
-			</div><!-- #site-generator -->
-
-		</div><!-- #colophon -->
-	</div><!-- #footer -->
-
-</div><!-- #wrapper -->
-
-<?php
-	/*
-	 * Always have wp_footer() just before the closing </body>
-	 * tag of your theme, or you will break many plugins, which
-	 * generally use this hook to reference JavaScript files.
-	 */
-
-	wp_footer();
-?>
-</body>
-</html>
+<?php
+/**
+ * Template for displaying the footer
+ *
+ * Contains the closing of the id=main div and all content
+ * after. Calls sidebar-footer.php for bottom widgets.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?>
+	</div><!-- #main -->
+
+	<div id="footer" role="contentinfo">
+		<div id="colophon">
+
+<?php
+	/*
+	 * A sidebar in the footer? Yep. You can customize
+	 * your footer with four columns of widgets.
+	 */
+	get_sidebar( 'footer' );
+?>
+
+			<div id="site-info">
+				<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
+					<?php bloginfo( 'name' ); ?>
+				</a>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '<span role="separator" aria-hidden="true"></span>', '' );
+				}
+				?>
+			</div><!-- #site-info -->
+
+			<div id="site-generator">
+				<?php
+				/**
+				 * Fires before the Twenty Ten credits in the footer.
+				 *
+				 * @since Twenty Ten 1.0
+				 */
+				do_action( 'twentyten_credits' );
+				?>
+				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>">
+					<?php
+					/* translators: %s: WordPress */
+					printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' );
+					?>
+				</a>
+			</div><!-- #site-generator -->
+
+		</div><!-- #colophon -->
+	</div><!-- #footer -->
+
+</div><!-- #wrapper -->
+
+<?php
+	/*
+	 * Always have wp_footer() just before the closing </body>
+	 * tag of your theme, or you will break many plugins, which
+	 * generally use this hook to reference JavaScript files.
+	 */
+
+	wp_footer();
+?>
+</body>
+</html>
diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php
index 2de25d382..e60f1ba1a 100644
--- a/wp-content/themes/twentyten/functions.php
+++ b/wp-content/themes/twentyten/functions.php
@@ -1,737 +1,755 @@
-<?php
-/**
- * TwentyTen functions and definitions
- *
- * Sets up the theme and provides some helper functions. Some helper functions
- * are used in the theme as custom template tags. Others are attached to action and
- * filter hooks in WordPress to change core functionality.
- *
- * The first function, twentyten_setup(), sets up the theme by registering support
- * for various features in WordPress, such as post thumbnails, navigation menus, and the like.
- *
- * When using a child theme you can override certain functions (those wrapped
- * in a function_exists() call) by defining them first in your child theme's
- * functions.php file. The child theme's functions.php file is included before
- * the parent theme's file, so the child theme functions would be used.
- *
- * @link https://codex.wordpress.org/Theme_Development
- * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
- *
- * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
- * to a filter or action hook. The hook can be removed by using remove_action() or
- * remove_filter() and you can attach your own function to the hook.
- *
- * We can remove the parent theme's hook only after it is attached, which means we need to
- * wait until setting up the child theme:
- *
- * <code>
- * add_action( 'after_setup_theme', 'my_child_theme_setup' );
- * function my_child_theme_setup() {
- *     // We are providing our own filter for excerpt_length (or using the unfiltered value)
- *     remove_filter( 'excerpt_length', 'twentyten_excerpt_length' );
- *     ...
- * }
- * </code>
- *
- * For more information on hooks, actions, and filters, see https://codex.wordpress.org/Plugin_API.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-/*
- * Set the content width based on the theme's design and stylesheet.
- *
- * Used to set the width of images and content. Should be equal to the width the theme
- * is designed for, generally via the style.css stylesheet.
- */
-if ( ! isset( $content_width ) ) {
-	$content_width = 640;
-}
-
-/* Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
-add_action( 'after_setup_theme', 'twentyten_setup' );
-
-if ( ! function_exists( 'twentyten_setup' ) ) :
-	/**
-	 * Set up theme defaults and registers support for various WordPress features.
-	 *
-	 * Note that this function is hooked into the after_setup_theme hook, which runs
-	 * before the init hook. The init hook is too late for some features, such as indicating
-	 * support post thumbnails.
-	 *
-	 * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
-	 * functions.php file.
-	 *
-	 * @uses add_theme_support()        To add support for post thumbnails, custom headers and backgrounds, and automatic feed links.
-	 * @uses register_nav_menus()       To add support for navigation menus.
-	 * @uses add_editor_style()         To style the visual editor.
-	 * @uses load_theme_textdomain()    For translation/localization support.
-	 * @uses register_default_headers() To register the default custom header images provided with the theme.
-	 * @uses set_post_thumbnail_size()  To set a custom post thumbnail size.
-	 *
-	 * @since Twenty Ten 1.0
-	 */
-	function twentyten_setup() {
-
-		// This theme styles the visual editor with editor-style.css to match the theme style.
-		add_editor_style();
-
-		// Load regular editor styles into the new block-based editor.
-		add_theme_support( 'editor-styles' );
-
-		// Load default block styles.
-		add_theme_support( 'wp-block-styles' );
-
-		// Add support for custom color scheme.
-		add_theme_support(
-			'editor-color-palette',
-			array(
-				array(
-					'name'  => __( 'Blue', 'twentyten' ),
-					'slug'  => 'blue',
-					'color' => '#0066cc',
-				),
-				array(
-					'name'  => __( 'Black', 'twentyten' ),
-					'slug'  => 'black',
-					'color' => '#000',
-				),
-				array(
-					'name'  => __( 'Medium Gray', 'twentyten' ),
-					'slug'  => 'medium-gray',
-					'color' => '#666',
-				),
-				array(
-					'name'  => __( 'Light Gray', 'twentyten' ),
-					'slug'  => 'light-gray',
-					'color' => '#f1f1f1',
-				),
-				array(
-					'name'  => __( 'White', 'twentyten' ),
-					'slug'  => 'white',
-					'color' => '#fff',
-				),
-			)
-		);
-
-		// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
-		add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
-
-		// This theme uses post thumbnails
-		add_theme_support( 'post-thumbnails' );
-
-		// Add default posts and comments RSS feed links to head
-		add_theme_support( 'automatic-feed-links' );
-
-		/*
-		 * Make theme available for translation.
-		 * Translations can be filed in the /languages/ directory
-		 */
-		load_theme_textdomain( 'twentyten', get_template_directory() . '/languages' );
-
-		// This theme uses wp_nav_menu() in one location.
-		register_nav_menus(
-			array(
-				'primary' => __( 'Primary Navigation', 'twentyten' ),
-			)
-		);
-
-		// This theme allows users to set a custom background.
-		add_theme_support(
-			'custom-background',
-			array(
-				// Let WordPress know what our default background color is.
-				'default-color' => 'f1f1f1',
-			)
-		);
-
-		// The custom header business starts here.
-
-		$custom_header_support = array(
-			/*
-			 * The default image to use.
-			 * The %s is a placeholder for the theme template directory URI.
-			 */
-			'default-image'       => '%s/images/headers/path.jpg',
-			// The height and width of our custom header.
-			/**
-			 * Filter the Twenty Ten default header image width.
-			 *
-			 * @since Twenty Ten 1.0
-			 *
-			 * @param int The default header image width in pixels. Default 940.
-			 */
-			'width'               => apply_filters( 'twentyten_header_image_width', 940 ),
-			/**
-			 * Filter the Twenty Ten defaul header image height.
-			 *
-			 * @since Twenty Ten 1.0
-			 *
-			 * @param int The default header image height in pixels. Default 198.
-			 */
-			   'height'           => apply_filters( 'twentyten_header_image_height', 198 ),
-			// Support flexible heights.
-			'flex-height'         => true,
-			// Don't support text inside the header image.
-			'header-text'         => false,
-			// Callback for styling the header preview in the admin.
-			'admin-head-callback' => 'twentyten_admin_header_style',
-		);
-
-		add_theme_support( 'custom-header', $custom_header_support );
-
-		if ( ! function_exists( 'get_custom_header' ) ) {
-			// This is all for compatibility with versions of WordPress prior to 3.4.
-			define( 'HEADER_TEXTCOLOR', '' );
-			define( 'NO_HEADER_TEXT', true );
-			define( 'HEADER_IMAGE', $custom_header_support['default-image'] );
-			define( 'HEADER_IMAGE_WIDTH', $custom_header_support['width'] );
-			define( 'HEADER_IMAGE_HEIGHT', $custom_header_support['height'] );
-			add_custom_image_header( '', $custom_header_support['admin-head-callback'] );
-			add_custom_background();
-		}
-
-		/*
-		 * We'll be using post thumbnails for custom header images on posts and pages.
-		 * We want them to be 940 pixels wide by 198 pixels tall.
-		 * Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
-		 */
-		set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );
-
-		// ... and thus ends the custom header business.
-
-		// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
-		register_default_headers(
-			array(
-				'berries'       => array(
-					'url'           => '%s/images/headers/berries.jpg',
-					'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Berries', 'twentyten' ),
-				),
-				'cherryblossom' => array(
-					'url'           => '%s/images/headers/cherryblossoms.jpg',
-					'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Cherry Blossoms', 'twentyten' ),
-				),
-				'concave'       => array(
-					'url'           => '%s/images/headers/concave.jpg',
-					'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Concave', 'twentyten' ),
-				),
-				'fern'          => array(
-					'url'           => '%s/images/headers/fern.jpg',
-					'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Fern', 'twentyten' ),
-				),
-				'forestfloor'   => array(
-					'url'           => '%s/images/headers/forestfloor.jpg',
-					'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Forest Floor', 'twentyten' ),
-				),
-				'inkwell'       => array(
-					'url'           => '%s/images/headers/inkwell.jpg',
-					'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Inkwell', 'twentyten' ),
-				),
-				'path'          => array(
-					'url'           => '%s/images/headers/path.jpg',
-					'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Path', 'twentyten' ),
-				),
-				'sunset'        => array(
-					'url'           => '%s/images/headers/sunset.jpg',
-					'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
-					/* translators: header image description */
-					'description'   => __( 'Sunset', 'twentyten' ),
-				),
-			)
-		);
-	}
-endif;
-
-if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
-	/**
-	 * Style the header image displayed on the Appearance > Header admin panel.
-	 *
-	 * Referenced via add_custom_image_header() in twentyten_setup().
-	 *
-	 * @since Twenty Ten 1.0
-	 */
-	function twentyten_admin_header_style() {
-		?>
-	<style type="text/css" id="twentyten-admin-header-css">
-	/* Shows the same border as on front end */
-	#headimg {
-	border-bottom: 1px solid #000;
-	border-top: 4px solid #000;
-	}
-	/* If header-text was supported, you would style the text with these selectors:
-	#headimg #name { }
-	#headimg #desc { }
-	*/
-	</style>
-		<?php
-	}
-endif;
-
-/**
- * Show a home link for our wp_nav_menu() fallback, wp_page_menu().
- *
- * To override this in a child theme, remove the filter and optionally add
- * your own function tied to the wp_page_menu_args filter hook.
- *
- * @since Twenty Ten 1.0
- *
- * @param array $args An optional array of arguments. @see wp_page_menu()
- */
-function twentyten_page_menu_args( $args ) {
-	if ( ! isset( $args['show_home'] ) ) {
-		$args['show_home'] = true;
-	}
-	return $args;
-}
-add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );
-
-/**
- * Set the post excerpt length to 40 characters.
- *
- * To override this length in a child theme, remove the filter and add your own
- * function tied to the excerpt_length filter hook.
- *
- * @since Twenty Ten 1.0
- *
- * @param int $length The number of excerpt characters.
- * @return int The filtered number of excerpt characters.
- */
-function twentyten_excerpt_length( $length ) {
-	return 40;
-}
-add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
-
-if ( ! function_exists( 'twentyten_continue_reading_link' ) ) :
-	/**
-	 * Return a "Continue Reading" link for excerpts.
-	 *
-	 * @since Twenty Ten 1.0
-	 *
-	 * @return string "Continue Reading" link.
-	 */
-	function twentyten_continue_reading_link() {
-		return ' <a href="' . get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
-	}
-endif;
-
-/**
- * Replace "[...]" with an ellipsis and twentyten_continue_reading_link().
- *
- * "[...]" is appended to automatically generated excerpts.
- *
- * To override this in a child theme, remove the filter and add your own
- * function tied to the excerpt_more filter hook.
- *
- * @since Twenty Ten 1.0
- *
- * @param string $more The Read More text.
- * @return string An ellipsis.
- */
-function twentyten_auto_excerpt_more( $more ) {
-	if ( ! is_admin() ) {
-		return ' &hellip;' . twentyten_continue_reading_link();
-	}
-	return $more;
-}
-add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
-
-/**
- * Add a pretty "Continue Reading" link to custom post excerpts.
- *
- * To override this link in a child theme, remove the filter and add your own
- * function tied to the get_the_excerpt filter hook.
- *
- * @since Twenty Ten 1.0
- *
- * @param string $output The "Coninue Reading" link.
- * @return string Excerpt with a pretty "Continue Reading" link.
- */
-function twentyten_custom_excerpt_more( $output ) {
-	if ( has_excerpt() && ! is_attachment() && ! is_admin() ) {
-		$output .= twentyten_continue_reading_link();
-	}
-	return $output;
-}
-add_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
-
-/**
- * Remove inline styles printed when the gallery shortcode is used.
- *
- * Galleries are styled by the theme in Twenty Ten's style.css. This is just
- * a simple filter call that tells WordPress to not use the default styles.
- *
- * @since Twenty Ten 1.2
- */
-add_filter( 'use_default_gallery_style', '__return_false' );
-
-/**
- * Deprecated way to remove inline styles printed when the gallery shortcode is used.
- *
- * This function is no longer needed or used. Use the use_default_gallery_style
- * filter instead, as seen above.
- *
- * @since Twenty Ten 1.0
- * @deprecated Deprecated in Twenty Ten 1.2 for WordPress 3.1
- *
- * @return string The gallery style filter, with the styles themselves removed.
- */
-function twentyten_remove_gallery_css( $css ) {
-	return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );
-}
-// Backwards compatibility with WordPress 3.0.
-if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) {
-	add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
-}
-
-if ( ! function_exists( 'twentyten_comment' ) ) :
-	/**
-	 * Template for comments and pingbacks.
-	 *
-	 * To override this walker in a child theme without modifying the comments template
-	 * simply create your own twentyten_comment(), and that function will be used instead.
-	 *
-	 * Used as a callback by wp_list_comments() for displaying the comments.
-	 *
-	 * @since Twenty Ten 1.0
-	 *
-	 * @param object $comment The comment object.
-	 * @param array  $args    An array of arguments. @see get_comment_reply_link()
-	 * @param int    $depth   The depth of the comment.
-	 */
-	function twentyten_comment( $comment, $args, $depth ) {
-		$GLOBALS['comment'] = $comment;
-		switch ( $comment->comment_type ) :
-			case '':
-				?>
-		<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
-		<div id="comment-<?php comment_ID(); ?>">
-			<div class="comment-author vcard">
-				<?php echo get_avatar( $comment, 40 ); ?>
-				<?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
-			</div><!-- .comment-author .vcard -->
-				<?php if ( $comment->comment_approved == '0' ) : ?>
-				<em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
-				<br />
-			<?php endif; ?>
-
-			<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
-				<?php
-					/* translators: 1: date, 2: time */
-					printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() );
-				?>
-					</a>
-					<?php
-					edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' );
-					?>
-				</div><!-- .comment-meta .commentmetadata -->
-
-				<div class="comment-body"><?php comment_text(); ?></div>
-
-				<div class="reply">
-				<?php
-				comment_reply_link(
-					array_merge(
-						$args,
-						array(
-							'depth'     => $depth,
-							'max_depth' => $args['max_depth'],
-						)
-					)
-				);
-				?>
-				</div><!-- .reply -->
-			</div><!-- #comment-##  -->
-
-				<?php
-				break;
-			case 'pingback':
-			case 'trackback':
-				?>
-		<li class="post pingback">
-		<p><?php _e( 'Pingback:', 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); ?></p>
-				<?php
-				break;
-		endswitch;
-	}
-endif;
-
-/**
- * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
- *
- * To override twentyten_widgets_init() in a child theme, remove the action hook and add your own
- * function tied to the init hook.
- *
- * @since Twenty Ten 1.0
- *
- * @uses register_sidebar()
- */
-function twentyten_widgets_init() {
-	// Area 1, located at the top of the sidebar.
-	register_sidebar(
-		array(
-			'name'          => __( 'Primary Widget Area', 'twentyten' ),
-			'id'            => 'primary-widget-area',
-			'description'   => __( 'Add widgets here to appear in your sidebar.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
-	register_sidebar(
-		array(
-			'name'          => __( 'Secondary Widget Area', 'twentyten' ),
-			'id'            => 'secondary-widget-area',
-			'description'   => __( 'An optional secondary widget area, displays below the primary widget area in your sidebar.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	// Area 3, located in the footer. Empty by default.
-	register_sidebar(
-		array(
-			'name'          => __( 'First Footer Widget Area', 'twentyten' ),
-			'id'            => 'first-footer-widget-area',
-			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	// Area 4, located in the footer. Empty by default.
-	register_sidebar(
-		array(
-			'name'          => __( 'Second Footer Widget Area', 'twentyten' ),
-			'id'            => 'second-footer-widget-area',
-			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	// Area 5, located in the footer. Empty by default.
-	register_sidebar(
-		array(
-			'name'          => __( 'Third Footer Widget Area', 'twentyten' ),
-			'id'            => 'third-footer-widget-area',
-			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	// Area 6, located in the footer. Empty by default.
-	register_sidebar(
-		array(
-			'name'          => __( 'Fourth Footer Widget Area', 'twentyten' ),
-			'id'            => 'fourth-footer-widget-area',
-			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
-			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
-			'after_widget'  => '</li>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-}
-/** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
-add_action( 'widgets_init', 'twentyten_widgets_init' );
-
-/**
- * Remove the default styles that are packaged with the Recent Comments widget.
- *
- * To override this in a child theme, remove the filter and optionally add your own
- * function tied to the widgets_init action hook.
- *
- * This function uses a filter (show_recent_comments_widget_style) new in WordPress 3.1
- * to remove the default style. Using Twenty Ten 1.2 in WordPress 3.0 will show the styles,
- * but they won't have any effect on the widget in default Twenty Ten styling.
- *
- * @since Twenty Ten 1.0
- */
-function twentyten_remove_recent_comments_style() {
-	add_filter( 'show_recent_comments_widget_style', '__return_false' );
-}
-add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
-
-if ( ! function_exists( 'twentyten_posted_on' ) ) :
-	/**
-	 * Print HTML with meta information for the current post-date/time and author.
-	 *
-	 * @since Twenty Ten 1.0
-	 */
-	function twentyten_posted_on() {
-		printf(
-			__( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
-			'meta-prep meta-prep-author',
-			sprintf(
-				'<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
-				get_permalink(),
-				esc_attr( get_the_time() ),
-				get_the_date()
-			),
-			sprintf(
-				'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
-				get_author_posts_url( get_the_author_meta( 'ID' ) ),
-				esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
-				get_the_author()
-			)
-		);
-	}
-endif;
-
-if ( ! function_exists( 'twentyten_posted_in' ) ) :
-	/**
-	 * Print HTML with meta information for the current post (category, tags and permalink).
-	 *
-	 * @since Twenty Ten 1.0
-	 */
-	function twentyten_posted_in() {
-		// Retrieves tag list of current post, separated by commas.
-		$tag_list = get_the_tag_list( '', ', ' );
-		if ( $tag_list && ! is_wp_error( $tag_list ) ) {
-			$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
-		} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
-			$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
-		} else {
-			$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
-		}
-		// Prints the string, replacing the placeholders.
-		printf(
-			$posted_in,
-			get_the_category_list( ', ' ),
-			$tag_list,
-			get_permalink(),
-			the_title_attribute( 'echo=0' )
-		);
-	}
-endif;
-
-/**
- * Retrieve the IDs for images in a gallery.
- *
- * @uses get_post_galleries() First, if available. Falls back to shortcode parsing,
- *                            then as last option uses a get_posts() call.
- *
- * @since Twenty Ten 1.6.
- *
- * @return array List of image IDs from the post gallery.
- */
-function twentyten_get_gallery_images() {
-	$images = array();
-
-	if ( function_exists( 'get_post_galleries' ) ) {
-		$galleries = get_post_galleries( get_the_ID(), false );
-		if ( isset( $galleries[0]['ids'] ) ) {
-			$images = explode( ',', $galleries[0]['ids'] );
-		}
-	} else {
-		$pattern = get_shortcode_regex();
-		preg_match( "/$pattern/s", get_the_content(), $match );
-		$atts = shortcode_parse_atts( $match[3] );
-		if ( isset( $atts['ids'] ) ) {
-			$images = explode( ',', $atts['ids'] );
-		}
-	}
-
-	if ( ! $images ) {
-		$images = get_posts(
-			array(
-				'fields'         => 'ids',
-				'numberposts'    => 999,
-				'order'          => 'ASC',
-				'orderby'        => 'menu_order',
-				'post_mime_type' => 'image',
-				'post_parent'    => get_the_ID(),
-				'post_type'      => 'attachment',
-			)
-		);
-	}
-
-	return $images;
-}
-
-/**
- * Modifies tag cloud widget arguments to display all tags in the same font size
- * and use list format for better accessibility.
- *
- * @since Twenty Ten 2.4
- *
- * @param array $args Arguments for tag cloud widget.
- * @return array The filtered arguments for tag cloud widget.
- */
-function twentyten_widget_tag_cloud_args( $args ) {
-	$args['largest']  = 22;
-	$args['smallest'] = 8;
-	$args['unit']     = 'pt';
-	$args['format']   = 'list';
-
-	return $args;
-}
-add_filter( 'widget_tag_cloud_args', 'twentyten_widget_tag_cloud_args' );
-
-/**
- * Enqueue scripts and styles for front end.
- *
- * @since Twenty Ten 2.6
- */
-function twentyten_scripts_styles() {
-	// Theme block stylesheet.
-	wp_enqueue_style( 'twentyten-block-style', get_template_directory_uri() . '/blocks.css', array(), '20181018' );
-}
-add_action( 'wp_enqueue_scripts', 'twentyten_scripts_styles' );
-
-/**
- * Enqueue styles for the block-based editor.
- *
- * @since Twenty Ten 2.6
- */
-function twentyten_block_editor_styles() {
-	// Block styles.
-	wp_enqueue_style( 'twentyten-block-editor-style', get_template_directory_uri() . '/editor-blocks.css' );
-}
-add_action( 'enqueue_block_editor_assets', 'twentyten_block_editor_styles' );
-
-if ( ! function_exists( 'wp_body_open' ) ) :
-	/**
-	 * Fire the wp_body_open action.
-	 *
-	 * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
-	 *
-	 * @since Twenty Ten 2.9
-	 */
-	function wp_body_open() {
-		/**
-		 * Triggered after the opening <body> tag.
-		 *
-		 * @since Twenty Ten 2.9
-		 */
-		do_action( 'wp_body_open' );
-	}
-endif;
+<?php
+/**
+ * TwentyTen functions and definitions
+ *
+ * Sets up the theme and provides some helper functions. Some helper functions
+ * are used in the theme as custom template tags. Others are attached to action and
+ * filter hooks in WordPress to change core functionality.
+ *
+ * The first function, twentyten_setup(), sets up the theme by registering support
+ * for various features in WordPress, such as post thumbnails, navigation menus, and the like.
+ *
+ * When using a child theme you can override certain functions (those wrapped
+ * in a function_exists() call) by defining them first in your child theme's
+ * functions.php file. The child theme's functions.php file is included before
+ * the parent theme's file, so the child theme functions would be used.
+ *
+ * @link https://developer.wordpress.org/themes/basics/theme-functions/
+ * @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
+ *
+ * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
+ * to a filter or action hook. The hook can be removed by using remove_action() or
+ * remove_filter() and you can attach your own function to the hook.
+ *
+ * We can remove the parent theme's hook only after it is attached, which means we need to
+ * wait until setting up the child theme:
+ *
+ * <code>
+ * add_action( 'after_setup_theme', 'my_child_theme_setup' );
+ * function my_child_theme_setup() {
+ *     // We are providing our own filter for excerpt_length (or using the unfiltered value).
+ *     remove_filter( 'excerpt_length', 'twentyten_excerpt_length' );
+ *     ...
+ * }
+ * </code>
+ *
+ * For more information on hooks, actions, and filters, see https://developer.wordpress.org/plugins/.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+/*
+ * Set the content width based on the theme's design and stylesheet.
+ *
+ * Used to set the width of images and content. Should be equal to the width the theme
+ * is designed for, generally via the style.css stylesheet.
+ */
+if ( ! isset( $content_width ) ) {
+	$content_width = 640;
+}
+
+/* Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
+add_action( 'after_setup_theme', 'twentyten_setup' );
+
+if ( ! function_exists( 'twentyten_setup' ) ) :
+	/**
+	 * Set up theme defaults and registers support for various WordPress features.
+	 *
+	 * Note that this function is hooked into the after_setup_theme hook, which runs
+	 * before the init hook. The init hook is too late for some features, such as indicating
+	 * support post thumbnails.
+	 *
+	 * To override twentyten_setup() in a child theme, add your own twentyten_setup to your child theme's
+	 * functions.php file.
+	 *
+	 * @uses add_theme_support()        To add support for post thumbnails, custom headers and backgrounds, and automatic feed links.
+	 * @uses register_nav_menus()       To add support for navigation menus.
+	 * @uses add_editor_style()         To style the visual editor.
+	 * @uses load_theme_textdomain()    For translation/localization support.
+	 * @uses register_default_headers() To register the default custom header images provided with the theme.
+	 * @uses set_post_thumbnail_size()  To set a custom post thumbnail size.
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_setup() {
+
+		// This theme styles the visual editor with editor-style.css to match the theme style.
+		add_editor_style();
+
+		// Load regular editor styles into the new block-based editor.
+		add_theme_support( 'editor-styles' );
+
+		// Load default block styles.
+		add_theme_support( 'wp-block-styles' );
+
+		// Add support for custom color scheme.
+		add_theme_support(
+			'editor-color-palette',
+			array(
+				array(
+					'name'  => __( 'Blue', 'twentyten' ),
+					'slug'  => 'blue',
+					'color' => '#0066cc',
+				),
+				array(
+					'name'  => __( 'Black', 'twentyten' ),
+					'slug'  => 'black',
+					'color' => '#000',
+				),
+				array(
+					'name'  => __( 'Medium Gray', 'twentyten' ),
+					'slug'  => 'medium-gray',
+					'color' => '#666',
+				),
+				array(
+					'name'  => __( 'Light Gray', 'twentyten' ),
+					'slug'  => 'light-gray',
+					'color' => '#f1f1f1',
+				),
+				array(
+					'name'  => __( 'White', 'twentyten' ),
+					'slug'  => 'white',
+					'color' => '#fff',
+				),
+			)
+		);
+
+		// Post Format support. You can also use the legacy "gallery" or "asides" (note the plural) categories.
+		add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
+
+		// This theme uses post thumbnails.
+		add_theme_support( 'post-thumbnails' );
+
+		// Add default posts and comments RSS feed links to head.
+		add_theme_support( 'automatic-feed-links' );
+
+		/*
+		 * Make theme available for translation.
+		 * Translations can be filed in the /languages/ directory.
+		 */
+		load_theme_textdomain( 'twentyten', get_template_directory() . '/languages' );
+
+		// This theme uses wp_nav_menu() in one location.
+		register_nav_menus(
+			array(
+				'primary' => __( 'Primary Navigation', 'twentyten' ),
+			)
+		);
+
+		// This theme allows users to set a custom background.
+		add_theme_support(
+			'custom-background',
+			array(
+				// Let WordPress know what our default background color is.
+				'default-color' => 'f1f1f1',
+			)
+		);
+
+		// The custom header business starts here.
+
+		$custom_header_support = array(
+			/*
+			 * The default image to use.
+			 * The %s is a placeholder for the theme template directory URI.
+			 */
+			'default-image'       => '%s/images/headers/path.jpg',
+			// The height and width of our custom header.
+			/**
+			 * Filter the Twenty Ten default header image width.
+			 *
+			 * @since Twenty Ten 1.0
+			 *
+			 * @param int The default header image width in pixels. Default 940.
+			 */
+			'width'               => apply_filters( 'twentyten_header_image_width', 940 ),
+			/**
+			 * Filter the Twenty Ten defaul header image height.
+			 *
+			 * @since Twenty Ten 1.0
+			 *
+			 * @param int The default header image height in pixels. Default 198.
+			 */
+			'height'              => apply_filters( 'twentyten_header_image_height', 198 ),
+			// Support flexible heights.
+			'flex-height'         => true,
+			// Don't support text inside the header image.
+			'header-text'         => false,
+			// Callback for styling the header preview in the admin.
+			'admin-head-callback' => 'twentyten_admin_header_style',
+		);
+
+		add_theme_support( 'custom-header', $custom_header_support );
+
+		if ( ! function_exists( 'get_custom_header' ) ) {
+			// This is all for compatibility with versions of WordPress prior to 3.4.
+			define( 'HEADER_TEXTCOLOR', '' );
+			define( 'NO_HEADER_TEXT', true );
+			define( 'HEADER_IMAGE', $custom_header_support['default-image'] );
+			define( 'HEADER_IMAGE_WIDTH', $custom_header_support['width'] );
+			define( 'HEADER_IMAGE_HEIGHT', $custom_header_support['height'] );
+			add_custom_image_header( '', $custom_header_support['admin-head-callback'] );
+			add_custom_background();
+		}
+
+		/*
+		 * We'll be using post thumbnails for custom header images on posts and pages.
+		 * We want them to be 940 pixels wide by 198 pixels tall.
+		 * Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
+		 */
+		set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );
+
+		// ...and thus ends the custom header business.
+
+		// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
+		register_default_headers(
+			array(
+				'berries'       => array(
+					'url'           => '%s/images/headers/berries.jpg',
+					'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Berries', 'twentyten' ),
+				),
+				'cherryblossom' => array(
+					'url'           => '%s/images/headers/cherryblossoms.jpg',
+					'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Cherry Blossoms', 'twentyten' ),
+				),
+				'concave'       => array(
+					'url'           => '%s/images/headers/concave.jpg',
+					'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Concave', 'twentyten' ),
+				),
+				'fern'          => array(
+					'url'           => '%s/images/headers/fern.jpg',
+					'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Fern', 'twentyten' ),
+				),
+				'forestfloor'   => array(
+					'url'           => '%s/images/headers/forestfloor.jpg',
+					'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Forest Floor', 'twentyten' ),
+				),
+				'inkwell'       => array(
+					'url'           => '%s/images/headers/inkwell.jpg',
+					'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Inkwell', 'twentyten' ),
+				),
+				'path'          => array(
+					'url'           => '%s/images/headers/path.jpg',
+					'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Path', 'twentyten' ),
+				),
+				'sunset'        => array(
+					'url'           => '%s/images/headers/sunset.jpg',
+					'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
+					/* translators: Header image description. */
+					'description'   => __( 'Sunset', 'twentyten' ),
+				),
+			)
+		);
+	}
+endif;
+
+if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
+	/**
+	 * Style the header image displayed on the Appearance > Header admin panel.
+	 *
+	 * Referenced via add_custom_image_header() in twentyten_setup().
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_admin_header_style() {
+		?>
+	<style type="text/css" id="twentyten-admin-header-css">
+	/* Shows the same border as on front end */
+	#headimg {
+	border-bottom: 1px solid #000;
+	border-top: 4px solid #000;
+	}
+	/* If header-text was supported, you would style the text with these selectors:
+	#headimg #name { }
+	#headimg #desc { }
+	*/
+	</style>
+		<?php
+	}
+endif;
+
+/**
+ * Show a home link for our wp_nav_menu() fallback, wp_page_menu().
+ *
+ * To override this in a child theme, remove the filter and optionally add
+ * your own function tied to the wp_page_menu_args filter hook.
+ *
+ * @since Twenty Ten 1.0
+ *
+ * @param array $args An optional array of arguments. @see wp_page_menu()
+ */
+function twentyten_page_menu_args( $args ) {
+	if ( ! isset( $args['show_home'] ) ) {
+		$args['show_home'] = true;
+	}
+	return $args;
+}
+add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' );
+
+/**
+ * Set the post excerpt length to 40 characters.
+ *
+ * To override this length in a child theme, remove the filter and add your own
+ * function tied to the excerpt_length filter hook.
+ *
+ * @since Twenty Ten 1.0
+ *
+ * @param int $length The number of excerpt characters.
+ * @return int The filtered number of excerpt characters.
+ */
+function twentyten_excerpt_length( $length ) {
+	return 40;
+}
+add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
+
+if ( ! function_exists( 'twentyten_continue_reading_link' ) ) :
+	/**
+	 * Return a "Continue Reading" link for excerpts.
+	 *
+	 * @since Twenty Ten 1.0
+	 *
+	 * @return string "Continue Reading" link.
+	 */
+	function twentyten_continue_reading_link() {
+		return ' <a href="' . get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
+	}
+endif;
+
+/**
+ * Replace "[...]" with an ellipsis and twentyten_continue_reading_link().
+ *
+ * "[...]" is appended to automatically generated excerpts.
+ *
+ * To override this in a child theme, remove the filter and add your own
+ * function tied to the excerpt_more filter hook.
+ *
+ * @since Twenty Ten 1.0
+ *
+ * @param string $more The Read More text.
+ * @return string An ellipsis.
+ */
+function twentyten_auto_excerpt_more( $more ) {
+	if ( ! is_admin() ) {
+		return ' &hellip;' . twentyten_continue_reading_link();
+	}
+	return $more;
+}
+add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );
+
+/**
+ * Add a pretty "Continue Reading" link to custom post excerpts.
+ *
+ * To override this link in a child theme, remove the filter and add your own
+ * function tied to the get_the_excerpt filter hook.
+ *
+ * @since Twenty Ten 1.0
+ *
+ * @param string $output The "Coninue Reading" link.
+ * @return string Excerpt with a pretty "Continue Reading" link.
+ */
+function twentyten_custom_excerpt_more( $output ) {
+	if ( has_excerpt() && ! is_attachment() && ! is_admin() ) {
+		$output .= twentyten_continue_reading_link();
+	}
+	return $output;
+}
+add_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
+
+/**
+ * Remove inline styles printed when the gallery shortcode is used.
+ *
+ * Galleries are styled by the theme in Twenty Ten's style.css. This is just
+ * a simple filter call that tells WordPress to not use the default styles.
+ *
+ * @since Twenty Ten 1.2
+ */
+add_filter( 'use_default_gallery_style', '__return_false' );
+
+/**
+ * Deprecated way to remove inline styles printed when the gallery shortcode is used.
+ *
+ * This function is no longer needed or used. Use the use_default_gallery_style
+ * filter instead, as seen above.
+ *
+ * @since Twenty Ten 1.0
+ * @deprecated Deprecated in Twenty Ten 1.2 for WordPress 3.1
+ *
+ * @return string The gallery style filter, with the styles themselves removed.
+ */
+function twentyten_remove_gallery_css( $css ) {
+	return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );
+}
+// Backward compatibility with WordPress 3.0.
+if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) {
+	add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
+}
+
+if ( ! function_exists( 'twentyten_comment' ) ) :
+	/**
+	 * Template for comments and pingbacks.
+	 *
+	 * To override this walker in a child theme without modifying the comments template
+	 * simply create your own twentyten_comment(), and that function will be used instead.
+	 *
+	 * Used as a callback by wp_list_comments() for displaying the comments.
+	 *
+	 * @since Twenty Ten 1.0
+	 *
+	 * @param object $comment The comment object.
+	 * @param array  $args    An array of arguments. @see get_comment_reply_link()
+	 * @param int    $depth   The depth of the comment.
+	 */
+	function twentyten_comment( $comment, $args, $depth ) {
+		$GLOBALS['comment'] = $comment;
+		switch ( $comment->comment_type ) :
+			case '':
+				?>
+		<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
+		<div id="comment-<?php comment_ID(); ?>">
+			<div class="comment-author vcard">
+				<?php echo get_avatar( $comment, 40 ); ?>
+				<?php
+				/* translators: %s: Author display name. */
+				printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) );
+				?>
+			</div><!-- .comment-author .vcard -->
+
+				<?php
+				$commenter = wp_get_current_commenter();
+				if ( $commenter['comment_author_email'] ) {
+					$moderation_note = __( 'Your comment is awaiting moderation.', 'twentyten' );
+				} else {
+					$moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentyten' );
+				}
+				?>
+
+				<?php if ( '0' == $comment->comment_approved ) : ?>
+			<em class="comment-awaiting-moderation"><?php echo $moderation_note; ?></em>
+			<br />
+			<?php endif; ?>
+
+			<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
+				<?php
+					/* translators: 1: Date, 2: Time. */
+					printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() );
+				?>
+					</a>
+					<?php
+					edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' );
+					?>
+				</div><!-- .comment-meta .commentmetadata -->
+
+				<div class="comment-body"><?php comment_text(); ?></div>
+
+				<div class="reply">
+				<?php
+				comment_reply_link(
+					array_merge(
+						$args,
+						array(
+							'depth'     => $depth,
+							'max_depth' => $args['max_depth'],
+						)
+					)
+				);
+				?>
+				</div><!-- .reply -->
+			</div><!-- #comment-##  -->
+
+				<?php
+				break;
+			case 'pingback':
+			case 'trackback':
+				?>
+		<li class="post pingback">
+		<p><?php _e( 'Pingback:', 'twentyten' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'twentyten' ), ' ' ); ?></p>
+				<?php
+				break;
+		endswitch;
+	}
+endif;
+
+/**
+ * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
+ *
+ * To override twentyten_widgets_init() in a child theme, remove the action hook and add your own
+ * function tied to the init hook.
+ *
+ * @since Twenty Ten 1.0
+ *
+ * @uses register_sidebar()
+ */
+function twentyten_widgets_init() {
+	// Area 1, located at the top of the sidebar.
+	register_sidebar(
+		array(
+			'name'          => __( 'Primary Widget Area', 'twentyten' ),
+			'id'            => 'primary-widget-area',
+			'description'   => __( 'Add widgets here to appear in your sidebar.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	// Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
+	register_sidebar(
+		array(
+			'name'          => __( 'Secondary Widget Area', 'twentyten' ),
+			'id'            => 'secondary-widget-area',
+			'description'   => __( 'An optional secondary widget area, displays below the primary widget area in your sidebar.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	// Area 3, located in the footer. Empty by default.
+	register_sidebar(
+		array(
+			'name'          => __( 'First Footer Widget Area', 'twentyten' ),
+			'id'            => 'first-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	// Area 4, located in the footer. Empty by default.
+	register_sidebar(
+		array(
+			'name'          => __( 'Second Footer Widget Area', 'twentyten' ),
+			'id'            => 'second-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	// Area 5, located in the footer. Empty by default.
+	register_sidebar(
+		array(
+			'name'          => __( 'Third Footer Widget Area', 'twentyten' ),
+			'id'            => 'third-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	// Area 6, located in the footer. Empty by default.
+	register_sidebar(
+		array(
+			'name'          => __( 'Fourth Footer Widget Area', 'twentyten' ),
+			'id'            => 'fourth-footer-widget-area',
+			'description'   => __( 'An optional widget area for your site footer.', 'twentyten' ),
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget'  => '</li>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+}
+/** Register sidebars by running twentyten_widgets_init() on the widgets_init hook. */
+add_action( 'widgets_init', 'twentyten_widgets_init' );
+
+/**
+ * Remove the default styles that are packaged with the Recent Comments widget.
+ *
+ * To override this in a child theme, remove the filter and optionally add your own
+ * function tied to the widgets_init action hook.
+ *
+ * This function uses a filter (show_recent_comments_widget_style) new in WordPress 3.1
+ * to remove the default style. Using Twenty Ten 1.2 in WordPress 3.0 will show the styles,
+ * but they won't have any effect on the widget in default Twenty Ten styling.
+ *
+ * @since Twenty Ten 1.0
+ */
+function twentyten_remove_recent_comments_style() {
+	add_filter( 'show_recent_comments_widget_style', '__return_false' );
+}
+add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
+
+if ( ! function_exists( 'twentyten_posted_on' ) ) :
+	/**
+	 * Print HTML with meta information for the current post-date/time and author.
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_posted_on() {
+		printf(
+			/* translators: 1: CSS classes, 2: Date, 3: Author display name. */
+			__( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ),
+			'meta-prep meta-prep-author',
+			sprintf(
+				'<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
+				get_permalink(),
+				esc_attr( get_the_time() ),
+				get_the_date()
+			),
+			sprintf(
+				'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
+				get_author_posts_url( get_the_author_meta( 'ID' ) ),
+				/* translators: %s: Author display name. */
+				esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
+				get_the_author()
+			)
+		);
+	}
+endif;
+
+if ( ! function_exists( 'twentyten_posted_in' ) ) :
+	/**
+	 * Print HTML with meta information for the current post (category, tags and permalink).
+	 *
+	 * @since Twenty Ten 1.0
+	 */
+	function twentyten_posted_in() {
+		// Retrieves tag list of current post, separated by commas.
+		$tag_list = get_the_tag_list( '', ', ' );
+		if ( $tag_list && ! is_wp_error( $tag_list ) ) {
+			/* translators: 1: Category name, 2: Tag name, 3: Post permalink, 4: Post title. */
+			$posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
+			/* translators: 1: Category name, 3: Post permalink, 4: Post title. */
+			$posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		} else {
+			/* translators: 3: Post permalink, 4: Post title. */
+			$posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' );
+		}
+		// Prints the string, replacing the placeholders.
+		printf(
+			$posted_in,
+			get_the_category_list( ', ' ),
+			$tag_list,
+			get_permalink(),
+			the_title_attribute( 'echo=0' )
+		);
+	}
+endif;
+
+/**
+ * Retrieve the IDs for images in a gallery.
+ *
+ * @uses get_post_galleries() First, if available. Falls back to shortcode parsing,
+ *                            then as last option uses a get_posts() call.
+ *
+ * @since Twenty Ten 1.6.
+ *
+ * @return array List of image IDs from the post gallery.
+ */
+function twentyten_get_gallery_images() {
+	$images = array();
+
+	if ( function_exists( 'get_post_galleries' ) ) {
+		$galleries = get_post_galleries( get_the_ID(), false );
+		if ( isset( $galleries[0]['ids'] ) ) {
+			$images = explode( ',', $galleries[0]['ids'] );
+		}
+	} else {
+		$pattern = get_shortcode_regex();
+		preg_match( "/$pattern/s", get_the_content(), $match );
+		$atts = shortcode_parse_atts( $match[3] );
+		if ( isset( $atts['ids'] ) ) {
+			$images = explode( ',', $atts['ids'] );
+		}
+	}
+
+	if ( ! $images ) {
+		$images = get_posts(
+			array(
+				'fields'         => 'ids',
+				'numberposts'    => 999,
+				'order'          => 'ASC',
+				'orderby'        => 'menu_order',
+				'post_mime_type' => 'image',
+				'post_parent'    => get_the_ID(),
+				'post_type'      => 'attachment',
+			)
+		);
+	}
+
+	return $images;
+}
+
+/**
+ * Modifies tag cloud widget arguments to display all tags in the same font size
+ * and use list format for better accessibility.
+ *
+ * @since Twenty Ten 2.4
+ *
+ * @param array $args Arguments for tag cloud widget.
+ * @return array The filtered arguments for tag cloud widget.
+ */
+function twentyten_widget_tag_cloud_args( $args ) {
+	$args['largest']  = 22;
+	$args['smallest'] = 8;
+	$args['unit']     = 'pt';
+	$args['format']   = 'list';
+
+	return $args;
+}
+add_filter( 'widget_tag_cloud_args', 'twentyten_widget_tag_cloud_args' );
+
+/**
+ * Enqueue scripts and styles for front end.
+ *
+ * @since Twenty Ten 2.6
+ */
+function twentyten_scripts_styles() {
+	// Theme block stylesheet.
+	wp_enqueue_style( 'twentyten-block-style', get_template_directory_uri() . '/blocks.css', array(), '20181218' );
+}
+add_action( 'wp_enqueue_scripts', 'twentyten_scripts_styles' );
+
+/**
+ * Enqueue styles for the block-based editor.
+ *
+ * @since Twenty Ten 2.6
+ */
+function twentyten_block_editor_styles() {
+	// Block styles.
+	wp_enqueue_style( 'twentyten-block-editor-style', get_template_directory_uri() . '/editor-blocks.css', array(), '20181218' );
+}
+add_action( 'enqueue_block_editor_assets', 'twentyten_block_editor_styles' );
+
+if ( ! function_exists( 'wp_body_open' ) ) :
+	/**
+	 * Fire the wp_body_open action.
+	 *
+	 * Added for backward compatibility to support pre-5.2.0 WordPress versions.
+	 *
+	 * @since Twenty Ten 2.9
+	 */
+	function wp_body_open() {
+		/**
+		 * Triggered after the opening <body> tag.
+		 *
+		 * @since Twenty Ten 2.9
+		 */
+		do_action( 'wp_body_open' );
+	}
+endif;
diff --git a/wp-content/themes/twentyten/header.php b/wp-content/themes/twentyten/header.php
index 23a186340..d38f7f55b 100644
--- a/wp-content/themes/twentyten/header.php
+++ b/wp-content/themes/twentyten/header.php
@@ -1,125 +1,132 @@
-<?php
-/**
- * Header template for our theme
- *
- * Displays all of the <head> section and everything up till <div id="main">.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?><!DOCTYPE html>
-<html <?php language_attributes(); ?>>
-<head>
-<meta charset="<?php bloginfo( 'charset' ); ?>" />
-<title>
-<?php
-	/*
-	 * Print the <title> tag based on what is being viewed.
-	 */
-	global $page, $paged;
-
-	wp_title( '|', true, 'right' );
-
-	// Add the blog name.
-	bloginfo( 'name' );
-
-	// Add the blog description for the home/front page.
-	$site_description = get_bloginfo( 'description', 'display' );
-if ( $site_description && ( is_home() || is_front_page() ) ) {
-	echo " | $site_description";
-}
-
-	// Add a page number if necessary:
-if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
-	echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
-}
-
-?>
-	</title>
-<link rel="profile" href="http://gmpg.org/xfn/11" />
-<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
-<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
-<?php
-	/*
-	 * We add some JavaScript to pages with the comment form
-	 * to support sites with threaded comments (when in use).
-	 */
-if ( is_singular() && get_option( 'thread_comments' ) ) {
-	wp_enqueue_script( 'comment-reply' );
-}
-
-	/*
-	 * Always have wp_head() just before the closing </head>
-	 * tag of your theme, or you will break many plugins, which
-	 * generally use this hook to add elements to <head> such
-	 * as styles, scripts, and meta tags.
-	 */
-	wp_head();
-?>
-</head>
-
-<body <?php body_class(); ?>>
-<?php wp_body_open(); ?>
-<div id="wrapper" class="hfeed">
-	<div id="header">
-		<div id="masthead">
-			<div id="branding" role="banner">
-				<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
-				<<?php echo $heading_tag; ?> id="site-title">
-					<span>
-						<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
-					</span>
-				</<?php echo $heading_tag; ?>>
-				<div id="site-description"><?php bloginfo( 'description' ); ?></div>
-
-				<?php
-					// Compatibility with versions of WordPress prior to 3.4.
-				if ( function_exists( 'get_custom_header' ) ) {
-					/*
-					 * We need to figure out what the minimum width should be for our featured image.
-					 * This result would be the suggested width if the theme were to implement flexible widths.
-					 */
-					$header_image_width = get_theme_support( 'custom-header', 'width' );
-				} else {
-					$header_image_width = HEADER_IMAGE_WIDTH;
-				}
-
-					// Check if this is a post or page, if it has a thumbnail, and if it's a big one
-				if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
-							has_post_thumbnail( $post->ID ) &&
-							( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
-							$image[1] >= $header_image_width ) :
-					// Houston, we have a new header image!
-					echo get_the_post_thumbnail( $post->ID );
-					elseif ( get_header_image() ) :
-						// Compatibility with versions of WordPress prior to 3.4.
-						if ( function_exists( 'get_custom_header' ) ) {
-							$header_image_width  = get_custom_header()->width;
-							$header_image_height = get_custom_header()->height;
-						} else {
-							$header_image_width  = HEADER_IMAGE_WIDTH;
-							$header_image_height = HEADER_IMAGE_HEIGHT;
-						}
-						?>
-						<img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
-					<?php endif; ?>
-			</div><!-- #branding -->
-
-			<div id="access" role="navigation">
-				<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
-				<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
-				<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
-				<?php
-				wp_nav_menu(
-					array(
-						'container_class' => 'menu-header',
-						'theme_location'  => 'primary',
-					)
-				);
-				?>
-			</div><!-- #access -->
-		</div><!-- #masthead -->
-	</div><!-- #header -->
-
-	<div id="main">
+<?php
+/**
+ * Header template for our theme
+ *
+ * Displays all of the <head> section and everything up till <div id="main">.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?><!DOCTYPE html>
+<html <?php language_attributes(); ?>>
+<head>
+<meta charset="<?php bloginfo( 'charset' ); ?>" />
+<title>
+<?php
+	/*
+	 * Print the <title> tag based on what is being viewed.
+	 */
+	global $page, $paged;
+
+	wp_title( '|', true, 'right' );
+
+	// Add the blog name.
+	bloginfo( 'name' );
+
+	// Add the blog description for the home/front page.
+	$site_description = get_bloginfo( 'description', 'display' );
+if ( $site_description && ( is_home() || is_front_page() ) ) {
+	echo " | $site_description";
+}
+
+	// Add a page number if necessary:
+if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
+	/* translators: %s: Page number. */
+	echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
+}
+
+?>
+	</title>
+<link rel="profile" href="http://gmpg.org/xfn/11" />
+<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?ver=20190507" />
+<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
+<?php
+	/*
+	 * We add some JavaScript to pages with the comment form
+	 * to support sites with threaded comments (when in use).
+	 */
+if ( is_singular() && get_option( 'thread_comments' ) ) {
+	wp_enqueue_script( 'comment-reply' );
+}
+
+	/*
+	 * Always have wp_head() just before the closing </head>
+	 * tag of your theme, or you will break many plugins, which
+	 * generally use this hook to add elements to <head> such
+	 * as styles, scripts, and meta tags.
+	 */
+	wp_head();
+?>
+</head>
+
+<body <?php body_class(); ?>>
+<?php wp_body_open(); ?>
+<div id="wrapper" class="hfeed">
+	<div id="header">
+		<div id="masthead">
+			<div id="branding" role="banner">
+				<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
+				<<?php echo $heading_tag; ?> id="site-title">
+					<span>
+						<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
+					</span>
+				</<?php echo $heading_tag; ?>>
+				<div id="site-description"><?php bloginfo( 'description' ); ?></div>
+
+				<?php
+					// Compatibility with versions of WordPress prior to 3.4.
+				if ( function_exists( 'get_custom_header' ) ) {
+					/*
+					 * We need to figure out what the minimum width should be for our featured image.
+					 * This result would be the suggested width if the theme were to implement flexible widths.
+					 */
+					$header_image_width = get_theme_support( 'custom-header', 'width' );
+				} else {
+					$header_image_width = HEADER_IMAGE_WIDTH;
+				}
+
+				// Check if this is a post or page, if it has a thumbnail, and if it's a big one.
+				if ( is_singular() && has_post_thumbnail( $post->ID ) ) {
+					$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) );
+					if ( $image && $image[1] >= $header_image_width ) {
+						// Houston, we have a new header image!
+						echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
+					}
+				} else {
+					// Compatibility with versions of WordPress prior to 3.4.
+					if ( function_exists( 'get_custom_header' ) ) {
+						$header_image_width  = get_custom_header()->width;
+						$header_image_height = get_custom_header()->height;
+					} else {
+						$header_image_width  = HEADER_IMAGE_WIDTH;
+						$header_image_height = HEADER_IMAGE_HEIGHT;
+					}
+					?>
+					<img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
+					<?php
+				} // End check for featured image or standard header.
+				?>
+			</div><!-- #branding -->
+
+			<div id="access" role="navigation">
+				<?php // Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. ?>
+				<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
+				<?php
+				/*
+				 * Our navigation menu. If one isn't filled out, wp_nav_menu() falls back to wp_page_menu().
+				 * The menu assigned to the primary location is the one used.
+				 * If one isn't assigned, the menu with the lowest ID is used.
+				 */
+				wp_nav_menu(
+					array(
+						'container_class' => 'menu-header',
+						'theme_location'  => 'primary',
+					)
+				);
+				?>
+			</div><!-- #access -->
+		</div><!-- #masthead -->
+	</div><!-- #header -->
+
+	<div id="main">
diff --git a/wp-content/themes/twentyten/index.php b/wp-content/themes/twentyten/index.php
index feaf44799..ff6116b2c 100644
--- a/wp-content/themes/twentyten/index.php
+++ b/wp-content/themes/twentyten/index.php
@@ -1,33 +1,33 @@
-<?php
-/**
- * Main template file
- *
- * This is the most generic template file in a WordPress theme
- * and one of the two required files for a theme (the other being style.css).
- * It is used to display a page when nothing more specific matches a query.
- * E.g., it puts together the home page when no home.php file exists.
- * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-			<?php
-			/*
-			 * Run the loop to output the posts.
-			 * If you want to overload this in a child theme then include a file
-			 * called loop-index.php and that will be used instead.
-			 */
-			get_template_part( 'loop', 'index' );
-			?>
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Main template file
+ *
+ * This is the most generic template file in a WordPress theme
+ * and one of the two required files for a theme (the other being style.css).
+ * It is used to display a page when nothing more specific matches a query.
+ * E.g., it puts together the home page when no home.php file exists.
+ * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+			<?php
+			/*
+			 * Run the loop to output the posts.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-index.php and that will be used instead.
+			 */
+			get_template_part( 'loop', 'index' );
+			?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/languages/twentyten.pot b/wp-content/themes/twentyten/languages/twentyten.pot
index e9fd3b8b5..9cf380bd0 100644
--- a/wp-content/themes/twentyten/languages/twentyten.pot
+++ b/wp-content/themes/twentyten/languages/twentyten.pot
@@ -1,423 +1,423 @@
-# Copyright (C) 2019 the WordPress team
-# This file is distributed under the GNU General Public License v2 or later.
-msgid ""
-msgstr ""
-"Project-Id-Version: Twenty Ten 2.9\n"
-"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/twentyten\n"
-"POT-Creation-Date: 2019-05-07 18:20:08+00:00\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-
-#: 404.php:16 loop.php:33
-msgid "Not Found"
-msgstr ""
-
-#: 404.php:18
-msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
-msgstr ""
-
-#: archive.php:35
-msgid "Daily Archives: <span>%s</span>"
-msgstr ""
-
-#: archive.php:37
-msgid "Monthly Archives: <span>%s</span>"
-msgstr ""
-
-#: archive.php:37
-msgctxt "monthly archives date format"
-msgid "F Y"
-msgstr ""
-
-#: archive.php:39
-msgid "Yearly Archives: <span>%s</span>"
-msgstr ""
-
-#: archive.php:39
-msgctxt "yearly archives date format"
-msgid "Y"
-msgstr ""
-
-#: archive.php:41
-msgid "Blog Archives"
-msgstr ""
-
-#: author.php:29
-msgid "Author Archives: %s"
-msgstr ""
-
-#: author.php:49 loop-single.php:57
-msgid "About %s"
-msgstr ""
-
-#: category.php:17
-msgid "Category Archives: %s"
-msgstr ""
-
-#: comments.php:18
-msgid "This post is password protected. Enter the password to view any comments."
-msgstr ""
-
-#. translators: %s: The post title.
-
-#: comments.php:40
-msgid "One Response to %s"
-msgstr ""
-
-#. translators: %1$s: The number of comments. %2$s: The post title.
-
-#: comments.php:46
-msgid "%1$s Response to %2$s"
-msgid_plural "%1$s Responses to %2$s"
-msgstr[0] ""
-msgstr[1] ""
-
-#: comments.php:56 comments.php:76
-msgid "<span class=\"meta-nav\">&larr;</span> Older Comments"
-msgstr ""
-
-#: comments.php:57 comments.php:77
-msgid "Newer Comments <span class=\"meta-nav\">&rarr;</span>"
-msgstr ""
-
-#: comments.php:88
-msgid "Comments are closed."
-msgstr ""
-
-#: footer.php:46
-msgid "https://wordpress.org/"
-msgstr ""
-
-#: footer.php:46
-msgid "Semantic Personal Publishing Platform"
-msgstr ""
-
-#: footer.php:47
-msgid "Proudly powered by %s."
-msgstr ""
-
-#: functions.php:92
-msgid "Blue"
-msgstr ""
-
-#: functions.php:97
-msgid "Black"
-msgstr ""
-
-#: functions.php:102
-msgid "Medium Gray"
-msgstr ""
-
-#: functions.php:107
-msgid "Light Gray"
-msgstr ""
-
-#: functions.php:112
-msgid "White"
-msgstr ""
-
-#: functions.php:137
-msgid "Primary Navigation"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:212
-msgid "Berries"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:218
-msgid "Cherry Blossoms"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:224
-msgid "Concave"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:230
-msgid "Fern"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:236
-msgid "Forest Floor"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:242
-msgid "Inkwell"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:248
-msgid "Path"
-msgstr ""
-
-#. translators: header image description
-
-#: functions.php:254
-msgid "Sunset"
-msgstr ""
-
-#: functions.php:329 loop-attachment.php:151 loop.php:124 loop.php:152
-msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
-msgstr ""
-
-#: functions.php:426
-msgid "%s <span class=\"says\">says:</span>"
-msgstr ""
-
-#: functions.php:429
-msgid "Your comment is awaiting moderation."
-msgstr ""
-
-#. translators: 1: date, 2: time
-
-#: functions.php:436
-msgid "%1$s at %2$s"
-msgstr ""
-
-#: functions.php:440 functions.php:467
-msgid "(Edit)"
-msgstr ""
-
-#: functions.php:467
-msgid "Pingback:"
-msgstr ""
-
-#: functions.php:488
-msgid "Primary Widget Area"
-msgstr ""
-
-#: functions.php:490
-msgid "Add widgets here to appear in your sidebar."
-msgstr ""
-
-#: functions.php:501
-msgid "Secondary Widget Area"
-msgstr ""
-
-#: functions.php:503
-msgid "An optional secondary widget area, displays below the primary widget area in your sidebar."
-msgstr ""
-
-#: functions.php:514
-msgid "First Footer Widget Area"
-msgstr ""
-
-#: functions.php:516 functions.php:529 functions.php:542 functions.php:555
-msgid "An optional widget area for your site footer."
-msgstr ""
-
-#: functions.php:527
-msgid "Second Footer Widget Area"
-msgstr ""
-
-#: functions.php:540
-msgid "Third Footer Widget Area"
-msgstr ""
-
-#: functions.php:553
-msgid "Fourth Footer Widget Area"
-msgstr ""
-
-#: functions.php:591
-msgid "<span class=\"%1$s\">Posted on</span> %2$s <span class=\"meta-sep\">by</span> %3$s"
-msgstr ""
-
-#: functions.php:602 loop-attachment.php:44
-msgid "View all posts by %s"
-msgstr ""
-
-#: functions.php:619
-msgid "This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
-msgstr ""
-
-#: functions.php:621
-msgid "This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
-msgstr ""
-
-#: functions.php:623
-msgid "Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
-msgstr ""
-
-#: header.php:35
-msgid "Page %s"
-msgstr ""
-
-#: header.php:111
-msgid "Skip to content"
-msgstr ""
-
-#: loop-attachment.php:25
-msgid "Return to %s"
-msgstr ""
-
-#. translators: %s - title of parent post
-
-#: loop-attachment.php:28
-msgid "<span class=\"meta-nav\">&larr;</span> %s"
-msgstr ""
-
-#: loop-attachment.php:39
-msgid "<span class=\"%1$s\">By</span> %2$s"
-msgstr ""
-
-#: loop-attachment.php:52
-msgid "<span class=\"%1$s\">Published</span> %2$s"
-msgstr ""
-
-#: loop-attachment.php:64
-msgid "Full size is %s pixels"
-msgstr ""
-
-#: loop-attachment.php:68
-msgid "Link to full-size image"
-msgstr ""
-
-#: loop-attachment.php:75 loop-attachment.php:165 loop-page.php:41
-#: loop-single.php:70 loop.php:109 loop.php:132 loop.php:181
-msgid "Edit"
-msgstr ""
-
-#: loop-attachment.php:155 loop-page.php:36 loop-single.php:41 loop.php:156
-msgid "Pages:"
-msgstr ""
-
-#: loop-single.php:25 loop-single.php:75
-msgctxt "Previous post link"
-msgid "&larr;"
-msgstr ""
-
-#: loop-single.php:26 loop-single.php:76
-msgctxt "Next post link"
-msgid "&rarr;"
-msgstr ""
-
-#: loop-single.php:61
-msgid "View all posts by %s <span class=\"meta-nav\">&rarr;</span>"
-msgstr ""
-
-#: loop.php:25 loop.php:194
-msgid "<span class=\"meta-nav\">&larr;</span> Older posts"
-msgstr ""
-
-#: loop.php:26 loop.php:195
-msgid "Newer posts <span class=\"meta-nav\">&rarr;</span>"
-msgstr ""
-
-#: loop.php:35
-msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
-msgstr ""
-
-#: loop.php:65 loop.php:104
-msgctxt "gallery category slug"
-msgid "gallery"
-msgstr ""
-
-#: loop.php:89
-msgid "This gallery contains <a %1$s>%2$s photo</a>."
-msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
-msgstr[0] ""
-msgstr[1] ""
-
-#: loop.php:90
-msgid "Permalink to %s"
-msgstr ""
-
-#: loop.php:102
-msgid "View Galleries"
-msgstr ""
-
-#: loop.php:102 loop.php:105
-msgid "More Galleries"
-msgstr ""
-
-#: loop.php:105
-msgid "View posts in the Gallery category"
-msgstr ""
-
-#: loop.php:108 loop.php:131 loop.php:180
-msgid "Leave a comment"
-msgstr ""
-
-#: loop.php:108 loop.php:131 loop.php:180
-msgid "1 Comment"
-msgstr ""
-
-#: loop.php:108 loop.php:131 loop.php:180
-msgid "% Comments"
-msgstr ""
-
-#: loop.php:115
-msgctxt "asides category slug"
-msgid "asides"
-msgstr ""
-
-#: loop.php:167
-msgid "<span class=\"%1$s\">Posted in</span> %2$s"
-msgstr ""
-
-#: loop.php:176
-msgid "<span class=\"%1$s\">Tagged</span> %2$s"
-msgstr ""
-
-#: search.php:16
-msgid "Search Results for: %s"
-msgstr ""
-
-#: search.php:27
-msgid "Nothing Found"
-msgstr ""
-
-#: search.php:29
-msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
-msgstr ""
-
-#: sidebar.php:29
-msgid "Archives"
-msgstr ""
-
-#: sidebar.php:36
-msgid "Meta"
-msgstr ""
-
-#: tag.php:17
-msgid "Tag Archives: %s"
-msgstr ""
-#. Theme Name of the plugin/theme
-msgid "Twenty Ten"
-msgstr ""
-
-#. Theme URI of the plugin/theme
-msgid "https://wordpress.org/themes/twentyten/"
-msgstr ""
-
-#. Description of the plugin/theme
-msgid "The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the \"Asides\" and \"Gallery\" categories, and has an optional one-column page template that removes the sidebar."
-msgstr ""
-
-#. Author of the plugin/theme
-msgid "the WordPress team"
-msgstr ""
-
-#. Author URI of the plugin/theme
-msgid "https://wordpress.org/"
-msgstr ""
-
-#. Template Name of the plugin/theme
-msgid "One column, no sidebar"
-msgstr ""
+# Copyright (C) 2019 the WordPress team
+# This file is distributed under the GNU General Public License v2 or later.
+msgid ""
+msgstr ""
+"Project-Id-Version: Twenty Ten 2.9\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/twentyten\n"
+"POT-Creation-Date: 2019-05-07 18:20:08+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+
+#: 404.php:16 loop.php:33
+msgid "Not Found"
+msgstr ""
+
+#: 404.php:18
+msgid "Apologies, but the page you requested could not be found. Perhaps searching will help."
+msgstr ""
+
+#: archive.php:35
+msgid "Daily Archives: <span>%s</span>"
+msgstr ""
+
+#: archive.php:37
+msgid "Monthly Archives: <span>%s</span>"
+msgstr ""
+
+#: archive.php:37
+msgctxt "monthly archives date format"
+msgid "F Y"
+msgstr ""
+
+#: archive.php:39
+msgid "Yearly Archives: <span>%s</span>"
+msgstr ""
+
+#: archive.php:39
+msgctxt "yearly archives date format"
+msgid "Y"
+msgstr ""
+
+#: archive.php:41
+msgid "Blog Archives"
+msgstr ""
+
+#: author.php:29
+msgid "Author Archives: %s"
+msgstr ""
+
+#: author.php:49 loop-single.php:57
+msgid "About %s"
+msgstr ""
+
+#: category.php:17
+msgid "Category Archives: %s"
+msgstr ""
+
+#: comments.php:18
+msgid "This post is password protected. Enter the password to view any comments."
+msgstr ""
+
+#. translators: %s: The post title.
+
+#: comments.php:40
+msgid "One Response to %s"
+msgstr ""
+
+#. translators: %1$s: The number of comments. %2$s: The post title.
+
+#: comments.php:46
+msgid "%1$s Response to %2$s"
+msgid_plural "%1$s Responses to %2$s"
+msgstr[0] ""
+msgstr[1] ""
+
+#: comments.php:56 comments.php:76
+msgid "<span class=\"meta-nav\">&larr;</span> Older Comments"
+msgstr ""
+
+#: comments.php:57 comments.php:77
+msgid "Newer Comments <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: comments.php:88
+msgid "Comments are closed."
+msgstr ""
+
+#: footer.php:46
+msgid "https://wordpress.org/"
+msgstr ""
+
+#: footer.php:46
+msgid "Semantic Personal Publishing Platform"
+msgstr ""
+
+#: footer.php:47
+msgid "Proudly powered by %s."
+msgstr ""
+
+#: functions.php:92
+msgid "Blue"
+msgstr ""
+
+#: functions.php:97
+msgid "Black"
+msgstr ""
+
+#: functions.php:102
+msgid "Medium Gray"
+msgstr ""
+
+#: functions.php:107
+msgid "Light Gray"
+msgstr ""
+
+#: functions.php:112
+msgid "White"
+msgstr ""
+
+#: functions.php:137
+msgid "Primary Navigation"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:212
+msgid "Berries"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:218
+msgid "Cherry Blossoms"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:224
+msgid "Concave"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:230
+msgid "Fern"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:236
+msgid "Forest Floor"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:242
+msgid "Inkwell"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:248
+msgid "Path"
+msgstr ""
+
+#. translators: header image description
+
+#: functions.php:254
+msgid "Sunset"
+msgstr ""
+
+#: functions.php:329 loop-attachment.php:151 loop.php:124 loop.php:152
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: functions.php:426
+msgid "%s <span class=\"says\">says:</span>"
+msgstr ""
+
+#: functions.php:429
+msgid "Your comment is awaiting moderation."
+msgstr ""
+
+#. translators: 1: date, 2: time
+
+#: functions.php:436
+msgid "%1$s at %2$s"
+msgstr ""
+
+#: functions.php:440 functions.php:467
+msgid "(Edit)"
+msgstr ""
+
+#: functions.php:467
+msgid "Pingback:"
+msgstr ""
+
+#: functions.php:488
+msgid "Primary Widget Area"
+msgstr ""
+
+#: functions.php:490
+msgid "Add widgets here to appear in your sidebar."
+msgstr ""
+
+#: functions.php:501
+msgid "Secondary Widget Area"
+msgstr ""
+
+#: functions.php:503
+msgid "An optional secondary widget area, displays below the primary widget area in your sidebar."
+msgstr ""
+
+#: functions.php:514
+msgid "First Footer Widget Area"
+msgstr ""
+
+#: functions.php:516 functions.php:529 functions.php:542 functions.php:555
+msgid "An optional widget area for your site footer."
+msgstr ""
+
+#: functions.php:527
+msgid "Second Footer Widget Area"
+msgstr ""
+
+#: functions.php:540
+msgid "Third Footer Widget Area"
+msgstr ""
+
+#: functions.php:553
+msgid "Fourth Footer Widget Area"
+msgstr ""
+
+#: functions.php:591
+msgid "<span class=\"%1$s\">Posted on</span> %2$s <span class=\"meta-sep\">by</span> %3$s"
+msgstr ""
+
+#: functions.php:602 loop-attachment.php:44
+msgid "View all posts by %s"
+msgstr ""
+
+#: functions.php:619
+msgid "This entry was posted in %1$s and tagged %2$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
+msgstr ""
+
+#: functions.php:621
+msgid "This entry was posted in %1$s. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
+msgstr ""
+
+#: functions.php:623
+msgid "Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
+msgstr ""
+
+#: header.php:35
+msgid "Page %s"
+msgstr ""
+
+#: header.php:111
+msgid "Skip to content"
+msgstr ""
+
+#: loop-attachment.php:25
+msgid "Return to %s"
+msgstr ""
+
+#. translators: %s - title of parent post
+
+#: loop-attachment.php:28
+msgid "<span class=\"meta-nav\">&larr;</span> %s"
+msgstr ""
+
+#: loop-attachment.php:39
+msgid "<span class=\"%1$s\">By</span> %2$s"
+msgstr ""
+
+#: loop-attachment.php:52
+msgid "<span class=\"%1$s\">Published</span> %2$s"
+msgstr ""
+
+#: loop-attachment.php:64
+msgid "Full size is %s pixels"
+msgstr ""
+
+#: loop-attachment.php:68
+msgid "Link to full-size image"
+msgstr ""
+
+#: loop-attachment.php:75 loop-attachment.php:165 loop-page.php:41
+#: loop-single.php:70 loop.php:109 loop.php:132 loop.php:181
+msgid "Edit"
+msgstr ""
+
+#: loop-attachment.php:155 loop-page.php:36 loop-single.php:41 loop.php:156
+msgid "Pages:"
+msgstr ""
+
+#: loop-single.php:25 loop-single.php:75
+msgctxt "Previous post link"
+msgid "&larr;"
+msgstr ""
+
+#: loop-single.php:26 loop-single.php:76
+msgctxt "Next post link"
+msgid "&rarr;"
+msgstr ""
+
+#: loop-single.php:61
+msgid "View all posts by %s <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: loop.php:25 loop.php:194
+msgid "<span class=\"meta-nav\">&larr;</span> Older posts"
+msgstr ""
+
+#: loop.php:26 loop.php:195
+msgid "Newer posts <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: loop.php:35
+msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
+msgstr ""
+
+#: loop.php:65 loop.php:104
+msgctxt "gallery category slug"
+msgid "gallery"
+msgstr ""
+
+#: loop.php:89
+msgid "This gallery contains <a %1$s>%2$s photo</a>."
+msgid_plural "This gallery contains <a %1$s>%2$s photos</a>."
+msgstr[0] ""
+msgstr[1] ""
+
+#: loop.php:90
+msgid "Permalink to %s"
+msgstr ""
+
+#: loop.php:102
+msgid "View Galleries"
+msgstr ""
+
+#: loop.php:102 loop.php:105
+msgid "More Galleries"
+msgstr ""
+
+#: loop.php:105
+msgid "View posts in the Gallery category"
+msgstr ""
+
+#: loop.php:108 loop.php:131 loop.php:180
+msgid "Leave a comment"
+msgstr ""
+
+#: loop.php:108 loop.php:131 loop.php:180
+msgid "1 Comment"
+msgstr ""
+
+#: loop.php:108 loop.php:131 loop.php:180
+msgid "% Comments"
+msgstr ""
+
+#: loop.php:115
+msgctxt "asides category slug"
+msgid "asides"
+msgstr ""
+
+#: loop.php:167
+msgid "<span class=\"%1$s\">Posted in</span> %2$s"
+msgstr ""
+
+#: loop.php:176
+msgid "<span class=\"%1$s\">Tagged</span> %2$s"
+msgstr ""
+
+#: search.php:16
+msgid "Search Results for: %s"
+msgstr ""
+
+#: search.php:27
+msgid "Nothing Found"
+msgstr ""
+
+#: search.php:29
+msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
+msgstr ""
+
+#: sidebar.php:29
+msgid "Archives"
+msgstr ""
+
+#: sidebar.php:36
+msgid "Meta"
+msgstr ""
+
+#: tag.php:17
+msgid "Tag Archives: %s"
+msgstr ""
+#. Theme Name of the plugin/theme
+msgid "Twenty Ten"
+msgstr ""
+
+#. Theme URI of the plugin/theme
+msgid "https://wordpress.org/themes/twentyten/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid "The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the \"Asides\" and \"Gallery\" categories, and has an optional one-column page template that removes the sidebar."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "the WordPress team"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "https://wordpress.org/"
+msgstr ""
+
+#. Template Name of the plugin/theme
+msgid "One column, no sidebar"
+msgstr ""
diff --git a/wp-content/themes/twentyten/license.txt b/wp-content/themes/twentyten/license.txt
index 5fbe4a70a..d31195ab0 100644
--- a/wp-content/themes/twentyten/license.txt
+++ b/wp-content/themes/twentyten/license.txt
@@ -1,281 +1,281 @@
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc. 
-              51 Franklin St, Fifth Floor, Boston, MA 02110, USA
-
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-		    GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-  2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections
-    1 and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable.  However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-  5. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-  7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded.  In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation.  If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission.  For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this.  Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-			    NO WARRANTY
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc. 
+              51 Franklin St, Fifth Floor, Boston, MA 02110, USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php
index 72ae51107..fd339d323 100644
--- a/wp-content/themes/twentyten/loop-attachment.php
+++ b/wp-content/themes/twentyten/loop-attachment.php
@@ -1,172 +1,182 @@
-<?php
-/**
- * The loop that displays an attachment
- *
- * The loop displays the posts and the post content. See
- * https://codex.wordpress.org/The_Loop to understand it and
- * https://codex.wordpress.org/Template_Tags to understand
- * the tags used in it.
- *
- * This can be overridden in child themes with loop-attachment.php.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.2
- */
-?>
-
-<?php
-if ( have_posts() ) {
-	while ( have_posts() ) :
-		the_post();
-		?>
-
-				<?php if ( ! empty( $post->post_parent ) ) : ?>
-					<p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) ) ); ?>" rel="gallery">
-																<?php
-																/* translators: %s - title of parent post */
-																printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
-																?>
-					</a></p>
-				<?php endif; ?>
-
-					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-					<h2 class="entry-title"><?php the_title(); ?></h2>
-
-					<div class="entry-meta">
-						<?php
-							printf(
-								__( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
-								'meta-prep meta-prep-author',
-								sprintf(
-									'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
-									get_author_posts_url( get_the_author_meta( 'ID' ) ),
-									esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
-									get_the_author()
-								)
-							);
-						?>
-							<span class="meta-sep">|</span>
-							<?php
-							printf(
-								__( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
-								'meta-prep meta-prep-entry-date',
-								sprintf(
-									'<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
-									esc_attr( get_the_time() ),
-									get_the_date()
-								)
-							);
-							if ( wp_attachment_is_image() ) {
-								echo ' <span class="meta-sep">|</span> ';
-								$metadata = wp_get_attachment_metadata();
-								printf(
-									__( 'Full size is %s pixels', 'twentyten' ),
-									sprintf(
-										'<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
-										esc_url( wp_get_attachment_url() ),
-										esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
-										$metadata['width'],
-										$metadata['height']
-									)
-								);
-							}
-							?>
-							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
-						</div><!-- .entry-meta -->
-
-						<div class="entry-content">
-						<div class="entry-attachment">
-		<?php
-		if ( wp_attachment_is_image() ) :
-			$attachments = array_values(
-				get_children(
-					array(
-						'post_parent'    => $post->post_parent,
-						'post_status'    => 'inherit',
-						'post_type'      => 'attachment',
-						'post_mime_type' => 'image',
-						'order'          => 'ASC',
-						'orderby'        => 'menu_order ID',
-					)
-				)
-			);
-			foreach ( $attachments as $k => $attachment ) {
-				if ( $attachment->ID == $post->ID ) {
-					break;
-				}
-			}
-
-			// If there is more than 1 image attachment in a gallery
-			if ( count( $attachments ) > 1 ) {
-				$k++;
-				if ( isset( $attachments[ $k ] ) ) {
-					// get the URL of the next image attachment
-					$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
-				} else {          // or get the URL of the first image attachment
-					$next_attachment_url = get_attachment_link( $attachments[0]->ID );
-				}
-			} else {
-				// or, if there's only 1 image attachment, get the URL of the image
-				$next_attachment_url = wp_get_attachment_url();
-			}
-			?>
-						<p class="attachment"><a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment">
-																	<?php
-																	/**
-																	 * Filter the Twenty Ten default attachment width.
-																	 *
-																	 * @since Twenty Ten 1.0
-																	 *
-																	 * @param int The default attachment width in pixels. Default 900.
-																	 */
-																	$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
-																	/**
-																	 * Filter the Twenty Ten default attachment height.
-																	 *
-																	 * @since Twenty Ten 1.0
-																	 *
-																	 * @param int The default attachment height in pixels. Default 900.
-																	 */
-																	$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
-																	echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height.
-																	?>
-							</a></p>
-
-							<div id="nav-below" class="navigation">
-							<div class="nav-previous"><?php previous_image_link( false ); ?></div>
-							<div class="nav-next"><?php next_image_link( false ); ?></div>
-						</div><!-- #nav-below -->
-		<?php else : ?>
-						<a href="<?php echo esc_url( wp_get_attachment_url() ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo esc_html( wp_basename( get_permalink() ) ); ?></a>
-	<?php endif; ?>
-						</div><!-- .entry-attachment -->
-						<div class="entry-caption">
-						<?php
-						if ( ! empty( $post->post_excerpt ) ) {
-							the_excerpt();}
-						?>
-</div>
-
-		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-		<?php
-		wp_link_pages(
-			array(
-				'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
-				'after'  => '</div>',
-			)
-		);
-		?>
-
-					</div><!-- .entry-content -->
-
-					<div class="entry-utility">
-						<?php twentyten_posted_in(); ?>
-						<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
-					</div><!-- .entry-utility -->
-				</div><!-- #post-<?php the_ID(); ?> -->
-
-		<?php comments_template(); ?>
-
-<?php endwhile;
-}; // end of the loop. ?>
+<?php
+/**
+ * The loop that displays an attachment
+ *
+ * The loop displays the posts and the post content. See
+ * https://developer.wordpress.org/themes/basics/the-loop/ to understand it and
+ * https://developer.wordpress.org/themes/basics/template-tags/ to understand
+ * the tags used in it.
+ *
+ * This can be overridden in child themes with loop-attachment.php.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.2
+ */
+?>
+
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
+
+				<?php
+				if ( ! empty( $post->post_parent ) ) :
+					/* translators: %s: Post title. */
+					$post_tile = sprintf( __( 'Return to %s', 'twentyten' ), strip_tags( get_the_title( $post->post_parent ) ) );
+					?>
+					<p class="page-title"><a href="<?php echo esc_url( get_permalink( $post->post_parent ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>" rel="gallery">
+						<?php
+						/* translators: %s: Title of parent post. */
+						printf( __( '<span class="meta-nav">&larr;</span> %s', 'twentyten' ), get_the_title( $post->post_parent ) );
+						?>
+					</a></p>
+				<?php endif; ?>
+
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h2 class="entry-title"><?php the_title(); ?></h2>
+
+					<div class="entry-meta">
+						<?php
+							printf(
+								/* translators: %s: Author display name. */
+								__( '<span class="%1$s">By</span> %2$s', 'twentyten' ),
+								'meta-prep meta-prep-author',
+								sprintf(
+									'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
+									get_author_posts_url( get_the_author_meta( 'ID' ) ),
+									/* translators: %s: Author display name. */
+									esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ),
+									get_the_author()
+								)
+							);
+						?>
+							<span class="meta-sep">|</span>
+							<?php
+							printf(
+								/* translators: 1: CSS classes, 2: Date. */
+								__( '<span class="%1$s">Published</span> %2$s', 'twentyten' ),
+								'meta-prep meta-prep-entry-date',
+								sprintf(
+									'<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
+									esc_attr( get_the_time() ),
+									get_the_date()
+								)
+							);
+							if ( wp_attachment_is_image() ) {
+								echo ' <span class="meta-sep">|</span> ';
+								$metadata = wp_get_attachment_metadata();
+								printf(
+									/* translators: %s: Image dimensions. */
+									__( 'Full size is %s pixels', 'twentyten' ),
+									sprintf(
+										'<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
+										esc_url( wp_get_attachment_url() ),
+										esc_attr( __( 'Link to full-size image', 'twentyten' ) ),
+										$metadata['width'],
+										$metadata['height']
+									)
+								);
+							}
+							?>
+							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
+						</div><!-- .entry-meta -->
+
+						<div class="entry-content">
+						<div class="entry-attachment">
+		<?php
+		if ( wp_attachment_is_image() ) :
+			$attachments = array_values(
+				get_children(
+					array(
+						'post_parent'    => $post->post_parent,
+						'post_status'    => 'inherit',
+						'post_type'      => 'attachment',
+						'post_mime_type' => 'image',
+						'order'          => 'ASC',
+						'orderby'        => 'menu_order ID',
+					)
+				)
+			);
+			foreach ( $attachments as $k => $attachment ) {
+				if ( $attachment->ID == $post->ID ) {
+					break;
+				}
+			}
+
+			// If there is more than 1 image attachment in a gallery...
+			if ( count( $attachments ) > 1 ) {
+				$k++;
+				if ( isset( $attachments[ $k ] ) ) {
+					// ...get the URL of the next image attachment.
+					$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
+				} else {
+					// ...or get the URL of the first image attachment.
+					$next_attachment_url = get_attachment_link( $attachments[0]->ID );
+				}
+			} else {
+				// Or, if there's only 1 image attachment, get the URL of the image.
+				$next_attachment_url = wp_get_attachment_url();
+			}
+			?>
+						<p class="attachment"><a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment">
+							<?php
+							/**
+							 * Filter the Twenty Ten default attachment width.
+							 *
+							 * @since Twenty Ten 1.0
+							 *
+							 * @param int The default attachment width in pixels. Default 900.
+							 */
+							$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
+							/**
+							 * Filter the Twenty Ten default attachment height.
+							 *
+							 * @since Twenty Ten 1.0
+							 *
+							 * @param int The default attachment height in pixels. Default 900.
+							 */
+							$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
+							// Filterable image width with, essentially, no limit for image height.
+							echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) );
+							?>
+							</a></p>
+
+							<div id="nav-below" class="navigation">
+							<div class="nav-previous"><?php previous_image_link( false ); ?></div>
+							<div class="nav-next"><?php next_image_link( false ); ?></div>
+						</div><!-- #nav-below -->
+		<?php else : ?>
+						<a href="<?php echo esc_url( wp_get_attachment_url() ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"><?php echo esc_html( wp_basename( get_permalink() ) ); ?></a>
+	<?php endif; ?>
+						</div><!-- .entry-attachment -->
+						<div class="entry-caption">
+						<?php
+						if ( ! empty( $post->post_excerpt ) ) {
+							the_excerpt();}
+						?>
+</div>
+
+		<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+		<?php
+		wp_link_pages(
+			array(
+				'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+				'after'  => '</div>',
+			)
+		);
+		?>
+
+					</div><!-- .entry-content -->
+
+					<div class="entry-utility">
+						<?php twentyten_posted_in(); ?>
+						<?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
+					</div><!-- .entry-utility -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+		<?php comments_template(); ?>
+
+<?php endwhile;
+}; // End of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop-page.php b/wp-content/themes/twentyten/loop-page.php
index 988512baa..d0a5abb68 100644
--- a/wp-content/themes/twentyten/loop-page.php
+++ b/wp-content/themes/twentyten/loop-page.php
@@ -1,48 +1,48 @@
-<?php
-/**
- * The loop that displays a page
- *
- * The loop displays the posts and the post content. See
- * https://codex.wordpress.org/The_Loop to understand it and
- * https://codex.wordpress.org/Template_Tags to understand
- * the tags used in it.
- *
- * This can be overridden in child themes with loop-page.php.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.2
- */
-?>
-
-<?php
-if ( have_posts() ) {
-	while ( have_posts() ) :
-		the_post();
-		?>
-
-				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-					<?php if ( is_front_page() ) { ?>
-						<h2 class="entry-title"><?php the_title(); ?></h2>
-					<?php } else { ?>
-						<h1 class="entry-title"><?php the_title(); ?></h1>
-					<?php } ?>
-
-					<div class="entry-content">
-						<?php the_content(); ?>
-						<?php
-						wp_link_pages(
-							array(
-								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
-								'after'  => '</div>',
-							)
-						);
-						?>
-						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
-					</div><!-- .entry-content -->
-				</div><!-- #post-<?php the_ID(); ?> -->
-
-				<?php comments_template( '', true ); ?>
-
-<?php endwhile;
-}; // end of the loop. ?>
+<?php
+/**
+ * The loop that displays a page
+ *
+ * The loop displays the posts and the post content. See
+ * https://developer.wordpress.org/themes/basics/the-loop/ to understand it and
+ * https://developer.wordpress.org/themes/basics/template-tags/ to understand
+ * the tags used in it.
+ *
+ * This can be overridden in child themes with loop-page.php.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.2
+ */
+?>
+
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<?php if ( is_front_page() ) { ?>
+						<h2 class="entry-title"><?php the_title(); ?></h2>
+					<?php } else { ?>
+						<h1 class="entry-title"><?php the_title(); ?></h1>
+					<?php } ?>
+
+					<div class="entry-content">
+						<?php the_content(); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+								'after'  => '</div>',
+							)
+						);
+						?>
+						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+					</div><!-- .entry-content -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+				<?php comments_template( '', true ); ?>
+
+<?php endwhile;
+}; // End of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop-single.php b/wp-content/themes/twentyten/loop-single.php
index cff6a0bd6..55b09b25a 100644
--- a/wp-content/themes/twentyten/loop-single.php
+++ b/wp-content/themes/twentyten/loop-single.php
@@ -1,82 +1,91 @@
-<?php
-/**
- * The loop that displays a single post
- *
- * The loop displays the posts and the post content. See
- * https://codex.wordpress.org/The_Loop to understand it and
- * https://codex.wordpress.org/Template_Tags to understand
- * the tags used in it.
- *
- * This can be overridden in child themes with loop-single.php.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.2
- */
-?>
-
-<?php
-if ( have_posts() ) {
-	while ( have_posts() ) :
-		the_post();
-		?>
-
-				<div id="nav-above" class="navigation">
-					<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
-					<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
-				</div><!-- #nav-above -->
-
-				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-					<h1 class="entry-title"><?php the_title(); ?></h1>
-
-					<div class="entry-meta">
-						<?php twentyten_posted_on(); ?>
-					</div><!-- .entry-meta -->
-
-					<div class="entry-content">
-						<?php the_content(); ?>
-						<?php
-						wp_link_pages(
-							array(
-								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
-								'after'  => '</div>',
-							)
-						);
-						?>
-					</div><!-- .entry-content -->
-
-		<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
-					<div id="entry-author-info">
-						<div id="author-avatar">
-							<?php
-							/** This filter is documented in author.php */
-							echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) );
-							?>
-							</div><!-- #author-avatar -->
-							<div id="author-description">
-							<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
-							<?php the_author_meta( 'description' ); ?>
-							<div id="author-link">
-								<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
-									<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentyten' ), get_the_author() ); ?>
-								</a>
-							</div><!-- #author-link	-->
-							</div><!-- #author-description -->
-						</div><!-- #entry-author-info -->
-	<?php endif; ?>
-
-						<div class="entry-utility">
-							<?php twentyten_posted_in(); ?>
-							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
-						</div><!-- .entry-utility -->
-					</div><!-- #post-<?php the_ID(); ?> -->
-
-					<div id="nav-below" class="navigation">
-						<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
-						<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
-					</div><!-- #nav-below -->
-
-					<?php comments_template( '', true ); ?>
-
-	<?php endwhile;
-}; // end of the loop. ?>
+<?php
+/**
+ * The loop that displays a single post
+ *
+ * The loop displays the posts and the post content. See
+ * https://developer.wordpress.org/themes/basics/the-loop/ to understand it and
+ * https://developer.wordpress.org/themes/basics/template-tags/ to understand
+ * the tags used in it.
+ *
+ * This can be overridden in child themes with loop-single.php.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.2
+ */
+?>
+
+<?php
+if ( have_posts() ) {
+	while ( have_posts() ) :
+		the_post();
+		?>
+
+				<div id="nav-above" class="navigation">
+					<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
+					<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
+				</div><!-- #nav-above -->
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h1 class="entry-title"><?php the_title(); ?></h1>
+
+					<div class="entry-meta">
+						<?php twentyten_posted_on(); ?>
+					</div><!-- .entry-meta -->
+
+					<div class="entry-content">
+						<?php the_content(); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+								'after'  => '</div>',
+							)
+						);
+						?>
+					</div><!-- .entry-content -->
+
+		<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries. ?>
+					<div id="entry-author-info">
+						<div id="author-avatar">
+							<?php
+							/** This filter is documented in author.php */
+							$author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 );
+							echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
+							?>
+							</div><!-- #author-avatar -->
+							<div id="author-description">
+							<h2>
+							<?php
+							/* translators: %s: Author display name. */
+							printf( __( 'About %s', 'twentyten' ), get_the_author() );
+							?>
+							</h2>
+							<?php the_author_meta( 'description' ); ?>
+							<div id="author-link">
+								<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
+									<?php
+									/* translators: %s: Author display name. */
+									printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentyten' ), get_the_author() );
+									?>
+								</a>
+							</div><!-- #author-link	-->
+							</div><!-- #author-description -->
+						</div><!-- #entry-author-info -->
+	<?php endif; ?>
+
+						<div class="entry-utility">
+							<?php twentyten_posted_in(); ?>
+							<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+						</div><!-- .entry-utility -->
+					</div><!-- #post-<?php the_ID(); ?> -->
+
+					<div id="nav-below" class="navigation">
+						<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
+						<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
+					</div><!-- #nav-below -->
+
+					<?php comments_template( '', true ); ?>
+
+	<?php endwhile;
+}; // End of the loop. ?>
diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php
index 8b205a804..7798f4206 100644
--- a/wp-content/themes/twentyten/loop.php
+++ b/wp-content/themes/twentyten/loop.php
@@ -1,197 +1,208 @@
-<?php
-/**
- * The loop that displays posts
- *
- * The loop displays the posts and the post content. See
- * https://codex.wordpress.org/The_Loop to understand it and
- * https://codex.wordpress.org/Template_Tags to understand
- * the tags used in it.
- *
- * This can be overridden in child themes with loop.php or
- * loop-template.php, where 'template' is the loop context
- * requested by a template. For example, loop-index.php would
- * be used if it exists and we ask for the loop with:
- * <code>get_template_part( 'loop', 'index' );</code>
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?>
-
-<?php /* Display navigation to next/previous pages when applicable */ ?>
-<?php if ( $wp_query->max_num_pages > 1 ) : ?>
-	<div id="nav-above" class="navigation">
-		<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
-		<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
-	</div><!-- #nav-above -->
-<?php endif; ?>
-
-<?php /* If there are no posts to display, such as an empty archive page */ ?>
-<?php if ( ! have_posts() ) : ?>
-	<div id="post-0" class="post error404 not-found">
-		<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
-		<div class="entry-content">
-			<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
-			<?php get_search_form(); ?>
-		</div><!-- .entry-content -->
-	</div><!-- #post-0 -->
-<?php endif; ?>
-
-<?php
-	/*
-	 * Start the Loop.
-	 *
-	 * In Twenty Ten we use the same loop in multiple contexts.
-	 * It is broken into three main parts: when we're displaying
-	 * posts that are in the gallery category, when we're displaying
-	 * posts in the asides category, and finally all other posts.
-	 *
-	 * Additionally, we sometimes check for whether we are on an
-	 * archive page, a search page, etc., allowing for small differences
-	 * in the loop on each template without actually duplicating
-	 * the rest of the loop that is shared.
-	 *
-	 * Without further ado, the loop:
-	 */
-?>
-<?php
-while ( have_posts() ) :
-	the_post();
-	?>
-
-	<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
-
-	<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
-		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
-
-			<div class="entry-meta">
-				<?php twentyten_posted_on(); ?>
-			</div><!-- .entry-meta -->
-
-			<div class="entry-content">
-		<?php if ( post_password_required() ) : ?>
-				<?php the_content(); ?>
-<?php else : ?>
-				<?php
-					$images = twentyten_get_gallery_images();
-				if ( $images ) :
-					$total_images = count( $images );
-					$image        = reset( $images );
-					?>
-					<div class="gallery-thumb">
-						<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
-					</div><!-- .gallery-thumb -->
-					<p><em>
-					<?php
-						printf(
-							_n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
-							'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
-							number_format_i18n( $total_images )
-						);
-					?>
-							</em></p>
-				<?php endif; // end twentyten_get_gallery_images() check ?>
-						<?php the_excerpt(); ?>
-<?php endif; ?>
-			</div><!-- .entry-content -->
-
-			<div class="entry-utility">
-			<?php if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) : ?>
-				<a href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
-				<span class="meta-sep">|</span>
-			<?php elseif ( $gallery = get_term_by( 'slug', _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' ) && in_category( $gallery->term_id ) ) : ?>
-				<a href="<?php echo esc_url( get_category_link( $gallery ) ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
-				<span class="meta-sep">|</span>
-			<?php endif; ?>
-				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
-				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
-			</div><!-- .entry-utility -->
-		</div><!-- #post-<?php the_ID(); ?> -->
-
-		<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
-
-	<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?>
-		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-
-		<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
-			<div class="entry-summary">
-				<?php the_excerpt(); ?>
-			</div><!-- .entry-summary -->
-		<?php else : ?>
-			<div class="entry-content">
-				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-			</div><!-- .entry-content -->
-		<?php endif; ?>
-
-			<div class="entry-utility">
-				<?php twentyten_posted_on(); ?>
-				<span class="meta-sep">|</span>
-				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
-				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
-			</div><!-- .entry-utility -->
-		</div><!-- #post-<?php the_ID(); ?> -->
-
-		<?php /* How to display all other posts. */ ?>
-
-	<?php else : ?>
-		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
-
-			<div class="entry-meta">
-				<?php twentyten_posted_on(); ?>
-			</div><!-- .entry-meta -->
-
-		<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
-			<div class="entry-summary">
-				<?php the_excerpt(); ?>
-			</div><!-- .entry-summary -->
-	<?php else : ?>
-			<div class="entry-content">
-				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
-				<?php
-				wp_link_pages(
-					array(
-						'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
-						'after'  => '</div>',
-					)
-				);
-				?>
-			</div><!-- .entry-content -->
-	<?php endif; ?>
-
-			<div class="entry-utility">
-				<?php if ( count( get_the_category() ) ) : ?>
-					<span class="cat-links">
-						<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
-					</span>
-					<span class="meta-sep">|</span>
-				<?php endif; ?>
-				<?php
-					$tags_list = get_the_tag_list( '', ', ' );
-				if ( $tags_list ) :
-					?>
-				<span class="tag-links">
-					<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
-				</span>
-				<span class="meta-sep">|</span>
-				<?php endif; ?>
-				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
-				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
-			</div><!-- .entry-utility -->
-		</div><!-- #post-<?php the_ID(); ?> -->
-
-		<?php comments_template( '', true ); ?>
-
-	<?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
-
-<?php endwhile; // End the loop. Whew. ?>
-
-<?php /* Display navigation to next/previous pages when applicable */ ?>
-<?php if ( $wp_query->max_num_pages > 1 ) : ?>
-				<div id="nav-below" class="navigation">
-					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
-					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
-				</div><!-- #nav-below -->
-<?php endif; ?>
+<?php
+/**
+ * The loop that displays posts
+ *
+ * The loop displays the posts and the post content. See
+ * https://developer.wordpress.org/themes/basics/the-loop/ to understand it and
+ * https://developer.wordpress.org/themes/basics/template-tags/ to understand
+ * the tags used in it.
+ *
+ * This can be overridden in child themes with loop.php or
+ * loop-template.php, where 'template' is the loop context
+ * requested by a template. For example, loop-index.php would
+ * be used if it exists and we ask for the loop with:
+ * <code>get_template_part( 'loop', 'index' );</code>
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?>
+
+<?php // Display navigation to next/previous pages when applicable. ?>
+<?php if ( $wp_query->max_num_pages > 1 ) : ?>
+	<div id="nav-above" class="navigation">
+		<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
+		<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+	</div><!-- #nav-above -->
+<?php endif; ?>
+
+<?php /* If there are no posts to display, such as an empty archive page */ ?>
+<?php if ( ! have_posts() ) : ?>
+	<div id="post-0" class="post error404 not-found">
+		<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
+		<div class="entry-content">
+			<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
+			<?php get_search_form(); ?>
+		</div><!-- .entry-content -->
+	</div><!-- #post-0 -->
+<?php endif; ?>
+
+<?php
+	/*
+	 * Start the Loop.
+	 *
+	 * In Twenty Ten we use the same loop in multiple contexts.
+	 * It is broken into three main parts: when we're displaying
+	 * posts that are in the gallery category, when we're displaying
+	 * posts in the asides category, and finally all other posts.
+	 *
+	 * Additionally, we sometimes check for whether we are on an
+	 * archive page, a search page, etc., allowing for small differences
+	 * in the loop on each template without actually duplicating
+	 * the rest of the loop that is shared.
+	 *
+	 * Without further ado, the loop:
+	 */
+?>
+<?php
+while ( have_posts() ) :
+	the_post();
+	?>
+
+	<?php /* How to display posts of the Gallery format. The gallery category is the old way. */ ?>
+
+	<?php if ( ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) || in_category( _x( 'gallery', 'gallery category slug', 'twentyten' ) ) ) : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+			<div class="entry-meta">
+				<?php twentyten_posted_on(); ?>
+			</div><!-- .entry-meta -->
+
+			<div class="entry-content">
+		<?php if ( post_password_required() ) : ?>
+				<?php the_content(); ?>
+<?php else : ?>
+				<?php
+					$images = twentyten_get_gallery_images();
+				if ( $images ) :
+					$total_images = count( $images );
+					$image        = reset( $images );
+					?>
+					<div class="gallery-thumb">
+						<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo wp_get_attachment_image( $image, 'thumbnail' ); ?></a>
+					</div><!-- .gallery-thumb -->
+					<p><em>
+					<?php
+						printf(
+							/* translators: 1: HTML tag attributes, 2: Image count. */
+							_n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ),
+							/* translators: %s: Post title. */
+							'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"',
+							number_format_i18n( $total_images )
+						);
+					?>
+							</em></p>
+				<?php endif; // End twentyten_get_gallery_images() check. ?>
+						<?php the_excerpt(); ?>
+<?php endif; ?>
+			</div><!-- .entry-content -->
+
+			<div class="entry-utility">
+			<?php
+			$gallery = get_term_by( 'slug', _x( 'gallery', 'gallery category slug', 'twentyten' ), 'category' );
+			if ( function_exists( 'get_post_format' ) && 'gallery' == get_post_format( $post->ID ) ) :
+				?>
+				<a href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php esc_attr_e( 'View Galleries', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
+				<span class="meta-sep">|</span>
+			<?php elseif ( $gallery && in_category( $gallery->term_id ) ) : ?>
+				<a href="<?php echo esc_url( get_category_link( $gallery ) ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
+				<span class="meta-sep">|</span>
+			<?php endif; ?>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
+			</div><!-- .entry-utility -->
+		</div><!-- #post-<?php the_ID(); ?> -->
+
+		<?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
+
+	<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+		<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
+			<div class="entry-summary">
+				<?php the_excerpt(); ?>
+			</div><!-- .entry-summary -->
+		<?php else : ?>
+			<div class="entry-content">
+				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+			</div><!-- .entry-content -->
+		<?php endif; ?>
+
+			<div class="entry-utility">
+				<?php twentyten_posted_on(); ?>
+				<span class="meta-sep">|</span>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
+			</div><!-- .entry-utility -->
+		</div><!-- #post-<?php the_ID(); ?> -->
+
+		<?php /* How to display all other posts. */ ?>
+
+	<?php else : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+			<div class="entry-meta">
+				<?php twentyten_posted_on(); ?>
+			</div><!-- .entry-meta -->
+
+		<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
+			<div class="entry-summary">
+				<?php the_excerpt(); ?>
+			</div><!-- .entry-summary -->
+	<?php else : ?>
+			<div class="entry-content">
+				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+				<?php
+				wp_link_pages(
+					array(
+						'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ),
+						'after'  => '</div>',
+					)
+				);
+				?>
+			</div><!-- .entry-content -->
+	<?php endif; ?>
+
+			<div class="entry-utility">
+				<?php if ( count( get_the_category() ) ) : ?>
+					<span class="cat-links">
+						<?php
+						/* translators: 1: CSS classes, 2: Category list. */
+						printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) );
+						?>
+					</span>
+					<span class="meta-sep">|</span>
+				<?php endif; ?>
+				<?php
+					$tags_list = get_the_tag_list( '', ', ' );
+				if ( $tags_list ) :
+					?>
+				<span class="tag-links">
+					<?php
+					/* translators: 1: CSS classes, 2: Category list. */
+					printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
+					?>
+				</span>
+				<span class="meta-sep">|</span>
+				<?php endif; ?>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
+			</div><!-- .entry-utility -->
+		</div><!-- #post-<?php the_ID(); ?> -->
+
+		<?php comments_template( '', true ); ?>
+
+	<?php endif; // This was the if statement that broke the loop into three parts based on categories. ?>
+
+<?php endwhile; // End of the loop. Whew. ?>
+
+<?php // Display navigation to next/previous pages when applicable. ?>
+<?php if ( $wp_query->max_num_pages > 1 ) : ?>
+				<div id="nav-below" class="navigation">
+					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
+					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+				</div><!-- #nav-below -->
+<?php endif; ?>
diff --git a/wp-content/themes/twentyten/onecolumn-page.php b/wp-content/themes/twentyten/onecolumn-page.php
index 457e04bbd..1a3700f10 100644
--- a/wp-content/themes/twentyten/onecolumn-page.php
+++ b/wp-content/themes/twentyten/onecolumn-page.php
@@ -1,32 +1,32 @@
-<?php
-/**
- * Template Name: One column, no sidebar
- *
- * A custom page template without sidebar.
- *
- * The "Template Name:" bit above allows this to be selectable
- * from a dropdown menu on the edit page screen.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container" class="one-column">
-			<div id="content" role="main">
-
-			<?php
-			/*
-			 * Run the loop to output the page.
-			 * If you want to overload this in a child theme then include a file
-			 * called loop-page.php and that will be used instead.
-			 */
-			get_template_part( 'loop', 'page' );
-			?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_footer(); ?>
+<?php
+/**
+ * Template Name: One column, no sidebar
+ *
+ * A custom page template without sidebar.
+ *
+ * The "Template Name:" bit above allows this to be selectable
+ * from a dropdown menu on the edit page screen.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container" class="one-column">
+			<div id="content" role="main">
+
+			<?php
+			/*
+			 * Run the loop to output the page.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-page.php and that will be used instead.
+			 */
+			get_template_part( 'loop', 'page' );
+			?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/page.php b/wp-content/themes/twentyten/page.php
index 70029db04..e59cc0d0f 100644
--- a/wp-content/themes/twentyten/page.php
+++ b/wp-content/themes/twentyten/page.php
@@ -1,33 +1,33 @@
-<?php
-/**
- * Template for displaying all pages
- *
- * This is the template that displays all pages by default.
- * Please note that this is the WordPress construct of pages
- * and that other 'pages' on your WordPress site will use a
- * different template.
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-			<?php
-			/*
-			 * Run the loop to output the page.
-			 * If you want to overload this in a child theme then include a file
-			 * called loop-page.php and that will be used instead.
-			 */
-			get_template_part( 'loop', 'page' );
-			?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying all pages
+ *
+ * This is the template that displays all pages by default.
+ * Please note that this is the WordPress construct of pages
+ * and that other 'pages' on your WordPress site will use a
+ * different template.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+			<?php
+			/*
+			 * Run the loop to output the page.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-page.php and that will be used instead.
+			 */
+			get_template_part( 'loop', 'page' );
+			?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/readme.txt b/wp-content/themes/twentyten/readme.txt
index 75dfde80c..9ff478d25 100644
--- a/wp-content/themes/twentyten/readme.txt
+++ b/wp-content/themes/twentyten/readme.txt
@@ -1,9 +1,7 @@
 === Twenty Ten ===
 Contributors: wordpressdotorg
-Requires at least: WordPress 3.0
-Tested up to: WordPress 5.0
-Requires PHP: 5.2.4
-Stable tag: 2.9
+Tested up to: 5.0
+Stable tag: 3.0
 License: GPLv2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
@@ -23,7 +21,7 @@ For more information about Twenty Ten theme please go to https://codex.wordpress
 
 == Copyright ==
 
-Twenty Ten WordPress Theme, Copyright 2010-2018 WordPress.org & Automattic.com
+Twenty Ten WordPress Theme, Copyright 2010-2020 WordPress.org & Automattic.com
 Twenty Ten is Distributed under the terms of the GNU GPL
 
 This program is free software: you can redistribute it and/or modify
@@ -38,6 +36,11 @@ GNU General Public License for more details.
 
 == Changelog ==
 
+= 3.0 =
+* Released: March 31, 2020
+
+https://codex.wordpress.org/Twenty_Ten_Theme_Changelog#Version_3.0
+
 = 2.9 =
 * Released: May 7, 2019
 
diff --git a/wp-content/themes/twentyten/rtl.css b/wp-content/themes/twentyten/rtl.css
index f74839921..bb2c5a464 100644
--- a/wp-content/themes/twentyten/rtl.css
+++ b/wp-content/themes/twentyten/rtl.css
@@ -1,290 +1,292 @@
-/*
-Theme Name: Twenty Ten
-*/
-
-
-/*
-RTL Basics
-*/
-
-
-body {
-	direction:rtl;
-	unicode-bidi:embed;
-}
-
-
-/*
-LAYOUT: Two-Column (Right)
-DESCRIPTION: Two-column fixed layout with one sidebar right of content
-*/
-
-#container {
-	float: right;
-	margin: 0 0 0 -240px;
-}
-#content {
-	margin: 0 20px 36px 280px;
-}
-#primary,
-#secondary {
-	float: left;
-}
-#secondary {
-	clear: left;
-}
-
-
-/* =Fonts
--------------------------------------------------------------- */
-body,
-input,
-textarea,
-.page-title span,
-.pingback a.url,
-h3#comments-title,
-h3#reply-title,
-#access .menu,
-#access div.menu ul,
-#cancel-comment-reply-link,
-.form-allowed-tags,
-#site-info,
-#site-title,
-#wp-calendar,
-.comment-meta,
-.comment-body tr th,
-.comment-body thead th,
-.entry-content label,
-.entry-content tr th,
-.entry-content thead th,
-.entry-meta,
-.entry-title,
-.entry-utility,
-#respond label,
-.navigation,
-.page-title,
-.pingback p,
-.reply,
-.widget-title,
-input[type="submit"] {
-	font-family: Arial, Tahoma, sans-serif;
-}
-
-/* =Structure
--------------------------------------------------------------- */
-
-/* The main theme structure */
-#footer-widget-area .widget-area {
-	float: right;
-	margin-left: 20px;
-	margin-right: 0;
-}
-#footer-widget-area #fourth {
-	margin-left: 0;
-}
-#site-info {
-	float: right;
-}
-#site-generator {
-	float: left;
-}
-
-
-/* =Global Elements
--------------------------------------------------------------- */
-
-/* Text elements */
-ul, ol {
-	margin: 0 1.5em 18px 0;
-}
-blockquote {
-	font-style: normal;
-}
-
-
-/* =Header
--------------------------------------------------------------- */
-
-#site-title {
-	float: right;
-}
-#site-description {
-	clear: left;
-	float: left;
-	font-style: normal;
-}
-#branding img {
-	float: right;
-}
-
-/* =Menu
--------------------------------------------------------------- */
-
-#access {
-	float:right;
-}
-
-#access .menu-header,
-div.menu {
-	margin-right: 12px;
-	margin-left: 0;
-}
-
-#access .menu-header li,
-div.menu li{
-	float:right;
-}
-
-#access ul ul {
-	left:auto;
-	right:0;
-	float:right;
-}
-#access ul ul ul {
-	left:auto;
-	right:100%;
-}
-
-/* =Content
--------------------------------------------------------------- */
-
-#content table {
-	text-align: right;
-	margin: 0 0 24px -1px;
-}
-.page-title span {
-	font-style:normal;
-}
-.entry-title,
-.entry-meta {
-	clear: right;
-	float: right;
-	margin-left: 68px;
-	margin-right: 0;
-}
-
-.entry-content input.file,
-.entry-content input.button {
-	margin-left: 24px;
-	margin-right:0;
-}
-.entry-content blockquote.left {
-	float: right;
-	margin-right: 0;
-	margin-left: 24px;
-	text-align: left;
-}
-.entry-content blockquote.right {
-	float: left;
-	margin-right: 24px;
-	margin-left: 0;
-	text-align: right;
-}
-#entry-author-info #author-avatar {
-	float: right;
-	margin: 0 0 0 -104px;
-}
-#entry-author-info #author-description {
-	float: right;
-	margin: 0 104px 0 0;
-}
-
-/* Gallery listing
--------------------------------------------------------------- */
-
-.category-gallery .gallery-thumb {
-	float: right;
-	margin-left:20px;
-	margin-right:0;
-}
-
-
-/* Images
--------------------------------------------------------------- */
-
-#content .gallery .gallery-caption {
-	margin-right: 0;
-}
-
-#content .gallery .gallery-item {
-	float: right;
-}
-
-/* =Navigation
--------------------------------------------------------------- */
-.nav-previous {
-	float: right;
-}
-.nav-next {
-	float: left;
-	text-align:left;
-}
-
-/* =Comments
--------------------------------------------------------------- */
-
-.commentlist li.comment {
-	padding: 0 56px 0 0;
-}
-.commentlist .avatar {
-	right: 0;
-	left: auto;
-}
-.comment-author .says, #comments .pingback .url  {
-	font-style: normal;
-}
-
-/* Comments form */
-.children #respond {
-	margin: 0 0 0 48px;
-}
-#respond #wp-comment-cookies-consent {
-	margin: 0 0 0 10px;
-}
-
-/* =Widget Areas
--------------------------------------------------------------- */
-
-.widget-area ul {
-	margin-right: 0;
-}
-.widget-area ul ul {
-	margin-right: 1.3em;
-	margin-left: 0;
-}
-#wp-calendar caption {
-	text-align: right;
-}
-#wp-calendar tfoot #next {
-	text-align: left;
-}
-
-/* Main sidebars */
-#main .widget-area ul {
-	margin-right: 0;
-	padding: 0 0 0 20px;
-}
-#main .widget-area ul ul {
-	margin-right: 1.3em;
-	margin-left: 0;
-}
-.widget_text ol {
-	margin-left: auto;
-	margin-right: 1.3em;
-}
-
-#main .widget-area .tagcloud ul,
-.widget-area .tagcloud ul {
-	margin-right: 0;
-}
-
-/* =Footer
--------------------------------------------------------------- */
-#site-generator {
-	font-style:normal;
-}
-#site-generator a {
-	background-position: right center;
-	padding-right: 20px;
-	padding-left: 0;
+/*
+Theme Name: Twenty Ten
+*/
+
+
+/*
+RTL Basics
+*/
+
+
+body {
+	direction:rtl;
+	unicode-bidi:embed;
+}
+
+
+/*
+LAYOUT: Two-Column (Right)
+DESCRIPTION: Two-column fixed layout with one sidebar right of content
+*/
+
+#container {
+	float: right;
+	margin: 0 0 0 -240px;
+}
+#content {
+	margin: 0 20px 36px 280px;
+}
+#primary,
+#secondary {
+	float: left;
+}
+#secondary {
+	clear: left;
+}
+
+
+/* =Fonts
+-------------------------------------------------------------- */
+body,
+input,
+textarea,
+.page-title span,
+.pingback a.url,
+h3#comments-title,
+h3#reply-title,
+#access .menu,
+#access div.menu ul,
+#cancel-comment-reply-link,
+.form-allowed-tags,
+#site-info,
+#site-title,
+#wp-calendar,
+.calendar_wrap,
+.comment-meta,
+.comment-body tr th,
+.comment-body thead th,
+.entry-content label,
+.entry-content tr th,
+.entry-content thead th,
+.entry-meta,
+.entry-title,
+.entry-utility,
+#respond label,
+.navigation,
+.page-title,
+.pingback p,
+.reply,
+.widget-title,
+input[type="submit"] {
+	font-family: Arial, Tahoma, sans-serif;
+}
+
+/* =Structure
+-------------------------------------------------------------- */
+
+/* The main theme structure */
+#footer-widget-area .widget-area {
+	float: right;
+	margin-left: 20px;
+	margin-right: 0;
+}
+#footer-widget-area #fourth {
+	margin-left: 0;
+}
+#site-info {
+	float: right;
+}
+#site-generator {
+	float: left;
+}
+
+
+/* =Global Elements
+-------------------------------------------------------------- */
+
+/* Text elements */
+ul, ol {
+	margin: 0 1.5em 18px 0;
+}
+blockquote {
+	font-style: normal;
+}
+
+
+/* =Header
+-------------------------------------------------------------- */
+
+#site-title {
+	float: right;
+}
+#site-description {
+	clear: left;
+	float: left;
+	font-style: normal;
+}
+#branding img {
+	float: right;
+}
+
+/* =Menu
+-------------------------------------------------------------- */
+
+#access {
+	float:right;
+}
+
+#access .menu-header,
+div.menu {
+	margin-right: 12px;
+	margin-left: 0;
+}
+
+#access .menu-header li,
+div.menu li{
+	float:right;
+}
+
+#access ul ul {
+	left:auto;
+	right:0;
+	float:right;
+}
+#access ul ul ul {
+	left:auto;
+	right:100%;
+}
+
+/* =Content
+-------------------------------------------------------------- */
+
+#content table {
+	text-align: right;
+	margin: 0 0 24px -1px;
+}
+.page-title span {
+	font-style:normal;
+}
+.entry-title,
+.entry-meta {
+	clear: right;
+	float: right;
+	margin-left: 68px;
+	margin-right: 0;
+}
+
+.entry-content input.file,
+.entry-content input.button {
+	margin-left: 24px;
+	margin-right:0;
+}
+.entry-content blockquote.left {
+	float: right;
+	margin-right: 0;
+	margin-left: 24px;
+	text-align: left;
+}
+.entry-content blockquote.right {
+	float: left;
+	margin-right: 24px;
+	margin-left: 0;
+	text-align: right;
+}
+#entry-author-info #author-avatar {
+	float: right;
+	margin: 0 0 0 -104px;
+}
+#entry-author-info #author-description {
+	float: right;
+	margin: 0 104px 0 0;
+}
+
+/* Gallery listing
+-------------------------------------------------------------- */
+
+.category-gallery .gallery-thumb {
+	float: right;
+	margin-left:20px;
+	margin-right:0;
+}
+
+
+/* Images
+-------------------------------------------------------------- */
+
+#content .gallery .gallery-caption {
+	margin-right: 0;
+}
+
+#content .gallery .gallery-item {
+	float: right;
+}
+
+/* =Navigation
+-------------------------------------------------------------- */
+.nav-previous {
+	float: right;
+}
+.nav-next {
+	float: left;
+	text-align:left;
+}
+
+/* =Comments
+-------------------------------------------------------------- */
+
+.commentlist li.comment {
+	padding: 0 56px 0 0;
+}
+.commentlist .avatar {
+	right: 0;
+	left: auto;
+}
+.comment-author .says, #comments .pingback .url  {
+	font-style: normal;
+}
+
+/* Comments form */
+.children #respond {
+	margin: 0 0 0 48px;
+}
+#respond #wp-comment-cookies-consent {
+	margin: 0 0 0 10px;
+}
+
+/* =Widget Areas
+-------------------------------------------------------------- */
+
+.widget-area ul {
+	margin-right: 0;
+}
+.widget-area ul ul {
+	margin-right: 1.3em;
+	margin-left: 0;
+}
+#wp-calendar caption {
+	text-align: right;
+}
+.wp-calendar-nav-next,
+#wp-calendar tfoot #next {
+	text-align: left;
+}
+
+/* Main sidebars */
+#main .widget-area ul {
+	margin-right: 0;
+	padding: 0 0 0 20px;
+}
+#main .widget-area ul ul {
+	margin-right: 1.3em;
+	margin-left: 0;
+}
+.widget_text ol {
+	margin-left: auto;
+	margin-right: 1.3em;
+}
+
+#main .widget-area .tagcloud ul,
+.widget-area .tagcloud ul {
+	margin-right: 0;
+}
+
+/* =Footer
+-------------------------------------------------------------- */
+#site-generator {
+	font-style:normal;
+}
+#site-generator a {
+	background-position: right center;
+	padding-right: 20px;
+	padding-left: 0;
 }
\ No newline at end of file
diff --git a/wp-content/themes/twentyten/search.php b/wp-content/themes/twentyten/search.php
index a3fa97bd6..fff7d20f5 100644
--- a/wp-content/themes/twentyten/search.php
+++ b/wp-content/themes/twentyten/search.php
@@ -1,38 +1,43 @@
-<?php
-/**
- * Template for displaying Search Results pages
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-<?php if ( have_posts() ) : ?>
-				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
-				<?php
-				/*
-				 * Run the loop for the search to output the results.
-				 * If you want to overload this in a child theme then include a file
-				 * called loop-search.php and that will be used instead.
-				 */
-				get_template_part( 'loop', 'search' );
-				?>
-<?php else : ?>
-				<div id="post-0" class="post no-results not-found">
-					<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
-					<div class="entry-content">
-						<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
-						<?php get_search_form(); ?>
-					</div><!-- .entry-content -->
-				</div><!-- #post-0 -->
-<?php endif; ?>
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying Search Results pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+<?php if ( have_posts() ) : ?>
+				<h1 class="page-title">
+				<?php
+				/* translators: %s: Search query. */
+				printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' );
+				?>
+				</h1>
+				<?php
+				/*
+				 * Run the loop for the search to output the results.
+				 * If you want to overload this in a child theme then include a file
+				 * called loop-search.php and that will be used instead.
+				 */
+				get_template_part( 'loop', 'search' );
+				?>
+<?php else : ?>
+				<div id="post-0" class="post no-results not-found">
+					<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
+					<div class="entry-content">
+						<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
+						<?php get_search_form(); ?>
+					</div><!-- .entry-content -->
+				</div><!-- #post-0 -->
+<?php endif; ?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/sidebar-footer.php b/wp-content/themes/twentyten/sidebar-footer.php
index b4480ee51..45338c7d0 100644
--- a/wp-content/themes/twentyten/sidebar-footer.php
+++ b/wp-content/themes/twentyten/sidebar-footer.php
@@ -1,62 +1,62 @@
-<?php
-/**
- * The Footer widget areas
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?>
-
-<?php
-	/*
-	 * The footer widget area is triggered if any of the areas
-	 * have widgets. So let's check that first.
-	 *
-	 * If none of the sidebars have widgets, then let's bail early.
-	 */
-if ( ! is_active_sidebar( 'first-footer-widget-area' )
-		&& ! is_active_sidebar( 'second-footer-widget-area' )
-		&& ! is_active_sidebar( 'third-footer-widget-area' )
-		&& ! is_active_sidebar( 'fourth-footer-widget-area' )
-	) {
-	return;
-}
-	// If we get this far, we have widgets. Let do this.
-?>
-
-			<div id="footer-widget-area" role="complementary">
-
-<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
-				<div id="first" class="widget-area">
-					<ul class="xoxo">
-						<?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
-					</ul>
-				</div><!-- #first .widget-area -->
-<?php endif; ?>
-
-<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
-				<div id="second" class="widget-area">
-					<ul class="xoxo">
-						<?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
-					</ul>
-				</div><!-- #second .widget-area -->
-<?php endif; ?>
-
-<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
-				<div id="third" class="widget-area">
-					<ul class="xoxo">
-						<?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
-					</ul>
-				</div><!-- #third .widget-area -->
-<?php endif; ?>
-
-<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
-				<div id="fourth" class="widget-area">
-					<ul class="xoxo">
-						<?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
-					</ul>
-				</div><!-- #fourth .widget-area -->
-<?php endif; ?>
-
-			</div><!-- #footer-widget-area -->
+<?php
+/**
+ * The Footer widget areas
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?>
+
+<?php
+	/*
+	 * The footer widget area is triggered if any of the areas
+	 * have widgets. So let's check that first.
+	 *
+	 * If none of the sidebars have widgets, then let's bail early.
+	 */
+if ( ! is_active_sidebar( 'first-footer-widget-area' )
+		&& ! is_active_sidebar( 'second-footer-widget-area' )
+		&& ! is_active_sidebar( 'third-footer-widget-area' )
+		&& ! is_active_sidebar( 'fourth-footer-widget-area' )
+	) {
+	return;
+}
+	// If we get this far, we have widgets. Let do this.
+?>
+
+			<div id="footer-widget-area" role="complementary">
+
+<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
+				<div id="first" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #first .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
+				<div id="second" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #second .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
+				<div id="third" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #third .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
+				<div id="fourth" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #fourth .widget-area -->
+<?php endif; ?>
+
+			</div><!-- #footer-widget-area -->
diff --git a/wp-content/themes/twentyten/sidebar.php b/wp-content/themes/twentyten/sidebar.php
index 40018d2f4..8d62c08b5 100644
--- a/wp-content/themes/twentyten/sidebar.php
+++ b/wp-content/themes/twentyten/sidebar.php
@@ -1,59 +1,59 @@
-<?php
-/**
- * Sidebar template containing the primary and secondary widget areas
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-?>
-
-		<div id="primary" class="widget-area" role="complementary">
-			<ul class="xoxo">
-
-<?php
-	/*
-	 * When we call the dynamic_sidebar() function, it'll spit out
-	 * the widgets for that widget area. If it instead returns false,
-	 * then the sidebar simply doesn't exist, so we'll hard-code in
-	 * some default sidebar stuff just in case.
-	 */
-if ( ! dynamic_sidebar( 'primary-widget-area' ) ) :
-	?>
-
-			<li id="search" class="widget-container widget_search">
-				<?php get_search_form(); ?>
-			</li>
-
-			<li id="archives" class="widget-container">
-				<h3 class="widget-title"><?php _e( 'Archives', 'twentyten' ); ?></h3>
-				<ul>
-					<?php wp_get_archives( 'type=monthly' ); ?>
-				</ul>
-			</li>
-
-			<li id="meta" class="widget-container">
-				<h3 class="widget-title"><?php _e( 'Meta', 'twentyten' ); ?></h3>
-				<ul>
-					<?php wp_register(); ?>
-					<li><?php wp_loginout(); ?></li>
-					<?php wp_meta(); ?>
-				</ul>
-			</li>
-
-		<?php endif; // end primary widget area ?>
-			</ul>
-		</div><!-- #primary .widget-area -->
-
-<?php
-	// A second sidebar for widgets, just because.
-if ( is_active_sidebar( 'secondary-widget-area' ) ) :
-	?>
-
-		<div id="secondary" class="widget-area" role="complementary">
-			<ul class="xoxo">
-				<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
-			</ul>
-		</div><!-- #secondary .widget-area -->
-
-<?php endif; ?>
+<?php
+/**
+ * Sidebar template containing the primary and secondary widget areas
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+?>
+
+		<div id="primary" class="widget-area" role="complementary">
+			<ul class="xoxo">
+
+<?php
+	/*
+	 * When we call the dynamic_sidebar() function, it'll spit out
+	 * the widgets for that widget area. If it instead returns false,
+	 * then the sidebar simply doesn't exist, so we'll hard-code in
+	 * some default sidebar stuff just in case.
+	 */
+if ( ! dynamic_sidebar( 'primary-widget-area' ) ) :
+	?>
+
+			<li id="search" class="widget-container widget_search">
+				<?php get_search_form(); ?>
+			</li>
+
+			<li id="archives" class="widget-container">
+				<h3 class="widget-title"><?php _e( 'Archives', 'twentyten' ); ?></h3>
+				<ul>
+					<?php wp_get_archives( 'type=monthly' ); ?>
+				</ul>
+			</li>
+
+			<li id="meta" class="widget-container">
+				<h3 class="widget-title"><?php _e( 'Meta', 'twentyten' ); ?></h3>
+				<ul>
+					<?php wp_register(); ?>
+					<li><?php wp_loginout(); ?></li>
+					<?php wp_meta(); ?>
+				</ul>
+			</li>
+
+		<?php endif; // End primary widget area. ?>
+			</ul>
+		</div><!-- #primary .widget-area -->
+
+<?php
+	// A second sidebar for widgets, just because.
+if ( is_active_sidebar( 'secondary-widget-area' ) ) :
+	?>
+
+		<div id="secondary" class="widget-area" role="complementary">
+			<ul class="xoxo">
+				<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
+			</ul>
+		</div><!-- #secondary .widget-area -->
+
+<?php endif; ?>
diff --git a/wp-content/themes/twentyten/single.php b/wp-content/themes/twentyten/single.php
index 4e64ec779..7b98e5273 100644
--- a/wp-content/themes/twentyten/single.php
+++ b/wp-content/themes/twentyten/single.php
@@ -1,28 +1,28 @@
-<?php
-/**
- * Template for displaying all single posts
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-			<?php
-			/*
-			 * Run the loop to output the post.
-			 * If you want to overload this in a child theme then include a file
-			 * called loop-single.php and that will be used instead.
-			 */
-			get_template_part( 'loop', 'single' );
-			?>
-
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying all single posts
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+			<?php
+			/*
+			 * Run the loop to output the post.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-single.php and that will be used instead.
+			 */
+			get_template_part( 'loop', 'single' );
+			?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentyten/style.css b/wp-content/themes/twentyten/style.css
index 454ec741b..2f0781bf3 100644
--- a/wp-content/themes/twentyten/style.css
+++ b/wp-content/themes/twentyten/style.css
@@ -1,1439 +1,1450 @@
-/*
-Theme Name: Twenty Ten
-Theme URI: https://wordpress.org/themes/twentyten/
-Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
-Author: the WordPress team
-Author URI: https://wordpress.org/
-Version: 2.9
-License: GNU General Public License v2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
-Text Domain: twentyten
-*/
-
-
-/* =Reset default browser CSS. Based on work by Eric Meyer.
--------------------------------------------------------------- */
-
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, font, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td {
-	background: transparent;
-	border: 0;
-	margin: 0;
-	padding: 0;
-	vertical-align: baseline;
-}
-body {
-	line-height: 1;
-}
-h1, h2, h3, h4, h5, h6 {
-	clear: both;
-	font-weight: normal;
-}
-ol, ul {
-	list-style: none;
-}
-blockquote {
-	quotes: none;
-}
-blockquote:before, blockquote:after {
-	content: '';
-	content: none;
-}
-del {
-	text-decoration: line-through;
-}
-/* tables still need 'cellspacing="0"' in the markup */
-table {
-	border-collapse: collapse;
-	border-spacing: 0;
-}
-a img {
-	border: none;
-}
-
-/* =Layout
--------------------------------------------------------------- */
-
-/*
-LAYOUT: Two columns
-DESCRIPTION: Two-column fixed layout with one sidebar right of content
-*/
-
-#container {
-	float: left;
-	margin: 0 -240px 0 0;
-	width: 100%;
-}
-#content {
-	margin: 0 280px 0 20px;
-}
-#primary,
-#secondary {
-	float: right;
-	overflow: hidden;
-	width: 220px;
-}
-#secondary {
-	clear: right;
-}
-#footer {
-	clear: both;
-	width: 100%;
-}
-
-/*
-LAYOUT: One column, no sidebar
-DESCRIPTION: One centered column with no sidebar
-*/
-
-.one-column #content {
-	margin: 0 auto;
-	width: 640px;
-}
-
-/*
-LAYOUT: Full width, no sidebar
-DESCRIPTION: Full width content with no sidebar; used for attachment pages
-*/
-
-.single-attachment #content {
-	margin: 0 auto;
-	width: 900px;
-}
-
-
-/* =Fonts
--------------------------------------------------------------- */
-body,
-input,
-textarea,
-.page-title span,
-.pingback a.url {
-	font-family: Georgia, "Bitstream Charter", serif;
-}
-h3#comments-title,
-h3#reply-title,
-#access .menu,
-#access div.menu ul,
-#cancel-comment-reply-link,
-.form-allowed-tags,
-#site-info,
-#site-title,
-#wp-calendar,
-.comment-meta,
-.comment-body tr th,
-.comment-body thead th,
-.entry-content label,
-.entry-content tr th,
-.entry-content thead th,
-.entry-meta,
-.entry-title,
-.entry-utility,
-#respond label,
-.navigation,
-.page-title,
-.pingback p,
-.reply,
-.widget-title,
-.wp-caption-text {
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-input[type="submit"] {
-	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
-}
-pre {
-	font-family: "Courier 10 Pitch", Courier, monospace;
-}
-code {
-	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
-}
-
-
-/* =Structure
--------------------------------------------------------------- */
-
-/* The main theme structure */
-#access .menu-header,
-div.menu,
-#colophon,
-#branding,
-#main,
-#wrapper {
-	margin: 0 auto;
-	width: 940px;
-}
-#wrapper {
-	background: #fff;
-	margin-top: 20px;
-	padding: 0 20px;
-}
-
-/* Structure the footer area */
-#footer-widget-area {
-	overflow: hidden;
-}
-#footer-widget-area .widget-area {
-	float: left;
-	margin-right: 20px;
-	width: 220px;
-}
-#footer-widget-area #fourth {
-	margin-right: 0;
-}
-#site-info {
-	float: left;
-	font-size: 14px;
-	font-weight: bold;
-	width: 700px;
-}
-#site-generator {
-	float: right;
-	width: 220px;
-}
-
-
-/* =Global Elements
--------------------------------------------------------------- */
-
-/* Main global 'theme' and typographic styles */
-body {
-	background: #f1f1f1;
-}
-body,
-input,
-textarea {
-	color: #666;
-	font-size: 12px;
-	line-height: 18px;
-}
-hr {
-	background-color: #e7e7e7;
-	border: 0;
-	clear: both;
-	height: 1px;
-	margin-bottom: 18px;
-}
-
-/* Text elements */
-p {
-	margin-bottom: 18px;
-}
-ul {
-	list-style: square;
-	margin: 0 0 18px 1.5em;
-}
-ol {
-	list-style: decimal;
-	margin: 0 0 18px 1.5em;
-}
-ol ol {
-	list-style: upper-alpha;
-}
-ol ol ol {
-	list-style: lower-roman;
-}
-ol ol ol ol {
-	list-style: lower-alpha;
-}
-ul ul,
-ol ol,
-ul ol,
-ol ul {
-	margin-bottom: 0;
-}
-dl {
-	margin: 0 0 24px 0;
-}
-dt {
-	font-weight: bold;
-}
-dd {
-	margin-bottom: 18px;
-}
-strong {
-	font-weight: bold;
-}
-cite,
-em,
-i {
-	font-style: italic;
-}
-big {
-	font-size: 131.25%;
-}
-ins {
-	background: #ffc;
-	text-decoration: none;
-}
-blockquote {
-	font-style: italic;
-	padding: 0 3em;
-}
-blockquote cite,
-blockquote em,
-blockquote i {
-	font-style: normal;
-}
-pre {
-	background: #f7f7f7;
-	color: #222;
-	line-height: 18px;
-	margin-bottom: 18px;
-	overflow: auto;
-	padding: 1.5em;
-}
-abbr,
-acronym {
-	border-bottom: 1px dotted #666;
-	cursor: help;
-}
-sup,
-sub {
-	height: 0;
-	line-height: 1;
-	position: relative;
-	vertical-align: baseline;
-}
-sup {
-	bottom: 1ex;
-}
-sub {
-	top: .5ex;
-}
-small {
-	font-size: smaller;
-}
-input[type="text"],
-input[type="password"],
-input[type="email"],
-input[type="url"],
-input[type="number"],
-textarea {
-	background: #f9f9f9;
-	border: 1px solid #ccc;
-	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
-	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
-	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
-	padding: 2px;
-}
-a:link {
-	color: #0066cc;
-}
-a:visited {
-	color: #743399;
-}
-a:active,
-a:hover {
-	color: #ff4b33;
-}
-
-/* Text meant only for screen readers */
-.screen-reader-text {
-	clip: rect(1px, 1px, 1px, 1px);
-	overflow: hidden;
-	position: absolute !important;
-	height: 1px;
-	width: 1px;
-}
-
-
-/* =Header
--------------------------------------------------------------- */
-
-#header {
-	padding: 30px 0 0 0;
-}
-#site-title {
-	float: left;
-	font-size: 30px;
-	line-height: 36px;
-	margin: 0 0 18px 0;
-	width: 700px;
-}
-#site-title a {
-	color: #000;
-	font-weight: bold;
-	text-decoration: none;
-}
-#site-description {
-	clear: right;
-	float: right;
-	font-style: italic;
-	margin: 15px 0 18px 0;
-	width: 220px;
-}
-
-/* This is the custom header image */
-#branding img {
-	border-top: 4px solid #000;
-	border-bottom: 1px solid #000;
-	display: block;
-	float: left;
-}
-
-
-/* =Menu
--------------------------------------------------------------- */
-
-#access {
-	background: #000;
-	display: block;
-	float: left;
-	margin: 0 auto;
-	width: 940px;
-}
-#access .menu-header,
-div.menu {
-	font-size: 13px;
-	margin-left: 12px;
-	width: 928px;
-}
-#access .menu-header ul,
-div.menu ul {
-	list-style: none;
-	margin: 0;
-}
-#access .menu-header li,
-div.menu li {
-	float: left;
-	position: relative;
-}
-#access a {
-	color: #aaa;
-	display: block;
-	line-height: 38px;
-	padding: 0 10px;
-	text-decoration: none;
-}
-#access ul ul {
-	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
-	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
-	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
-	display: none;
-	position: absolute;
-	top: 38px;
-	left: 0;
-	float: left;
-	width: 180px;
-	z-index: 99999;
-}
-#access ul ul li {
-	min-width: 180px;
-}
-#access ul ul ul {
-	left: 100%;
-	top: 0;
-}
-#access ul ul a {
-	background: #333;
-	line-height: 1em;
-	padding: 10px;
-	width: 160px;
-	height: auto;
-}
-#access li:hover > a,
-#access ul ul :hover > a {
-	background: #333;
-	color: #fff;
-}
-#access ul li:hover > ul {
-	display: block;
-}
-#access ul li.current_page_item > a,
-#access ul li.current_page_ancestor > a,
-#access ul li.current-menu-ancestor > a,
-#access ul li.current-menu-item > a,
-#access ul li.current-menu-parent > a {
-	color: #fff;
-}
-* html #access ul li.current_page_item a,
-* html #access ul li.current_page_ancestor a,
-* html #access ul li.current-menu-ancestor a,
-* html #access ul li.current-menu-item a,
-* html #access ul li.current-menu-parent a,
-* html #access ul li a:hover {
-	color: #fff;
-}
-
-
-/* =Content
--------------------------------------------------------------- */
-
-#main {
-	clear: both;
-	overflow: hidden;
-	padding: 40px 0 0 0;
-}
-#content {
-	margin-bottom: 36px;
-}
-#content,
-#content input,
-#content textarea {
-	color: #333;
-	font-size: 16px;
-	line-height: 24px;
-}
-#content p,
-#content ul,
-#content ol,
-#content dd,
-#content pre,
-#content hr {
-	margin-bottom: 24px;
-}
-#content ul ul,
-#content ol ol,
-#content ul ol,
-#content ol ul {
-	margin-bottom: 0;
-}
-#content pre,
-#content kbd,
-#content tt,
-#content var {
-	font-size: 15px;
-	line-height: 21px;
-}
-#content code {
-	font-size: 13px;
-}
-#content dt,
-#content th {
-	color: #000;
-}
-#content h1,
-#content h2,
-#content h3,
-#content h4,
-#content h5,
-#content h6 {
-	color: #000;
-	line-height: 1.5em;
-	margin: 0 0 20px 0;
-}
-#content table {
-	border: 1px solid #e7e7e7;
-	margin: 0 -1px 24px 0;
-	text-align: left;
-	width: 100%;
-}
-#content tr th,
-#content thead th {
-	color: #777;
-	font-size: 12px;
-	font-weight: bold;
-	line-height: 18px;
-	padding: 9px 24px;
-}
-#content tr td {
-	border-top: 1px solid #e7e7e7;
-	padding: 6px 24px;
-}
-#content tr.odd td {
-	background: #f2f7fc;
-}
-.hentry {
-	margin: 0 0 48px 0;
-}
-.home .sticky {
-	background: #f2f7fc;
-	border-top: 4px solid #000;
-	margin-left: -20px;
-	margin-right: -20px;
-	padding: 18px 20px;
-}
-.single .hentry {
-	margin: 0 0 36px 0;
-}
-.page-title {
-	color: #000;
-	font-size: 14px;
-	font-weight: bold;
-	margin: 0 0 36px 0;
-}
-.page-title span {
-	color: #333;
-	font-size: 16px;
-	font-style: italic;
-	font-weight: normal;
-}
-.page-title a:link,
-.page-title a:visited {
-	color: #777;
-	text-decoration: none;
-}
-.page-title a:active,
-.page-title a:hover {
-	color: #ff4b33;
-}
-#content .entry-title {
-	color: #000;
-	font-size: 21px;
-	font-weight: bold;
-	line-height: 1.3em;
-	margin-bottom: 0;
-}
-.entry-title a:link,
-.entry-title a:visited {
-	color: #000;
-	text-decoration: none;
-}
-.entry-title a:active,
-.entry-title a:hover {
-	color: #ff4b33;
-}
-.entry-meta {
-	color: #777;
-	font-size: 12px;
-}
-.entry-meta abbr,
-.entry-utility abbr {
-	border: none;
-}
-.entry-meta abbr:hover,
-.entry-utility abbr:hover {
-	border-bottom: 1px dotted #666;
-}
-.entry-content,
-.entry-summary {
-	clear: both;
-	padding: 12px 0 0 0;
-}
-.entry-content .more-link {
-	white-space: nowrap;
-}
-#content .entry-summary p:last-child {
-	margin-bottom: 12px;
-}
-.entry-content fieldset {
-	border: 1px solid #e7e7e7;
-	margin: 0 0 24px 0;
-	padding: 24px;
-}
-.entry-content fieldset legend {
-	background: #fff;
-	color: #000;
-	font-weight: bold;
-	padding: 0 24px;
-}
-.entry-content input {
-	margin: 0 0 24px 0;
-}
-.entry-content input.file,
-.entry-content input.button {
-	margin-right: 24px;
-}
-.entry-content label {
-	color: #777;
-	font-size: 12px;
-}
-.entry-content select {
-	margin: 0 0 24px 0;
-}
-.entry-content sup,
-.entry-content sub {
-	font-size: 10px;
-}
-.entry-content blockquote.left {
-	float: left;
-	margin-left: 0;
-	margin-right: 24px;
-	text-align: right;
-	width: 33%;
-}
-.entry-content blockquote.right {
-	float: right;
-	margin-left: 24px;
-	margin-right: 0;
-	text-align: left;
-	width: 33%;
-}
-.page-link {
-	clear: both;
-	color: #000;
-	font-weight: bold;
-	line-height: 48px;
-	word-spacing: 0.5em;
-}
-.page-link a:link,
-.page-link a:visited {
-	background: #f1f1f1;
-	color: #333;
-	font-weight: normal;
-	padding: 0.5em 0.75em;
-	text-decoration: none;
-}
-.home .sticky .page-link a {
-	background: #d9e8f7;
-}
-.page-link a:active,
-.page-link a:hover {
-	color: #ff4b33;
-}
-body.page .edit-link {
-	clear: both;
-	display: block;
-}
-#entry-author-info {
-	background: #f2f7fc;
-	border-top: 4px solid #000;
-	clear: both;
-	font-size: 14px;
-	line-height: 20px;
-	margin: 24px 0;
-	overflow: hidden;
-	padding: 18px 20px;
-}
-#entry-author-info #author-avatar {
-	background: #fff;
-	border: 1px solid #e7e7e7;
-	float: left;
-	height: 60px;
-	margin: 0 -104px 0 0;
-	padding: 11px;
-}
-#entry-author-info #author-description {
-	float: left;
-	margin: 0 0 0 104px;
-}
-#entry-author-info h2 {
-	color: #000;
-	font-size: 100%;
-	font-weight: bold;
-	margin-bottom: 0;
-}
-.entry-utility {
-	clear: both;
-	color: #777;
-	font-size: 12px;
-	line-height: 18px;
-}
-.entry-meta a,
-.entry-utility a {
-	color: #777;
-}
-.entry-meta a:hover,
-.entry-utility a:hover {
-	color: #ff4b33;
-}
-#content .video-player {
-	padding: 0;
-}
-.format-standard .wp-video,
-.format-standard .wp-audio-shortcode,
-.format-audio .wp-audio-shortcode,
-.format-standard .video-player {
-	margin-bottom: 24px;
-}
-
-/* =Asides
--------------------------------------------------------------- */
-
-.home #content .format-aside p,
-.home #content .category-asides p {
-	font-size: 14px;
-	line-height: 20px;
-	margin-bottom: 10px;
-	margin-top: 0;
-}
-.home .hentry.format-aside,
-.home .hentry.category-asides {
-	padding: 0;
-}
-.home #content .format-aside .entry-content,
-.home #content .category-asides .entry-content {
-	padding-top: 0;
-}
-
-
-/* =Gallery listing
--------------------------------------------------------------- */
-
-.format-gallery .size-thumbnail img,
-.category-gallery .size-thumbnail img {
-	border: 10px solid #f1f1f1;
-	margin-bottom: 0;
-}
-.format-gallery .gallery-thumb,
-.category-gallery .gallery-thumb {
-	float: left;
-	margin-right: 20px;
-	margin-top: -4px;
-}
-.home #content .format-gallery .entry-utility,
-.home #content .category-gallery .entry-utility {
-	padding-top: 4px;
-}
-
-
-/* =Attachment pages
--------------------------------------------------------------- */
-
-.attachment .entry-content .entry-caption {
-	font-size: 140%;
-	margin-top: 24px;
-}
-.attachment .entry-content .nav-previous a:before {
-	content: '\2190\00a0';
-}
-.attachment .entry-content .nav-next a:after {
-	content: '\00a0\2192';
-}
-
-
-/* =Images
--------------------------------------------------------------- */
-
-/*
-Resize images to fit the main content area.
-- Applies only to images uploaded via WordPress by targeting size-* classes.
-- Other images will be left alone. Use "size-auto" class to apply to other images.
-*/
-img.size-auto,
-img.size-full,
-img.size-large,
-img.size-medium,
-.attachment img,
-.widget-container img {
-	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
-	height: auto; /* Override height to match resized width for correct aspect ratio. */
-}
-.alignleft,
-img.alignleft {
-	display: inline;
-	float: left;
-	margin-right: 24px;
-	margin-top: 4px;
-}
-.alignright,
-img.alignright {
-	display: inline;
-	float: right;
-	margin-left: 24px;
-	margin-top: 4px;
-}
-.aligncenter,
-img.aligncenter {
-	clear: both;
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-}
-img.alignleft,
-img.alignright,
-img.aligncenter {
-	margin-bottom: 12px;
-}
-.wp-caption {
-	background: #f1f1f1;
-	line-height: 18px;
-	margin-bottom: 20px;
-	max-width: 632px !important; /* prevent too-wide images from breaking layout */
-	padding: 4px;
-	text-align: center;
-}
-.widget-container .wp-caption {
-	max-width: 100% !important;
-}
-.wp-caption img {
-	margin: 5px 5px 0;
-	max-width: 622px; /* caption width - 10px */
-}
-.wp-caption p.wp-caption-text {
-	color: #777;
-	font-size: 12px;
-	margin: 5px;
-}
-.wp-smiley {
-	margin: 0;
-}
-.gallery {
-	margin: 0 auto 18px;
-}
-.gallery .gallery-item {
-	float: left;
-	margin-top: 0;
-	text-align: center;
-	width: 33%;
-}
-.gallery-columns-2 .gallery-item {
-	width: 50%;
-}
-.gallery-columns-4 .gallery-item {
-	width: 25%;
-}
-.gallery img {
-	border: 2px solid #cfcfcf;
-}
-.gallery-columns-2 .attachment-medium {
-	max-width: 92%;
-	height: auto;
-}
-.gallery-columns-4 .attachment-thumbnail {
-	max-width: 84%;
-	height: auto;
-}
-.gallery .gallery-caption {
-	color: #777;
-	font-size: 12px;
-	margin: 0 0 12px;
-}
-.gallery dl {
-	margin: 0;
-}
-.gallery img {
-	border: 10px solid #f1f1f1;
-}
-.gallery br+br {
-	display: none;
-}
-#content .attachment img {/* single attachment images should be centered */
-	display: block;
-	margin: 0 auto;
-}
-
-
-/* =Navigation
--------------------------------------------------------------- */
-
-.navigation {
-	color: #777;
-	font-size: 12px;
-	line-height: 18px;
-	overflow: hidden;
-}
-.navigation a:link,
-.navigation a:visited {
-	color: #777;
-	text-decoration: none;
-}
-.navigation a:active,
-.navigation a:hover {
-	color: #ff4b33;
-}
-.nav-previous {
-	float: left;
-	width: 50%;
-}
-.nav-next {
-	float: right;
-	text-align: right;
-	width: 50%;
-}
-#nav-above {
-	margin: 0 0 18px 0;
-}
-#nav-above {
-	display: none;
-}
-.paged #nav-above,
-.single #nav-above {
-	display: block;
-}
-#nav-below {
-	margin: -18px 0 0 0;
-}
-
-
-/* =Comments
--------------------------------------------------------------- */
-#comments {
-	clear: both;
-}
-#comments .navigation {
-	padding: 0 0 18px 0;
-}
-h3#comments-title,
-h3#reply-title {
-	color: #000;
-	font-size: 20px;
-	font-weight: bold;
-	margin-bottom: 0;
-}
-h3#comments-title {
-	padding: 24px 0;
-}
-.commentlist {
-	list-style: none;
-	margin: 0;
-}
-.commentlist li.comment {
-	border-bottom: 1px solid #e7e7e7;
-	line-height: 24px;
-	margin: 0 0 24px 0;
-	padding: 0 0 0 56px;
-	position: relative;
-}
-.commentlist li:last-child {
-	border-bottom: none;
-	margin-bottom: 0;
-}
-#comments .comment-body ul,
-#comments .comment-body ol {
-	margin-bottom: 18px;
-}
-#comments .comment-body p:last-child {
-	margin-bottom: 6px;
-}
-#comments .comment-body blockquote p:last-child {
-	margin-bottom: 24px;
-}
-.commentlist ol {
-	list-style: decimal;
-}
-.commentlist .avatar {
-	position: absolute;
-	top: 4px;
-	left: 0;
-}
-.comment-author {
-}
-.comment-author cite {
-	color: #000;
-	font-style: normal;
-	font-weight: bold;
-}
-.comment-author .says {
-	font-style: italic;
-}
-.comment-meta {
-	font-size: 12px;
-	margin: 0 0 18px 0;
-}
-.comment-meta a:link,
-.comment-meta a:visited {
-	color: #777;
-	text-decoration: none;
-}
-.comment-meta a:active,
-.comment-meta a:hover {
-	color: #ff4b33;
-}
-.commentlist .even {
-}
-.commentlist .bypostauthor {
-}
-.reply {
-	font-size: 12px;
-	padding: 0 0 24px 0;
-}
-.reply a,
-a.comment-edit-link {
-	color: #777;
-}
-.reply a:hover,
-a.comment-edit-link:hover {
-	color: #ff4b33;
-}
-.commentlist .children {
-	list-style: none;
-	margin: 0;
-}
-.commentlist .children li {
-	border: none;
-	margin: 0;
-}
-.nopassword,
-.nocomments {
-	display: none;
-}
-#comments .pingback {
-	border-bottom: 1px solid #e7e7e7;
-	margin-bottom: 18px;
-	padding-bottom: 18px;
-}
-.commentlist li.comment+li.pingback {
-	margin-top: -6px;
-}
-#comments .pingback p {
-	color: #777;
-	display: block;
-	font-size: 12px;
-	line-height: 18px;
-	margin: 0;
-}
-#comments .pingback .url {
-	font-size: 13px;
-	font-style: italic;
-}
-
-/* Comments form */
-input[type="submit"] {
-	color: #333;
-}
-#respond {
-	border-top: 1px solid #e7e7e7;
-	margin: 24px 0;
-	overflow: hidden;
-	position: relative;
-}
-#respond p {
-	margin: 0;
-}
-#respond .comment-notes {
-	margin-bottom: 1em;
-}
-.form-allowed-tags {
-	line-height: 1em;
-}
-.children #respond {
-	margin: 0 48px 0 0;
-}
-h3#reply-title {
-	margin: 18px 0;
-}
-#comments-list #respond {
-	margin: 0 0 18px 0;
-}
-#comments-list ul #respond {
-	margin: 0;
-}
-#cancel-comment-reply-link {
-	font-size: 12px;
-	font-weight: normal;
-	line-height: 18px;
-}
-#respond .required {
-	color: #ff4b33;
-	font-weight: bold;
-}
-#respond label {
-	color: #777;
-	font-size: 12px;
-}
-#respond input {
-	margin: 0 0 9px;
-	width: 98%;
-}
-#respond textarea {
-	width: 98%;
-}
-#respond .form-allowed-tags {
-	color: #777;
-	font-size: 12px;
-	line-height: 18px;
-}
-#respond .form-allowed-tags code {
-	font-size: 11px;
-}
-#respond .form-submit {
-	margin: 12px 0;
-}
-#respond .form-submit input {
-	font-size: 14px;
-	width: auto;
-}
-#respond #wp-comment-cookies-consent {
-	width: auto;
-	margin: 0 10px 0 0;
-}
-
-
-/* =Widget Areas
--------------------------------------------------------------- */
-
-.widget-area ul {
-	list-style: none;
-	margin-left: 0;
-}
-.widget-area ul ul {
-	list-style: square;
-	margin-left: 1.3em;
-}
-.widget-area select {
-	max-width: 100%;
-}
-.widget_search #s {/* This keeps the search inputs in line */
-	width: 60%;
-}
-.widget_search label {
-	display: none;
-}
-.widget-container {
-	word-wrap: break-word;
-	-webkit-hyphens: auto;
-	-moz-hyphens: auto;
-	hyphens: auto;
-	margin: 0 0 18px 0;
-}
-.widget-container .wp-caption img {
-	margin: auto;
-}
-.widget-title {
-	color: #222;
-	font-weight: bold;
-}
-.widget-area a:link,
-.widget-area a:visited {
-	text-decoration: none;
-}
-.widget-area a:active,
-.widget-area a:hover {
-	text-decoration: underline;
-}
-.widget-area .entry-meta {
-	font-size: 11px;
-}
-#wp_tag_cloud div {
-	line-height: 1.6em;
-}
-#wp-calendar {
-	width: 100%;
-}
-#wp-calendar caption {
-	color: #222;
-	font-size: 14px;
-	font-weight: bold;
-	padding-bottom: 4px;
-	text-align: left;
-}
-#wp-calendar thead {
-	font-size: 11px;
-}
-#wp-calendar thead th {
-}
-#wp-calendar tbody {
-	color: #aaa;
-}
-#wp-calendar tbody td {
-	background: #f5f5f5;
-	border: 1px solid #fff;
-	padding: 3px 0 2px;
-	text-align: center;
-}
-#wp-calendar tbody .pad {
-	background: none;
-}
-#wp-calendar tfoot #next {
-	text-align: right;
-}
-.widget_rss a.rsswidget {
-	color: #000;
-}
-.widget_rss a.rsswidget:hover {
-	color: #ff4b33;
-}
-.widget_rss .widget-title img {
-	width: 11px;
-	height: 11px;
-}
-.widget_text ul,
-.widget_text ol {
-	margin-bottom: 1.5em;
-}
-.widget_text ol {
-	margin-left: 1.3em;
-}
-.widget_text ul ul,
-.widget_text ol ol,
-.widget_text ul ol,
-.widget_text ol ul {
-	margin-bottom: 0;
-}
-.widget_media_video video {
-	max-width: 100%;
-}
-.tagcloud ul {
-	list-style-type: none;
-	margin-left: 0 !important;
-}
-.tagcloud ul li {
-	display: inline-block;
-}
-
-/* Helps galleries in widget areas look presentable in most cases. */
-.widget-area .gallery-columns-2 img,
-.widget-area .gallery-columns-3 img,
-.widget-area .gallery-columns-4 img,
-.widget-area .gallery-columns-5 img,
-.widget-area .gallery-columns-6 img,
-.widget-area .gallery-columns-7 img,
-.widget-area .gallery-columns-8 img,
-.widget-area .gallery-columns-9 img {
-	border: none;
-	max-width: 90%;
-	width: auto;
-}
-
-/* Main sidebars */
-#main .widget-area ul {
-	margin-left: 0;
-	padding: 0 20px 0 0;
-}
-#main .widget-area ul ul {
-	border: none;
-	margin-left: 1.3em;
-	padding: 0;
-}
-#primary {
-}
-#secondary {
-}
-
-/* Footer widget areas */
-#footer-widget-area {
-}
-
-
-/* =Footer
--------------------------------------------------------------- */
-
-#footer {
-	margin-bottom: 20px;
-}
-#colophon {
-	border-top: 4px solid #000;
-	margin-top: -4px;
-	overflow: hidden;
-	padding: 18px 0;
-}
-#site-info {
-	font-weight: bold;
-}
-#site-info a {
-	color: #000;
-	text-decoration: none;
-}
-#site-generator {
-	font-style: italic;
-	position: relative;
-}
-#site-generator a {
-	background: url(images/wordpress.png) center left no-repeat;
-	color: #666;
-	display: inline-block;
-	line-height: 16px;
-	padding-left: 20px;
-	text-decoration: none;
-}
-#site-generator a:hover {
-	text-decoration: underline;
-}
-img#wpstats {
-	display: block;
-	margin: 0 auto 10px;
-}
-#site-info span[role=separator] {
-	padding: 0 0.6em 0 0.3em;
-}
-#site-info span[role=separator]::before {
-	content: '\007c';
-}
-
-
-/* =Mobile Safari ( iPad, iPhone and iPod Touch )
--------------------------------------------------------------- */
-
-pre {
-	-webkit-text-size-adjust: 140%;
-}
-code {
-	-webkit-text-size-adjust: 160%;
-}
-#access,
-.entry-meta,
-.entry-utility,
-.navigation,
-.widget-area {
-	-webkit-text-size-adjust: 120%;
-}
-#site-description {
-	-webkit-text-size-adjust: none;
-}
-
-
-/* =Print Style
--------------------------------------------------------------- */
-
-@media print {
-	body {
-		background: none !important;
-	}
-	#wrapper {
-		clear: both !important;
-		display: block !important;
-		float: none !important;
-		position: relative !important;
-	}
-	#header {
-		border-bottom: 2pt solid #000;
-		padding-bottom: 18pt;
-	}
-	#colophon {
-		border-top: 2pt solid #000;
-	}
-	#site-title,
-	#site-description {
-		float: none;
-		line-height: 1.4em;
-		margin: 0;
-		padding: 0;
-	}
-	#site-title {
-		font-size: 13pt;
-	}
-	.entry-content {
-		font-size: 14pt;
-		line-height: 1.6em;
-	}
-	.entry-title {
-		font-size: 21pt;
-	}
-	#access,
-	#branding img,
-	#respond,
-	.comment-edit-link,
-	.edit-link,
-	.navigation,
-	.page-link,
-	.widget-area {
-		display: none !important;
-	}
-	#container,
-	#header,
-	#footer {
-		margin: 0;
-		width: 100%;
-	}
-	#content,
-	.one-column #content {
-		margin: 24pt 0 0;
-		width: 100%;
-	}
-	.wp-caption p {
-		font-size: 11pt;
-	}
-	#site-info,
-	#site-generator {
-		float: none;
-		width: auto;
-	}
-	#colophon {
-		width: auto;
-	}
-	img#wpstats {
-		display: none;
-	}
-	#site-generator a {
-		margin: 0;
-		padding: 0;
-	}
-	#entry-author-info {
-		border: 1px solid #e7e7e7;
-	}
-	#main {
-		display: inline;
-	}
-	.home .sticky {
-		border: none;
-	}
-}
+/*
+Theme Name: Twenty Ten
+Theme URI: https://wordpress.org/themes/twentyten/
+Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
+Author: the WordPress team
+Author URI: https://wordpress.org/
+Version: 3.0
+Requires at least: 3.0
+Requires PHP: 5.2.4
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Tags: blog, two-columns, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header, featured-images, footer-widgets, featured-image-header
+Text Domain: twentyten
+*/
+
+
+/* =Reset default browser CSS. Based on work by Eric Meyer.
+-------------------------------------------------------------- */
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, font, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td {
+	background: transparent;
+	border: 0;
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+}
+body {
+	line-height: 1;
+}
+h1, h2, h3, h4, h5, h6 {
+	clear: both;
+	font-weight: normal;
+}
+ol, ul {
+	list-style: none;
+}
+blockquote {
+	quotes: none;
+}
+blockquote:before, blockquote:after {
+	content: '';
+	content: none;
+}
+del {
+	text-decoration: line-through;
+}
+/* tables still need 'cellspacing="0"' in the markup */
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+}
+a img {
+	border: none;
+}
+
+/* =Layout
+-------------------------------------------------------------- */
+
+/*
+LAYOUT: Two columns
+DESCRIPTION: Two-column fixed layout with one sidebar right of content
+*/
+
+#container {
+	float: left;
+	margin: 0 -240px 0 0;
+	width: 100%;
+}
+#content {
+	margin: 0 280px 0 20px;
+}
+#primary,
+#secondary {
+	float: right;
+	overflow: hidden;
+	width: 220px;
+}
+#secondary {
+	clear: right;
+}
+#footer {
+	clear: both;
+	width: 100%;
+}
+
+/*
+LAYOUT: One column, no sidebar
+DESCRIPTION: One centered column with no sidebar
+*/
+
+.one-column #content {
+	margin: 0 auto;
+	width: 640px;
+}
+
+/*
+LAYOUT: Full width, no sidebar
+DESCRIPTION: Full width content with no sidebar; used for attachment pages
+*/
+
+.single-attachment #content {
+	margin: 0 auto;
+	width: 900px;
+}
+
+
+/* =Fonts
+-------------------------------------------------------------- */
+body,
+input,
+textarea,
+.page-title span,
+.pingback a.url {
+	font-family: Georgia, "Bitstream Charter", serif;
+}
+h3#comments-title,
+h3#reply-title,
+#access .menu,
+#access div.menu ul,
+#cancel-comment-reply-link,
+.form-allowed-tags,
+#site-info,
+#site-title,
+#wp-calendar,
+.calendar_wrap,
+.comment-meta,
+.comment-body tr th,
+.comment-body thead th,
+.entry-content label,
+.entry-content tr th,
+.entry-content thead th,
+.entry-meta,
+.entry-title,
+.entry-utility,
+#respond label,
+.navigation,
+.page-title,
+.pingback p,
+.reply,
+.widget-title,
+.wp-caption-text {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+input[type="submit"] {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+pre {
+	font-family: "Courier 10 Pitch", Courier, monospace;
+}
+code {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+}
+
+
+/* =Structure
+-------------------------------------------------------------- */
+
+/* The main theme structure */
+#access .menu-header,
+div.menu,
+#colophon,
+#branding,
+#main,
+#wrapper {
+	margin: 0 auto;
+	width: 940px;
+}
+#wrapper {
+	background: #fff;
+	margin-top: 20px;
+	padding: 0 20px;
+}
+
+/* Structure the footer area */
+#footer-widget-area {
+	overflow: hidden;
+}
+#footer-widget-area .widget-area {
+	float: left;
+	margin-right: 20px;
+	width: 220px;
+}
+#footer-widget-area #fourth {
+	margin-right: 0;
+}
+#site-info {
+	float: left;
+	font-size: 14px;
+	font-weight: bold;
+	width: 700px;
+}
+#site-generator {
+	float: right;
+	width: 220px;
+}
+
+
+/* =Global Elements
+-------------------------------------------------------------- */
+
+/* Main global 'theme' and typographic styles */
+body {
+	background: #f1f1f1;
+}
+body,
+input,
+textarea {
+	color: #666;
+	font-size: 12px;
+	line-height: 18px;
+}
+hr {
+	background-color: #e7e7e7;
+	border: 0;
+	clear: both;
+	height: 1px;
+	margin-bottom: 18px;
+}
+
+/* Text elements */
+p {
+	margin-bottom: 18px;
+}
+ul {
+	list-style: square;
+	margin: 0 0 18px 1.5em;
+}
+ol {
+	list-style: decimal;
+	margin: 0 0 18px 1.5em;
+}
+ol ol {
+	list-style: upper-alpha;
+}
+ol ol ol {
+	list-style: lower-roman;
+}
+ol ol ol ol {
+	list-style: lower-alpha;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+	margin-bottom: 0;
+}
+dl {
+	margin: 0 0 24px 0;
+}
+dt {
+	font-weight: bold;
+}
+dd {
+	margin-bottom: 18px;
+}
+strong {
+	font-weight: bold;
+}
+cite,
+em,
+i {
+	font-style: italic;
+}
+big {
+	font-size: 131.25%;
+}
+ins {
+	background: #ffc;
+	text-decoration: none;
+}
+blockquote {
+	font-style: italic;
+	padding: 0 3em;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+	font-style: normal;
+}
+pre {
+	background: #f7f7f7;
+	color: #222;
+	line-height: 18px;
+	margin-bottom: 18px;
+	overflow: auto;
+	padding: 1.5em;
+}
+abbr,
+acronym {
+	border-bottom: 1px dotted #666;
+	cursor: help;
+}
+sup,
+sub {
+	height: 0;
+	line-height: 1;
+	position: relative;
+	vertical-align: baseline;
+}
+sup {
+	bottom: 1ex;
+}
+sub {
+	top: .5ex;
+}
+small {
+	font-size: smaller;
+}
+input[type="text"],
+input[type="password"],
+input[type="email"],
+input[type="url"],
+input[type="number"],
+textarea {
+	background: #f9f9f9;
+	border: 1px solid #ccc;
+	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
+	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
+	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
+	padding: 2px;
+}
+a:link {
+	color: #0066cc;
+}
+a:visited {
+	color: #743399;
+}
+a:active,
+a:hover {
+	color: #ff4b33;
+}
+
+/* Text meant only for screen readers */
+.screen-reader-text {
+	clip: rect(1px, 1px, 1px, 1px);
+	overflow: hidden;
+	position: absolute !important;
+	height: 1px;
+	width: 1px;
+}
+
+
+/* =Header
+-------------------------------------------------------------- */
+
+#header {
+	padding: 30px 0 0 0;
+}
+#site-title {
+	float: left;
+	font-size: 30px;
+	line-height: 36px;
+	margin: 0 0 18px 0;
+	width: 700px;
+}
+#site-title a {
+	color: #000;
+	font-weight: bold;
+	text-decoration: none;
+}
+#site-description {
+	clear: right;
+	float: right;
+	font-style: italic;
+	margin: 15px 0 18px 0;
+	width: 220px;
+}
+
+/* This is the custom header image */
+#branding img {
+	border-top: 4px solid #000;
+	border-bottom: 1px solid #000;
+	display: block;
+	float: left;
+}
+
+
+/* =Menu
+-------------------------------------------------------------- */
+
+#access {
+	background: #000;
+	display: block;
+	float: left;
+	margin: 0 auto;
+	width: 940px;
+}
+#access .menu-header,
+div.menu {
+	font-size: 13px;
+	margin-left: 12px;
+	width: 928px;
+}
+#access .menu-header ul,
+div.menu ul {
+	list-style: none;
+	margin: 0;
+}
+#access .menu-header li,
+div.menu li {
+	float: left;
+	position: relative;
+}
+#access a {
+	color: #aaa;
+	display: block;
+	line-height: 38px;
+	padding: 0 10px;
+	text-decoration: none;
+}
+#access ul ul {
+	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	display: none;
+	position: absolute;
+	top: 38px;
+	left: 0;
+	float: left;
+	width: 180px;
+	z-index: 99999;
+}
+#access ul ul li {
+	min-width: 180px;
+}
+#access ul ul ul {
+	left: 100%;
+	top: 0;
+}
+#access ul ul a {
+	background: #333;
+	line-height: 1em;
+	padding: 10px;
+	width: 160px;
+	height: auto;
+}
+#access li:hover > a,
+#access ul ul :hover > a {
+	background: #333;
+	color: #fff;
+}
+#access ul li:hover > ul {
+	display: block;
+}
+#access ul li.current_page_item > a,
+#access ul li.current_page_ancestor > a,
+#access ul li.current-menu-ancestor > a,
+#access ul li.current-menu-item > a,
+#access ul li.current-menu-parent > a {
+	color: #fff;
+}
+* html #access ul li.current_page_item a,
+* html #access ul li.current_page_ancestor a,
+* html #access ul li.current-menu-ancestor a,
+* html #access ul li.current-menu-item a,
+* html #access ul li.current-menu-parent a,
+* html #access ul li a:hover {
+	color: #fff;
+}
+
+
+/* =Content
+-------------------------------------------------------------- */
+
+#main {
+	clear: both;
+	overflow: hidden;
+	padding: 40px 0 0 0;
+}
+#content {
+	margin-bottom: 36px;
+}
+#content,
+#content input,
+#content textarea {
+	color: #333;
+	font-size: 16px;
+	line-height: 24px;
+}
+#content p,
+#content ul,
+#content ol,
+#content dd,
+#content pre,
+#content hr {
+	margin-bottom: 24px;
+}
+#content ul ul,
+#content ol ol,
+#content ul ol,
+#content ol ul {
+	margin-bottom: 0;
+}
+#content pre,
+#content kbd,
+#content tt,
+#content var {
+	font-size: 15px;
+	line-height: 21px;
+}
+#content code {
+	font-size: 13px;
+}
+#content dt,
+#content th {
+	color: #000;
+}
+#content h1,
+#content h2,
+#content h3,
+#content h4,
+#content h5,
+#content h6 {
+	color: #000;
+	line-height: 1.5em;
+	margin: 0 0 20px 0;
+}
+#content table {
+	border: 1px solid #e7e7e7;
+	margin: 0 -1px 24px 0;
+	text-align: left;
+	width: 100%;
+}
+#content tr th,
+#content thead th {
+	color: #777;
+	font-size: 12px;
+	font-weight: bold;
+	line-height: 18px;
+	padding: 9px 24px;
+}
+#content tr td {
+	border-top: 1px solid #e7e7e7;
+	padding: 6px 24px;
+}
+#content tr.odd td {
+	background: #f2f7fc;
+}
+.hentry {
+	margin: 0 0 48px 0;
+}
+.home .sticky {
+	background: #f2f7fc;
+	border-top: 4px solid #000;
+	margin-left: -20px;
+	margin-right: -20px;
+	padding: 18px 20px;
+}
+.single .hentry {
+	margin: 0 0 36px 0;
+}
+.page-title {
+	color: #000;
+	font-size: 14px;
+	font-weight: bold;
+	margin: 0 0 36px 0;
+}
+.page-title span {
+	color: #333;
+	font-size: 16px;
+	font-style: italic;
+	font-weight: normal;
+}
+.page-title a:link,
+.page-title a:visited {
+	color: #777;
+	text-decoration: none;
+}
+.page-title a:active,
+.page-title a:hover {
+	color: #ff4b33;
+}
+#content .entry-title {
+	color: #000;
+	font-size: 21px;
+	font-weight: bold;
+	line-height: 1.3em;
+	margin-bottom: 0;
+}
+.entry-title a:link,
+.entry-title a:visited {
+	color: #000;
+	text-decoration: none;
+}
+.entry-title a:active,
+.entry-title a:hover {
+	color: #ff4b33;
+}
+.entry-meta {
+	color: #777;
+	font-size: 12px;
+}
+.entry-meta abbr,
+.entry-utility abbr {
+	border: none;
+}
+.entry-meta abbr:hover,
+.entry-utility abbr:hover {
+	border-bottom: 1px dotted #666;
+}
+.entry-content,
+.entry-summary {
+	clear: both;
+	padding: 12px 0 0 0;
+}
+.entry-content .more-link {
+	white-space: nowrap;
+}
+#content .entry-summary p:last-child {
+	margin-bottom: 12px;
+}
+.entry-content fieldset {
+	border: 1px solid #e7e7e7;
+	margin: 0 0 24px 0;
+	padding: 24px;
+}
+.entry-content fieldset legend {
+	background: #fff;
+	color: #000;
+	font-weight: bold;
+	padding: 0 24px;
+}
+.entry-content input {
+	margin: 0 0 24px 0;
+}
+.entry-content input.file,
+.entry-content input.button {
+	margin-right: 24px;
+}
+.entry-content label {
+	color: #777;
+	font-size: 12px;
+}
+.entry-content select {
+	margin: 0 0 24px 0;
+}
+.entry-content sup,
+.entry-content sub {
+	font-size: 10px;
+}
+.entry-content blockquote.left {
+	float: left;
+	margin-left: 0;
+	margin-right: 24px;
+	text-align: right;
+	width: 33%;
+}
+.entry-content blockquote.right {
+	float: right;
+	margin-left: 24px;
+	margin-right: 0;
+	text-align: left;
+	width: 33%;
+}
+.page-link {
+	clear: both;
+	color: #000;
+	font-weight: bold;
+	line-height: 48px;
+	word-spacing: 0.5em;
+}
+.page-link a:link,
+.page-link a:visited {
+	background: #f1f1f1;
+	color: #333;
+	font-weight: normal;
+	padding: 0.5em 0.75em;
+	text-decoration: none;
+}
+.home .sticky .page-link a {
+	background: #d9e8f7;
+}
+.page-link a:active,
+.page-link a:hover {
+	color: #ff4b33;
+}
+body.page .edit-link {
+	clear: both;
+	display: block;
+}
+#entry-author-info {
+	background: #f2f7fc;
+	border-top: 4px solid #000;
+	clear: both;
+	font-size: 14px;
+	line-height: 20px;
+	margin: 24px 0;
+	overflow: hidden;
+	padding: 18px 20px;
+}
+#entry-author-info #author-avatar {
+	background: #fff;
+	border: 1px solid #e7e7e7;
+	float: left;
+	height: 60px;
+	margin: 0 -104px 0 0;
+	padding: 11px;
+}
+#entry-author-info #author-description {
+	float: left;
+	margin: 0 0 0 104px;
+}
+#entry-author-info h2 {
+	color: #000;
+	font-size: 100%;
+	font-weight: bold;
+	margin-bottom: 0;
+}
+.entry-utility {
+	clear: both;
+	color: #777;
+	font-size: 12px;
+	line-height: 18px;
+}
+.entry-meta a,
+.entry-utility a {
+	color: #777;
+}
+.entry-meta a:hover,
+.entry-utility a:hover {
+	color: #ff4b33;
+}
+#content .video-player {
+	padding: 0;
+}
+.format-standard .wp-video,
+.format-standard .wp-audio-shortcode,
+.format-audio .wp-audio-shortcode,
+.format-standard .video-player {
+	margin-bottom: 24px;
+}
+
+/* =Asides
+-------------------------------------------------------------- */
+
+.home #content .format-aside p,
+.home #content .category-asides p {
+	font-size: 14px;
+	line-height: 20px;
+	margin-bottom: 10px;
+	margin-top: 0;
+}
+.home .hentry.format-aside,
+.home .hentry.category-asides {
+	padding: 0;
+}
+.home #content .format-aside .entry-content,
+.home #content .category-asides .entry-content {
+	padding-top: 0;
+}
+
+
+/* =Gallery listing
+-------------------------------------------------------------- */
+
+.format-gallery .size-thumbnail img,
+.category-gallery .size-thumbnail img {
+	border: 10px solid #f1f1f1;
+	margin-bottom: 0;
+}
+.format-gallery .gallery-thumb,
+.category-gallery .gallery-thumb {
+	float: left;
+	margin-right: 20px;
+	margin-top: -4px;
+}
+.home #content .format-gallery .entry-utility,
+.home #content .category-gallery .entry-utility {
+	padding-top: 4px;
+}
+
+
+/* =Attachment pages
+-------------------------------------------------------------- */
+
+.attachment .entry-content .entry-caption {
+	font-size: 140%;
+	margin-top: 24px;
+}
+.attachment .entry-content .nav-previous a:before {
+	content: '\2190\00a0';
+}
+.attachment .entry-content .nav-next a:after {
+	content: '\00a0\2192';
+}
+
+
+/* =Images
+-------------------------------------------------------------- */
+
+/*
+Resize images to fit the main content area.
+- Applies only to images uploaded via WordPress by targeting size-* classes.
+- Other images will be left alone. Use "size-auto" class to apply to other images.
+*/
+img.size-auto,
+img.size-full,
+img.size-large,
+img.size-medium,
+.attachment img,
+.widget-container img {
+	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
+	height: auto; /* Override height to match resized width for correct aspect ratio. */
+}
+.alignleft,
+img.alignleft {
+	display: inline;
+	float: left;
+	margin-right: 24px;
+	margin-top: 4px;
+}
+.alignright,
+img.alignright {
+	display: inline;
+	float: right;
+	margin-left: 24px;
+	margin-top: 4px;
+}
+.aligncenter,
+img.aligncenter {
+	clear: both;
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+img.alignleft,
+img.alignright,
+img.aligncenter {
+	margin-bottom: 12px;
+}
+.wp-caption {
+	background: #f1f1f1;
+	line-height: 18px;
+	margin-bottom: 20px;
+	max-width: 632px !important; /* prevent too-wide images from breaking layout */
+	padding: 4px;
+	text-align: center;
+}
+.widget-container .wp-caption {
+	max-width: 100% !important;
+}
+.wp-caption img {
+	margin: 5px 5px 0;
+	max-width: 622px; /* caption width - 10px */
+}
+.wp-caption p.wp-caption-text {
+	color: #777;
+	font-size: 12px;
+	margin: 5px;
+}
+.wp-smiley {
+	margin: 0;
+}
+.gallery {
+	margin: 0 auto 18px;
+}
+.gallery .gallery-item {
+	float: left;
+	margin-top: 0;
+	text-align: center;
+	width: 33%;
+}
+.gallery-columns-2 .gallery-item {
+	width: 50%;
+}
+.gallery-columns-4 .gallery-item {
+	width: 25%;
+}
+.gallery img {
+	border: 2px solid #cfcfcf;
+}
+.gallery-columns-2 .attachment-medium {
+	max-width: 92%;
+	height: auto;
+}
+.gallery-columns-4 .attachment-thumbnail {
+	max-width: 84%;
+	height: auto;
+}
+.gallery .gallery-caption {
+	color: #777;
+	font-size: 12px;
+	margin: 0 0 12px;
+}
+.gallery dl {
+	margin: 0;
+}
+.gallery img {
+	border: 10px solid #f1f1f1;
+}
+.gallery br+br {
+	display: none;
+}
+#content .attachment img {/* single attachment images should be centered */
+	display: block;
+	margin: 0 auto;
+}
+
+
+/* =Navigation
+-------------------------------------------------------------- */
+
+.navigation {
+	color: #777;
+	font-size: 12px;
+	line-height: 18px;
+	overflow: hidden;
+}
+.navigation a:link,
+.navigation a:visited {
+	color: #777;
+	text-decoration: none;
+}
+.navigation a:active,
+.navigation a:hover {
+	color: #ff4b33;
+}
+.nav-previous {
+	float: left;
+	width: 50%;
+}
+.nav-next {
+	float: right;
+	text-align: right;
+	width: 50%;
+}
+#nav-above {
+	margin: 0 0 18px 0;
+}
+#nav-above {
+	display: none;
+}
+.paged #nav-above,
+.single #nav-above {
+	display: block;
+}
+#nav-below {
+	margin: -18px 0 0 0;
+}
+
+
+/* =Comments
+-------------------------------------------------------------- */
+#comments {
+	clear: both;
+}
+#comments .navigation {
+	padding: 0 0 18px 0;
+}
+h3#comments-title,
+h3#reply-title {
+	color: #000;
+	font-size: 20px;
+	font-weight: bold;
+	margin-bottom: 0;
+}
+h3#comments-title {
+	padding: 24px 0;
+}
+.commentlist {
+	list-style: none;
+	margin: 0;
+}
+.commentlist li.comment {
+	border-bottom: 1px solid #e7e7e7;
+	line-height: 24px;
+	margin: 0 0 24px 0;
+	padding: 0 0 0 56px;
+	position: relative;
+}
+.commentlist li:last-child {
+	border-bottom: none;
+	margin-bottom: 0;
+}
+#comments .comment-body ul,
+#comments .comment-body ol {
+	margin-bottom: 18px;
+}
+#comments .comment-body p:last-child {
+	margin-bottom: 6px;
+}
+#comments .comment-body blockquote p:last-child {
+	margin-bottom: 24px;
+}
+.commentlist ol {
+	list-style: decimal;
+}
+.commentlist .avatar {
+	position: absolute;
+	top: 4px;
+	left: 0;
+}
+.comment-author {
+}
+.comment-author cite {
+	color: #000;
+	font-style: normal;
+	font-weight: bold;
+}
+.comment-author .says {
+	font-style: italic;
+}
+.comment-meta {
+	font-size: 12px;
+	margin: 0 0 18px 0;
+}
+.comment-meta a:link,
+.comment-meta a:visited {
+	color: #777;
+	text-decoration: none;
+}
+.comment-meta a:active,
+.comment-meta a:hover {
+	color: #ff4b33;
+}
+.commentlist .even {
+}
+.commentlist .bypostauthor {
+}
+.reply {
+	font-size: 12px;
+	padding: 0 0 24px 0;
+}
+.reply a,
+a.comment-edit-link {
+	color: #777;
+}
+.reply a:hover,
+a.comment-edit-link:hover {
+	color: #ff4b33;
+}
+.commentlist .children {
+	list-style: none;
+	margin: 0;
+}
+.commentlist .children li {
+	border: none;
+	margin: 0;
+}
+.nopassword,
+.nocomments {
+	display: none;
+}
+#comments .pingback {
+	border-bottom: 1px solid #e7e7e7;
+	margin-bottom: 18px;
+	padding-bottom: 18px;
+}
+.commentlist li.comment+li.pingback {
+	margin-top: -6px;
+}
+#comments .pingback p {
+	color: #777;
+	display: block;
+	font-size: 12px;
+	line-height: 18px;
+	margin: 0;
+}
+#comments .pingback .url {
+	font-size: 13px;
+	font-style: italic;
+}
+
+/* Comments form */
+input[type="submit"] {
+	color: #333;
+}
+#respond {
+	border-top: 1px solid #e7e7e7;
+	margin: 24px 0;
+	overflow: hidden;
+	position: relative;
+}
+#respond p {
+	margin: 0;
+}
+#respond .comment-notes {
+	margin-bottom: 1em;
+}
+.form-allowed-tags {
+	line-height: 1em;
+}
+.children #respond {
+	margin: 0 48px 0 0;
+}
+h3#reply-title {
+	margin: 18px 0;
+}
+#comments-list #respond {
+	margin: 0 0 18px 0;
+}
+#comments-list ul #respond {
+	margin: 0;
+}
+#cancel-comment-reply-link {
+	font-size: 12px;
+	font-weight: normal;
+	line-height: 18px;
+}
+#respond .required {
+	color: #ff4b33;
+	font-weight: bold;
+}
+#respond label {
+	color: #777;
+	font-size: 12px;
+}
+#respond input {
+	margin: 0 0 9px;
+	width: 98%;
+}
+#respond textarea {
+	width: 98%;
+}
+#respond .form-allowed-tags {
+	color: #777;
+	font-size: 12px;
+	line-height: 18px;
+}
+#respond .form-allowed-tags code {
+	font-size: 11px;
+}
+#respond .form-submit {
+	margin: 12px 0;
+}
+#respond .form-submit input {
+	font-size: 14px;
+	width: auto;
+}
+#respond #wp-comment-cookies-consent {
+	width: auto;
+	margin: 0 10px 0 0;
+}
+
+
+/* =Widget Areas
+-------------------------------------------------------------- */
+
+.widget-area ul {
+	list-style: none;
+	margin-left: 0;
+}
+.widget-area ul ul {
+	list-style: square;
+	margin-left: 1.3em;
+}
+.widget-area select {
+	max-width: 100%;
+}
+.widget_search #s {/* This keeps the search inputs in line */
+	width: 60%;
+}
+.widget_search label {
+	display: none;
+}
+.widget-container {
+	word-wrap: break-word;
+	-webkit-hyphens: auto;
+	-moz-hyphens: auto;
+	hyphens: auto;
+	margin: 0 0 18px 0;
+}
+.widget-container .wp-caption img {
+	margin: auto;
+}
+.widget-title {
+	color: #222;
+	font-weight: bold;
+}
+.widget-area a:link,
+.widget-area a:visited {
+	text-decoration: none;
+}
+.widget-area a:active,
+.widget-area a:hover {
+	text-decoration: underline;
+}
+.widget-area .entry-meta {
+	font-size: 11px;
+}
+#wp_tag_cloud div {
+	line-height: 1.6em;
+}
+#wp-calendar {
+	width: 100%;
+}
+#wp-calendar caption {
+	color: #222;
+	font-size: 14px;
+	font-weight: bold;
+	padding-bottom: 4px;
+	text-align: left;
+}
+#wp-calendar thead {
+	font-size: 11px;
+}
+#wp-calendar thead th {
+}
+#wp-calendar tbody {
+	color: #aaa;
+}
+#wp-calendar tbody td {
+	background: #f5f5f5;
+	border: 1px solid #fff;
+	padding: 3px 0 2px;
+	text-align: center;
+}
+#wp-calendar tbody .pad {
+	background: none;
+}
+.wp-calendar-nav {
+	display: table;
+	width: 100%;
+}
+.wp-calendar-nav span {
+	display: table-cell;
+}
+.wp-calendar-nav-next,
+#wp-calendar tfoot #next {
+	text-align: right;
+}
+.widget_rss a.rsswidget {
+	color: #000;
+}
+.widget_rss a.rsswidget:hover {
+	color: #ff4b33;
+}
+.widget_rss .widget-title img {
+	width: 11px;
+	height: 11px;
+}
+.widget_text ul,
+.widget_text ol {
+	margin-bottom: 1.5em;
+}
+.widget_text ol {
+	margin-left: 1.3em;
+}
+.widget_text ul ul,
+.widget_text ol ol,
+.widget_text ul ol,
+.widget_text ol ul {
+	margin-bottom: 0;
+}
+.widget_media_video video {
+	max-width: 100%;
+}
+.tagcloud ul {
+	list-style-type: none;
+	margin-left: 0 !important;
+}
+.tagcloud ul li {
+	display: inline-block;
+}
+
+/* Helps galleries in widget areas look presentable in most cases. */
+.widget-area .gallery-columns-2 img,
+.widget-area .gallery-columns-3 img,
+.widget-area .gallery-columns-4 img,
+.widget-area .gallery-columns-5 img,
+.widget-area .gallery-columns-6 img,
+.widget-area .gallery-columns-7 img,
+.widget-area .gallery-columns-8 img,
+.widget-area .gallery-columns-9 img {
+	border: none;
+	max-width: 90%;
+	width: auto;
+}
+
+/* Main sidebars */
+#main .widget-area ul {
+	margin-left: 0;
+	padding: 0 20px 0 0;
+}
+#main .widget-area ul ul {
+	border: none;
+	margin-left: 1.3em;
+	padding: 0;
+}
+#primary {
+}
+#secondary {
+}
+
+/* Footer widget areas */
+#footer-widget-area {
+}
+
+
+/* =Footer
+-------------------------------------------------------------- */
+
+#footer {
+	margin-bottom: 20px;
+}
+#colophon {
+	border-top: 4px solid #000;
+	margin-top: -4px;
+	overflow: hidden;
+	padding: 18px 0;
+}
+#site-info {
+	font-weight: bold;
+}
+#site-info a {
+	color: #000;
+	text-decoration: none;
+}
+#site-generator {
+	font-style: italic;
+	position: relative;
+}
+#site-generator a {
+	background: url(images/wordpress.png) center left no-repeat;
+	color: #666;
+	display: inline-block;
+	line-height: 16px;
+	padding-left: 20px;
+	text-decoration: none;
+}
+#site-generator a:hover {
+	text-decoration: underline;
+}
+img#wpstats {
+	display: block;
+	margin: 0 auto 10px;
+}
+#site-info span[role=separator] {
+	padding: 0 0.6em 0 0.3em;
+}
+#site-info span[role=separator]::before {
+	content: '\007c';
+}
+
+
+/* =Mobile Safari ( iPad, iPhone and iPod Touch )
+-------------------------------------------------------------- */
+
+pre {
+	-webkit-text-size-adjust: 140%;
+}
+code {
+	-webkit-text-size-adjust: 160%;
+}
+#access,
+.entry-meta,
+.entry-utility,
+.navigation,
+.widget-area {
+	-webkit-text-size-adjust: 120%;
+}
+#site-description {
+	-webkit-text-size-adjust: none;
+}
+
+
+/* =Print Style
+-------------------------------------------------------------- */
+
+@media print {
+	body {
+		background: none !important;
+	}
+	#wrapper {
+		clear: both !important;
+		display: block !important;
+		float: none !important;
+		position: relative !important;
+	}
+	#header {
+		border-bottom: 2pt solid #000;
+		padding-bottom: 18pt;
+	}
+	#colophon {
+		border-top: 2pt solid #000;
+	}
+	#site-title,
+	#site-description {
+		float: none;
+		line-height: 1.4em;
+		margin: 0;
+		padding: 0;
+	}
+	#site-title {
+		font-size: 13pt;
+	}
+	.entry-content {
+		font-size: 14pt;
+		line-height: 1.6em;
+	}
+	.entry-title {
+		font-size: 21pt;
+	}
+	#access,
+	#branding img,
+	#respond,
+	.comment-edit-link,
+	.edit-link,
+	.navigation,
+	.page-link,
+	.widget-area {
+		display: none !important;
+	}
+	#container,
+	#header,
+	#footer {
+		margin: 0;
+		width: 100%;
+	}
+	#content,
+	.one-column #content {
+		margin: 24pt 0 0;
+		width: 100%;
+	}
+	.wp-caption p {
+		font-size: 11pt;
+	}
+	#site-info,
+	#site-generator {
+		float: none;
+		width: auto;
+	}
+	#colophon {
+		width: auto;
+	}
+	img#wpstats {
+		display: none;
+	}
+	#site-generator a {
+		margin: 0;
+		padding: 0;
+	}
+	#entry-author-info {
+		border: 1px solid #e7e7e7;
+	}
+	#main {
+		display: inline;
+	}
+	.home .sticky {
+		border: none;
+	}
+}
diff --git a/wp-content/themes/twentyten/tag.php b/wp-content/themes/twentyten/tag.php
index e6fed3014..4b731a0a8 100644
--- a/wp-content/themes/twentyten/tag.php
+++ b/wp-content/themes/twentyten/tag.php
@@ -1,33 +1,34 @@
-<?php
-/**
- * Template for displaying Tag Archive pages
- *
- * @package WordPress
- * @subpackage Twenty_Ten
- * @since Twenty Ten 1.0
- */
-
-get_header(); ?>
-
-		<div id="container">
-			<div id="content" role="main">
-
-				<h1 class="page-title">
-				<?php
-					printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
-				?>
-				</h1>
-
-<?php
-/*
- * Run the loop for the tag archive to output the posts
- * If you want to overload this in a child theme then include a file
- * called loop-tag.php and that will be used instead.
- */
-get_template_part( 'loop', 'tag' );
-?>
-			</div><!-- #content -->
-		</div><!-- #container -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * Template for displaying Tag Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+		<div id="container">
+			<div id="content" role="main">
+
+				<h1 class="page-title">
+				<?php
+					/* translators: %s: Tag title. */
+					printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
+				?>
+				</h1>
+
+				<?php
+				/*
+				 * Run the loop for the tag archive to output the posts
+				 * If you want to overload this in a child theme then include a file
+				 * called loop-tag.php and that will be used instead.
+				 */
+				get_template_part( 'loop', 'tag' );
+				?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
-- 
GitLab