diff --git a/wp-content/themes/twentythirteen/404.php b/wp-content/themes/twentythirteen/404.php
index 528f82d372d5fdc726834e2e30ce87615c7f3661..b062ccb07d729e1073d6950645797409fcf28e1b 100644
--- a/wp-content/themes/twentythirteen/404.php
+++ b/wp-content/themes/twentythirteen/404.php
@@ -1,31 +1,31 @@
-<?php
-/**
- * The template for displaying 404 pages (Not Found)
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-			<header class="page-header">
-				<h1 class="page-title"><?php _e( 'Not Found', 'twentythirteen' ); ?></h1>
-			</header>
-
-			<div class="page-wrapper">
-				<div class="page-content">
-					<h2><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'twentythirteen' ); ?></h2>
-					<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentythirteen' ); ?></p>
-
-					<?php get_search_form(); ?>
-				</div><!-- .page-content -->
-			</div><!-- .page-wrapper -->
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying 404 pages (Not Found)
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+			<header class="page-header">
+				<h1 class="page-title"><?php _e( 'Not Found', 'twentythirteen' ); ?></h1>
+			</header>
+
+			<div class="page-wrapper">
+				<div class="page-content">
+					<h2><?php _e( 'This is somewhat embarrassing, isn&rsquo;t it?', 'twentythirteen' ); ?></h2>
+					<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentythirteen' ); ?></p>
+
+					<?php get_search_form(); ?>
+				</div><!-- .page-content -->
+			</div><!-- .page-wrapper -->
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/archive.php b/wp-content/themes/twentythirteen/archive.php
index 4fc29f5b2ac5425f66744e5632dadc35b9eacd81..9ef593a44763c27f871390858020aca070ebccf1 100644
--- a/wp-content/themes/twentythirteen/archive.php
+++ b/wp-content/themes/twentythirteen/archive.php
@@ -1,60 +1,63 @@
-<?php
-/**
- * The 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.
- *
- * If you'd like to further customize these archive views, you may create a
- * new template file for each specific one. For example, Twenty Thirteen
- * already has tag.php for Tag archives, category.php for Category archives,
- * and author.php for Author archives.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-			<header class="archive-header">
-				<h1 class="archive-title">
-				<?php
-				if ( is_day() ) :
-					printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
-					elseif ( is_month() ) :
-						printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
-					elseif ( is_year() ) :
-						printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
-					else :
-						_e( 'Archives', 'twentythirteen' );
-					endif;
-					?>
-				</h1>
-			</header><!-- .archive-header -->
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The 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.
+ *
+ * If you'd like to further customize these archive views, you may create a
+ * new template file for each specific one. For example, Twenty Thirteen
+ * already has tag.php for Tag archives, category.php for Category archives,
+ * and author.php for Author archives.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+			<header class="archive-header">
+				<h1 class="archive-title">
+				<?php
+				if ( is_day() ) {
+					/* translators: %s: Date. */
+					printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() );
+				} elseif ( is_month() ) {
+					/* translators: %s: Date. */
+					printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) );
+				} elseif ( is_year() ) {
+					/* translators: %s: Date. */
+					printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) );
+				} else {
+					_e( 'Archives', 'twentythirteen' );
+				}
+				?>
+				</h1>
+			</header><!-- .archive-header -->
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/author-bio.php b/wp-content/themes/twentythirteen/author-bio.php
index 690cfc0cb5405b04e14d6a6cfccba144582efde9..46248a8fb80f822783feb147779aa69445e849e0 100644
--- a/wp-content/themes/twentythirteen/author-bio.php
+++ b/wp-content/themes/twentythirteen/author-bio.php
@@ -1,34 +1,42 @@
-<?php
-/**
- * The template for displaying Author bios
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<div class="author-info">
-	<div class="author-avatar">
-		<?php
-		/**
-		 * Filter the author bio avatar size.
-		 *
-		 * @since Twenty Thirteen 1.0
-		 *
-		 * @param int $size The avatar height and width size in pixels.
-		 */
-		$author_bio_avatar_size = apply_filters( 'twentythirteen_author_bio_avatar_size', 74 );
-		echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
-		?>
-	</div><!-- .author-avatar -->
-	<div class="author-description">
-		<h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2>
-		<p class="author-bio">
-			<?php the_author_meta( 'description' ); ?>
-			<a class="author-link" 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>', 'twentythirteen' ), get_the_author() ); ?>
-			</a>
-		</p>
-	</div><!-- .author-description -->
-</div><!-- .author-info -->
+<?php
+/**
+ * The template for displaying Author bios
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<div class="author-info">
+	<div class="author-avatar">
+		<?php
+		/**
+		 * Filter the author bio avatar size.
+		 *
+		 * @since Twenty Thirteen 1.0
+		 *
+		 * @param int $size The avatar height and width size in pixels.
+		 */
+		$author_bio_avatar_size = apply_filters( 'twentythirteen_author_bio_avatar_size', 74 );
+		echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
+		?>
+	</div><!-- .author-avatar -->
+	<div class="author-description">
+		<h2 class="author-title">
+		<?php
+		/* translators: %s: Author display name. */
+		printf( __( 'About %s', 'twentythirteen' ), get_the_author() );
+		?>
+		</h2>
+		<p class="author-bio">
+			<?php the_author_meta( 'description' ); ?>
+			<a class="author-link" 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>', 'twentythirteen' ), get_the_author() );
+				?>
+			</a>
+		</p>
+	</div><!-- .author-description -->
+</div><!-- .author-info -->
diff --git a/wp-content/themes/twentythirteen/author.php b/wp-content/themes/twentythirteen/author.php
index d9bbf2e3d7e567bde7ebc49798197beeca71e98b..3c1999c31cacdea8fdf6a2cd5f8a52d8c2ecca8d 100644
--- a/wp-content/themes/twentythirteen/author.php
+++ b/wp-content/themes/twentythirteen/author.php
@@ -1,65 +1,70 @@
-<?php
-/**
- * The template for displaying Author archive pages
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-
-			<?php
-				/*
-				 * Queue the first post, that way we know what author
-				 * 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().
-				 */
-				the_post();
-			?>
-
-			<header class="archive-header">
-				<h1 class="archive-title"><?php printf( __( 'All posts by %s', 'twentythirteen' ), '<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>
-			</header><!-- .archive-header -->
-
-			<?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();
-			?>
-
-			<?php if ( get_the_author_meta( 'description' ) ) : ?>
-				<?php get_template_part( 'author-bio' ); ?>
-			<?php endif; ?>
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying Author archive pages
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+
+			<?php
+				/*
+				 * Queue the first post, that way we know what author
+				 * 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().
+				 */
+				the_post();
+			?>
+
+			<header class="archive-header">
+				<h1 class="archive-title">
+				<?php
+				/* translators: %s: Author display name. */
+				printf( __( 'All posts by %s', 'twentythirteen' ), '<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>
+			</header><!-- .archive-header -->
+
+			<?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();
+			?>
+
+			<?php if ( get_the_author_meta( 'description' ) ) : ?>
+				<?php get_template_part( 'author-bio' ); ?>
+			<?php endif; ?>
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/category.php b/wp-content/themes/twentythirteen/category.php
index ba71dd71484436c45a92f7cb46de9a363f278a53..ed05f794c95a413c3446b33995926485b0f106a7 100644
--- a/wp-content/themes/twentythirteen/category.php
+++ b/wp-content/themes/twentythirteen/category.php
@@ -1,44 +1,49 @@
-<?php
-/**
- * The template for displaying Category pages
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-			<header class="archive-header">
-				<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?></h1>
-
-				<?php if ( category_description() ) : // Show an optional category description ?>
-				<div class="archive-meta"><?php echo category_description(); ?></div>
-				<?php endif; ?>
-			</header><!-- .archive-header -->
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying Category pages
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+			<header class="archive-header">
+				<h1 class="archive-title">
+				<?php
+				/* translators: %s: Category title. */
+				printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) );
+				?>
+				</h1>
+
+				<?php if ( category_description() ) : // Show an optional category description. ?>
+				<div class="archive-meta"><?php echo category_description(); ?></div>
+				<?php endif; ?>
+			</header><!-- .archive-header -->
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/comments.php b/wp-content/themes/twentythirteen/comments.php
index 6348145780078b4df64ec729b63b84dbea91f85d..4129feedde58d942163f9f5ceaa65de126a8d8cf 100644
--- a/wp-content/themes/twentythirteen/comments.php
+++ b/wp-content/themes/twentythirteen/comments.php
@@ -1,74 +1,74 @@
-<?php
-/**
- * The template for displaying Comments
- *
- * The area of the page that contains comments and the comment form.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/*
- * If the current post is protected by a password and the visitor has not yet
- * entered the password we will return early without loading the comments.
- */
-if ( post_password_required() ) {
-	return;
-}
-?>
-
-<div id="comments" class="comments-area">
-
-	<?php if ( have_comments() ) : ?>
-		<h2 class="comments-title">
-			<?php
-			if ( 1 === get_comments_number() ) {
-				printf(
-					/* translators: %s: The post title. */
-					_x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentythirteen' ),
-					'<span>' . get_the_title() . '</span>'
-				);
-			} else {
-				printf(
-					/* translators: %1$s: The number of comments. %2$s: The post title. */
-					_nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
-					number_format_i18n( get_comments_number() ),
-					'<span>' . get_the_title() . '</span>'
-				);
-			}
-			?>
-		</h2>
-
-		<ol class="comment-list">
-			<?php
-				wp_list_comments(
-					array(
-						'style'       => 'ol',
-						'short_ping'  => true,
-						'avatar_size' => 74,
-					)
-				);
-			?>
-		</ol><!-- .comment-list -->
-
-		<?php
-			// Are there comments to navigate through?
-		if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
-			?>
-		<nav class="navigation comment-navigation" role="navigation">
-		<h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1>
-		<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentythirteen' ) ); ?></div>
-		<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentythirteen' ) ); ?></div>
-		</nav><!-- .comment-navigation -->
-		<?php endif; // Check for comment navigation ?>
-
-		<?php if ( ! comments_open() && get_comments_number() ) : ?>
-		<p class="no-comments"><?php _e( 'Comments are closed.', 'twentythirteen' ); ?></p>
-		<?php endif; ?>
-
-	<?php endif; // have_comments() ?>
-
-	<?php comment_form(); ?>
-
-</div><!-- #comments -->
+<?php
+/**
+ * The template for displaying Comments
+ *
+ * The area of the page that contains comments and the comment form.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+/*
+ * If the current post is protected by a password and the visitor has not yet
+ * entered the password we will return early without loading the comments.
+ */
+if ( post_password_required() ) {
+	return;
+}
+?>
+
+<div id="comments" class="comments-area">
+
+	<?php if ( have_comments() ) : ?>
+		<h2 class="comments-title">
+			<?php
+			if ( 1 === get_comments_number() ) {
+				printf(
+					/* translators: %s: The post title. */
+					_x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentythirteen' ),
+					'<span>' . get_the_title() . '</span>'
+				);
+			} else {
+				printf(
+					/* translators: %1$s: The number of comments. %2$s: The post title. */
+					_nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'twentythirteen' ),
+					number_format_i18n( get_comments_number() ),
+					'<span>' . get_the_title() . '</span>'
+				);
+			}
+			?>
+		</h2>
+
+		<ol class="comment-list">
+			<?php
+				wp_list_comments(
+					array(
+						'style'       => 'ol',
+						'short_ping'  => true,
+						'avatar_size' => 74,
+					)
+				);
+			?>
+		</ol><!-- .comment-list -->
+
+		<?php
+			// Are there comments to navigate through?
+		if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
+			?>
+		<nav class="navigation comment-navigation" role="navigation">
+		<h1 class="screen-reader-text section-heading"><?php _e( 'Comment navigation', 'twentythirteen' ); ?></h1>
+		<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentythirteen' ) ); ?></div>
+		<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentythirteen' ) ); ?></div>
+		</nav><!-- .comment-navigation -->
+		<?php endif; // Check for comment navigation. ?>
+
+		<?php if ( ! comments_open() && get_comments_number() ) : ?>
+		<p class="no-comments"><?php _e( 'Comments are closed.', 'twentythirteen' ); ?></p>
+		<?php endif; ?>
+
+	<?php endif; // have_comments() ?>
+
+	<?php comment_form(); ?>
+
+</div><!-- #comments -->
diff --git a/wp-content/themes/twentythirteen/content-aside.php b/wp-content/themes/twentythirteen/content-aside.php
index 25235a5c861668d134cc2fa478458be1bf311e84..b165b3e39d92472b021a2a964c1ee3aeddfcb78f 100644
--- a/wp-content/themes/twentythirteen/content-aside.php
+++ b/wp-content/themes/twentythirteen/content-aside.php
@@ -1,47 +1,47 @@
-<?php
-/**
- * The template for displaying posts in the Aside post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php if ( is_single() ) : ?>
-			<?php twentythirteen_entry_meta(); ?>
-			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-			<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-				<?php get_template_part( 'author-bio' ); ?>
-			<?php endif; ?>
-
-		<?php else : ?>
-			<?php twentythirteen_entry_date(); ?>
-			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-		<?php endif; // is_single() ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Aside post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php if ( is_single() ) : ?>
+			<?php twentythirteen_entry_meta(); ?>
+			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+			<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+				<?php get_template_part( 'author-bio' ); ?>
+			<?php endif; ?>
+
+		<?php else : ?>
+			<?php twentythirteen_entry_date(); ?>
+			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+		<?php endif; // is_single() ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-audio.php b/wp-content/themes/twentythirteen/content-audio.php
index 83a2545b12f501e04c851019a2dbca19941dcef5..c36061565b9220e13c662cea415e1fbb765b2e59 100644
--- a/wp-content/themes/twentythirteen/content-audio.php
+++ b/wp-content/themes/twentythirteen/content-audio.php
@@ -1,53 +1,53 @@
-<?php
-/**
- * The template for displaying posts in the Audio post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<div class="audio-content">
-			<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-		</div><!-- .audio-content -->
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Audio post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<div class="audio-content">
+			<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+		</div><!-- .audio-content -->
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-chat.php b/wp-content/themes/twentythirteen/content-chat.php
index 390e005abc91e125d49f4bb7980f7b36bfad7cbb..7d14c7172c6708b89c76e8b3e41937c07f1f223a 100644
--- a/wp-content/themes/twentythirteen/content-chat.php
+++ b/wp-content/themes/twentythirteen/content-chat.php
@@ -1,47 +1,47 @@
-<?php
-/**
- * The template for displaying posts in the Chat post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Chat post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-gallery.php b/wp-content/themes/twentythirteen/content-gallery.php
index 27777e1e24c182a8bbfd6fa00825db35e67edf1a..cad3cbb7d9bd8f59e8c94909c6a7363c86849661 100644
--- a/wp-content/themes/twentythirteen/content-gallery.php
+++ b/wp-content/themes/twentythirteen/content-gallery.php
@@ -1,61 +1,61 @@
-<?php
-/**
- * The template for displaying posts in the Gallery post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<?php if ( is_single() || ! get_post_gallery() ) : ?>
-			<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-		<?php else : ?>
-			<?php echo get_post_gallery(); ?>
-		<?php endif; // is_single() ?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-
-		<?php if ( comments_open() && ! is_single() ) : ?>
-		<span class="comments-link">
-			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
-		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Gallery post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php if ( is_single() || ! get_post_gallery() ) : ?>
+			<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+		<?php else : ?>
+			<?php echo get_post_gallery(); ?>
+		<?php endif; // is_single() ?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+
+		<?php if ( comments_open() && ! is_single() ) : ?>
+		<span class="comments-link">
+			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
+		</span><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-image.php b/wp-content/themes/twentythirteen/content-image.php
index ed737c3cf1fcb49f9d00ad4d158a28bc760395d2..f762a5b5ff267aeba22abea6f1f4ccb5e09f6109 100644
--- a/wp-content/themes/twentythirteen/content-image.php
+++ b/wp-content/themes/twentythirteen/content-image.php
@@ -1,57 +1,57 @@
-<?php
-/**
- * The template for displaying posts in the Image post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-
-		<?php if ( comments_open() && ! is_single() ) : ?>
-		<span class="comments-link">
-			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
-		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Image post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+
+		<?php if ( comments_open() && ! is_single() ) : ?>
+		<span class="comments-link">
+			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
+		</span><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-link.php b/wp-content/themes/twentythirteen/content-link.php
index ff2999951a4ff65c17773b44c8714572ff287627..ce8420aab9ff535203c8cc5559cc72b540890d9f 100644
--- a/wp-content/themes/twentythirteen/content-link.php
+++ b/wp-content/themes/twentythirteen/content-link.php
@@ -1,52 +1,52 @@
-<?php
-/**
- * The template for displaying posts in the Link post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<h1 class="entry-title">
-			<a href="<?php echo esc_url( twentythirteen_get_link_url() ); ?>"><?php the_title(); ?></a>
-		</h1>
-
-		<div class="entry-meta">
-			<?php twentythirteen_entry_date(); ?>
-			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-		</div><!-- .entry-meta -->
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<?php if ( is_single() ) : ?>
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-		<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-	<?php endif; // is_single() ?>
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Link post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<h1 class="entry-title">
+			<a href="<?php echo esc_url( twentythirteen_get_link_url() ); ?>"><?php the_title(); ?></a>
+		</h1>
+
+		<div class="entry-meta">
+			<?php twentythirteen_entry_date(); ?>
+			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+		</div><!-- .entry-meta -->
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<?php if ( is_single() ) : ?>
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+		<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+	<?php endif; // is_single() ?>
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-none.php b/wp-content/themes/twentythirteen/content-none.php
index dba04c06de34c4ab297c75eed3345b9a6d1618de..f6310289cc72f502d1bfc042e9726ac84570b52b 100644
--- a/wp-content/themes/twentythirteen/content-none.php
+++ b/wp-content/themes/twentythirteen/content-none.php
@@ -1,31 +1,36 @@
-<?php
-/**
- * The template for displaying a "No posts found" message
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<header class="page-header">
-	<h1 class="page-title"><?php _e( 'Nothing Found', 'twentythirteen' ); ?></h1>
-</header>
-
-<div class="page-content">
-	<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
-
-	<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) ); ?></p>
-
-	<?php elseif ( is_search() ) : ?>
-
-	<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with different keywords.', 'twentythirteen' ); ?></p>
-		<?php get_search_form(); ?>
-
-	<?php else : ?>
-
-	<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentythirteen' ); ?></p>
-		<?php get_search_form(); ?>
-
-	<?php endif; ?>
-</div><!-- .page-content -->
+<?php
+/**
+ * The template for displaying a "No posts found" message
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<header class="page-header">
+	<h1 class="page-title"><?php _e( 'Nothing Found', 'twentythirteen' ); ?></h1>
+</header>
+
+<div class="page-content">
+	<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
+
+	<p>
+		<?php
+		/* translators: %s: Post editor URL. */
+		printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentythirteen' ), admin_url( 'post-new.php' ) );
+		?>
+	</p>
+
+	<?php elseif ( is_search() ) : ?>
+
+	<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with different keywords.', 'twentythirteen' ); ?></p>
+		<?php get_search_form(); ?>
+
+	<?php else : ?>
+
+	<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentythirteen' ); ?></p>
+		<?php get_search_form(); ?>
+
+	<?php endif; ?>
+</div><!-- .page-content -->
diff --git a/wp-content/themes/twentythirteen/content-quote.php b/wp-content/themes/twentythirteen/content-quote.php
index 1a536876653cf4b1aeeb5cf8f668d4ad9ead0a1f..4be4dc8c365ee3f6972088aeaf9239c6a29d74c9 100644
--- a/wp-content/themes/twentythirteen/content-quote.php
+++ b/wp-content/themes/twentythirteen/content-quote.php
@@ -1,43 +1,43 @@
-<?php
-/**
- * The template for displaying posts in the Quote post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-
-		<?php if ( comments_open() && ! is_single() ) : ?>
-		<span class="comments-link">
-			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
-		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Quote post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+
+		<?php if ( comments_open() && ! is_single() ) : ?>
+		<span class="comments-link">
+			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
+		</span><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-status.php b/wp-content/themes/twentythirteen/content-status.php
index 62c6a36b3d97259a87ecc016f0cb86d042738299..797c43d2bb157799b01192ac30f870d27b4be586 100644
--- a/wp-content/themes/twentythirteen/content-status.php
+++ b/wp-content/themes/twentythirteen/content-status.php
@@ -1,41 +1,41 @@
-<?php
-/**
- * The template for displaying posts in the Status post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Status post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content-video.php b/wp-content/themes/twentythirteen/content-video.php
index d3c806a8bd091f334082a0d87cf051ebf734aba7..97c9dfa73f473fdb59f423af54b4e6c14a5ee764 100644
--- a/wp-content/themes/twentythirteen/content-video.php
+++ b/wp-content/themes/twentythirteen/content-video.php
@@ -1,57 +1,57 @@
-<?php
-/**
- * The template for displaying posts in the Video post format
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-	</header><!-- .entry-header -->
-
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-			?>
-	</div><!-- .entry-content -->
-
-	<footer class="entry-meta">
-		<?php twentythirteen_entry_meta(); ?>
-
-		<?php if ( comments_open() && ! is_single() ) : ?>
-		<span class="comments-link">
-			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
-		</span><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
-		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The template for displaying posts in the Video post format
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+	</header><!-- .entry-header -->
+
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+			?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-meta">
+		<?php twentythirteen_entry_meta(); ?>
+
+		<?php if ( comments_open() && ! is_single() ) : ?>
+		<span class="comments-link">
+			<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
+		</span><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+		<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/content.php b/wp-content/themes/twentythirteen/content.php
index aace9cdaba1a889934e2d6f804fe188931444739..2864e84b6ef68e4bcd80416fb53a56ac0476805a 100644
--- a/wp-content/themes/twentythirteen/content.php
+++ b/wp-content/themes/twentythirteen/content.php
@@ -1,73 +1,73 @@
-<?php
-/**
- * The default template for displaying content
- *
- * Used for both single and index/archive/search.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-	<header class="entry-header">
-		<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
-		<div class="entry-thumbnail">
-			<?php the_post_thumbnail(); ?>
-		</div>
-		<?php endif; ?>
-
-		<?php if ( is_single() ) : ?>
-		<h1 class="entry-title"><?php the_title(); ?></h1>
-		<?php else : ?>
-		<h1 class="entry-title">
-			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
-		</h1>
-		<?php endif; // is_single() ?>
-
-		<div class="entry-meta">
-			<?php twentythirteen_entry_meta(); ?>
-			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-		</div><!-- .entry-meta -->
-	</header><!-- .entry-header -->
-
-	<?php if ( is_search() ) : // Only display Excerpts for Search ?>
-	<div class="entry-summary">
-		<?php the_excerpt(); ?>
-	</div><!-- .entry-summary -->
-	<?php else : ?>
-	<div class="entry-content">
-		<?php
-			/* translators: %s: Name of current post */
-			the_content(
-				sprintf(
-					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
-					the_title( '<span class="screen-reader-text">', '</span>', false )
-				)
-			);
-
-			wp_link_pages(
-				array(
-					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-					'after'       => '</div>',
-					'link_before' => '<span>',
-					'link_after'  => '</span>',
-				)
-			);
-		?>
-	</div><!-- .entry-content -->
-	<?php endif; ?>
-
-	<footer class="entry-meta">
-		<?php if ( comments_open() && ! is_single() ) : ?>
-			<div class="comments-link">
-				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
-			</div><!-- .comments-link -->
-		<?php endif; // comments_open() ?>
-
-		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
-			<?php get_template_part( 'author-bio' ); ?>
-		<?php endif; ?>
-	</footer><!-- .entry-meta -->
-</article><!-- #post -->
+<?php
+/**
+ * The default template for displaying content
+ *
+ * Used for both single and index/archive/search.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<header class="entry-header">
+		<?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
+		<div class="entry-thumbnail">
+			<?php the_post_thumbnail(); ?>
+		</div>
+		<?php endif; ?>
+
+		<?php if ( is_single() ) : ?>
+		<h1 class="entry-title"><?php the_title(); ?></h1>
+		<?php else : ?>
+		<h1 class="entry-title">
+			<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
+		</h1>
+		<?php endif; // is_single() ?>
+
+		<div class="entry-meta">
+			<?php twentythirteen_entry_meta(); ?>
+			<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+		</div><!-- .entry-meta -->
+	</header><!-- .entry-header -->
+
+	<?php if ( is_search() ) : // Only display excerpts for search. ?>
+	<div class="entry-summary">
+		<?php the_excerpt(); ?>
+	</div><!-- .entry-summary -->
+	<?php else : ?>
+	<div class="entry-content">
+		<?php
+			the_content(
+				sprintf(
+					/* translators: %s: Post title. */
+					__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
+					the_title( '<span class="screen-reader-text">', '</span>', false )
+				)
+			);
+
+			wp_link_pages(
+				array(
+					'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+					'after'       => '</div>',
+					'link_before' => '<span>',
+					'link_after'  => '</span>',
+				)
+			);
+		?>
+	</div><!-- .entry-content -->
+	<?php endif; ?>
+
+	<footer class="entry-meta">
+		<?php if ( comments_open() && ! is_single() ) : ?>
+			<div class="comments-link">
+				<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
+			</div><!-- .comments-link -->
+		<?php endif; // comments_open() ?>
+
+		<?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
+			<?php get_template_part( 'author-bio' ); ?>
+		<?php endif; ?>
+	</footer><!-- .entry-meta -->
+</article><!-- #post -->
diff --git a/wp-content/themes/twentythirteen/css/blocks.css b/wp-content/themes/twentythirteen/css/blocks.css
index e6c07e2ee8c4b9d6fc0ddcc46cf6a7ec638580d2..331be51311498f58545166799f19263d7d9bcad5 100644
--- a/wp-content/themes/twentythirteen/css/blocks.css
+++ b/wp-content/themes/twentythirteen/css/blocks.css
@@ -1,552 +1,659 @@
-/*
-Theme Name: Twenty Thirteen
-Description: Used to style blocks.
-*/
-
-/*--------------------------------------------------------------
->>> TABLE OF CONTENTS:
-----------------------------------------------------------------
-1.0 Block Alignments
-2.0 General Block Styles
-3.0 Blocks - Common Blocks
-4.0 Blocks - Formatting
-5.0 Blocks - Layout Elements
-6.0 Blocks - Widgets
-7.0 Blocks - Colors
---------------------------------------------------------------*/
-
-/*--------------------------------------------------------------
-1.0 Block Alignments
---------------------------------------------------------------*/
-
-.content-area {
-	overflow-x: hidden; /* prevents side-scrolling caused by use of vw */
-}
-
-[class^="wp-block-"].alignleft,
-[class^="wp-block-"] .alignleft {
-	margin-right: 20px;
-}
-
-[class^="wp-block-"].alignright,
-[class^="wp-block-"] .alignright {
-	margin-left: 20px;
-}
-
-.alignfull,
-.alignwide {
-	clear: both;
-}
-
-body:not(.sidebar) .alignwide {
-	margin-left: calc(25% - 25vw);
-	margin-right: calc(25% - 25vw);
-	width: auto;
-	max-width: 1600px;
-}
-
-body:not(.sidebar) .alignfull {
-	margin-left: calc(50% - 50vw);
-	margin-right: calc(50% - 50vw);
-	width: auto;
-	max-width: 1600px;
-}
-
-/* Make non image-based blocks a bit narrower, so they don't get cut off. */
-body:not(.sidebar) .wp-block-columns.alignfull,
-body:not(.sidebar) .wp-block-audio.alignfull,
-body:not(.sidebar) .wp-block-table.alignfull,
-body:not(.sidebar) .wp-block-latest-comments.alignfull {
-	margin-left: calc(50% - 48vw);
-	margin-right: calc(50% - 48vw);
-}
-
-@media (max-width: 999px) {
-	body.sidebar .alignwide {
-		margin-left: calc(25% - 25vw);
-		margin-right: calc(25% - 25vw);
-		width: auto;
-		max-width: 1600px;
-	}
-
-	body.sidebar .alignfull {
-		margin-left: calc(50% - 50vw);
-		margin-right: calc(50% - 50vw);
-		width: auto;
-		max-width: 1600px;
-	}
-
-	/* Make non image-based blocks a bit narrower, so they don't get cut off. */
-	body.sidebar .wp-block-columns.alignfull,
-	body.sidebar .wp-block-audio.alignfull,
-	body.sidebar .wp-block-table.alignfull,
-	body.sidebar .wp-block-latest-comments.alignfull {
-		margin-left: calc(50% - 48vw);
-		margin-right: calc(50% - 48vw);
-	}
-}
-
-@media (min-width: 1600px) {
-
-	/* Make sure the full and wide blocks still stay in Twenty Thirteen's wide container */
-	body:not(.sidebar) .alignfull {
-		margin-left: calc(50% - 800px);
-		margin-right: calc(50% - 800px);
-		width: auto;
-		max-width: 1000%;
-	}
-
-	body:not(.sidebar) .wp-block-columns.alignfull,
-	body:not(.sidebar) .wp-block-audio.alignfull,
-	body:not(.sidebar) .wp-block-table.alignfull,
-	body:not(.sidebar) .wp-block-latest-comments.alignfull {
-		margin-left: calc(50% - 780px);
-		margin-right: calc(50% - 780px);
-	}
-
-	body:not(.sidebar) .wp-block-gallery.alignfull {
-		margin-left: calc(50% - 808px); /* Adjust for gallery margins */
-		margin-right: calc(50% - 808px);
-		width: auto;
-		max-width: 1000%;
-	}
-
-	/* Make sure the 'wide' alignment doesn't get too wide. */
-	body:not(.sidebar) .alignwide {
-		margin-left: -230px;
-		margin-right: -230px;
-	}
-}
-
-/*--------------------------------------------------------------
-2.0 General Block Styles
---------------------------------------------------------------*/
-
-/* Captions */
-
-[class^="wp-block-"] figcaption,
-[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
-	color: #220e10;
-	font-size: 18px;
-	font-style: italic;
-	font-weight: 300;
-	line-height: 1.5;
-	margin: 0 0 24px;
-}
-
-/*--------------------------------------------------------------
-3.0 Blocks - Common Blocks
---------------------------------------------------------------*/
-
-/* Paragraph */
-
-p.has-drop-cap:not(:focus)::first-letter {
-	font-size: 5em;
-}
-
-/* Gallery */
-
-.wp-block-gallery {
-	margin-bottom: 24px;
-}
-
-.wp-block-gallery figcaption {
-	margin-bottom: 0;
-}
-
-/* Quote */
-
-.wp-block-quote {
-	margin: 24px 40px;
-	padding: 0;
-}
-
-.wp-block-quote:not(.is-large):not(.is-style-large) {
-	border-left: 0;
-	border-right: 0;
-	padding-left: 0;
-	padding-right: 0;
-}
-
-.wp-block-quote.is-large p,
-.wp-block-quote.is-style-large p {
-	font-size: 28px;
-}
-
-.wp-block-quote cite {
-	color: inherit;
-	font-size: inherit;
-	font-style: italic;
-}
-
-/* Audio */
-
-.wp-block-audio audio {
-	display: block;
-	width: 100%;
-}
-
-/* Cover */
-
-.wp-block-cover-image.aligncenter,
-.wp-block-cover.aligncenter {
-	clear: both;
-	display: flex;
-}
-
-/* File */
-
-.wp-block-file .wp-block-file__button {
-	background: #e05d22; /* Old browsers */
-	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
-	border: none;
-	border-radius: 2px;
-	border-bottom: 3px solid #b93207;
-	color: #fff;
-	display: inline-block;
-	font-size: 16px;
-	padding: 11px 24px 10px;
-	text-decoration: none;
-}
-
-.wp-block-file .wp-block-file__button:hover,
-.wp-block-file .wp-block-file__button:focus {
-	background: #ed6a31; /* Old browsers */
-	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
-	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
-	color: #fff;
-	outline: none;
-}
-
-.wp-block-file .wp-block-file__button:active {
-	background: #d94412; /* Old browsers */
-	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
-	border: none;
-	border-top: 3px solid #b93207;
-	padding: 10px 24px 11px;
-}
-
-/*--------------------------------------------------------------
-4.0 Blocks - Formatting
---------------------------------------------------------------*/
-
-/* Code */
-
-.wp-block-code {
-	background-color: transparent;
-	border: 0;
-	padding: 0;
-}
-
-/* Pullquote */
-
-.wp-block-pullquote {
-	border: 0;
-	color: inherit;
-	padding: 0.5em 0;
-}
-
-.wp-block-pullquote__citation,
-.wp-block-pullquote cite,
-.wp-block-pullquote footer {
-	color: inherit;
-}
-
-/* Table */
-
-.wp-block-table {
-	border-bottom: 1px solid #ededed;
-	border-collapse: collapse;
-	border-spacing: 0;
-	font-size: 14px;
-	line-height: 2;
-	margin: 0 0 20px;
-	width: 100%;
-}
-
-.wp-block-table th {
-	border: 0;
-	font-weight: bold;
-	text-transform: uppercase;
-}
-
-.wp-block-table td {
-	border: 0;
-	border-top: 1px solid #ededed;
-}
-
-body:not(.sidebar) .wp-block-table.alignwide,
-body:not(.sidebar) .wp-block-table.alignfull {
-	width: 100%;
-}
-
-/* Some acrobatics to make sure the table blocks always fill the available space. */
-
-@media (max-width: 1599px) {
-	body:not(.sidebar) .wp-block-table.alignwide {
-		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
-	}
-
-	body:not(.sidebar) .wp-block-table.alignfull {
-		width: 96vw;
-	}
-}
-
-@media (max-width: 999px) {
-	body.sidebar .wp-block-table.alignwide {
-		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
-	}
-
-	body.sidebar .wp-block-table.alignfull {
-		width: 96vw;
-	}
-}
-
-@media (max-width: 654px) {
-	body:not(.sidebar) .wp-block-table.alignwide,
-	body.sidebar .wp-block-table.alignwide {
-		width: 96vw;
-	}
-}
-
-@media (min-width: 1600px) {
-	body:not(.sidebar) .wp-block-table.alignwide {
-		width: 1064px;
-	}
-
-	body:not(.sidebar) .wp-block-table.alignfull {
-		width: 1560px;
-	}
-}
-
-/*--------------------------------------------------------------
-5.0 Blocks - Layout Elements
---------------------------------------------------------------*/
-
-/* Buttons */
-
-.wp-block-button.alignleft {
-	margin-right: 20px;
-}
-
-.wp-block-button.alignright {
-	margin-left: 20px;
-}
-
-.wp-block-button .wp-block-button__link {
-	border-bottom: 3px solid #b93207;
-	display: inline-block;
-	font-size: 16px;
-	padding: 11px 24px 10px;
-	text-decoration: none;
-}
-
-.entry-content .wp-block-button__link {
-	background-color: #e05d22;
-	color: #fff;
-}
-
-.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
-	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
-}
-
-.entry-content .wp-block-button__link:hover,
-.entry-content .wp-block-button__link:focus,
-.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
-.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):focus {
-	background: #ed6a31;
-	color: #fff;
-}
-
-.wp-block-button.is-style-outline .wp-block-button__link {
-	background-color: inherit;
-	border-color: inherit;
-	border-width: 2px;
-}
-
-.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
-	color: #ed6a31;
-}
-
-.entry-content .wp-block-button__link:not(.has-background):hover,
-.entry-content .wp-block-button__link:not(.has-background):hover,
-.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):hover {
-	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
-	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
-}
-
-.entry-content .wp-block-button__link:active {
-	background: #d94412;
-}
-
-.entry-content .wp-block-button__link:not(.has-background):active {
-	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
-}
-
-.entry-content .wp-block-button .wp-block-button__link:active {
-	border: none;
-	border-top: 3px solid #b93207;
-	padding: 10px 24px 11px;
-}
-
-/* Separator */
-
-.wp-block-separator {
-	border: 0;
-	max-width: 100px;
-}
-
-.wp-block-separator.is-style-wide {
-	max-width: 100%;
-}
-
-/* Media & Text */
-
-.wp-block-media-text {
-	margin-bottom: 24px;
-}
-
-.wp-block-media-text *:last-child {
-	margin-bottom: 0;
-}
-
-/*--------------------------------------------------------------
-6.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/* Archives, Categories & Latest Posts */
-
-.wp-block-archives.aligncenter,
-.wp-block-categories.aligncenter,
-.wp-block-latest-posts.aligncenter {
-	list-style-position: inside;
-	text-align: center;
-}
-
-/* Latest Comments */
-
-.wp-block-latest-comments {
-	margin: 0;
-	padding: 0;
-}
-
-.wp-block-latest-comments .avatar,
-.wp-block-latest-comments__comment-avatar {
-	border-radius: 0;
-}
-
-.wp-block-latest-comments__comment,
-.wp-block-latest-comments__comment-excerpt,
-.wp-block-latest-comments__comment-excerpt p {
-	font-size: 16px;
-}
-
-.wp-block-latest-comments__comment-excerpt p:last-child {
-	margin-bottom: 0;
-}
-
-.wp-block-latest-comments__comment-date {
-	font-size: 16px;
-}
-
-.wp-block-latest-comments .wp-block-latest-comments__comment {
-	background: url(../images/dotted-line.png) repeat-x left top;
-	margin-bottom: 0;
-	padding: 24px 0;
-}
-
-/*--------------------------------------------------------------
-7.0 Blocks - Colors
---------------------------------------------------------------*/
-
-.entry-content .has-dark-gray-color {
-	color: #141412;
-}
-
-.entry-content .has-dark-gray-background-color {
-	background-color: #141412;
-}
-
-.entry-content .has-red-color {
-	color: #bc360a;
-}
-
-.entry-content .has-red-background-color {
-	background-color: #bc360a;
-}
-
-.entry-content .has-medium-orange-color {
-	color: #db572f;
-}
-
-.entry-content .has-medium-orange-background-color {
-	background-color: #db572f;
-}
-
-.entry-content .has-light-orange-color {
-	color: #ea9629;
-}
-
-.entry-content .has-light-orange-background-color {
-	background-color: #ea9629;
-}
-
-.entry-content .has-yellow-color {
-	color: #fbca3c;
-}
-
-.entry-content .has-yellow-background-color {
-	background-color: #fbca3c;
-}
-
-.entry-content .has-white-color {
-	color: #fff;
-}
-
-.entry-content .has-white-background-color {
-	background-color: #fff;
-}
-
-.entry-content .has-dark-brown-color {
-	color: #220e10;
-}
-
-.entry-content .has-dark-brown-background-color {
-	background-color: #220e10;
-}
-
-.entry-content .has-medium-brown-color {
-	color: #722d19;
-}
-
-.entry-content .has-medium-brown-background-color {
-	background-color: #722d19;
-}
-
-.entry-content .has-light-brown-color {
-	color: #eadaa6;
-}
-
-.entry-content .has-light-brown-background-color {
-	background-color: #eadaa6;
-}
-
-.entry-content .has-beige-color {
-	color: #e8e5ce;
-}
-
-.entry-content .has-beige-background-color {
-	background-color: #e8e5ce;
-}
-
-.entry-content .has-off-white-color {
-	color: #f7f5e7;
-}
-
-.entry-content .has-off-white-background-color {
-	background-color: #f7f5e7;
-}
+/*
+Theme Name: Twenty Thirteen
+Description: Used to style blocks.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 Block Alignments
+2.0 General Block Styles
+3.0 Blocks - Common Blocks
+4.0 Blocks - Formatting
+5.0 Blocks - Layout Elements
+6.0 Blocks - Widgets
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 Block Alignments
+--------------------------------------------------------------*/
+
+.content-area {
+	overflow-x: hidden; /* prevents side-scrolling caused by use of vw */
+}
+
+[class^="wp-block-"].alignleft,
+[class^="wp-block-"] .alignleft {
+	margin-right: 20px;
+}
+
+[class^="wp-block-"].alignright,
+[class^="wp-block-"] .alignright {
+	margin-left: 20px;
+}
+
+.alignfull,
+.alignwide {
+	clear: both;
+}
+
+body:not(.sidebar) .alignwide {
+	margin-left: calc(25% - 25vw);
+	margin-right: calc(25% - 25vw);
+	width: auto;
+	max-width: 1600px;
+}
+
+body:not(.sidebar) .alignfull {
+	margin-left: calc(50% - 50vw);
+	margin-right: calc(50% - 50vw);
+	width: auto;
+	max-width: 1600px;
+}
+
+/* Make non image-based blocks a bit narrower, so they don't get cut off. */
+body:not(.sidebar) .wp-block-columns.alignfull,
+body:not(.sidebar) .wp-block-audio.alignfull,
+body:not(.sidebar) .wp-block-table.alignfull,
+body:not(.sidebar) .wp-block-latest-comments.alignfull {
+	margin-left: calc(50% - 48vw);
+	margin-right: calc(50% - 48vw);
+}
+
+@media (max-width: 999px) {
+	body.sidebar .alignwide {
+		margin-left: calc(25% - 25vw);
+		margin-right: calc(25% - 25vw);
+		width: auto;
+		max-width: 1600px;
+	}
+
+	body.sidebar .alignfull {
+		margin-left: calc(50% - 50vw);
+		margin-right: calc(50% - 50vw);
+		width: auto;
+		max-width: 1600px;
+	}
+
+	/* Make non image-based blocks a bit narrower, so they don't get cut off. */
+	body.sidebar .wp-block-columns.alignfull,
+	body.sidebar .wp-block-audio.alignfull,
+	body.sidebar .wp-block-table.alignfull,
+	body.sidebar .wp-block-latest-comments.alignfull {
+		margin-left: calc(50% - 48vw);
+		margin-right: calc(50% - 48vw);
+	}
+}
+
+@media (min-width: 1600px) {
+
+	/* Make sure the full and wide blocks still stay in Twenty Thirteen's wide container */
+	body:not(.sidebar) .alignfull {
+		margin-left: calc(50% - 800px);
+		margin-right: calc(50% - 800px);
+		width: auto;
+		max-width: 1000%;
+	}
+
+	body:not(.sidebar) .wp-block-columns.alignfull,
+	body:not(.sidebar) .wp-block-audio.alignfull,
+	body:not(.sidebar) .wp-block-table.alignfull,
+	body:not(.sidebar) .wp-block-latest-comments.alignfull {
+		margin-left: calc(50% - 780px);
+		margin-right: calc(50% - 780px);
+	}
+
+	body:not(.sidebar) .wp-block-gallery.alignfull {
+		margin-left: calc(50% - 808px); /* Adjust for gallery margins */
+		margin-right: calc(50% - 808px);
+		width: auto;
+		max-width: 1000%;
+	}
+
+	/* Make sure the 'wide' alignment doesn't get too wide. */
+	body:not(.sidebar) .alignwide {
+		margin-left: -230px;
+		margin-right: -230px;
+	}
+}
+
+/*--------------------------------------------------------------
+2.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Captions */
+
+[class^="wp-block-"] figcaption,
+[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	line-height: 1.5;
+	margin: 0 0 24px;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+}
+
+/* Gallery */
+
+.wp-block-gallery {
+	margin-bottom: 24px;
+}
+
+.wp-block-gallery figcaption {
+	margin-bottom: 0;
+}
+
+/* Quote */
+
+.wp-block-quote {
+	margin: 24px 40px;
+	padding: 0;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border-left: 0;
+	border-right: 0;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-quote.is-large p,
+.wp-block-quote.is-style-large p {
+	font-size: 28px;
+}
+
+.wp-block-quote cite {
+	color: inherit;
+	font-size: inherit;
+	font-style: italic;
+}
+
+/* Audio */
+
+.wp-block-audio audio {
+	display: block;
+	width: 100%;
+}
+
+/* Cover */
+
+.wp-block-cover-image.aligncenter,
+.wp-block-cover.aligncenter {
+	clear: both;
+	display: flex;
+}
+
+/* File */
+
+.wp-block-file .wp-block-file__button {
+	background: #e05d22; /* Old browsers */
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+	border: none;
+	border-radius: 2px;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+	display: inline-block;
+	font-size: 16px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.wp-block-file .wp-block-file__button:hover,
+.wp-block-file .wp-block-file__button:focus {
+	background: #ed6a31; /* Old browsers */
+	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
+	color: #fff;
+	outline: none;
+}
+
+.wp-block-file .wp-block-file__button:active {
+	background: #d94412; /* Old browsers */
+	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
+	border: none;
+	border-top: 3px solid #b93207;
+	padding: 10px 24px 11px;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	background-color: transparent;
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.wp-block-pullquote {
+	border: 0;
+	color: inherit;
+	padding: 0.5em 0;
+}
+
+.wp-block-pullquote__citation,
+.wp-block-pullquote cite,
+.wp-block-pullquote footer {
+	color: inherit;
+}
+
+/* Table */
+
+.wp-block-table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+.wp-block-table th {
+	border: 0;
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+.wp-block-table td {
+	border: 0;
+	border-top: 1px solid #ededed;
+}
+
+body:not(.sidebar) .wp-block-table.alignwide,
+body:not(.sidebar) .wp-block-table.alignfull {
+	width: 100%;
+}
+
+/* Some acrobatics to make sure the table blocks always fill the available space. */
+
+@media (max-width: 1599px) {
+	body:not(.sidebar) .wp-block-table.alignwide {
+		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
+	}
+
+	body:not(.sidebar) .wp-block-table.alignfull {
+		width: 96vw;
+	}
+}
+
+@media (max-width: 999px) {
+	body.sidebar .wp-block-table.alignwide {
+		width: calc(302px + 50vw); /* Half the content area width plus half the screen width. */
+	}
+
+	body.sidebar .wp-block-table.alignfull {
+		width: 96vw;
+	}
+}
+
+@media (max-width: 654px) {
+	body:not(.sidebar) .wp-block-table.alignwide,
+	body.sidebar .wp-block-table.alignwide {
+		width: 96vw;
+	}
+}
+
+@media (min-width: 1600px) {
+	body:not(.sidebar) .wp-block-table.alignwide {
+		width: 1064px;
+	}
+
+	body:not(.sidebar) .wp-block-table.alignfull {
+		width: 1560px;
+	}
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Buttons */
+
+.wp-block-button.alignleft {
+	margin-right: 20px;
+}
+
+.wp-block-button.alignright {
+	margin-left: 20px;
+}
+
+.wp-block-button .wp-block-button__link {
+	border-bottom: 3px solid #b93207;
+	display: inline-block;
+	font-size: 16px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.entry-content .wp-block-button__link {
+	background-color: #e05d22;
+	color: #fff;
+}
+
+.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+}
+
+.entry-content .wp-block-button__link:hover,
+.entry-content .wp-block-button__link:focus,
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):focus {
+	background: #ed6a31;
+	color: #fff;
+}
+
+.wp-block-button.is-style-outline .wp-block-button__link {
+	background-color: inherit;
+	border-color: inherit;
+	border-width: 2px;
+}
+
+.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
+	color: #ed6a31;
+}
+
+.entry-content .wp-block-button__link:not(.has-background):hover,
+.entry-content .wp-block-button__link:not(.has-background):hover,
+.entry-content .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background):hover {
+	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
+}
+
+.entry-content .wp-block-button__link:active {
+	background: #d94412;
+}
+
+.entry-content .wp-block-button__link:not(.has-background):active {
+	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
+}
+
+.entry-content .wp-block-button .wp-block-button__link:active {
+	border: none;
+	border-top: 3px solid #b93207;
+	padding: 10px 24px 11px;
+}
+
+/* Separator */
+
+.wp-block-separator {
+	border: 0;
+	max-width: 100px;
+}
+
+.wp-block-separator.is-style-wide {
+	max-width: 100%;
+}
+
+/* Group Block: Default Alignment */
+
+.wp-block-group,
+.wp-block-group.has-background {
+	margin-bottom: 24px;
+}
+
+.wp-block-group:not(.alignfull):not(.alignwide) > .wp-block-group__inner-container > * {
+	width: 604px;
+	max-width: 100%;
+	margin-left: 0;
+	margin-right: 0;
+}
+
+.wp-block-group.has-background:not(.alignfull):not(.alignwide) > .wp-block-group__inner-container > .alignfull {
+	width: calc(100% + 60px);
+	max-width: calc(100% + 60px);
+	margin-left: -30px;
+}
+
+.wp-block-group:not(.alignfull) .wp-block-columns.alignfull {
+	margin-left: auto;
+	margin-right: auto;
+}
+
+/* Group Block: Wide Alignment */
+
+.wp-block-group.alignwide > .wp-block-group__inner-container > *,
+.wp-block-group.alignwide > .wp-block-group__inner-container > .alignwide,
+.wp-block-group.alignwide > .wp-block-group__inner-container > .alignfull {
+	max-width: 604px;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-block-group.alignwide > .wp-block-group__inner-container > .alignwide,
+.wp-block-group.alignwide > .wp-block-group__inner-container > .alignfull {
+	width: 100%;
+	max-width: 100%;
+}
+
+.wp-block-group.has-background.alignwide > .wp-block-group__inner-container > .alignfull {
+	width: calc(100% + 60px);
+	max-width: calc(100% + 60px);
+	margin-left: -30px;
+}
+
+@media (max-width: 664px) {
+	.wp-block-group:not(.has-background).alignwide {
+		margin-left: 0;
+		margin-right: 0;
+	}
+
+	.wp-block-group:not(.has-background).alignwide > .wp-block-group__inner-container > .alignwide,
+	.wp-block-group:not(.has-background).alignwide > .wp-block-group__inner-container > .alignfull {
+		width: auto;
+		max-width: 1600px;
+		margin-left: calc(25% - 25vw);
+		margin-right: calc(25% - 25vw);
+	}
+}
+
+/* Group Block: Full Alignment */
+
+@media (max-width: 664px) {
+	.wp-block-group:not(.has-background).alignfull {
+		margin-left: 0;
+		margin-right: 0;
+	}
+
+	.wp-block-group.has-background.alignfull > *:not(.alignfull) {
+		margin-left: auto;
+		margin-right: auto;
+	}
+}
+
+@media (max-width: 999px) {
+	body.sidebar .wp-block-group.alignfull:not(.has-background) {
+		margin-left: 0;
+		margin-right: 0;
+	}
+
+	body.sidebar .wp-block-group.alignfull.has-background > .wp-block-group__inner-container {
+		max-width: 604px;
+		margin: 0 auto;
+	}
+
+	body.sidebar .wp-block-group.alignfull:not(.has-background) > .wp-block-group__inner-container > .alignfull {
+		margin-left: calc(50% - 50vw);
+		margin-right: calc(50% - 50vw);
+	}
+}
+
+@media (min-width: 665px) {
+	body:not(.sidebar) .wp-block-group.alignfull,
+	body:not(.sidebar) .wp-block-group.has-background.alignfull {
+		padding: 20px calc( (100vw - 604px ) / 2 ); /* Reproduces the padding of entry-content, so that default block rules apply properly inside of this block. */
+	}
+}
+
+@media (min-width: 1600px) {
+	body:not(.sidebar) .wp-block-group.alignfull,
+	body:not(.sidebar) .wp-block-group.has-background.alignfull {
+		padding: 20px 498px; /* Above 1600px, these need fixed left/right padding. This works out to ((1600px - 604px) / 2) */
+	}
+}
+
+/* Media & Text */
+
+.wp-block-media-text {
+	margin-bottom: 24px;
+}
+
+.wp-block-media-text *:last-child {
+	margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+.wp-block-archives.aligncenter,
+.wp-block-categories.aligncenter,
+.wp-block-latest-posts.aligncenter {
+	list-style-position: inside;
+	text-align: center;
+}
+
+/* Latest Comments */
+
+.wp-block-latest-comments {
+	margin: 0;
+	padding: 0;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+	border-radius: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+	margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+	background: url(../images/dotted-line.png) repeat-x left top;
+	margin-bottom: 0;
+	padding: 24px 0;
+}
+
+/*--------------------------------------------------------------
+7.0 Blocks - Colors
+--------------------------------------------------------------*/
+
+.entry-content .has-dark-gray-color {
+	color: #141412;
+}
+
+.entry-content .has-dark-gray-background-color {
+	background-color: #141412;
+}
+
+.entry-content .has-red-color {
+	color: #bc360a;
+}
+
+.entry-content .has-red-background-color {
+	background-color: #bc360a;
+}
+
+.entry-content .has-medium-orange-color {
+	color: #db572f;
+}
+
+.entry-content .has-medium-orange-background-color {
+	background-color: #db572f;
+}
+
+.entry-content .has-light-orange-color {
+	color: #ea9629;
+}
+
+.entry-content .has-light-orange-background-color {
+	background-color: #ea9629;
+}
+
+.entry-content .has-yellow-color {
+	color: #fbca3c;
+}
+
+.entry-content .has-yellow-background-color {
+	background-color: #fbca3c;
+}
+
+.entry-content .has-white-color {
+	color: #fff;
+}
+
+.entry-content .has-white-background-color {
+	background-color: #fff;
+}
+
+.entry-content .has-dark-brown-color {
+	color: #220e10;
+}
+
+.entry-content .has-dark-brown-background-color {
+	background-color: #220e10;
+}
+
+.entry-content .has-medium-brown-color {
+	color: #722d19;
+}
+
+.entry-content .has-medium-brown-background-color {
+	background-color: #722d19;
+}
+
+.entry-content .has-light-brown-color {
+	color: #eadaa6;
+}
+
+.entry-content .has-light-brown-background-color {
+	background-color: #eadaa6;
+}
+
+.entry-content .has-beige-color {
+	color: #e8e5ce;
+}
+
+.entry-content .has-beige-background-color {
+	background-color: #e8e5ce;
+}
+
+.entry-content .has-off-white-color {
+	color: #f7f5e7;
+}
+
+.entry-content .has-off-white-background-color {
+	background-color: #f7f5e7;
+}
diff --git a/wp-content/themes/twentythirteen/css/editor-blocks.css b/wp-content/themes/twentythirteen/css/editor-blocks.css
index c88cb4dba768bb2940412a4f5a31953688344149..9f4db3b820fce4c6f3a09fe4438a5afa83810466 100644
--- a/wp-content/themes/twentythirteen/css/editor-blocks.css
+++ b/wp-content/themes/twentythirteen/css/editor-blocks.css
@@ -1,419 +1,438 @@
-/*
-Theme Name: Twenty Thirteen
-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 - Layout Elements
-6.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/*--------------------------------------------------------------
-1.0 Block Alignments
---------------------------------------------------------------*/
-
-.editor-block-list__layout .editor-block-list__block[data-align="full"] > .editor-block-list__block-edit figure {
-	width: auto;
-}
-
-/*--------------------------------------------------------------
-2.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-family: "Source Sans Pro", Helvetica, sans-serif;
-	font-size: 16px;
-	font-weight: 400;
-	line-height: 1.5;
-}
-
-.edit-post-visual-editor .editor-block-list__block {
-	color: #141412;
-}
-
-.editor-post-title__block .editor-post-title__input {
-	font-family: Bitter, Georgia, serif;
-	font-size: 48px;
-	font-weight: 300;
-	line-height: 1.0909090909;
-	margin-bottom: 12px;
-	margin: 0 0 12px 0;
-}
-
-/*--------------------------------------------------------------
-3.0 General Block Styles
---------------------------------------------------------------*/
-
-/* Main content width */
-
-.wp-block {
-	max-width: 634px; /* 604px + 30px to account for padding */
-}
-
-.wp-block.alignwide,
-.wp-block.alignfull {
-	max-width: inherit;
-}
-
-[class^="wp-block-"] .wp-block {
-	max-width: 100%;
-}
-
-/* Link styles */
-
-.edit-post-visual-editor a,
-.editor-block-list__block a,
-.wp-block-freeform.block-library-rich-text__tinymce a {
-	color: #bc360a;
-}
-
-/* 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 {
-	margin: 16px 0;
-	padding: 0 0 0 40px;
-}
-
-.block-library-list .editor-rich-text__tinymce {
-	padding: 0 0 0 40px;
-}
-
-.edit-post-visual-editor ul:not(.wp-block-gallery),
-.edit-post-visual-editor .editor-block-list__block ul:not(.wp-block-gallery),
-.block-library-list ul {
-	list-style-type: square;
-}
-
-.edit-post-visual-editor ol,
-.editor-block-list__block ol,
-.block-library-list ol {
-	list-style: decimal;
-}
-
-.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: 0;
-}
-
-.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;
-}
-
-.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 {
-	padding-left: 0;
-	padding-right: 40px;
-}
-
-.rtl .block-library-list .editor-rich-text__tinymce {
-	padding-left: 0;
-	padding-right: 40px;
-}
-
-/* Quote */
-
-.wp-block-freeform.block-library-rich-text__tinymce blockquote {
-	border-left: 0;
-	border-right: 0;
-	font-style: italic;
-	margin: 24px 40px;
-	padding-left: 0;
-	padding-right: 0;
-}
-
-.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
-	font-size: 24px;
-	font-weight: 300;
-}
-
-/* Table */
-
-.rtl .editor-block-list__block table th,
-.rtl .editor-block-list__block table td {
-	text-align: right;
-}
-
-/* Code */
-
-.wp-block-freeform.block-library-rich-text__tinymce code {
-	background: transparent;
-}
-
-/* Captions */
-
-[class^="wp-block-"] figcaption,
-[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
-	color: #220e10;
-	font-size: 18px;
-	font-style: italic;
-	font-weight: 300;
-	line-height: 1.5;
-	margin: 0 0 24px;
-}
-
-/*--------------------------------------------------------------
-4.0 Blocks - Common Blocks
---------------------------------------------------------------*/
-
-/* Paragraph */
-
-p.has-drop-cap:not(:focus)::first-letter {
-	font-size: 5em;
-}
-
-/* Gallery */
-
-.edit-post-visual-editor .wp-block-gallery {
-	margin-bottom: 24px;
-	padding: 0;
-}
-
-.wp-block-gallery figcaption,
-.wp-block-gallery figcaption.editor-rich-text__tinymce.mce-content-body {
-	color: #fff;
-	font-size: 13px;
-	margin-bottom: 0;
-}
-
-/* Quote */
-
-.wp-block-quote {
-	font-style: italic;
-	margin: 24px 40px;
-	padding: 0;
-}
-
-.editor-block-list__block .wp-block-quote p {
-	font-size: 24px;
-	font-weight: 300;
-}
-
-.wp-block-quote:not(.is-large):not(.is-style-large) {
-	border-left: 0;
-	border-right: 0;
-	padding-left: 0;
-	padding-right: 0;
-}
-
-.wp-block-quote .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
-	color: inherit;
-	font-size: 16px;
-	font-style: italic;
-	text-transform: uppercase;
-}
-
-.wp-block-quote.is-large p,
-.wp-block-quote.is-style-large p {
-	font-size: 28px;
-}
-
-.wp-block-quote.is-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body,
-.wp-block-quote.is-style-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
-	font-size: 18px;
-}
-
-/* Cover */
-
-.edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text,
-.edit-post-visual-editor .editor-block-list__block .wp-block-cover p.wp-block-cover-text {
-	font-size: 32px;
-	line-height: 1.25;
-}
-
-/* File */
-
-.wp-block-file .wp-block-file__textlink {
-	color: #bc360a;
-}
-
-.wp-block-file .wp-block-file__button {
-	background: #e05d22; /* Old browsers */
-	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
-	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
-	border: none;
-	border-bottom: 3px solid #b93207;
-	color: #fff;
-	display: inline-block;
-	font-size: 16px;
-	line-height: 24px;
-	padding: 11px 24px 10px;
-	text-decoration: none;
-}
-
-/*--------------------------------------------------------------
-5.0 Blocks - Formatting
---------------------------------------------------------------*/
-
-/* Code */
-
-.wp-block-code {
-	border: 0;
-	padding: 0;
-}
-
-/* Pullquote */
-
-.edit-post-visual-editor .wp-block-pullquote {
-	border: 0;
-	padding: 0.5em 0;
-}
-
-.edit-post-visual-editor .editor-block-list__block .wp-block-pullquote p {
-	font-weight: 300;
-}
-
-.edit-post-visual-editor .wp-block-pullquote__citation,
-.edit-post-visual-editor .wp-block-pullquote cite,
-.edit-post-visual-editor .wp-block-pullquote footer {
-	color: #141412;
-	font-size: 16px;
-}
-
-/* Table */
-
-.wp-block-table {
-	border-bottom: 1px solid #ededed;
-	border-collapse: collapse;
-	border-spacing: 0;
-	font-size: 14px;
-	line-height: 2;
-	margin: 0 0 20px;
-	width: 100%;
-}
-
-.wp-block-table th {
-	border: 0;
-	font-weight: bold;
-	text-transform: uppercase;
-}
-
-.editor-block-list__block .wp-block-table td {
-	border: 0;
-	border-top: 1px solid #ededed;
-	padding: 0;
-}
-
-/*--------------------------------------------------------------
-6.0 Blocks - Layout Elements
---------------------------------------------------------------*/
-
-/* Buttons */
-
-.wp-block-button .wp-block-button__link {
-	display: inline-block;
-	font-size: 16px;
-	line-height: 24px;
-	padding: 11px 24px 10px;
-	text-decoration: none;
-}
-
-.wp-block-button__link {
-	background: #e05d22;
-	border-bottom: 3px solid #b93207;
-	color: #fff;
-}
-
-.is-style-outline .wp-block-button__link {
-	border-width: 2px;
-	color: #e05d22;
-}
-
-.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
-	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
-	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
-}
-
-/* Separator */
-
-.editor-block-list__block hr.wp-block-separator {
-	margin-left: auto;
-	margin-right: auto;
-}
-
-/* Media & Text */
-
-.wp-block-media-text *:last-child {
-	margin-bottom: 0;
-}
-
-/*--------------------------------------------------------------
-7.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-/* Archives, Categories & Latest Posts */
-
-[data-align="center"] .wp-block-archives ul,
-[data-align="center"] .wp-block-categories ul,
-[data-align="center"] .wp-block-latest-posts ul {
-	list-style-position: inside;
-	text-align: center;
-}
-
-/* Latest Comments */
-
-.editor-block-list__block .wp-block-latest-comments {
-	margin: 0;
-	padding: 0;
-}
-
-.wp-block-latest-comments .avatar,
-.wp-block-latest-comments__comment-avatar {
-	border-radius: 0;
-}
-
-.wp-block-latest-comments__comment,
-.wp-block-latest-comments__comment-excerpt,
-.wp-block-latest-comments__comment-excerpt p {
-	font-size: 16px;
-}
-
-.wp-block-latest-comments__comment-excerpt p:last-child {
-	margin-bottom: 0;
-}
-
-.wp-block-latest-comments__comment-date {
-	font-size: 16px;
-}
-
-.wp-block-latest-comments .wp-block-latest-comments__comment {
-	background: url(../images/dotted-line.png) repeat-x left top;
-	margin-bottom: 0;
-	padding: 24px 0;
-}
-
-/* Latest Posts */
-
-.edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
-	list-style-type: none;
-	margin-left: 0;
-	margin-right: 0;
-}
-
-.edit-post-visual-editor .wp-block-latest-posts.is-grid li {
-	margin-bottom: 1em;
-}
+/*
+Theme Name: Twenty Thirteen
+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 - Layout Elements
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 Block Alignments
+--------------------------------------------------------------*/
+
+.editor-block-list__layout .editor-block-list__block[data-align="full"] > .editor-block-list__block-edit figure {
+	width: auto;
+}
+
+/*--------------------------------------------------------------
+2.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-family: "Source Sans Pro", Helvetica, sans-serif;
+	font-size: 16px;
+	font-weight: 400;
+	line-height: 1.5;
+}
+
+.edit-post-visual-editor .editor-block-list__block {
+	color: #141412;
+}
+
+.editor-post-title__block .editor-post-title__input {
+	font-family: Bitter, Georgia, serif;
+	font-size: 48px;
+	font-weight: 300;
+	line-height: 1.0909090909;
+	margin-bottom: 12px;
+	margin: 0 0 12px 0;
+}
+
+/*--------------------------------------------------------------
+3.0 General Block Styles
+--------------------------------------------------------------*/
+
+/* Main content width */
+
+.wp-block {
+	max-width: 634px; /* 604px + 30px to account for padding */
+}
+
+.wp-block.alignwide,
+.wp-block.alignfull {
+	max-width: inherit;
+}
+
+[class^="wp-block-"] .wp-block {
+	max-width: 100%;
+}
+
+/* Link styles */
+
+.edit-post-visual-editor a,
+.editor-block-list__block a,
+.wp-block-freeform.block-library-rich-text__tinymce a {
+	color: #bc360a;
+}
+
+/* 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 {
+	margin: 16px 0;
+	padding: 0 0 0 40px;
+}
+
+.block-library-list .editor-rich-text__tinymce {
+	padding: 0 0 0 40px;
+}
+
+.edit-post-visual-editor ul:not(.wp-block-gallery),
+.edit-post-visual-editor .editor-block-list__block ul:not(.wp-block-gallery),
+.block-library-list ul {
+	list-style-type: square;
+}
+
+.edit-post-visual-editor ol,
+.editor-block-list__block ol,
+.block-library-list ol {
+	list-style: decimal;
+}
+
+.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: 0;
+}
+
+.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;
+}
+
+.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 {
+	padding-left: 0;
+	padding-right: 40px;
+}
+
+.rtl .block-library-list .editor-rich-text__tinymce {
+	padding-left: 0;
+	padding-right: 40px;
+}
+
+/* Quote */
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+	border-left: 0;
+	border-right: 0;
+	font-style: italic;
+	margin: 24px 40px;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
+	font-size: 24px;
+	font-weight: 300;
+}
+
+/* Table */
+
+.rtl .editor-block-list__block table th,
+.rtl .editor-block-list__block table td {
+	text-align: right;
+}
+
+/* Code */
+
+.wp-block-freeform.block-library-rich-text__tinymce code {
+	background: transparent;
+}
+
+/* Captions */
+
+[class^="wp-block-"] figcaption,
+[class^="wp-block-"] figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	line-height: 1.5;
+	margin: 0 0 24px;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Common Blocks
+--------------------------------------------------------------*/
+
+/* Paragraph */
+
+p.has-drop-cap:not(:focus)::first-letter {
+	font-size: 5em;
+}
+
+/* Gallery */
+
+.edit-post-visual-editor .wp-block-gallery {
+	margin-bottom: 24px;
+	padding: 0;
+}
+
+.wp-block-gallery figcaption,
+.wp-block-gallery figcaption.editor-rich-text__tinymce.mce-content-body {
+	color: #fff;
+	font-size: 13px;
+	margin-bottom: 0;
+}
+
+/* Quote */
+
+.wp-block-quote {
+	font-style: italic;
+	margin: 24px 40px;
+	padding: 0;
+}
+
+.editor-block-list__block .wp-block-quote p {
+	font-size: 24px;
+	font-weight: 300;
+}
+
+.wp-block-quote:not(.is-large):not(.is-style-large) {
+	border-left: 0;
+	border-right: 0;
+	padding-left: 0;
+	padding-right: 0;
+}
+
+.wp-block-quote .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
+	color: inherit;
+	font-size: 16px;
+	font-style: italic;
+	text-transform: uppercase;
+}
+
+.wp-block-quote.is-large p,
+.wp-block-quote.is-style-large p {
+	font-size: 28px;
+}
+
+.wp-block-quote.is-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body,
+.wp-block-quote.is-style-large .wp-block-quote__citation.editor-rich-text__tinymce.mce-content-body {
+	font-size: 18px;
+}
+
+/* Cover */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text,
+.edit-post-visual-editor .editor-block-list__block .wp-block-cover p.wp-block-cover-text {
+	font-size: 32px;
+	line-height: 1.25;
+}
+
+/* File */
+
+.wp-block-file .wp-block-file__textlink {
+	color: #bc360a;
+}
+
+.wp-block-file .wp-block-file__button {
+	background: #e05d22; /* Old browsers */
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+	border: none;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+	display: inline-block;
+	font-size: 16px;
+	line-height: 24px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Code */
+
+.wp-block-code {
+	border: 0;
+	padding: 0;
+}
+
+/* Pullquote */
+
+.edit-post-visual-editor .wp-block-pullquote {
+	border: 0;
+	padding: 0.5em 0;
+}
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-pullquote p {
+	font-weight: 300;
+}
+
+.edit-post-visual-editor .wp-block-pullquote__citation,
+.edit-post-visual-editor .wp-block-pullquote cite,
+.edit-post-visual-editor .wp-block-pullquote footer {
+	color: #141412;
+	font-size: 16px;
+}
+
+/* Table */
+
+.wp-block-table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+.wp-block-table th {
+	border: 0;
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+.editor-block-list__block .wp-block-table td {
+	border: 0;
+	border-top: 1px solid #ededed;
+	padding: 0;
+}
+
+/*--------------------------------------------------------------
+6.0 Blocks - Layout Elements
+--------------------------------------------------------------*/
+
+/* Buttons */
+
+.wp-block-button .wp-block-button__link {
+	display: inline-block;
+	font-size: 16px;
+	line-height: 24px;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+.wp-block-button__link {
+	background: #e05d22;
+	border-bottom: 3px solid #b93207;
+	color: #fff;
+}
+
+.is-style-outline .wp-block-button__link {
+	border-width: 2px;
+	color: #e05d22;
+}
+
+.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background) {
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+}
+
+/* Separator */
+
+.editor-block-list__block hr.wp-block-separator {
+	margin-left: auto;
+	margin-right: auto;
+}
+
+/* Media & Text */
+
+.wp-block-media-text *:last-child {
+	margin-bottom: 0;
+}
+
+/* Group */
+
+.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block {
+	max-width: 634px;
+}
+
+.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align="wide"] {
+	max-width: 1100px;
+}
+
+.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align="full"] {
+	max-width: 100%;
+}
+
+.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align="full"] {
+	width: calc(100% + 60px);
+	max-width: calc(100% + 60px);
+}
+
+/*--------------------------------------------------------------
+7.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Archives, Categories & Latest Posts */
+
+[data-align="center"] .wp-block-archives ul,
+[data-align="center"] .wp-block-categories ul,
+[data-align="center"] .wp-block-latest-posts ul {
+	list-style-position: inside;
+	text-align: center;
+}
+
+/* Latest Comments */
+
+.editor-block-list__block .wp-block-latest-comments {
+	margin: 0;
+	padding: 0;
+}
+
+.wp-block-latest-comments .avatar,
+.wp-block-latest-comments__comment-avatar {
+	border-radius: 0;
+}
+
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-excerpt,
+.wp-block-latest-comments__comment-excerpt p {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments__comment-excerpt p:last-child {
+	margin-bottom: 0;
+}
+
+.wp-block-latest-comments__comment-date {
+	font-size: 16px;
+}
+
+.wp-block-latest-comments .wp-block-latest-comments__comment {
+	background: url(../images/dotted-line.png) repeat-x left top;
+	margin-bottom: 0;
+	padding: 24px 0;
+}
+
+/* Latest Posts */
+
+.edit-post-visual-editor .editor-block-list__block .wp-block-latest-posts.is-grid {
+	list-style-type: 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/twentythirteen/css/editor-style.css b/wp-content/themes/twentythirteen/css/editor-style.css
index 568418992b4b45e9b1a9aa9f35d2055844ba83a0..e70f9e01b174527ad73ae818f21fd09c29f08818 100644
--- a/wp-content/themes/twentythirteen/css/editor-style.css
+++ b/wp-content/themes/twentythirteen/css/editor-style.css
@@ -1,771 +1,771 @@
-/*
-Theme Name: Twenty Thirteen
-Description: Used to style the TinyMCE editor.
-*/
-
-
-/**
- * Table of Contents:
- *
- * 1.0 - Body
- * 2.0 - Headings
- * 3.0 - Text Elements
- * 4.0 - Links
- * 5.0 - Alignment
- * 6.0 - Tables
- * 7.0 - Images
- * 8.0 - Galleries
- * 9.0 - Audio/Video
- * 10.0 - Post Formats
- * 11.0 - RTL
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Body
- * ----------------------------------------------------------------------------
- */
-
-html .mceContentBody {
-	font-size: 100%;
-	max-width: 604px;
-}
-
-body {
-	color: #141412;
-	font-family: "Source Sans Pro", Helvetica, sans-serif;
-	line-height: 1.5;
-	text-rendering: optimizeLegibility;
-	vertical-align: baseline;
-}
-
-
-/**
- * 2.0 Headings
- * ----------------------------------------------------------------------------
- */
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-	clear: both;
-	font-family: Bitter, Georgia, serif;
-	line-height: 1.3;
-}
-
-h1 {
-	font-size: 48px;
-	margin: 33px 0;
-}
-
-h2 {
-	font-size: 30px;
-	margin: 25px 0;
-}
-
-h3 {
-	font-size: 22px;
-	margin: 22px 0;
-}
-
-h4 {
-	font-size: 20px;
-	margin: 25px 0;
-}
-
-h5 {
-	font-size: 18px;
-	margin: 30px 0;
-}
-
-h6 {
-	font-size: 16px;
-	margin: 36px 0;
-}
-
-hr {
-	background: url(../images/dotted-line.png) repeat center top;
-	background-size: 4px 4px;
-	border: 0;
-	height: 1px;
-	margin: 0 0 24px;
-}
-
-
-/**
- * 3.0 Text Elements
- * ----------------------------------------------------------------------------
- */
-
-p {
-	margin: 0 0 24px;
-}
-
-ol,
-ul {
-	margin: 16px 0;
-	padding: 0 0 0 40px;
-}
-
-ul {
-	list-style-type: square;
-}
-
-ol {
-	list-style: decimal outside;
-}
-
-li > ul,
-li > ol {
-	margin: 0;
-}
-
-dl {
-	margin: 0 20px;
-}
-
-dt {
-	font-weight: bold;
-}
-
-dd {
-	margin: 0 0 20px;
-}
-
-strong {
-	font-weight: bold;
-}
-
-code,
-kbd,
-pre,
-samp {
-	font-family: monospace, serif;
-	font-size: 14px;
-}
-
-pre {
-	background: #f5f5f5;
-	color: #666;
-	font-family: monospace;
-	font-size: 14px;
-	margin: 20px 0;
-	overflow: auto;
-	padding: 20px;
-	white-space: pre;
-	white-space: pre-wrap;
-	word-wrap: break-word;
-}
-
-blockquote,
-q {
-	quotes: none;
-}
-
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
-	content: "";
-	content: none;
-}
-
-blockquote {
-	font-size: 24px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 24px 40px;
-}
-
-blockquote blockquote {
-	margin-right: 0;
-}
-
-blockquote cite,
-blockquote small {
-	font-size: 14px;
-	font-weight: normal;
-	text-transform: uppercase;
-}
-
-cite {
-	border-bottom: 0;
-}
-
-abbr[title] {
-	border-bottom: 1px dotted;
-}
-
-address {
-	font-style: italic;
-	margin: 0 0 24px;
-}
-
-del {
-	color: #333;
-}
-
-ins {
-	background: #fff9c0;
-	border: none;
-	color: #333;
-	text-decoration: none;
-}
-
-sub,
-sup {
-	font-size: 75%;
-	line-height: 0;
-	position: relative;
-	vertical-align: baseline;
-}
-
-sup {
-	top: -0.5em;
-}
-
-sub {
-	bottom: -0.25em;
-}
-
-
-/**
- * 4.0 Links
- * ----------------------------------------------------------------------------
- */
-
-a {
-	color: #ca3c08;
-	text-decoration: none;
-}
-
-a:visited {
-	color: #ac0404;
-}
-
-a:focus {
-	outline: thin dotted;
-}
-
-a:active,
-a:hover {
-	color: #ea9629;
-	outline: 0;
-}
-
-a:hover {
-	text-decoration: underline;
-}
-
-
-/**
- * 5.0 Alignment
- * ----------------------------------------------------------------------------
- */
-
-.alignleft {
-	float: left;
-	margin: 5px 20px 5px 0;
-}
-
-.alignright {
-	float: right;
-	margin: 5px 0 5px 20px;
-}
-
-.aligncenter {
-	display: block;
-	margin: 5px auto;
-}
-
-img.alignnone {
-	margin: 5px 0;
-}
-
-
-/**
- * 6.0 Tables
- * ----------------------------------------------------------------------------
- */
-
-table {
-	border-bottom: 1px solid #ededed;
-	border-collapse: collapse;
-	border-spacing: 0;
-	font-size: 14px;
-	line-height: 2;
-	margin: 0 0 20px;
-	width: 100%;
-}
-
-caption,
-th,
-td {
-	font-weight: normal;
-	text-align: left;
-}
-
-caption {
-	font-size: 16px;
-	margin: 20px 0;
-}
-
-th {
-	font-weight: bold;
-	text-transform: uppercase;
-}
-
-td {
-	border-top: 1px solid #ededed;
-	padding: 6px 10px 6px 0;
-}
-
-
-/**
- * 7.0 Images
- * ----------------------------------------------------------------------------
- */
-
-img {
-	height: auto;
-	max-width: 100%;
-	vertical-align: middle;
-}
-
-.wp-caption {
-	background: transparent;
-	border: none;
-	margin: 0;
-	padding: 0;
-	text-align: left;
-}
-
-.html5-captions .wp-caption {
-	padding: 0;
-}
-
-.wp-caption.alignleft {
-	margin: 5px 10px 5px 0;
-}
-
-.html5-captions .wp-caption.alignleft {
-	margin-right: 20px;
-}
-
-.wp-caption.alignright {
-	margin: 5px 0 5px 10px;
-}
-
-.wp-caption.alignright img,
-.wp-caption.alignright .wp-caption-dd {
-	padding-left: 10px;
-}
-
-.html5-captions .wp-caption.alignright {
-	margin-left: 20px;
-}
-
-.html5-captions .wp-caption.alignright img,
-.html5-captions .wp-caption.alignright .wp-caption-dd {
-	padding: 0;
-}
-
-.wp-caption-dt {
-	margin: 0;
-}
-
-.wp-caption .wp-caption-text,
-.wp-caption-dd {
-	color: #220e10;
-	font-size: 18px;
-	font-style: italic;
-	font-weight: 300;
-	line-height: 1.5;
-	margin-bottom: 24px;
-	padding: 0;
-}
-
-.mceTemp + ul,
-.mceTemp + ol {
-	list-style-position: inside;
-}
-
-
-/**
- * 8.0 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery .gallery-item {
-	float: left;
-	margin: 0 4px 4px 0;
-	overflow: hidden;
-	padding: 0;
-	position: relative;
-}
-
-.gallery-columns-1 .gallery-item {
-	max-width: 100%;
-	width: auto;
-}
-
-.gallery-columns-2 .gallery-item {
-	max-width: 48%;
-	max-width: -webkit-calc(50% - 14px);
-	max-width:         calc(50% - 14px);
-	width: auto;
-}
-
-.gallery-columns-3 .gallery-item {
-	max-width: 32%;
-	max-width: -webkit-calc(33.3% - 11px);
-	max-width:         calc(33.3% - 11px);
-	width: auto;
-}
-
-.gallery-columns-4 .gallery-item {
-	max-width: 23%;
-	max-width: -webkit-calc(25% - 9px);
-	max-width:         calc(25% - 9px);
-	width: auto;
-}
-
-.gallery-columns-5 .gallery-item {
-	max-width: 19%;
-	max-width: -webkit-calc(20% - 8px);
-	max-width:         calc(20% - 8px);
-	width: auto;
-}
-
-.gallery-columns-6 .gallery-item {
-	max-width: 15%;
-	max-width: -webkit-calc(16.7% - 7px);
-	max-width:         calc(16.7% - 7px);
-	width: auto;
-}
-
-.gallery-columns-7 .gallery-item {
-	max-width: 13%;
-	max-width: -webkit-calc(14.28% - 7px);
-	max-width:         calc(14.28% - 7px);
-	width: auto;
-}
-
-.gallery-columns-8 .gallery-item {
-	max-width: 11%;
-	max-width: -webkit-calc(12.5% - 6px);
-	max-width:         calc(12.5% - 6px);
-	width: auto;
-}
-
-.gallery-columns-9 .gallery-item {
-	max-width: 9%;
-	max-width: -webkit-calc(11.1% - 6px);
-	max-width:         calc(11.1% - 6px);
-	width: auto;
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n),
-.gallery-columns-3 .gallery-item:nth-of-type(3n),
-.gallery-columns-4 .gallery-item:nth-of-type(4n),
-.gallery-columns-5 .gallery-item:nth-of-type(5n),
-.gallery-columns-6 .gallery-item:nth-of-type(6n),
-.gallery-columns-7 .gallery-item:nth-of-type(7n),
-.gallery-columns-8 .gallery-item:nth-of-type(8n),
-.gallery-columns-9 .gallery-item:nth-of-type(9n) {
-	margin-right: 0;
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n - 1),
-.gallery-columns-3 .gallery-item:nth-of-type(3n - 2),
-.gallery-columns-4 .gallery-item:nth-of-type(4n - 3),
-.gallery-columns-5 .gallery-item:nth-of-type(5n - 4),
-.gallery-columns-6 .gallery-item:nth-of-type(6n - 5),
-.gallery-columns-7 .gallery-item:nth-of-type(7n - 6),
-.gallery-columns-8 .gallery-item:nth-of-type(8n - 7),
-.gallery-columns-9 .gallery-item:nth-of-type(9n - 8) {
-	margin-left: 12px; /* Compensate for the default negative margin on .gallery, which can't be changed. */
-}
-
-.gallery .gallery-caption {
-	background-color: rgba(0, 0, 0, 0.7);
-	box-sizing: border-box;
-	color: #fff;
-	font-size: 14px;
-	line-height: 1.3;
-	margin: 0;
-	max-height: 50%;
-	opacity: 0;
-	padding: 2px 8px;
-	position: absolute;
-	bottom: 0;
-	left: 0;
-	text-align: left;
-	-webkit-transition: opacity 400ms ease;
-	transition:         opacity 400ms ease;
-	width: 100%;
-}
-
-.gallery .gallery-caption:before {
-	box-shadow: 0 -10px 15px #000 inset;
-	content: "";
-	height: 100%;
-	min-height: 49px;
-	position: absolute;
-	left: 0;
-	top: 0;
-	width: 100%;
-}
-
-.gallery-item:hover .gallery-caption {
-	opacity: 1;
-}
-
-.gallery-columns-7 .gallery-caption,
-.gallery-columns-8 .gallery-caption,
-.gallery-columns-9 .gallery-caption {
-	display: none;
-}
-
-
-/**
- * 9.0 Audio/Video
- * ----------------------------------------------------------------------------
- */
-.mejs-mediaelement,
-.mejs-container .mejs-controls {
-	background: #220e10;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-loaded,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
-	background: #fff;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-current {
-	background: #ea9629;
-}
-
-.mejs-controls .mejs-time-rail .mejs-time-total,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
-	background: #595959;
-}
-
-.mejs-controls .mejs-time-rail span,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
-	border-radius: 0;
-}
-
-
-/**
- * 10.0 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-/* Aside */
-.post-format-aside {
-	background-color: #f7f5e7;
-}
-
-.post-format-aside blockquote {
-	font-size: 100%;
-	font-weight: normal;
-}
-
-.post-format-aside cite {
-	font-size: 100%;
-	text-transform: none;
-}
-
-.post-format-aside cite:before {
-	content: "\2014";
-	margin-right: 5px;
-}
-
-/* Audio */
-.post-format-audio {
-	background-color: #db572f;
-}
-
-.post-format-audio a {
-	color: #fbfaf3;
-}
-
-.post-format-audio:before {
-	background: url(../images/dotted-line.png) repeat-y 85px 0;
-	background-size: 4px 4px;
-	content: "\f109";
-	display: block;
-	float: left;
-	font-family: Genericons;
-	font-size: 64px;
-	-webkit-font-smoothing: antialiased;
-	height: 100%;
-	line-height: 1;
-	width: 120px;
-}
-
-/* Chat */
-.post-format-chat {
-	background-color: #eadaa6;
-}
-
-.post-format-chat a {
-	color: #722d19;
-}
-
-/* Gallery */
-.post-format-gallery {
-	background-color: #fbca3c;
-}
-
-.post-format-gallery a {
-	color: #722d19;
-}
-
-/* Image: same as Standard/Defaults */
-
-/* Link */
-.post-format-link {
-	background-color: #f7f5e7;
-}
-
-/* Quote */
-.post-format-quote {
-	background-color: #210d10;
-	color: #f7f5e7;
-}
-
-.post-format-quote a {
-	color: #e63f2a;
-}
-
-.post-format-quote blockquote {
-	font-size: 28px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 0;
-	padding-left: 75px;
-	position: relative;
-}
-
-.post-format-quote blockquote:before {
-	content: '\201C';
-	font-size: 140px;
-	font-weight: 400;
-	line-height: .8;
-	padding-right: 25px;
-	position: absolute;
-	left: -15px;
-	top: -3px;
-}
-
-.post-format-quote blockquote small,
-.post-format-quote blockquote cite {
-	display: block;
-	font-size: 16px;
-}
-
-.format-quote .entry-content cite a {
-	border-bottom: 1px dotted #fff;
-	color: #fff;
-}
-
-.format-quote .entry-content cite a:hover {
-	text-decoration: none;
-}
-
-
-/* Status */
-.post-format-status {
-	background-color: #722d19;
-	color: #f7f5e7;
-	font-style: italic;
-	font-weight: 300;
-	padding: 0;
-	padding-left: 35px;
-}
-
-.post-format-status.mceContentBody {
-	font-size: 24px;
-}
-
-.post-format-status:before {
-	background: url(../images/dotted-line.png) repeat-y left bottom;
-	background-size: 4px 4px;
-	content: "";
-	display: block;
-	float: left;
-	height: 100%;
-	position: relative;
-	left: -30px;
-	width: 1px;
-}
-
-.post-format-status > p:first-child:before {
-	background-color: rgba(0, 0, 0, 0.65);
-	content: "";
-	height: 3px;
-	width: 13px;
-	margin-top: 13px;
-	position: absolute;
-	left: 9px;
-}
-
-.post-format-status a {
-	color: #eadaa6;
-}
-
-/* Video */
-.post-format-video {
-	background-color: #db572f;
-}
-
-.post-format-video a {
-	color: #fbfaf3;
-}
-
-
-/**
- * 11.0 RTL
- * ----------------------------------------------------------------------------
- */
-
-html .mceContentBody.rtl {
-	direction: rtl;
-	unicode-bidi: embed;
-}
-
-.rtl ol,
-.rtl ul {
-	padding: 0 40px 0 0;
-}
-
-.rtl .wp-caption,
-.rtl tr th {
-	text-align: right;
-}
-
-.rtl td {
-	padding: 6px 0 6px 10px;
-	text-align: right;
-}
-
-.rtl blockquote blockquote {
-	margin-left: 0;
-	margin-right: 24px;
-}
-
-.rtl.post-format-audio:before,
-.rtl.post-format-status:before,
-.rtl.post-format-status > p:first-child:before {
-	background: none;
-	content: none;
-}
+/*
+Theme Name: Twenty Thirteen
+Description: Used to style the TinyMCE editor.
+*/
+
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Body
+ * 2.0 - Headings
+ * 3.0 - Text Elements
+ * 4.0 - Links
+ * 5.0 - Alignment
+ * 6.0 - Tables
+ * 7.0 - Images
+ * 8.0 - Galleries
+ * 9.0 - Audio/Video
+ * 10.0 - Post Formats
+ * 11.0 - RTL
+ * ----------------------------------------------------------------------------
+ */
+
+
+/**
+ * 1.0 Body
+ * ----------------------------------------------------------------------------
+ */
+
+html .mceContentBody {
+	font-size: 100%;
+	max-width: 604px;
+}
+
+body {
+	color: #141412;
+	font-family: "Source Sans Pro", Helvetica, sans-serif;
+	line-height: 1.5;
+	text-rendering: optimizeLegibility;
+	vertical-align: baseline;
+}
+
+
+/**
+ * 2.0 Headings
+ * ----------------------------------------------------------------------------
+ */
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	clear: both;
+	font-family: Bitter, Georgia, serif;
+	line-height: 1.3;
+}
+
+h1 {
+	font-size: 48px;
+	margin: 33px 0;
+}
+
+h2 {
+	font-size: 30px;
+	margin: 25px 0;
+}
+
+h3 {
+	font-size: 22px;
+	margin: 22px 0;
+}
+
+h4 {
+	font-size: 20px;
+	margin: 25px 0;
+}
+
+h5 {
+	font-size: 18px;
+	margin: 30px 0;
+}
+
+h6 {
+	font-size: 16px;
+	margin: 36px 0;
+}
+
+hr {
+	background: url(../images/dotted-line.png) repeat center top;
+	background-size: 4px 4px;
+	border: 0;
+	height: 1px;
+	margin: 0 0 24px;
+}
+
+
+/**
+ * 3.0 Text Elements
+ * ----------------------------------------------------------------------------
+ */
+
+p {
+	margin: 0 0 24px;
+}
+
+ol,
+ul {
+	margin: 16px 0;
+	padding: 0 0 0 40px;
+}
+
+ul {
+	list-style-type: square;
+}
+
+ol {
+	list-style: decimal outside;
+}
+
+li > ul,
+li > ol {
+	margin: 0;
+}
+
+dl {
+	margin: 0 20px;
+}
+
+dt {
+	font-weight: bold;
+}
+
+dd {
+	margin: 0 0 20px;
+}
+
+strong {
+	font-weight: bold;
+}
+
+code,
+kbd,
+pre,
+samp {
+	font-family: monospace, serif;
+	font-size: 14px;
+}
+
+pre {
+	background: #f5f5f5;
+	color: #666;
+	font-family: monospace;
+	font-size: 14px;
+	margin: 20px 0;
+	overflow: auto;
+	padding: 20px;
+	white-space: pre;
+	white-space: pre-wrap;
+	word-wrap: break-word;
+}
+
+blockquote,
+q {
+	quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+	content: "";
+	content: none;
+}
+
+blockquote {
+	font-size: 24px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 24px 40px;
+}
+
+blockquote blockquote {
+	margin-right: 0;
+}
+
+blockquote cite,
+blockquote small {
+	font-size: 14px;
+	font-weight: normal;
+	text-transform: uppercase;
+}
+
+cite {
+	border-bottom: 0;
+}
+
+abbr[title] {
+	border-bottom: 1px dotted;
+}
+
+address {
+	font-style: italic;
+	margin: 0 0 24px;
+}
+
+del {
+	color: #333;
+}
+
+ins {
+	background: #fff9c0;
+	border: none;
+	color: #333;
+	text-decoration: none;
+}
+
+sub,
+sup {
+	font-size: 75%;
+	line-height: 0;
+	position: relative;
+	vertical-align: baseline;
+}
+
+sup {
+	top: -0.5em;
+}
+
+sub {
+	bottom: -0.25em;
+}
+
+
+/**
+ * 4.0 Links
+ * ----------------------------------------------------------------------------
+ */
+
+a {
+	color: #ca3c08;
+	text-decoration: none;
+}
+
+a:visited {
+	color: #ac0404;
+}
+
+a:focus {
+	outline: thin dotted;
+}
+
+a:active,
+a:hover {
+	color: #ea9629;
+	outline: 0;
+}
+
+a:hover {
+	text-decoration: underline;
+}
+
+
+/**
+ * 5.0 Alignment
+ * ----------------------------------------------------------------------------
+ */
+
+.alignleft {
+	float: left;
+	margin: 5px 20px 5px 0;
+}
+
+.alignright {
+	float: right;
+	margin: 5px 0 5px 20px;
+}
+
+.aligncenter {
+	display: block;
+	margin: 5px auto;
+}
+
+img.alignnone {
+	margin: 5px 0;
+}
+
+
+/**
+ * 6.0 Tables
+ * ----------------------------------------------------------------------------
+ */
+
+table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+caption,
+th,
+td {
+	font-weight: normal;
+	text-align: left;
+}
+
+caption {
+	font-size: 16px;
+	margin: 20px 0;
+}
+
+th {
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+td {
+	border-top: 1px solid #ededed;
+	padding: 6px 10px 6px 0;
+}
+
+
+/**
+ * 7.0 Images
+ * ----------------------------------------------------------------------------
+ */
+
+img {
+	height: auto;
+	max-width: 100%;
+	vertical-align: middle;
+}
+
+.wp-caption {
+	background: transparent;
+	border: none;
+	margin: 0;
+	padding: 0;
+	text-align: left;
+}
+
+.html5-captions .wp-caption {
+	padding: 0;
+}
+
+.wp-caption.alignleft {
+	margin: 5px 10px 5px 0;
+}
+
+.html5-captions .wp-caption.alignleft {
+	margin-right: 20px;
+}
+
+.wp-caption.alignright {
+	margin: 5px 0 5px 10px;
+}
+
+.wp-caption.alignright img,
+.wp-caption.alignright .wp-caption-dd {
+	padding-left: 10px;
+}
+
+.html5-captions .wp-caption.alignright {
+	margin-left: 20px;
+}
+
+.html5-captions .wp-caption.alignright img,
+.html5-captions .wp-caption.alignright .wp-caption-dd {
+	padding: 0;
+}
+
+.wp-caption-dt {
+	margin: 0;
+}
+
+.wp-caption .wp-caption-text,
+.wp-caption-dd {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	line-height: 1.5;
+	margin-bottom: 24px;
+	padding: 0;
+}
+
+.mceTemp + ul,
+.mceTemp + ol {
+	list-style-position: inside;
+}
+
+
+/**
+ * 8.0 Galleries
+ * ----------------------------------------------------------------------------
+ */
+
+.gallery .gallery-item {
+	float: left;
+	margin: 0 4px 4px 0;
+	overflow: hidden;
+	padding: 0;
+	position: relative;
+}
+
+.gallery-columns-1 .gallery-item {
+	max-width: 100%;
+	width: auto;
+}
+
+.gallery-columns-2 .gallery-item {
+	max-width: 48%;
+	max-width: -webkit-calc(50% - 14px);
+	max-width:         calc(50% - 14px);
+	width: auto;
+}
+
+.gallery-columns-3 .gallery-item {
+	max-width: 32%;
+	max-width: -webkit-calc(33.3% - 11px);
+	max-width:         calc(33.3% - 11px);
+	width: auto;
+}
+
+.gallery-columns-4 .gallery-item {
+	max-width: 23%;
+	max-width: -webkit-calc(25% - 9px);
+	max-width:         calc(25% - 9px);
+	width: auto;
+}
+
+.gallery-columns-5 .gallery-item {
+	max-width: 19%;
+	max-width: -webkit-calc(20% - 8px);
+	max-width:         calc(20% - 8px);
+	width: auto;
+}
+
+.gallery-columns-6 .gallery-item {
+	max-width: 15%;
+	max-width: -webkit-calc(16.7% - 7px);
+	max-width:         calc(16.7% - 7px);
+	width: auto;
+}
+
+.gallery-columns-7 .gallery-item {
+	max-width: 13%;
+	max-width: -webkit-calc(14.28% - 7px);
+	max-width:         calc(14.28% - 7px);
+	width: auto;
+}
+
+.gallery-columns-8 .gallery-item {
+	max-width: 11%;
+	max-width: -webkit-calc(12.5% - 6px);
+	max-width:         calc(12.5% - 6px);
+	width: auto;
+}
+
+.gallery-columns-9 .gallery-item {
+	max-width: 9%;
+	max-width: -webkit-calc(11.1% - 6px);
+	max-width:         calc(11.1% - 6px);
+	width: auto;
+}
+
+.gallery-columns-1 .gallery-item:nth-of-type(1n),
+.gallery-columns-2 .gallery-item:nth-of-type(2n),
+.gallery-columns-3 .gallery-item:nth-of-type(3n),
+.gallery-columns-4 .gallery-item:nth-of-type(4n),
+.gallery-columns-5 .gallery-item:nth-of-type(5n),
+.gallery-columns-6 .gallery-item:nth-of-type(6n),
+.gallery-columns-7 .gallery-item:nth-of-type(7n),
+.gallery-columns-8 .gallery-item:nth-of-type(8n),
+.gallery-columns-9 .gallery-item:nth-of-type(9n) {
+	margin-right: 0;
+}
+
+.gallery-columns-1 .gallery-item:nth-of-type(1n),
+.gallery-columns-2 .gallery-item:nth-of-type(2n - 1),
+.gallery-columns-3 .gallery-item:nth-of-type(3n - 2),
+.gallery-columns-4 .gallery-item:nth-of-type(4n - 3),
+.gallery-columns-5 .gallery-item:nth-of-type(5n - 4),
+.gallery-columns-6 .gallery-item:nth-of-type(6n - 5),
+.gallery-columns-7 .gallery-item:nth-of-type(7n - 6),
+.gallery-columns-8 .gallery-item:nth-of-type(8n - 7),
+.gallery-columns-9 .gallery-item:nth-of-type(9n - 8) {
+	margin-left: 12px; /* Compensate for the default negative margin on .gallery, which can't be changed. */
+}
+
+.gallery .gallery-caption {
+	background-color: rgba(0, 0, 0, 0.7);
+	box-sizing: border-box;
+	color: #fff;
+	font-size: 14px;
+	line-height: 1.3;
+	margin: 0;
+	max-height: 50%;
+	opacity: 0;
+	padding: 2px 8px;
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	text-align: left;
+	-webkit-transition: opacity 400ms ease;
+	transition:         opacity 400ms ease;
+	width: 100%;
+}
+
+.gallery .gallery-caption:before {
+	box-shadow: 0 -10px 15px #000 inset;
+	content: "";
+	height: 100%;
+	min-height: 49px;
+	position: absolute;
+	left: 0;
+	top: 0;
+	width: 100%;
+}
+
+.gallery-item:hover .gallery-caption {
+	opacity: 1;
+}
+
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption {
+	display: none;
+}
+
+
+/**
+ * 9.0 Audio/Video
+ * ----------------------------------------------------------------------------
+ */
+.mejs-mediaelement,
+.mejs-container .mejs-controls {
+	background: #220e10;
+}
+
+.mejs-controls .mejs-time-rail .mejs-time-loaded,
+.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	background: #fff;
+}
+
+.mejs-controls .mejs-time-rail .mejs-time-current {
+	background: #ea9629;
+}
+
+.mejs-controls .mejs-time-rail .mejs-time-total,
+.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
+	background: #595959;
+}
+
+.mejs-controls .mejs-time-rail span,
+.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
+.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	border-radius: 0;
+}
+
+
+/**
+ * 10.0 Post Formats
+ * ----------------------------------------------------------------------------
+ */
+
+/* Aside */
+.post-format-aside {
+	background-color: #f7f5e7;
+}
+
+.post-format-aside blockquote {
+	font-size: 100%;
+	font-weight: normal;
+}
+
+.post-format-aside cite {
+	font-size: 100%;
+	text-transform: none;
+}
+
+.post-format-aside cite:before {
+	content: "\2014";
+	margin-right: 5px;
+}
+
+/* Audio */
+.post-format-audio {
+	background-color: #db572f;
+}
+
+.post-format-audio a {
+	color: #fbfaf3;
+}
+
+.post-format-audio:before {
+	background: url(../images/dotted-line.png) repeat-y 85px 0;
+	background-size: 4px 4px;
+	content: "\f109";
+	display: block;
+	float: left;
+	font-family: Genericons;
+	font-size: 64px;
+	-webkit-font-smoothing: antialiased;
+	height: 100%;
+	line-height: 1;
+	width: 120px;
+}
+
+/* Chat */
+.post-format-chat {
+	background-color: #eadaa6;
+}
+
+.post-format-chat a {
+	color: #722d19;
+}
+
+/* Gallery */
+.post-format-gallery {
+	background-color: #fbca3c;
+}
+
+.post-format-gallery a {
+	color: #722d19;
+}
+
+/* Image: same as Standard/Defaults */
+
+/* Link */
+.post-format-link {
+	background-color: #f7f5e7;
+}
+
+/* Quote */
+.post-format-quote {
+	background-color: #210d10;
+	color: #f7f5e7;
+}
+
+.post-format-quote a {
+	color: #e63f2a;
+}
+
+.post-format-quote blockquote {
+	font-size: 28px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 0;
+	padding-left: 75px;
+	position: relative;
+}
+
+.post-format-quote blockquote:before {
+	content: '\201C';
+	font-size: 140px;
+	font-weight: 400;
+	line-height: .8;
+	padding-right: 25px;
+	position: absolute;
+	left: -15px;
+	top: -3px;
+}
+
+.post-format-quote blockquote small,
+.post-format-quote blockquote cite {
+	display: block;
+	font-size: 16px;
+}
+
+.format-quote .entry-content cite a {
+	border-bottom: 1px dotted #fff;
+	color: #fff;
+}
+
+.format-quote .entry-content cite a:hover {
+	text-decoration: none;
+}
+
+
+/* Status */
+.post-format-status {
+	background-color: #722d19;
+	color: #f7f5e7;
+	font-style: italic;
+	font-weight: 300;
+	padding: 0;
+	padding-left: 35px;
+}
+
+.post-format-status.mceContentBody {
+	font-size: 24px;
+}
+
+.post-format-status:before {
+	background: url(../images/dotted-line.png) repeat-y left bottom;
+	background-size: 4px 4px;
+	content: "";
+	display: block;
+	float: left;
+	height: 100%;
+	position: relative;
+	left: -30px;
+	width: 1px;
+}
+
+.post-format-status > p:first-child:before {
+	background-color: rgba(0, 0, 0, 0.65);
+	content: "";
+	height: 3px;
+	width: 13px;
+	margin-top: 13px;
+	position: absolute;
+	left: 9px;
+}
+
+.post-format-status a {
+	color: #eadaa6;
+}
+
+/* Video */
+.post-format-video {
+	background-color: #db572f;
+}
+
+.post-format-video a {
+	color: #fbfaf3;
+}
+
+
+/**
+ * 11.0 RTL
+ * ----------------------------------------------------------------------------
+ */
+
+html .mceContentBody.rtl {
+	direction: rtl;
+	unicode-bidi: embed;
+}
+
+.rtl ol,
+.rtl ul {
+	padding: 0 40px 0 0;
+}
+
+.rtl .wp-caption,
+.rtl tr th {
+	text-align: right;
+}
+
+.rtl td {
+	padding: 6px 0 6px 10px;
+	text-align: right;
+}
+
+.rtl blockquote blockquote {
+	margin-left: 0;
+	margin-right: 24px;
+}
+
+.rtl.post-format-audio:before,
+.rtl.post-format-status:before,
+.rtl.post-format-status > p:first-child:before {
+	background: none;
+	content: none;
+}
diff --git a/wp-content/themes/twentythirteen/css/ie.css b/wp-content/themes/twentythirteen/css/ie.css
index da48acd3cad4db3fd7ee2447fb840dcd4e6152d9..9c66f727ba6d6b034c03103b01140caae4ecab0b 100644
--- a/wp-content/themes/twentythirteen/css/ie.css
+++ b/wp-content/themes/twentythirteen/css/ie.css
@@ -1,288 +1,288 @@
-/*
-Styles for older IE versions (previous to IE9).
-*/
-
-
-
-.genericon:before:hover,
-.menu-toggle:after:hover,
-.date a:before:hover,
-.entry-meta .author a:before:hover,
-.format-audio .entry-content:before:hover,
-.comments-link a:before:hover,
-.tags-links a:first-child:before:hover,
-.categories-links a:first-child:before:hover,
-.edit-link > a:before:hover,
-.attachment-meta:before:hover,
-.attachment-meta a:before:hover,
-.comment-awaiting-moderation:before:hover,
-.comment-reply-link:before:hover,
-.comment-reply-title small a:before:hover,
-.bypostauthor > .comment-body .fn:before:hover {
-	text-decoration: none;
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
-	left: 100%;
-}
-
-.site-header .home-link {
-	max-width: 1040px;
-}
-
-.site-header .search-form [type="search"],
-.site-header .search-form [type="text"] {
-	padding-top: 6px;
-}
-
-img.alignright {
-	margin-right: 0;
-}
-
-img.alignleft {
-	margin-left: 0;
-}
-
-.site-main .sidebar-inner {
-	width: 1040px;
-}
-
-.site-main .widget-area {
-	margin-right: 60px;
-}
-
-.format-image .entry-content .size-full {
-	margin: 0;
-	max-width: 604px;
-}
-
-.gallery-columns-1 .gallery-item,
-.gallery-columns-2 .gallery-item,
-.gallery-columns-3 .gallery-item {
-	max-width: none;
-}
-
-.gallery img {
-	width: auto;
-}
-
-.gallery-caption {
-	background: #000;
-	filter: alpha(opacity=0);
-}
-
-.gallery-item:hover .gallery-caption {
-	filter: alpha(opacity=70);
-}
-
-.comment {
-	clear: both;
-}
-
-.comment-meta,
-.comment-content,
-.comment-list .reply {
-	width: 480px;
-}
-
-.depth-2 .comment-meta,
-.depth-2 .comment-content,
-.comment-list .depth-2 .reply {
-	width: 460px;
-}
-
-.depth-3 .comment-meta,
-.depth-3 .comment-content,
-.comment-list .depth-3 .reply {
-	width: 440px;
-}
-
-.depth-4 .comment-meta,
-.depth-4 .comment-content,
-.comment-list .depth-4 .reply {
-	width: 420px;
-}
-
-.depth-5 .comment-meta,
-.depth-5 .comment-content,
-.comment-list .depth-5 .reply {
-	width: 400px;
-}
-
-.comment-meta {
-	margin-bottom: 0;
-}
-
-.widget {
-	background: #f7f5e7;
-}
-
-.site-footer .widget {
-	background: none;
-}
-
-/* Internet Explorer 8 */
-.ie8 .site {
-	border: 0;
-}
-
-.ie8 img.size-full,
-.ie8 img.size-large {
-	height: auto;
-	width: auto;
-}
-
-.ie8 .sidebar .entry-header,
-.ie8 .sidebar .entry-content,
-.ie8 .sidebar .entry-summary,
-.ie8 .sidebar .entry-meta {
-	max-width: 724px;
-}
-
-.ie8 .author-info {
-	margin-left: 0;
-}
-
-.ie8 .paging-navigation .nav-previous .meta-nav {
-	padding: 5px 0 8px;
-	width: 40px;
-}
-
-.ie8 .paging-navigation .nav-next {
-	line-height: 1;
-}
-
-.ie8 .format-status .entry-content:before,
-.ie8 .format-status .entry-meta:before {
-	content: none;
-}
-
-.ie8 .site-main .widget-area {
-	margin-right: 0;
-}
-
-/* Internet Explorer 7 */
-.ie7 audio,
-.ie7 canvas,
-.ie7 video {
-	display: inline;
-	zoom: 1;
-}
-
-.ie7 legend {
-	margin-left: -7px;
-}
-
-.ie7 button,
-.ie7 input,
-.ie7 select,
-.ie7 textarea {
-	vertical-align: middle;
-}
-
-.ie7 button,
-.ie7 input[type="button"],
-.ie7 input[type="reset"],
-.ie7 input[type="submit"] {
-	overflow: visible;
-}
-
-.ie7 input[type="checkbox"],
-.ie7 input[type="radio"] {
-	height: 13px;
-	width: 13px;
-}
-
-.ie7 .screen-reader-text {
-	clip: rect(1px 1px 1px 1px);
-}
-
-.ie7 .site-header {
-	position: relative;
-	z-index: 1;
-}
-
-.ie7 .main-navigation {
-	max-width: 930px;
-	padding-right: 150px;
-}
-
-.ie7 .nav-menu li a,
-.ie7 .nav-menu li {
-	display: block;
-	float: left;
-}
-
-.ie7 .nav-menu ul {
-	top: 40px;
-}
-
-.ie7 .nav-menu .sub-menu,
-.ie7 .nav-menu .children {
-	display: none;
-	overflow: visible;
-}
-
-.ie7 ul.nav-menu li:hover > ul,
-.ie7 .nav-menu ul li:hover > ul {
-	display: block;
-}
-
-.ie7 .site-header .search-form [type="search"],
-.ie7 .site-header .search-form [type="text"] {
-	background-color: #fff;
-	border: 2px solid #c3c0ab;
-	cursor: text;
-	height: 28px;
-	outline: 0;
-	width: 150px;
-}
-
-.ie7 .entry-header,
-.ie7 .entry-content,
-.ie7 .entry-summary,
-.ie7 .entry-meta {
-	width: 604px;
-}
-
-.ie7 .format-status .entry-content,
-.ie7 .format-status .entry-meta {
-	padding-left: 60px;
-}
-
-.ie7 .sidebar .format-status .entry-content,
-.ie7 .sidebar .format-status .entry-meta {
-	padding-left: 60px;
-}
-
-.ie7 .sidebar .post-navigation .nav-links,
-.ie7 .sidebar .paging-navigation .nav-links {
-	width: 604px;
-}
-
-.ie7 .paging-navigation .meta-nav {
-	padding: 0 0 10px;
-	vertical-align: middle;
-	width: 40px;
-}
-
-.ie7 .comments-title,
-.ie7 .comment-list,
-.ie7 .comment-reply-title,
-.ie7 .comment-respond .comment-form {
-	width: 604px;
-}
-
-.ie7 .site-footer .widget-area {
-	max-width: none;
-	left: auto;
-}
-
-/* RTL for Internet Explorer 7 & 8 */
-.rtl .format-audio .entry-content:before,
-.rtl .comment-reply-link:before,
-.rtl .comment-reply-login:before {
-	-ms-filter: "FlipH";
-	filter: FlipH;
-}
+/*
+Styles for older IE versions (previous to IE9).
+*/
+
+
+
+.genericon:before:hover,
+.menu-toggle:after:hover,
+.date a:before:hover,
+.entry-meta .author a:before:hover,
+.format-audio .entry-content:before:hover,
+.comments-link a:before:hover,
+.tags-links a:first-child:before:hover,
+.categories-links a:first-child:before:hover,
+.edit-link > a:before:hover,
+.attachment-meta:before:hover,
+.attachment-meta a:before:hover,
+.comment-awaiting-moderation:before:hover,
+.comment-reply-link:before:hover,
+.comment-reply-title small a:before:hover,
+.bypostauthor > .comment-body .fn:before:hover {
+	text-decoration: none;
+}
+
+.nav-menu .sub-menu ul,
+.nav-menu .children ul {
+	left: 100%;
+}
+
+.site-header .home-link {
+	max-width: 1040px;
+}
+
+.site-header .search-form [type="search"],
+.site-header .search-form [type="text"] {
+	padding-top: 6px;
+}
+
+img.alignright {
+	margin-right: 0;
+}
+
+img.alignleft {
+	margin-left: 0;
+}
+
+.site-main .sidebar-inner {
+	width: 1040px;
+}
+
+.site-main .widget-area {
+	margin-right: 60px;
+}
+
+.format-image .entry-content .size-full {
+	margin: 0;
+	max-width: 604px;
+}
+
+.gallery-columns-1 .gallery-item,
+.gallery-columns-2 .gallery-item,
+.gallery-columns-3 .gallery-item {
+	max-width: none;
+}
+
+.gallery img {
+	width: auto;
+}
+
+.gallery-caption {
+	background: #000;
+	filter: alpha(opacity=0);
+}
+
+.gallery-item:hover .gallery-caption {
+	filter: alpha(opacity=70);
+}
+
+.comment {
+	clear: both;
+}
+
+.comment-meta,
+.comment-content,
+.comment-list .reply {
+	width: 480px;
+}
+
+.depth-2 .comment-meta,
+.depth-2 .comment-content,
+.comment-list .depth-2 .reply {
+	width: 460px;
+}
+
+.depth-3 .comment-meta,
+.depth-3 .comment-content,
+.comment-list .depth-3 .reply {
+	width: 440px;
+}
+
+.depth-4 .comment-meta,
+.depth-4 .comment-content,
+.comment-list .depth-4 .reply {
+	width: 420px;
+}
+
+.depth-5 .comment-meta,
+.depth-5 .comment-content,
+.comment-list .depth-5 .reply {
+	width: 400px;
+}
+
+.comment-meta {
+	margin-bottom: 0;
+}
+
+.widget {
+	background: #f7f5e7;
+}
+
+.site-footer .widget {
+	background: none;
+}
+
+/* Internet Explorer 8 */
+.ie8 .site {
+	border: 0;
+}
+
+.ie8 img.size-full,
+.ie8 img.size-large {
+	height: auto;
+	width: auto;
+}
+
+.ie8 .sidebar .entry-header,
+.ie8 .sidebar .entry-content,
+.ie8 .sidebar .entry-summary,
+.ie8 .sidebar .entry-meta {
+	max-width: 724px;
+}
+
+.ie8 .author-info {
+	margin-left: 0;
+}
+
+.ie8 .paging-navigation .nav-previous .meta-nav {
+	padding: 5px 0 8px;
+	width: 40px;
+}
+
+.ie8 .paging-navigation .nav-next {
+	line-height: 1;
+}
+
+.ie8 .format-status .entry-content:before,
+.ie8 .format-status .entry-meta:before {
+	content: none;
+}
+
+.ie8 .site-main .widget-area {
+	margin-right: 0;
+}
+
+/* Internet Explorer 7 */
+.ie7 audio,
+.ie7 canvas,
+.ie7 video {
+	display: inline;
+	zoom: 1;
+}
+
+.ie7 legend {
+	margin-left: -7px;
+}
+
+.ie7 button,
+.ie7 input,
+.ie7 select,
+.ie7 textarea {
+	vertical-align: middle;
+}
+
+.ie7 button,
+.ie7 input[type="button"],
+.ie7 input[type="reset"],
+.ie7 input[type="submit"] {
+	overflow: visible;
+}
+
+.ie7 input[type="checkbox"],
+.ie7 input[type="radio"] {
+	height: 13px;
+	width: 13px;
+}
+
+.ie7 .screen-reader-text {
+	clip: rect(1px 1px 1px 1px);
+}
+
+.ie7 .site-header {
+	position: relative;
+	z-index: 1;
+}
+
+.ie7 .main-navigation {
+	max-width: 930px;
+	padding-right: 150px;
+}
+
+.ie7 .nav-menu li a,
+.ie7 .nav-menu li {
+	display: block;
+	float: left;
+}
+
+.ie7 .nav-menu ul {
+	top: 40px;
+}
+
+.ie7 .nav-menu .sub-menu,
+.ie7 .nav-menu .children {
+	display: none;
+	overflow: visible;
+}
+
+.ie7 ul.nav-menu li:hover > ul,
+.ie7 .nav-menu ul li:hover > ul {
+	display: block;
+}
+
+.ie7 .site-header .search-form [type="search"],
+.ie7 .site-header .search-form [type="text"] {
+	background-color: #fff;
+	border: 2px solid #c3c0ab;
+	cursor: text;
+	height: 28px;
+	outline: 0;
+	width: 150px;
+}
+
+.ie7 .entry-header,
+.ie7 .entry-content,
+.ie7 .entry-summary,
+.ie7 .entry-meta {
+	width: 604px;
+}
+
+.ie7 .format-status .entry-content,
+.ie7 .format-status .entry-meta {
+	padding-left: 60px;
+}
+
+.ie7 .sidebar .format-status .entry-content,
+.ie7 .sidebar .format-status .entry-meta {
+	padding-left: 60px;
+}
+
+.ie7 .sidebar .post-navigation .nav-links,
+.ie7 .sidebar .paging-navigation .nav-links {
+	width: 604px;
+}
+
+.ie7 .paging-navigation .meta-nav {
+	padding: 0 0 10px;
+	vertical-align: middle;
+	width: 40px;
+}
+
+.ie7 .comments-title,
+.ie7 .comment-list,
+.ie7 .comment-reply-title,
+.ie7 .comment-respond .comment-form {
+	width: 604px;
+}
+
+.ie7 .site-footer .widget-area {
+	max-width: none;
+	left: auto;
+}
+
+/* RTL for Internet Explorer 7 & 8 */
+.rtl .format-audio .entry-content:before,
+.rtl .comment-reply-link:before,
+.rtl .comment-reply-login:before {
+	-ms-filter: "FlipH";
+	filter: FlipH;
+}
diff --git a/wp-content/themes/twentythirteen/footer.php b/wp-content/themes/twentythirteen/footer.php
index 858f110b5a1091c93722c07bbb554b9383ec5589..125d52cde77bad38991d53b5e5aba7169b997a55 100644
--- a/wp-content/themes/twentythirteen/footer.php
+++ b/wp-content/themes/twentythirteen/footer.php
@@ -1,33 +1,36 @@
-<?php
-/**
- * The template for displaying the footer
- *
- * Contains footer content and the closing of the #main and #page div elements.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?>
-
-		</div><!-- #main -->
-		<footer id="colophon" class="site-footer" role="contentinfo">
-			<?php get_sidebar( 'main' ); ?>
-
-			<div class="site-info">
-				<?php do_action( 'twentythirteen_credits' ); ?>
-				<?php
-				if ( function_exists( 'the_privacy_policy_link' ) ) {
-					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
-				}
-				?>
-				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>" class="imprint">
-					<?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?>
-				</a>
-			</div><!-- .site-info -->
-		</footer><!-- #colophon -->
-	</div><!-- #page -->
-
-	<?php wp_footer(); ?>
-</body>
-</html>
+<?php
+/**
+ * The template for displaying the footer
+ *
+ * Contains footer content and the closing of the #main and #page div elements.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+
+		</div><!-- #main -->
+		<footer id="colophon" class="site-footer" role="contentinfo">
+			<?php get_sidebar( 'main' ); ?>
+
+			<div class="site-info">
+				<?php do_action( 'twentythirteen_credits' ); ?>
+				<?php
+				if ( function_exists( 'the_privacy_policy_link' ) ) {
+					the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
+				}
+				?>
+				<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>" class="imprint">
+					<?php
+					/* translators: %s: WordPress */
+					printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' );
+					?>
+				</a>
+			</div><!-- .site-info -->
+		</footer><!-- #colophon -->
+	</div><!-- #page -->
+
+	<?php wp_footer(); ?>
+</body>
+</html>
diff --git a/wp-content/themes/twentythirteen/functions.php b/wp-content/themes/twentythirteen/functions.php
index 5c021fbe3c60eb93b1d50b6d058340f08df72435..596b5dc028a1d645fd5d59adcfed49eb7737bc10 100644
--- a/wp-content/themes/twentythirteen/functions.php
+++ b/wp-content/themes/twentythirteen/functions.php
@@ -1,798 +1,827 @@
-<?php
-/**
- * Twenty Thirteen functions and definitions
- *
- * Sets up the theme and provides some helper functions, which are used in the
- * theme as custom template tags. Others are attached to action and filter
- * hooks in WordPress to change core functionality.
- *
- * 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.
- *
- * For more information on hooks, actions, and filters, @link https://codex.wordpress.org/Plugin_API
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/*
- * Set up the content width value based on the theme's design.
- *
- * @see twentythirteen_content_width() for template-specific adjustments.
- */
-if ( ! isset( $content_width ) ) {
-	$content_width = 604;
-}
-
-/**
- * Add support for a custom header image.
- */
-require get_template_directory() . '/inc/custom-header.php';
-
-/**
- * Twenty Thirteen only works in WordPress 3.6 or later.
- */
-if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) ) {
-	require get_template_directory() . '/inc/back-compat.php';
-}
-
-/**
- * Twenty Thirteen setup.
- *
- * Sets up theme defaults and registers the various WordPress features that
- * Twenty Thirteen supports.
- *
- * @uses load_theme_textdomain() For translation/localization support.
- * @uses add_editor_style() To add Visual Editor stylesheets.
- * @uses add_theme_support() To add support for automatic feed links, post
- * formats, and post thumbnails.
- * @uses register_nav_menu() To add support for a navigation menu.
- * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_setup() {
-	/*
-	 * Makes Twenty Thirteen available for translation.
-	 *
-	 * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentythirteen
-	 * If you're building a theme based on Twenty Thirteen, use a find and
-	 * replace to change 'twentythirteen' to the name of your theme in all
-	 * template files.
-	 */
-	load_theme_textdomain( 'twentythirteen' );
-
-	/*
-	 * This theme styles the visual editor to resemble the theme style,
-	 * specifically font, colors, icons, and column width.
-	 */
-	add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentythirteen_fonts_url() ) );
-
-	// 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 full and wide align images.
-	add_theme_support( 'align-wide' );
-
-	// Add support for responsive embeds.
-	add_theme_support( 'responsive-embeds' );
-
-	// Add support for custom color scheme.
-	add_theme_support(
-		'editor-color-palette',
-		array(
-			array(
-				'name'  => __( 'Dark Gray', 'twentythirteen' ),
-				'slug'  => 'dark-gray',
-				'color' => '#141412',
-			),
-			array(
-				'name'  => __( 'Red', 'twentythirteen' ),
-				'slug'  => 'red',
-				'color' => '#bc360a',
-			),
-			array(
-				'name'  => __( 'Medium Orange', 'twentythirteen' ),
-				'slug'  => 'medium-orange',
-				'color' => '#db572f',
-			),
-			array(
-				'name'  => __( 'Light Orange', 'twentythirteen' ),
-				'slug'  => 'light-orange',
-				'color' => '#ea9629',
-			),
-			array(
-				'name'  => __( 'Yellow', 'twentythirteen' ),
-				'slug'  => 'yellow',
-				'color' => '#fbca3c',
-			),
-			array(
-				'name'  => __( 'White', 'twentythirteen' ),
-				'slug'  => 'white',
-				'color' => '#fff',
-			),
-			array(
-				'name'  => __( 'Dark Brown', 'twentythirteen' ),
-				'slug'  => 'dark-brown',
-				'color' => '#220e10',
-			),
-			array(
-				'name'  => __( 'Medium Brown', 'twentythirteen' ),
-				'slug'  => 'medium-brown',
-				'color' => '#722d19',
-			),
-			array(
-				'name'  => __( 'Light Brown', 'twentythirteen' ),
-				'slug'  => 'light-brown',
-				'color' => '#eadaa6',
-			),
-			array(
-				'name'  => __( 'Beige', 'twentythirteen' ),
-				'slug'  => 'beige',
-				'color' => '#e8e5ce',
-			),
-			array(
-				'name'  => __( 'Off-white', 'twentythirteen' ),
-				'slug'  => 'off-white',
-				'color' => '#f7f5e7',
-			),
-		)
-	);
-
-	// Adds RSS feed links to <head> for posts and comments.
-	add_theme_support( 'automatic-feed-links' );
-
-	/*
-	 * Switches default core markup for search form, comment form,
-	 * and comments to output valid HTML5.
-	 */
-	add_theme_support(
-		'html5',
-		array(
-			'search-form',
-			'comment-form',
-			'comment-list',
-			'gallery',
-			'caption',
-		)
-	);
-
-	/*
-	 * This theme supports all available post formats by default.
-	 * See https://codex.wordpress.org/Post_Formats
-	 */
-	add_theme_support(
-		'post-formats',
-		array(
-			'aside',
-			'audio',
-			'chat',
-			'gallery',
-			'image',
-			'link',
-			'quote',
-			'status',
-			'video',
-		)
-	);
-
-	// This theme uses wp_nav_menu() in one location.
-	register_nav_menu( 'primary', __( 'Navigation Menu', 'twentythirteen' ) );
-
-	/*
-	 * This theme uses a custom image size for featured images, displayed on
-	 * "standard" posts and pages.
-	 */
-	add_theme_support( 'post-thumbnails' );
-	set_post_thumbnail_size( 604, 270, true );
-
-	// This theme uses its own gallery styles.
-	add_filter( 'use_default_gallery_style', '__return_false' );
-
-	// Indicate widget sidebars can use selective refresh in the Customizer.
-	add_theme_support( 'customize-selective-refresh-widgets' );
-}
-add_action( 'after_setup_theme', 'twentythirteen_setup' );
-
-/**
- * Return the Google font stylesheet URL, if available.
- *
- * The use of Source Sans Pro and Bitter by default is localized. For languages
- * that use characters not supported by the font, the font can be disabled.
- *
- * @since Twenty Thirteen 1.0
- *
- * @return string Font stylesheet or empty string if disabled.
- */
-function twentythirteen_fonts_url() {
-	$fonts_url = '';
-
-	/* Translators: If there are characters in your language that are not
-	 * supported by Source Sans Pro, translate this to 'off'. Do not translate
-	 * into your own language.
-	 */
-	$source_sans_pro = _x( 'on', 'Source Sans Pro font: on or off', 'twentythirteen' );
-
-	/* Translators: If there are characters in your language that are not
-	 * supported by Bitter, translate this to 'off'. Do not translate into your
-	 * own language.
-	 */
-	$bitter = _x( 'on', 'Bitter font: on or off', 'twentythirteen' );
-
-	if ( 'off' !== $source_sans_pro || 'off' !== $bitter ) {
-		$font_families = array();
-
-		if ( 'off' !== $source_sans_pro ) {
-			$font_families[] = 'Source Sans Pro:300,400,700,300italic,400italic,700italic';
-		}
-
-		if ( 'off' !== $bitter ) {
-			$font_families[] = 'Bitter:400,700';
-		}
-
-		$query_args = array(
-			'family' => urlencode( implode( '|', $font_families ) ),
-			'subset' => urlencode( 'latin,latin-ext' ),
-		);
-		$fonts_url  = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
-	}
-
-	return $fonts_url;
-}
-
-/**
- * Enqueue scripts and styles for the front end.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_scripts_styles() {
-	/*
-	 * Adds JavaScript to pages with the comment form to support
-	 * sites with threaded comments (when in use).
-	 */
-	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
-		wp_enqueue_script( 'comment-reply' );
-	}
-
-	// Adds Masonry to handle vertical alignment of footer widgets.
-	if ( is_active_sidebar( 'sidebar-1' ) ) {
-		wp_enqueue_script( 'jquery-masonry' );
-	}
-
-	// Loads JavaScript file with functionality specific to Twenty Thirteen.
-	wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20160717', true );
-
-	// Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
-	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
-
-	// Add Genericons font, used in the main stylesheet.
-	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
-
-	// Loads our main stylesheet.
-	wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '2013-07-18' );
-
-	// Theme block stylesheet.
-	wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '2018-12-30' );
-
-	// Loads the Internet Explorer specific stylesheet.
-	wp_enqueue_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '2013-07-18' );
-	wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' );
-}
-add_action( 'wp_enqueue_scripts', 'twentythirteen_scripts_styles' );
-
-/**
- * Add preconnect for Google Fonts.
- *
- * @since Twenty Thirteen 2.1
- *
- * @param array   $urls          URLs to print for resource hints.
- * @param string  $relation_type The relation type the URLs are printed.
- * @return array URLs to print for resource hints.
- */
-function twentythirteen_resource_hints( $urls, $relation_type ) {
-	if ( wp_style_is( 'twentythirteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
-		if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) {
-			$urls[] = array(
-				'href' => 'https://fonts.gstatic.com',
-				'crossorigin',
-			);
-		} else {
-			$urls[] = 'https://fonts.gstatic.com';
-		}
-	}
-
-	return $urls;
-}
-add_filter( 'wp_resource_hints', 'twentythirteen_resource_hints', 10, 2 );
-
-/**
- * Enqueue styles for the block-based editor.
- *
- * @since Twenty Thirteen 2.5
- */
-function twentythirteen_block_editor_styles() {
-	// Block styles.
-	wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '2018-12-30' );
-	// Add custom fonts.
-	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
-}
-add_action( 'enqueue_block_editor_assets', 'twentythirteen_block_editor_styles' );
-
-/**
- * Filter the page title.
- *
- * Creates a nicely formatted and more specific title element text for output
- * in head of document, based on current view.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param string $title Default title text for current view.
- * @param string $sep   Optional separator.
- * @return string The filtered title.
- */
-function twentythirteen_wp_title( $title, $sep ) {
-	global $paged, $page;
-
-	if ( is_feed() ) {
-		return $title;
-	}
-
-	// Add the site name.
-	$title .= get_bloginfo( 'name', 'display' );
-
-	// Add the site description for the home/front page.
-	$site_description = get_bloginfo( 'description', 'display' );
-	if ( $site_description && ( is_home() || is_front_page() ) ) {
-		$title = "$title $sep $site_description";
-	}
-
-	// Add a page number if necessary.
-	if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
-		$title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) );
-	}
-
-	return $title;
-}
-add_filter( 'wp_title', 'twentythirteen_wp_title', 10, 2 );
-
-/**
- * Register two widget areas.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_widgets_init() {
-	register_sidebar(
-		array(
-			'name'          => __( 'Main Widget Area', 'twentythirteen' ),
-			'id'            => 'sidebar-1',
-			'description'   => __( 'Appears in the footer section of the site.', 'twentythirteen' ),
-			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
-			'after_widget'  => '</aside>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-
-	register_sidebar(
-		array(
-			'name'          => __( 'Secondary Widget Area', 'twentythirteen' ),
-			'id'            => 'sidebar-2',
-			'description'   => __( 'Appears on posts and pages in the sidebar.', 'twentythirteen' ),
-			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
-			'after_widget'  => '</aside>',
-			'before_title'  => '<h3 class="widget-title">',
-			'after_title'   => '</h3>',
-		)
-	);
-}
-add_action( 'widgets_init', 'twentythirteen_widgets_init' );
-
-if ( ! function_exists( 'twentythirteen_paging_nav' ) ) :
-	/**
-	 * Display navigation to next/previous set of posts when applicable.
-	 *
-	 * @since Twenty Thirteen 1.0
-	 */
-	function twentythirteen_paging_nav() {
-		global $wp_query;
-
-		// Don't print empty markup if there's only one page.
-		if ( $wp_query->max_num_pages < 2 ) {
-			return;
-		}
-		?>
-		<nav class="navigation paging-navigation" role="navigation">
-		<h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'twentythirteen' ); ?></h1>
-		<div class="nav-links">
-
-			<?php if ( get_next_posts_link() ) : ?>
-			<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentythirteen' ) ); ?></div>
-			<?php endif; ?>
-
-			<?php if ( get_previous_posts_link() ) : ?>
-			<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?></div>
-			<?php endif; ?>
-
-		</div><!-- .nav-links -->
-	</nav><!-- .navigation -->
-		<?php
-	}
-endif;
-
-if ( ! function_exists( 'twentythirteen_post_nav' ) ) :
-	/**
-	 * Display navigation to next/previous post when applicable.
-	 *
-	 * @since Twenty Thirteen 1.0
-	 */
-	function twentythirteen_post_nav() {
-		global $post;
-
-		// Don't print empty markup if there's nowhere to navigate.
-		$previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
-		$next     = get_adjacent_post( false, '', false );
-
-		if ( ! $next && ! $previous ) {
-			return;
-		}
-		?>
-		<nav class="navigation post-navigation" role="navigation">
-		<h1 class="screen-reader-text"><?php _e( 'Post navigation', 'twentythirteen' ); ?></h1>
-		<div class="nav-links">
-
-			<?php previous_post_link( '%link', _x( '<span class="meta-nav">&larr;</span> %title', 'Previous post link', 'twentythirteen' ) ); ?>
-			<?php next_post_link( '%link', _x( '%title <span class="meta-nav">&rarr;</span>', 'Next post link', 'twentythirteen' ) ); ?>
-
-		</div><!-- .nav-links -->
-	</nav><!-- .navigation -->
-		<?php
-	}
-endif;
-
-if ( ! function_exists( 'twentythirteen_entry_meta' ) ) :
-	/**
-	 * Print HTML with meta information for current post: categories, tags, permalink, author, and date.
-	 *
-	 * Create your own twentythirteen_entry_meta() to override in a child theme.
-	 *
-	 * @since Twenty Thirteen 1.0
-	 */
-	function twentythirteen_entry_meta() {
-		if ( is_sticky() && is_home() && ! is_paged() ) {
-			echo '<span class="featured-post">' . esc_html__( 'Sticky', 'twentythirteen' ) . '</span>';
-		}
-
-		if ( ! has_post_format( 'link' ) && 'post' == get_post_type() ) {
-			twentythirteen_entry_date();
-		}
-
-		// Translators: used between list items, there is a space after the comma.
-		$categories_list = get_the_category_list( __( ', ', 'twentythirteen' ) );
-		if ( $categories_list ) {
-			echo '<span class="categories-links">' . $categories_list . '</span>';
-		}
-
-		// Translators: used between list items, there is a space after the comma.
-		$tag_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) );
-		if ( $tag_list ) {
-			echo '<span class="tags-links">' . $tag_list . '</span>';
-		}
-
-		// Post author
-		if ( 'post' == get_post_type() ) {
-			printf(
-				'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
-				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
-				esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ),
-				get_the_author()
-			);
-		}
-	}
-endif;
-
-if ( ! function_exists( 'twentythirteen_entry_date' ) ) :
-	/**
-	 * Print HTML with date information for current post.
-	 *
-	 * Create your own twentythirteen_entry_date() to override in a child theme.
-	 *
-	 * @since Twenty Thirteen 1.0
-	 *
-	 * @param boolean $echo (optional) Whether to echo the date. Default true.
-	 * @return string The HTML-formatted post date.
-	 */
-	function twentythirteen_entry_date( $echo = true ) {
-		if ( has_post_format( array( 'chat', 'status' ) ) ) {
-			$format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' );
-		} else {
-			$format_prefix = '%2$s';
-		}
-
-		$date = sprintf(
-			'<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>',
-			esc_url( get_permalink() ),
-			esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ),
-			esc_attr( get_the_date( 'c' ) ),
-			esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) )
-		);
-
-		if ( $echo ) {
-			echo $date;
-		}
-
-		return $date;
-	}
-endif;
-
-if ( ! function_exists( 'twentythirteen_the_attached_image' ) ) :
-	/**
-	 * Print the attached image with a link to the next attached image.
-	 *
-	 * @since Twenty Thirteen 1.0
-	 */
-	function twentythirteen_the_attached_image() {
-		/**
-		 * Filter the image attachment size to use.
-		 *
-		 * @since Twenty thirteen 1.0
-		 *
-		 * @param array $size {
-		 *     @type int The attachment height in pixels.
-		 *     @type int The attachment width in pixels.
-		 * }
-		 */
-		$attachment_size     = apply_filters( 'twentythirteen_attachment_size', array( 724, 724 ) );
-		$next_attachment_url = wp_get_attachment_url();
-		$post                = get_post();
-
-		/*
-		 * Grab the IDs of all the image attachments in a gallery so we can get the URL
-		 * of the next adjacent image in a gallery, or the first image (if we're
-		 * looking at the last image in a gallery), or, in a gallery of one, just the
-		 * link to that image file.
-		 */
-		$attachment_ids = get_posts(
-			array(
-				'post_parent'    => $post->post_parent,
-				'fields'         => 'ids',
-				'numberposts'    => -1,
-				'post_status'    => 'inherit',
-				'post_type'      => 'attachment',
-				'post_mime_type' => 'image',
-				'order'          => 'ASC',
-				'orderby'        => 'menu_order ID',
-			)
-		);
-
-		// If there is more than 1 attachment in a gallery...
-		if ( count( $attachment_ids ) > 1 ) {
-			foreach ( $attachment_ids as $idx => $attachment_id ) {
-				if ( $attachment_id == $post->ID ) {
-					$next_id = $attachment_ids[ ( $idx + 1 ) % count( $attachment_ids ) ];
-					break;
-				}
-			}
-
-			// get the URL of the next image attachment...
-			if ( $next_id ) {
-				$next_attachment_url = get_attachment_link( $next_id );
-			} else {
-				// or get the URL of the first image attachment.
-				$next_attachment_url = get_attachment_link( reset( $attachment_ids ) );
-			}
-		}
-
-		printf(
-			'<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',
-			esc_url( $next_attachment_url ),
-			the_title_attribute( array( 'echo' => false ) ),
-			wp_get_attachment_image( $post->ID, $attachment_size )
-		);
-	}
-endif;
-
-/**
- * Return the post URL.
- *
- * @uses get_url_in_content() to get the URL in the post meta (if it exists) or
- * the first link found in the post content.
- *
- * Falls back to the post permalink if no URL is found in the post.
- *
- * @since Twenty Thirteen 1.0
- *
- * @return string The Link format URL.
- */
-function twentythirteen_get_link_url() {
-	$content = get_the_content();
-	$has_url = get_url_in_content( $content );
-
-	return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );
-}
-
-if ( ! function_exists( 'twentythirteen_excerpt_more' ) && ! is_admin() ) :
-	/**
-	 * Replaces "[...]" (appended to automatically generated excerpts) with ...
-	 * and a Continue reading link.
-	 *
-	 * @since Twenty Thirteen 1.4
-	 *
-	 * @param string $more Default Read More excerpt link.
-	 * @return string Filtered Read More excerpt link.
-	 */
-	function twentythirteen_excerpt_more( $more ) {
-		$link = sprintf(
-			'<a href="%1$s" class="more-link">%2$s</a>',
-			esc_url( get_permalink( get_the_ID() ) ),
-			/* translators: %s: Name of current post */
-			sprintf( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
-		);
-		return ' &hellip; ' . $link;
-	}
-	add_filter( 'excerpt_more', 'twentythirteen_excerpt_more' );
-endif;
-
-/**
- * Extend the default WordPress body classes.
- *
- * Adds body classes to denote:
- * 1. Single or multiple authors.
- * 2. Active widgets in the sidebar to change the layout and spacing.
- * 3. When avatars are disabled in discussion settings.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param array $classes A list of existing body class values.
- * @return array The filtered body class list.
- */
-function twentythirteen_body_class( $classes ) {
-	if ( ! is_multi_author() ) {
-		$classes[] = 'single-author';
-	}
-
-	if ( is_active_sidebar( 'sidebar-2' ) && ! is_attachment() && ! is_404() ) {
-		$classes[] = 'sidebar';
-	}
-
-	if ( ! get_option( 'show_avatars' ) ) {
-		$classes[] = 'no-avatars';
-	}
-
-	return $classes;
-}
-add_filter( 'body_class', 'twentythirteen_body_class' );
-
-/**
- * Adjust content_width value for video post formats and attachment templates.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_content_width() {
-	global $content_width;
-
-	if ( is_attachment() ) {
-		$content_width = 724;
-	} elseif ( has_post_format( 'audio' ) ) {
-		$content_width = 484;
-	}
-}
-add_action( 'template_redirect', 'twentythirteen_content_width' );
-
-/**
- * Add postMessage support for site title and description for the Customizer.
- *
- * @since Twenty Thirteen 1.0
- *
- * @param WP_Customize_Manager $wp_customize Customizer object.
- */
-function twentythirteen_customize_register( $wp_customize ) {
-	$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
-	$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
-	$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
-
-	if ( isset( $wp_customize->selective_refresh ) ) {
-		$wp_customize->selective_refresh->add_partial(
-			'blogname',
-			array(
-				'selector'            => '.site-title',
-				'container_inclusive' => false,
-				'render_callback'     => 'twentythirteen_customize_partial_blogname',
-			)
-		);
-		$wp_customize->selective_refresh->add_partial(
-			'blogdescription',
-			array(
-				'selector'            => '.site-description',
-				'container_inclusive' => false,
-				'render_callback'     => 'twentythirteen_customize_partial_blogdescription',
-			)
-		);
-	}
-}
-add_action( 'customize_register', 'twentythirteen_customize_register' );
-
-/**
- * Render the site title for the selective refresh partial.
- *
- * @since Twenty Thirteen 1.9
- * @see twentythirteen_customize_register()
- *
- * @return void
- */
-function twentythirteen_customize_partial_blogname() {
-	bloginfo( 'name' );
-}
-
-/**
- * Render the site tagline for the selective refresh partial.
- *
- * @since Twenty Thirteen 1.9
- * @see twentythirteen_customize_register()
- *
- * @return void
- */
-function twentythirteen_customize_partial_blogdescription() {
-	bloginfo( 'description' );
-}
-
-/**
- * Enqueue Javascript postMessage handlers for the Customizer.
- *
- * Binds JavaScript handlers to make the Customizer preview
- * reload changes asynchronously.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_customize_preview_js() {
-	wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20141120', true );
-}
-add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' );
-
-/**
- * Modifies tag cloud widget arguments to display all tags in the same font size
- * and use list format for better accessibility.
- *
- * @since Twenty Thirteen 2.3
- *
- * @param array $args Arguments for tag cloud widget.
- * @return array The filtered arguments for tag cloud widget.
- */
-function twentythirteen_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', 'twentythirteen_widget_tag_cloud_args' );
-
-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 Thirteen 2.8
-	 */
-	function wp_body_open() {
-		/**
-		 * Triggered after the opening <body> tag.
-		 *
-		 * @since Twenty Thirteen 2.8
-		 */
-		do_action( 'wp_body_open' );
-	}
-endif;
+<?php
+/**
+ * Twenty Thirteen functions and definitions
+ *
+ * Sets up the theme and provides some helper functions, which are used in the
+ * theme as custom template tags. Others are attached to action and filter
+ * hooks in WordPress to change core functionality.
+ *
+ * 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.
+ *
+ * For more information on hooks, actions, and filters, @link https://developer.wordpress.org/plugins/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+/*
+ * Set up the content width value based on the theme's design.
+ *
+ * @see twentythirteen_content_width() for template-specific adjustments.
+ */
+if ( ! isset( $content_width ) ) {
+	$content_width = 604;
+}
+
+/**
+ * Add support for a custom header image.
+ */
+require get_template_directory() . '/inc/custom-header.php';
+
+/**
+ * Twenty Thirteen only works in WordPress 3.6 or later.
+ */
+if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '<' ) ) {
+	require get_template_directory() . '/inc/back-compat.php';
+}
+
+/**
+ * Twenty Thirteen setup.
+ *
+ * Sets up theme defaults and registers the various WordPress features that
+ * Twenty Thirteen supports.
+ *
+ * @uses load_theme_textdomain() For translation/localization support.
+ * @uses add_editor_style() To add Visual Editor stylesheets.
+ * @uses add_theme_support() To add support for automatic feed links, post
+ * formats, and post thumbnails.
+ * @uses register_nav_menu() To add support for a navigation menu.
+ * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_setup() {
+	/*
+	 * Makes Twenty Thirteen available for translation.
+	 *
+	 * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentythirteen
+	 * If you're building a theme based on Twenty Thirteen, use a find and
+	 * replace to change 'twentythirteen' to the name of your theme in all
+	 * template files.
+	 */
+	load_theme_textdomain( 'twentythirteen' );
+
+	/*
+	 * This theme styles the visual editor to resemble the theme style,
+	 * specifically font, colors, icons, and column width.
+	 */
+	add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentythirteen_fonts_url() ) );
+
+	// 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 full and wide align images.
+	add_theme_support( 'align-wide' );
+
+	// Add support for responsive embeds.
+	add_theme_support( 'responsive-embeds' );
+
+	// Add support for custom color scheme.
+	add_theme_support(
+		'editor-color-palette',
+		array(
+			array(
+				'name'  => __( 'Dark Gray', 'twentythirteen' ),
+				'slug'  => 'dark-gray',
+				'color' => '#141412',
+			),
+			array(
+				'name'  => __( 'Red', 'twentythirteen' ),
+				'slug'  => 'red',
+				'color' => '#bc360a',
+			),
+			array(
+				'name'  => __( 'Medium Orange', 'twentythirteen' ),
+				'slug'  => 'medium-orange',
+				'color' => '#db572f',
+			),
+			array(
+				'name'  => __( 'Light Orange', 'twentythirteen' ),
+				'slug'  => 'light-orange',
+				'color' => '#ea9629',
+			),
+			array(
+				'name'  => __( 'Yellow', 'twentythirteen' ),
+				'slug'  => 'yellow',
+				'color' => '#fbca3c',
+			),
+			array(
+				'name'  => __( 'White', 'twentythirteen' ),
+				'slug'  => 'white',
+				'color' => '#fff',
+			),
+			array(
+				'name'  => __( 'Dark Brown', 'twentythirteen' ),
+				'slug'  => 'dark-brown',
+				'color' => '#220e10',
+			),
+			array(
+				'name'  => __( 'Medium Brown', 'twentythirteen' ),
+				'slug'  => 'medium-brown',
+				'color' => '#722d19',
+			),
+			array(
+				'name'  => __( 'Light Brown', 'twentythirteen' ),
+				'slug'  => 'light-brown',
+				'color' => '#eadaa6',
+			),
+			array(
+				'name'  => __( 'Beige', 'twentythirteen' ),
+				'slug'  => 'beige',
+				'color' => '#e8e5ce',
+			),
+			array(
+				'name'  => __( 'Off-white', 'twentythirteen' ),
+				'slug'  => 'off-white',
+				'color' => '#f7f5e7',
+			),
+		)
+	);
+
+	// Adds RSS feed links to <head> for posts and comments.
+	add_theme_support( 'automatic-feed-links' );
+
+	/*
+	 * Switches default core markup for search form, comment form,
+	 * and comments to output valid HTML5.
+	 */
+	add_theme_support(
+		'html5',
+		array(
+			'search-form',
+			'comment-form',
+			'comment-list',
+			'gallery',
+			'caption',
+			'script',
+			'style',
+		)
+	);
+
+	/*
+	 * This theme supports all available post formats by default.
+	 * See https://wordpress.org/support/article/post-formats/
+	 */
+	add_theme_support(
+		'post-formats',
+		array(
+			'aside',
+			'audio',
+			'chat',
+			'gallery',
+			'image',
+			'link',
+			'quote',
+			'status',
+			'video',
+		)
+	);
+
+	// This theme uses wp_nav_menu() in one location.
+	register_nav_menu( 'primary', __( 'Navigation Menu', 'twentythirteen' ) );
+
+	/*
+	 * This theme uses a custom image size for featured images, displayed on
+	 * "standard" posts and pages.
+	 */
+	add_theme_support( 'post-thumbnails' );
+	set_post_thumbnail_size( 604, 270, true );
+
+	// This theme uses its own gallery styles.
+	add_filter( 'use_default_gallery_style', '__return_false' );
+
+	// Indicate widget sidebars can use selective refresh in the Customizer.
+	add_theme_support( 'customize-selective-refresh-widgets' );
+}
+add_action( 'after_setup_theme', 'twentythirteen_setup' );
+
+/**
+ * Return the Google font stylesheet URL, if available.
+ *
+ * The use of Source Sans Pro and Bitter by default is localized. For languages
+ * that use characters not supported by the font, the font can be disabled.
+ *
+ * @since Twenty Thirteen 1.0
+ *
+ * @return string Font stylesheet or empty string if disabled.
+ */
+function twentythirteen_fonts_url() {
+	$fonts_url = '';
+
+	/*
+	 * translators: If there are characters in your language that are not supported
+	 * by Source Sans Pro, translate this to 'off'. Do not translate into your own language.
+	 */
+	$source_sans_pro = _x( 'on', 'Source Sans Pro font: on or off', 'twentythirteen' );
+
+	/*
+	 * translators: If there are characters in your language that are not supported
+	 * by Bitter, translate this to 'off'. Do not translate into your own language.
+	 */
+	$bitter = _x( 'on', 'Bitter font: on or off', 'twentythirteen' );
+
+	if ( 'off' !== $source_sans_pro || 'off' !== $bitter ) {
+		$font_families = array();
+
+		if ( 'off' !== $source_sans_pro ) {
+			$font_families[] = 'Source Sans Pro:300,400,700,300italic,400italic,700italic';
+		}
+
+		if ( 'off' !== $bitter ) {
+			$font_families[] = 'Bitter:400,700';
+		}
+
+		$query_args = array(
+			'family'  => urlencode( implode( '|', $font_families ) ),
+			'subset'  => urlencode( 'latin,latin-ext' ),
+			'display' => urlencode( 'fallback' ),
+		);
+		$fonts_url  = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
+	}
+
+	return $fonts_url;
+}
+
+/**
+ * Enqueue scripts and styles for the front end.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_scripts_styles() {
+	/*
+	 * Adds JavaScript to pages with the comment form to support
+	 * sites with threaded comments (when in use).
+	 */
+	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
+		wp_enqueue_script( 'comment-reply' );
+	}
+
+	// Adds Masonry to handle vertical alignment of footer widgets.
+	if ( is_active_sidebar( 'sidebar-1' ) ) {
+		wp_enqueue_script( 'jquery-masonry' );
+	}
+
+	// Loads JavaScript file with functionality specific to Twenty Thirteen.
+	wp_enqueue_script( 'twentythirteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20171218', true );
+
+	// Add Source Sans Pro and Bitter fonts, used in the main stylesheet.
+	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
+
+	// Add Genericons font, used in the main stylesheet.
+	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
+
+	// Loads our main stylesheet.
+	wp_enqueue_style( 'twentythirteen-style', get_stylesheet_uri(), array(), '20190507' );
+
+	// Theme block stylesheet.
+	wp_enqueue_style( 'twentythirteen-block-style', get_template_directory_uri() . '/css/blocks.css', array( 'twentythirteen-style' ), '20190102' );
+
+	// Loads the Internet Explorer specific stylesheet.
+	wp_enqueue_style( 'twentythirteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentythirteen-style' ), '20150214' );
+	wp_style_add_data( 'twentythirteen-ie', 'conditional', 'lt IE 9' );
+}
+add_action( 'wp_enqueue_scripts', 'twentythirteen_scripts_styles' );
+
+/**
+ * Add preconnect for Google Fonts.
+ *
+ * @since Twenty Thirteen 2.1
+ *
+ * @param array   $urls          URLs to print for resource hints.
+ * @param string  $relation_type The relation type the URLs are printed.
+ * @return array URLs to print for resource hints.
+ */
+function twentythirteen_resource_hints( $urls, $relation_type ) {
+	if ( wp_style_is( 'twentythirteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
+		if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) {
+			$urls[] = array(
+				'href' => 'https://fonts.gstatic.com',
+				'crossorigin',
+			);
+		} else {
+			$urls[] = 'https://fonts.gstatic.com';
+		}
+	}
+
+	return $urls;
+}
+add_filter( 'wp_resource_hints', 'twentythirteen_resource_hints', 10, 2 );
+
+/**
+ * Enqueue styles for the block-based editor.
+ *
+ * @since Twenty Thirteen 2.5
+ */
+function twentythirteen_block_editor_styles() {
+	// Block styles.
+	wp_enqueue_style( 'twentythirteen-block-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20190102' );
+	// Add custom fonts.
+	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
+}
+add_action( 'enqueue_block_editor_assets', 'twentythirteen_block_editor_styles' );
+
+/**
+ * Filter the page title.
+ *
+ * Creates a nicely formatted and more specific title element text for output
+ * in head of document, based on current view.
+ *
+ * @since Twenty Thirteen 1.0
+ *
+ * @param string $title Default title text for current view.
+ * @param string $sep   Optional separator.
+ * @return string The filtered title.
+ */
+function twentythirteen_wp_title( $title, $sep ) {
+	global $paged, $page;
+
+	if ( is_feed() ) {
+		return $title;
+	}
+
+	// Add the site name.
+	$title .= get_bloginfo( 'name', 'display' );
+
+	// Add the site description for the home/front page.
+	$site_description = get_bloginfo( 'description', 'display' );
+	if ( $site_description && ( is_home() || is_front_page() ) ) {
+		$title = "$title $sep $site_description";
+	}
+
+	// Add a page number if necessary.
+	if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
+		/* translators: %s: Page number. */
+		$title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) );
+	}
+
+	return $title;
+}
+add_filter( 'wp_title', 'twentythirteen_wp_title', 10, 2 );
+
+/**
+ * Register two widget areas.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_widgets_init() {
+	register_sidebar(
+		array(
+			'name'          => __( 'Main Widget Area', 'twentythirteen' ),
+			'id'            => 'sidebar-1',
+			'description'   => __( 'Appears in the footer section of the site.', 'twentythirteen' ),
+			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+			'after_widget'  => '</aside>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+
+	register_sidebar(
+		array(
+			'name'          => __( 'Secondary Widget Area', 'twentythirteen' ),
+			'id'            => 'sidebar-2',
+			'description'   => __( 'Appears on posts and pages in the sidebar.', 'twentythirteen' ),
+			'before_widget' => '<aside id="%1$s" class="widget %2$s">',
+			'after_widget'  => '</aside>',
+			'before_title'  => '<h3 class="widget-title">',
+			'after_title'   => '</h3>',
+		)
+	);
+}
+add_action( 'widgets_init', 'twentythirteen_widgets_init' );
+
+if ( ! function_exists( 'twentythirteen_paging_nav' ) ) :
+	/**
+	 * Display navigation to next/previous set of posts when applicable.
+	 *
+	 * @since Twenty Thirteen 1.0
+	 */
+	function twentythirteen_paging_nav() {
+		global $wp_query;
+
+		// Don't print empty markup if there's only one page.
+		if ( $wp_query->max_num_pages < 2 ) {
+			return;
+		}
+		?>
+		<nav class="navigation paging-navigation" role="navigation">
+		<h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'twentythirteen' ); ?></h1>
+		<div class="nav-links">
+
+			<?php if ( get_next_posts_link() ) : ?>
+			<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentythirteen' ) ); ?></div>
+			<?php endif; ?>
+
+			<?php if ( get_previous_posts_link() ) : ?>
+			<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?></div>
+			<?php endif; ?>
+
+		</div><!-- .nav-links -->
+	</nav><!-- .navigation -->
+		<?php
+	}
+endif;
+
+if ( ! function_exists( 'twentythirteen_post_nav' ) ) :
+	/**
+	 * Display navigation to next/previous post when applicable.
+	 *
+	 * @since Twenty Thirteen 1.0
+	 */
+	function twentythirteen_post_nav() {
+		global $post;
+
+		// Don't print empty markup if there's nowhere to navigate.
+		$previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
+		$next     = get_adjacent_post( false, '', false );
+
+		if ( ! $next && ! $previous ) {
+			return;
+		}
+		?>
+		<nav class="navigation post-navigation" role="navigation">
+		<h1 class="screen-reader-text"><?php _e( 'Post navigation', 'twentythirteen' ); ?></h1>
+		<div class="nav-links">
+
+			<?php previous_post_link( '%link', _x( '<span class="meta-nav">&larr;</span> %title', 'Previous post link', 'twentythirteen' ) ); ?>
+			<?php next_post_link( '%link', _x( '%title <span class="meta-nav">&rarr;</span>', 'Next post link', 'twentythirteen' ) ); ?>
+
+		</div><!-- .nav-links -->
+	</nav><!-- .navigation -->
+		<?php
+	}
+endif;
+
+if ( ! function_exists( 'twentythirteen_entry_meta' ) ) :
+	/**
+	 * Print HTML with meta information for current post: categories, tags, permalink, author, and date.
+	 *
+	 * Create your own twentythirteen_entry_meta() to override in a child theme.
+	 *
+	 * @since Twenty Thirteen 1.0
+	 */
+	function twentythirteen_entry_meta() {
+		if ( is_sticky() && is_home() && ! is_paged() ) {
+			echo '<span class="featured-post">' . esc_html__( 'Sticky', 'twentythirteen' ) . '</span>';
+		}
+
+		if ( ! has_post_format( 'link' ) && 'post' == get_post_type() ) {
+			twentythirteen_entry_date();
+		}
+
+		/* translators: Used between list items, there is a space after the comma. */
+		$categories_list = get_the_category_list( __( ', ', 'twentythirteen' ) );
+		if ( $categories_list ) {
+			echo '<span class="categories-links">' . $categories_list . '</span>';
+		}
+
+		/* translators: Used between list items, there is a space after the comma. */
+		$tag_list = get_the_tag_list( '', __( ', ', 'twentythirteen' ) );
+		if ( $tag_list ) {
+			echo '<span class="tags-links">' . $tag_list . '</span>';
+		}
+
+		// Post author.
+		if ( 'post' == get_post_type() ) {
+			printf(
+				'<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
+				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
+				/* translators: %s: Author display name. */
+				esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ),
+				get_the_author()
+			);
+		}
+	}
+endif;
+
+if ( ! function_exists( 'twentythirteen_entry_date' ) ) :
+	/**
+	 * Print HTML with date information for current post.
+	 *
+	 * Create your own twentythirteen_entry_date() to override in a child theme.
+	 *
+	 * @since Twenty Thirteen 1.0
+	 *
+	 * @param boolean $echo (optional) Whether to echo the date. Default true.
+	 * @return string The HTML-formatted post date.
+	 */
+	function twentythirteen_entry_date( $echo = true ) {
+		if ( has_post_format( array( 'chat', 'status' ) ) ) {
+			/* translators: 1: Post format name, 2: Date. */
+			$format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' );
+		} else {
+			$format_prefix = '%2$s';
+		}
+
+		$date = sprintf(
+			'<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>',
+			esc_url( get_permalink() ),
+			/* translators: %s: Post title. */
+			esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ),
+			esc_attr( get_the_date( 'c' ) ),
+			esc_html( sprintf( $format_prefix, get_post_format_string( get_post_format() ), get_the_date() ) )
+		);
+
+		if ( $echo ) {
+			echo $date;
+		}
+
+		return $date;
+	}
+endif;
+
+if ( ! function_exists( 'twentythirteen_the_attached_image' ) ) :
+	/**
+	 * Print the attached image with a link to the next attached image.
+	 *
+	 * @since Twenty Thirteen 1.0
+	 */
+	function twentythirteen_the_attached_image() {
+		/**
+		 * Filter the image attachment size to use.
+		 *
+		 * @since Twenty thirteen 1.0
+		 *
+		 * @param array $size {
+		 *     @type int The attachment height in pixels.
+		 *     @type int The attachment width in pixels.
+		 * }
+		 */
+		$attachment_size     = apply_filters( 'twentythirteen_attachment_size', array( 724, 724 ) );
+		$next_attachment_url = wp_get_attachment_url();
+		$post                = get_post();
+
+		/*
+		 * Grab the IDs of all the image attachments in a gallery so we can get the URL
+		 * of the next adjacent image in a gallery, or the first image (if we're
+		 * looking at the last image in a gallery), or, in a gallery of one, just the
+		 * link to that image file.
+		 */
+		$attachment_ids = get_posts(
+			array(
+				'post_parent'    => $post->post_parent,
+				'fields'         => 'ids',
+				'numberposts'    => -1,
+				'post_status'    => 'inherit',
+				'post_type'      => 'attachment',
+				'post_mime_type' => 'image',
+				'order'          => 'ASC',
+				'orderby'        => 'menu_order ID',
+			)
+		);
+
+		// If there is more than 1 attachment in a gallery...
+		if ( count( $attachment_ids ) > 1 ) {
+			foreach ( $attachment_ids as $idx => $attachment_id ) {
+				if ( $attachment_id == $post->ID ) {
+					$next_id = $attachment_ids[ ( $idx + 1 ) % count( $attachment_ids ) ];
+					break;
+				}
+			}
+
+			if ( $next_id ) {
+				// ...get the URL of the next image attachment.
+				$next_attachment_url = get_attachment_link( $next_id );
+			} else {
+				// ...or get the URL of the first image attachment.
+				$next_attachment_url = get_attachment_link( reset( $attachment_ids ) );
+			}
+		}
+
+		printf(
+			'<a href="%1$s" title="%2$s" rel="attachment">%3$s</a>',
+			esc_url( $next_attachment_url ),
+			the_title_attribute( array( 'echo' => false ) ),
+			wp_get_attachment_image( $post->ID, $attachment_size )
+		);
+	}
+endif;
+
+/**
+ * Return the post URL.
+ *
+ * @uses get_url_in_content() to get the URL in the post meta (if it exists) or
+ * the first link found in the post content.
+ *
+ * Falls back to the post permalink if no URL is found in the post.
+ *
+ * @since Twenty Thirteen 1.0
+ *
+ * @return string The Link format URL.
+ */
+function twentythirteen_get_link_url() {
+	$content = get_the_content();
+	$has_url = get_url_in_content( $content );
+
+	return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() );
+}
+
+if ( ! function_exists( 'twentythirteen_excerpt_more' ) && ! is_admin() ) :
+	/**
+	 * Replaces "[...]" (appended to automatically generated excerpts) with ...
+	 * and a Continue reading link.
+	 *
+	 * @since Twenty Thirteen 1.4
+	 *
+	 * @param string $more Default Read More excerpt link.
+	 * @return string Filtered Read More excerpt link.
+	 */
+	function twentythirteen_excerpt_more( $more ) {
+		$link = sprintf(
+			'<a href="%1$s" class="more-link">%2$s</a>',
+			esc_url( get_permalink( get_the_ID() ) ),
+			/* translators: %s: Post title. */
+			sprintf( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
+		);
+		return ' &hellip; ' . $link;
+	}
+	add_filter( 'excerpt_more', 'twentythirteen_excerpt_more' );
+endif;
+
+/**
+ * Extend the default WordPress body classes.
+ *
+ * Adds body classes to denote:
+ * 1. Single or multiple authors.
+ * 2. Active widgets in the sidebar to change the layout and spacing.
+ * 3. When avatars are disabled in discussion settings.
+ *
+ * @since Twenty Thirteen 1.0
+ *
+ * @param array $classes A list of existing body class values.
+ * @return array The filtered body class list.
+ */
+function twentythirteen_body_class( $classes ) {
+	if ( ! is_multi_author() ) {
+		$classes[] = 'single-author';
+	}
+
+	if ( is_active_sidebar( 'sidebar-2' ) && ! is_attachment() && ! is_404() ) {
+		$classes[] = 'sidebar';
+	}
+
+	if ( ! get_option( 'show_avatars' ) ) {
+		$classes[] = 'no-avatars';
+	}
+
+	return $classes;
+}
+add_filter( 'body_class', 'twentythirteen_body_class' );
+
+/**
+ * Adjust content_width value for video post formats and attachment templates.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_content_width() {
+	global $content_width;
+
+	if ( is_attachment() ) {
+		$content_width = 724;
+	} elseif ( has_post_format( 'audio' ) ) {
+		$content_width = 484;
+	}
+}
+add_action( 'template_redirect', 'twentythirteen_content_width' );
+
+/**
+ * Add postMessage support for site title and description for the Customizer.
+ *
+ * @since Twenty Thirteen 1.0
+ *
+ * @param WP_Customize_Manager $wp_customize Customizer object.
+ */
+function twentythirteen_customize_register( $wp_customize ) {
+	$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
+	$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
+	$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
+
+	if ( isset( $wp_customize->selective_refresh ) ) {
+		$wp_customize->selective_refresh->add_partial(
+			'blogname',
+			array(
+				'selector'            => '.site-title',
+				'container_inclusive' => false,
+				'render_callback'     => 'twentythirteen_customize_partial_blogname',
+			)
+		);
+		$wp_customize->selective_refresh->add_partial(
+			'blogdescription',
+			array(
+				'selector'            => '.site-description',
+				'container_inclusive' => false,
+				'render_callback'     => 'twentythirteen_customize_partial_blogdescription',
+			)
+		);
+	}
+}
+add_action( 'customize_register', 'twentythirteen_customize_register' );
+
+/**
+ * Render the site title for the selective refresh partial.
+ *
+ * @since Twenty Thirteen 1.9
+ * @see twentythirteen_customize_register()
+ *
+ * @return void
+ */
+function twentythirteen_customize_partial_blogname() {
+	bloginfo( 'name' );
+}
+
+/**
+ * Render the site tagline for the selective refresh partial.
+ *
+ * @since Twenty Thirteen 1.9
+ * @see twentythirteen_customize_register()
+ *
+ * @return void
+ */
+function twentythirteen_customize_partial_blogdescription() {
+	bloginfo( 'description' );
+}
+
+/**
+ * Enqueue Javascript postMessage handlers for the Customizer.
+ *
+ * Binds JavaScript handlers to make the Customizer preview
+ * reload changes asynchronously.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_customize_preview_js() {
+	wp_enqueue_script( 'twentythirteen-customizer', get_template_directory_uri() . '/js/theme-customizer.js', array( 'customize-preview' ), '20141120', true );
+}
+add_action( 'customize_preview_init', 'twentythirteen_customize_preview_js' );
+
+/**
+ * Modifies tag cloud widget arguments to display all tags in the same font size
+ * and use list format for better accessibility.
+ *
+ * @since Twenty Thirteen 2.3
+ *
+ * @param array $args Arguments for tag cloud widget.
+ * @return array The filtered arguments for tag cloud widget.
+ */
+function twentythirteen_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', 'twentythirteen_widget_tag_cloud_args' );
+
+/**
+ * Prevents `author-bio.php` partial template from interfering with rendering
+ * an author archive of a user with the `bio` username.
+ *
+ * @since Twenty Thirteen 3.0
+ *
+ * @param string $template Template file.
+ * @return string Replacement template file.
+ */
+function twentythirteen_author_bio_template( $template ) {
+	if ( is_author() ) {
+		$author = get_queried_object();
+		if ( $author instanceof WP_User && 'bio' === $author->user_nicename ) {
+			// Use author templates if exist, fall back to template hierarchy otherwise.
+			return locate_template( array( "author-{$author->ID}.php", 'author.php' ) );
+		}
+	}
+
+	return $template;
+}
+add_filter( 'author_template', 'twentythirteen_author_bio_template' );
+
+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 Thirteen 2.8
+	 */
+	function wp_body_open() {
+		/**
+		 * Triggered after the opening <body> tag.
+		 *
+		 * @since Twenty Thirteen 2.8
+		 */
+		do_action( 'wp_body_open' );
+	}
+endif;
diff --git a/wp-content/themes/twentythirteen/genericons/genericons.css b/wp-content/themes/twentythirteen/genericons/genericons.css
index b10b86fcf873c814a2d0396e21d3bd5520315a98..0cab52985724aebc189ddedeea742159b8bfe129 100644
--- a/wp-content/themes/twentythirteen/genericons/genericons.css
+++ b/wp-content/themes/twentythirteen/genericons/genericons.css
@@ -1,197 +1,197 @@
-/**
-
-	Genericons Helper CSS
-
-*/
-
-
-/**
- * The font was graciously generated by Font Squirrel (http://www.fontsquirrel.com). We love those guys.
- */
-
-@font-face {
-    font-family: 'Genericons';
-    src: url('font/genericons-regular-webfont.eot');
-}
-
-@font-face {
-    font-family: 'Genericons';
-    src: url(data:application/font-woff;charset=utf-8;base64,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) format('woff'),
-         url('font/genericons-regular-webfont.ttf') format('truetype'),
-         url('font/genericons-regular-webfont.svg#genericonsregular') format('svg');
-    font-weight: normal;
-    font-style: normal;
-}
-
-
-/**
- * All Genericons
- */
-
-.genericon {
-	display: inline-block;
-	width: 16px;
-	height: 16px;
-	-webkit-font-smoothing: antialiased;
-	-moz-osx-font-smoothing: grayscale;
-	font-size: 16px;
-	line-height: 1;
-	font-family: 'Genericons';
-	text-decoration: inherit;
-	font-weight: normal;
-	font-style: normal;
-	vertical-align: top;
-}
-
-/**
- * IE7 and IE6 hacks
- */
-
-.genericon {
-	*overflow: auto;
-	*zoom: 1;
-	*display: inline;
-}
-
-/**
- * Individual icons
- */
-
-/* Post formats */
-.genericon-standard:before {        content: '\f100'; }
-.genericon-aside:before {           content: '\f101'; }
-.genericon-image:before {           content: '\f102'; }
-.genericon-gallery:before {         content: '\f103'; }
-.genericon-video:before {           content: '\f104'; }
-.genericon-status:before {          content: '\f105'; }
-.genericon-quote:before {           content: '\f106'; }
-.genericon-link:before {            content: '\f107'; }
-.genericon-chat:before {            content: '\f108'; }
-.genericon-audio:before {           content: '\f109'; }
-
-/* Social icons */
-.genericon-github:before {          content: '\f200'; }
-.genericon-dribbble:before {        content: '\f201'; }
-.genericon-twitter:before {         content: '\f202'; }
-.genericon-facebook:before {        content: '\f203'; }
-.genericon-facebook-alt:before {    content: '\f204'; }
-.genericon-wordpress:before {       content: '\f205'; }
-.genericon-googleplus:before {      content: '\f206'; }
-.genericon-linkedin:before {        content: '\f207'; }
-.genericon-linkedin-alt:before {    content: '\f208'; }
-.genericon-pinterest:before {       content: '\f209'; }
-.genericon-pinterest-alt:before {   content: '\f210'; }
-.genericon-flickr:before {          content: '\f211'; }
-.genericon-vimeo:before {           content: '\f212'; }
-.genericon-youtube:before {         content: '\f213'; }
-.genericon-tumblr:before {          content: '\f214'; }
-.genericon-instagram:before {       content: '\f215'; }
-.genericon-codepen:before {         content: '\f216'; }
-.genericon-polldaddy:before {       content: '\f217'; }
-.genericon-googleplus-alt:before {  content: '\f218'; }
-.genericon-path:before {            content: '\f219'; }
-.genericon-skype:before {           content: '\f220'; }
-.genericon-digg:before {            content: '\f221'; }
-.genericon-reddit:before {          content: '\f222'; }
-.genericon-stumbleupon:before {     content: '\f223'; }
-.genericon-pocket:before {          content: '\f224'; }
-.genericon-dropbox:before {         content: '\f225'; }
-
-/* Meta icons */
-.genericon-comment:before {         content: '\f300'; }
-.genericon-category:before {        content: '\f301'; }
-.genericon-tag:before {             content: '\f302'; }
-.genericon-time:before {            content: '\f303'; }
-.genericon-user:before {            content: '\f304'; }
-.genericon-day:before {             content: '\f305'; }
-.genericon-week:before {            content: '\f306'; }
-.genericon-month:before {           content: '\f307'; }
-.genericon-pinned:before {          content: '\f308'; }
-
-/* Other icons */
-.genericon-search:before {          content: '\f400'; }
-.genericon-unzoom:before {          content: '\f401'; }
-.genericon-zoom:before {            content: '\f402'; }
-.genericon-show:before {            content: '\f403'; }
-.genericon-hide:before {            content: '\f404'; }
-.genericon-close:before {           content: '\f405'; }
-.genericon-close-alt:before {       content: '\f406'; }
-.genericon-trash:before {           content: '\f407'; }
-.genericon-star:before {            content: '\f408'; }
-.genericon-home:before {            content: '\f409'; }
-.genericon-mail:before {            content: '\f410'; }
-.genericon-edit:before {            content: '\f411'; }
-.genericon-reply:before {           content: '\f412'; }
-.genericon-feed:before {            content: '\f413'; }
-.genericon-warning:before {         content: '\f414'; }
-.genericon-share:before {           content: '\f415'; }
-.genericon-attachment:before {      content: '\f416'; }
-.genericon-location:before {        content: '\f417'; }
-.genericon-checkmark:before {       content: '\f418'; }
-.genericon-menu:before {            content: '\f419'; }
-.genericon-refresh:before {         content: '\f420'; }
-.genericon-minimize:before {        content: '\f421'; }
-.genericon-maximize:before {        content: '\f422'; }
-.genericon-404:before {             content: '\f423'; }
-.genericon-spam:before {            content: '\f424'; }
-.genericon-summary:before {         content: '\f425'; }
-.genericon-cloud:before {           content: '\f426'; }
-.genericon-key:before {             content: '\f427'; }
-.genericon-dot:before {             content: '\f428'; }
-.genericon-next:before {            content: '\f429'; }
-.genericon-previous:before {        content: '\f430'; }
-.genericon-expand:before {          content: '\f431'; }
-.genericon-collapse:before {        content: '\f432'; }
-.genericon-dropdown:before {        content: '\f433'; }
-.genericon-dropdown-left:before {   content: '\f434'; }
-.genericon-top:before {             content: '\f435'; }
-.genericon-draggable:before {       content: '\f436'; }
-.genericon-phone:before {           content: '\f437'; }
-.genericon-send-to-phone:before {   content: '\f438'; }
-.genericon-plugin:before {          content: '\f439'; }
-.genericon-cloud-download:before {  content: '\f440'; }
-.genericon-cloud-upload:before {    content: '\f441'; }
-.genericon-external:before {        content: '\f442'; }
-.genericon-document:before {        content: '\f443'; }
-.genericon-book:before {            content: '\f444'; }
-.genericon-cog:before {             content: '\f445'; }
-.genericon-unapprove:before {       content: '\f446'; }
-.genericon-cart:before {            content: '\f447'; }
-.genericon-pause:before {           content: '\f448'; }
-.genericon-stop:before {            content: '\f449'; }
-.genericon-skip-back:before {       content: '\f450'; }
-.genericon-skip-ahead:before {      content: '\f451'; }
-.genericon-play:before {            content: '\f452'; }
-.genericon-tablet:before {          content: '\f453'; }
-.genericon-send-to-tablet:before {  content: '\f454'; }
-.genericon-info:before {            content: '\f455'; }
-.genericon-notice:before {          content: '\f456'; }
-.genericon-help:before {            content: '\f457'; }
-.genericon-fastforward:before {     content: '\f458'; }
-.genericon-rewind:before {          content: '\f459'; }
-.genericon-portfolio:before {       content: '\f460'; }
-.genericon-heart:before {           content: '\f461'; }
-.genericon-code:before {            content: '\f462'; }
-.genericon-subscribe:before {       content: '\f463'; }
-.genericon-unsubscribe:before {     content: '\f464'; }
-.genericon-subscribed:before {      content: '\f465'; }
-.genericon-reply-alt:before {       content: '\f466'; }
-.genericon-reply-single:before {    content: '\f467'; }
-.genericon-flag:before {            content: '\f468'; }
-.genericon-print:before {           content: '\f469'; }
-.genericon-lock:before {            content: '\f470'; }
-.genericon-bold:before {            content: '\f471'; }
-.genericon-italic:before {          content: '\f472'; }
-.genericon-picture:before {         content: '\f473'; }
-.genericon-fullscreen:before {      content: '\f474'; }
-
-/* Generic shapes */
-.genericon-uparrow:before {         content: '\f500'; }
-.genericon-rightarrow:before {      content: '\f501'; }
-.genericon-downarrow:before {       content: '\f502'; }
-.genericon-leftarrow:before {       content: '\f503'; }
-
-
-
-
-
+/**
+
+	Genericons Helper CSS
+
+*/
+
+
+/**
+ * The font was graciously generated by Font Squirrel (http://www.fontsquirrel.com). We love those guys.
+ */
+
+@font-face {
+    font-family: 'Genericons';
+    src: url('font/genericons-regular-webfont.eot');
+}
+
+@font-face {
+    font-family: 'Genericons';
+    src: url(data:application/font-woff;charset=utf-8;base64,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) format('woff'),
+         url('font/genericons-regular-webfont.ttf') format('truetype'),
+         url('font/genericons-regular-webfont.svg#genericonsregular') format('svg');
+    font-weight: normal;
+    font-style: normal;
+}
+
+
+/**
+ * All Genericons
+ */
+
+.genericon {
+	display: inline-block;
+	width: 16px;
+	height: 16px;
+	-webkit-font-smoothing: antialiased;
+	-moz-osx-font-smoothing: grayscale;
+	font-size: 16px;
+	line-height: 1;
+	font-family: 'Genericons';
+	text-decoration: inherit;
+	font-weight: normal;
+	font-style: normal;
+	vertical-align: top;
+}
+
+/**
+ * IE7 and IE6 hacks
+ */
+
+.genericon {
+	*overflow: auto;
+	*zoom: 1;
+	*display: inline;
+}
+
+/**
+ * Individual icons
+ */
+
+/* Post formats */
+.genericon-standard:before {        content: '\f100'; }
+.genericon-aside:before {           content: '\f101'; }
+.genericon-image:before {           content: '\f102'; }
+.genericon-gallery:before {         content: '\f103'; }
+.genericon-video:before {           content: '\f104'; }
+.genericon-status:before {          content: '\f105'; }
+.genericon-quote:before {           content: '\f106'; }
+.genericon-link:before {            content: '\f107'; }
+.genericon-chat:before {            content: '\f108'; }
+.genericon-audio:before {           content: '\f109'; }
+
+/* Social icons */
+.genericon-github:before {          content: '\f200'; }
+.genericon-dribbble:before {        content: '\f201'; }
+.genericon-twitter:before {         content: '\f202'; }
+.genericon-facebook:before {        content: '\f203'; }
+.genericon-facebook-alt:before {    content: '\f204'; }
+.genericon-wordpress:before {       content: '\f205'; }
+.genericon-googleplus:before {      content: '\f206'; }
+.genericon-linkedin:before {        content: '\f207'; }
+.genericon-linkedin-alt:before {    content: '\f208'; }
+.genericon-pinterest:before {       content: '\f209'; }
+.genericon-pinterest-alt:before {   content: '\f210'; }
+.genericon-flickr:before {          content: '\f211'; }
+.genericon-vimeo:before {           content: '\f212'; }
+.genericon-youtube:before {         content: '\f213'; }
+.genericon-tumblr:before {          content: '\f214'; }
+.genericon-instagram:before {       content: '\f215'; }
+.genericon-codepen:before {         content: '\f216'; }
+.genericon-polldaddy:before {       content: '\f217'; }
+.genericon-googleplus-alt:before {  content: '\f218'; }
+.genericon-path:before {            content: '\f219'; }
+.genericon-skype:before {           content: '\f220'; }
+.genericon-digg:before {            content: '\f221'; }
+.genericon-reddit:before {          content: '\f222'; }
+.genericon-stumbleupon:before {     content: '\f223'; }
+.genericon-pocket:before {          content: '\f224'; }
+.genericon-dropbox:before {         content: '\f225'; }
+
+/* Meta icons */
+.genericon-comment:before {         content: '\f300'; }
+.genericon-category:before {        content: '\f301'; }
+.genericon-tag:before {             content: '\f302'; }
+.genericon-time:before {            content: '\f303'; }
+.genericon-user:before {            content: '\f304'; }
+.genericon-day:before {             content: '\f305'; }
+.genericon-week:before {            content: '\f306'; }
+.genericon-month:before {           content: '\f307'; }
+.genericon-pinned:before {          content: '\f308'; }
+
+/* Other icons */
+.genericon-search:before {          content: '\f400'; }
+.genericon-unzoom:before {          content: '\f401'; }
+.genericon-zoom:before {            content: '\f402'; }
+.genericon-show:before {            content: '\f403'; }
+.genericon-hide:before {            content: '\f404'; }
+.genericon-close:before {           content: '\f405'; }
+.genericon-close-alt:before {       content: '\f406'; }
+.genericon-trash:before {           content: '\f407'; }
+.genericon-star:before {            content: '\f408'; }
+.genericon-home:before {            content: '\f409'; }
+.genericon-mail:before {            content: '\f410'; }
+.genericon-edit:before {            content: '\f411'; }
+.genericon-reply:before {           content: '\f412'; }
+.genericon-feed:before {            content: '\f413'; }
+.genericon-warning:before {         content: '\f414'; }
+.genericon-share:before {           content: '\f415'; }
+.genericon-attachment:before {      content: '\f416'; }
+.genericon-location:before {        content: '\f417'; }
+.genericon-checkmark:before {       content: '\f418'; }
+.genericon-menu:before {            content: '\f419'; }
+.genericon-refresh:before {         content: '\f420'; }
+.genericon-minimize:before {        content: '\f421'; }
+.genericon-maximize:before {        content: '\f422'; }
+.genericon-404:before {             content: '\f423'; }
+.genericon-spam:before {            content: '\f424'; }
+.genericon-summary:before {         content: '\f425'; }
+.genericon-cloud:before {           content: '\f426'; }
+.genericon-key:before {             content: '\f427'; }
+.genericon-dot:before {             content: '\f428'; }
+.genericon-next:before {            content: '\f429'; }
+.genericon-previous:before {        content: '\f430'; }
+.genericon-expand:before {          content: '\f431'; }
+.genericon-collapse:before {        content: '\f432'; }
+.genericon-dropdown:before {        content: '\f433'; }
+.genericon-dropdown-left:before {   content: '\f434'; }
+.genericon-top:before {             content: '\f435'; }
+.genericon-draggable:before {       content: '\f436'; }
+.genericon-phone:before {           content: '\f437'; }
+.genericon-send-to-phone:before {   content: '\f438'; }
+.genericon-plugin:before {          content: '\f439'; }
+.genericon-cloud-download:before {  content: '\f440'; }
+.genericon-cloud-upload:before {    content: '\f441'; }
+.genericon-external:before {        content: '\f442'; }
+.genericon-document:before {        content: '\f443'; }
+.genericon-book:before {            content: '\f444'; }
+.genericon-cog:before {             content: '\f445'; }
+.genericon-unapprove:before {       content: '\f446'; }
+.genericon-cart:before {            content: '\f447'; }
+.genericon-pause:before {           content: '\f448'; }
+.genericon-stop:before {            content: '\f449'; }
+.genericon-skip-back:before {       content: '\f450'; }
+.genericon-skip-ahead:before {      content: '\f451'; }
+.genericon-play:before {            content: '\f452'; }
+.genericon-tablet:before {          content: '\f453'; }
+.genericon-send-to-tablet:before {  content: '\f454'; }
+.genericon-info:before {            content: '\f455'; }
+.genericon-notice:before {          content: '\f456'; }
+.genericon-help:before {            content: '\f457'; }
+.genericon-fastforward:before {     content: '\f458'; }
+.genericon-rewind:before {          content: '\f459'; }
+.genericon-portfolio:before {       content: '\f460'; }
+.genericon-heart:before {           content: '\f461'; }
+.genericon-code:before {            content: '\f462'; }
+.genericon-subscribe:before {       content: '\f463'; }
+.genericon-unsubscribe:before {     content: '\f464'; }
+.genericon-subscribed:before {      content: '\f465'; }
+.genericon-reply-alt:before {       content: '\f466'; }
+.genericon-reply-single:before {    content: '\f467'; }
+.genericon-flag:before {            content: '\f468'; }
+.genericon-print:before {           content: '\f469'; }
+.genericon-lock:before {            content: '\f470'; }
+.genericon-bold:before {            content: '\f471'; }
+.genericon-italic:before {          content: '\f472'; }
+.genericon-picture:before {         content: '\f473'; }
+.genericon-fullscreen:before {      content: '\f474'; }
+
+/* Generic shapes */
+.genericon-uparrow:before {         content: '\f500'; }
+.genericon-rightarrow:before {      content: '\f501'; }
+.genericon-downarrow:before {       content: '\f502'; }
+.genericon-leftarrow:before {       content: '\f503'; }
+
+
+
+
+
diff --git a/wp-content/themes/twentythirteen/header.php b/wp-content/themes/twentythirteen/header.php
index dee665689b7da84719cee8fbc8eb44ec48d9d0d0..78ce0ffa436a7b70abc5e3c2cc045eeee21442b6 100644
--- a/wp-content/themes/twentythirteen/header.php
+++ b/wp-content/themes/twentythirteen/header.php
@@ -1,60 +1,60 @@
-<?php
-/**
- * The Header template for our theme
- *
- * Displays all of the <head> section and everything up till <div id="main">
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-?><!DOCTYPE html>
-<!--[if IE 7]>
-<html class="ie ie7" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if IE 8]>
-<html class="ie ie8" <?php language_attributes(); ?>>
-<![endif]-->
-<!--[if !(IE 7) & !(IE 8)]><!-->
-<html <?php language_attributes(); ?>>
-<!--<![endif]-->
-<head>
-	<meta charset="<?php bloginfo( 'charset' ); ?>">
-	<meta name="viewport" content="width=device-width">
-	<title><?php wp_title( '|', true, 'right' ); ?></title>
-	<link rel="profile" href="http://gmpg.org/xfn/11">
-	<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
-	<!--[if lt IE 9]>
-	<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
-	<![endif]-->
-	<?php wp_head(); ?>
-</head>
-
-<body <?php body_class(); ?>>
-	<?php wp_body_open(); ?>
-	<div id="page" class="hfeed site">
-		<header id="masthead" class="site-header" role="banner">
-			<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
-				<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
-				<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
-			</a>
-
-			<div id="navbar" class="navbar">
-				<nav id="site-navigation" class="navigation main-navigation" role="navigation">
-					<button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button>
-					<a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
-					<?php
-					wp_nav_menu(
-						array(
-							'theme_location' => 'primary',
-							'menu_class'     => 'nav-menu',
-							'menu_id'        => 'primary-menu',
-						)
-					);
-					?>
-					<?php get_search_form(); ?>
-				</nav><!-- #site-navigation -->
-			</div><!-- #navbar -->
-		</header><!-- #masthead -->
-
-		<div id="main" class="site-main">
+<?php
+/**
+ * The Header template for our theme
+ *
+ * Displays all of the <head> section and everything up till <div id="main">
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?><!DOCTYPE html>
+<!--[if IE 7]>
+<html class="ie ie7" <?php language_attributes(); ?>>
+<![endif]-->
+<!--[if IE 8]>
+<html class="ie ie8" <?php language_attributes(); ?>>
+<![endif]-->
+<!--[if !(IE 7) & !(IE 8)]><!-->
+<html <?php language_attributes(); ?>>
+<!--<![endif]-->
+<head>
+	<meta charset="<?php bloginfo( 'charset' ); ?>">
+	<meta name="viewport" content="width=device-width">
+	<title><?php wp_title( '|', true, 'right' ); ?></title>
+	<link rel="profile" href="http://gmpg.org/xfn/11">
+	<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
+	<!--[if lt IE 9]>
+	<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js?ver=3.7.0"></script>
+	<![endif]-->
+	<?php wp_head(); ?>
+</head>
+
+<body <?php body_class(); ?>>
+	<?php wp_body_open(); ?>
+	<div id="page" class="hfeed site">
+		<header id="masthead" class="site-header" role="banner">
+			<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
+				<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
+				<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
+			</a>
+
+			<div id="navbar" class="navbar">
+				<nav id="site-navigation" class="navigation main-navigation" role="navigation">
+					<button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></button>
+					<a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _e( 'Skip to content', 'twentythirteen' ); ?></a>
+					<?php
+					wp_nav_menu(
+						array(
+							'theme_location' => 'primary',
+							'menu_class'     => 'nav-menu',
+							'menu_id'        => 'primary-menu',
+						)
+					);
+					?>
+					<?php get_search_form(); ?>
+				</nav><!-- #site-navigation -->
+			</div><!-- #navbar -->
+		</header><!-- #masthead -->
+
+		<div id="main" class="site-main">
diff --git a/wp-content/themes/twentythirteen/image.php b/wp-content/themes/twentythirteen/image.php
index 89708f37c50fd8b482f6d8b098c5f4fa254281f0..e1779003dfa327bb4e0793489183b2a0cccf1a3a 100644
--- a/wp-content/themes/twentythirteen/image.php
+++ b/wp-content/themes/twentythirteen/image.php
@@ -1,101 +1,102 @@
-<?php
-/**
- * The template for displaying image attachments
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-			<?php
-				// Start the Loop.
-			while ( have_posts() ) :
-				the_post();
-				?>
-
-			<article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
-			<header class="entry-header">
-				<h1 class="entry-title"><?php the_title(); ?></h1>
-
-				<div class="entry-meta">
-					<?php
-						$published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
-						$post_title     = get_the_title( $post->post_parent );
-					if ( empty( $post_title ) || 0 == $post->post_parent ) {
-						$published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>';
-					}
-
-						printf(
-							$published_text,
-							esc_attr( get_the_date( 'c' ) ),
-							esc_html( get_the_date() ),
-							esc_url( get_permalink( $post->post_parent ) ),
-							esc_attr( strip_tags( $post_title ) ),
-							$post_title
-						);
-
-						$metadata = wp_get_attachment_metadata();
-						printf(
-							'<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s (%4$s &times; %5$s)</a></span>',
-							esc_url( wp_get_attachment_url() ),
-							esc_attr__( 'Link to full-size image', 'twentythirteen' ),
-							__( 'Full resolution', 'twentythirteen' ),
-							$metadata['width'],
-							$metadata['height']
-						);
-
-						edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' );
-					?>
-					</div><!-- .entry-meta -->
-				</header><!-- .entry-header -->
-
-				<div class="entry-content">
-					<nav id="image-navigation" class="navigation image-navigation" role="navigation">
-					<span class="nav-previous"><?php previous_image_link( false, __( '<span class="meta-nav">&larr;</span> Previous', 'twentythirteen' ) ); ?></span>
-						<span class="nav-next"><?php next_image_link( false, __( 'Next <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?></span>
-					</nav><!-- #image-navigation -->
-
-					<div class="entry-attachment">
-						<div class="attachment">
-						<?php twentythirteen_the_attached_image(); ?>
-
-						<?php if ( has_excerpt() ) : ?>
-							<div class="entry-caption">
-								<?php the_excerpt(); ?>
-							</div>
-							<?php endif; ?>
-						</div><!-- .attachment -->
-					</div><!-- .entry-attachment -->
-
-					<?php if ( ! empty( $post->post_content ) ) : ?>
-					<div class="entry-description">
-						<?php the_content(); ?>
-						<?php
-						wp_link_pages(
-							array(
-								'before' => '<div class="page-links">' . __( 'Pages:', 'twentythirteen' ),
-								'after'  => '</div>',
-							)
-						);
-						?>
-					</div><!-- .entry-description -->
-					<?php endif; ?>
-
-				</div><!-- .entry-content -->
-			</article><!-- #post -->
-
-				<?php comments_template(); ?>
-
-			<?php endwhile; // End the loop. ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying image attachments
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+
+			<article id="post-<?php the_ID(); ?>" <?php post_class( 'image-attachment' ); ?>>
+			<header class="entry-header">
+				<h1 class="entry-title"><?php the_title(); ?></h1>
+
+				<div class="entry-meta">
+					<?php
+					/* translators: 1: Date, 2: Date, 3, Parent permalink, 4, Post title, 5: Post title. */
+					$published_text = __( '<span class="attachment-meta">Published on <time class="entry-date" datetime="%1$s">%2$s</time> in <a href="%3$s" title="Return to %4$s" rel="gallery">%5$s</a></span>', 'twentythirteen' );
+					$post_title     = get_the_title( $post->post_parent );
+					if ( empty( $post_title ) || 0 == $post->post_parent ) {
+						$published_text = '<span class="attachment-meta"><time class="entry-date" datetime="%1$s">%2$s</time></span>';
+					}
+
+						printf(
+							$published_text,
+							esc_attr( get_the_date( 'c' ) ),
+							esc_html( get_the_date() ),
+							esc_url( get_permalink( $post->post_parent ) ),
+							esc_attr( strip_tags( $post_title ) ),
+							$post_title
+						);
+
+						$metadata = wp_get_attachment_metadata();
+						printf(
+							'<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s (%4$s &times; %5$s)</a></span>',
+							esc_url( wp_get_attachment_url() ),
+							esc_attr__( 'Link to full-size image', 'twentythirteen' ),
+							__( 'Full resolution', 'twentythirteen' ),
+							$metadata['width'],
+							$metadata['height']
+						);
+
+						edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' );
+					?>
+					</div><!-- .entry-meta -->
+				</header><!-- .entry-header -->
+
+				<div class="entry-content">
+					<nav id="image-navigation" class="navigation image-navigation" role="navigation">
+					<span class="nav-previous"><?php previous_image_link( false, __( '<span class="meta-nav">&larr;</span> Previous', 'twentythirteen' ) ); ?></span>
+						<span class="nav-next"><?php next_image_link( false, __( 'Next <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?></span>
+					</nav><!-- #image-navigation -->
+
+					<div class="entry-attachment">
+						<div class="attachment">
+						<?php twentythirteen_the_attached_image(); ?>
+
+						<?php if ( has_excerpt() ) : ?>
+							<div class="entry-caption">
+								<?php the_excerpt(); ?>
+							</div>
+							<?php endif; ?>
+						</div><!-- .attachment -->
+					</div><!-- .entry-attachment -->
+
+					<?php if ( ! empty( $post->post_content ) ) : ?>
+					<div class="entry-description">
+						<?php the_content(); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before' => '<div class="page-links">' . __( 'Pages:', 'twentythirteen' ),
+								'after'  => '</div>',
+							)
+						);
+						?>
+					</div><!-- .entry-description -->
+					<?php endif; ?>
+
+				</div><!-- .entry-content -->
+			</article><!-- #post -->
+
+				<?php comments_template(); ?>
+
+			<?php endwhile; // End of the loop. ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/inc/back-compat.php b/wp-content/themes/twentythirteen/inc/back-compat.php
index 80940887fbaaa5adb8c24199cecb344e2610b2a5..9bf5b3c8c7787fbc3f709e8be3f4458af2cbf015 100644
--- a/wp-content/themes/twentythirteen/inc/back-compat.php
+++ b/wp-content/themes/twentythirteen/inc/back-compat.php
@@ -1,67 +1,70 @@
-<?php
-/**
- * Twenty Thirteen back compat functionality
- *
- * Prevents Twenty Thirteen from running on WordPress versions prior to 3.6,
- * since this theme is not meant to be backward compatible and relies on
- * many new functions and markup changes introduced in 3.6.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/**
- * Prevent switching to Twenty Thirteen on old versions of WordPress.
- *
- * Switches to the default theme.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_switch_theme() {
-	switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
-	unset( $_GET['activated'] );
-	add_action( 'admin_notices', 'twentythirteen_upgrade_notice' );
-}
-add_action( 'after_switch_theme', 'twentythirteen_switch_theme' );
-
-/**
- * Add message for unsuccessful theme switch.
- *
- * Prints an update nag after an unsuccessful attempt to switch to
- * Twenty Thirteen on WordPress versions prior to 3.6.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_upgrade_notice() {
-	$message = sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] );
-	printf( '<div class="error"><p>%s</p></div>', $message );
-}
-
-/**
- * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_customize() {
-	wp_die(
-		sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ),
-		'',
-		array(
-			'back_link' => true,
-		)
-	);
-}
-add_action( 'load-customize.php', 'twentythirteen_customize' );
-
-/**
- * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_preview() {
-	if ( isset( $_GET['preview'] ) ) {
-		wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ) );
-	}
-}
-add_action( 'template_redirect', 'twentythirteen_preview' );
+<?php
+/**
+ * Twenty Thirteen back compat functionality
+ *
+ * Prevents Twenty Thirteen from running on WordPress versions prior to 3.6,
+ * since this theme is not meant to be backward compatible and relies on
+ * many new functions and markup changes introduced in 3.6.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+/**
+ * Prevent switching to Twenty Thirteen on old versions of WordPress.
+ *
+ * Switches to the default theme.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_switch_theme() {
+	switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
+	unset( $_GET['activated'] );
+	add_action( 'admin_notices', 'twentythirteen_upgrade_notice' );
+}
+add_action( 'after_switch_theme', 'twentythirteen_switch_theme' );
+
+/**
+ * Add message for unsuccessful theme switch.
+ *
+ * Prints an update nag after an unsuccessful attempt to switch to
+ * Twenty Thirteen on WordPress versions prior to 3.6.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_upgrade_notice() {
+	/* translators: %s: WordPress version. */
+	$message = sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] );
+	printf( '<div class="error"><p>%s</p></div>', $message );
+}
+
+/**
+ * Prevent the Customizer from being loaded on WordPress versions prior to 3.6.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_customize() {
+	wp_die(
+		/* translators: %s: WordPress version. */
+		sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ),
+		'',
+		array(
+			'back_link' => true,
+		)
+	);
+}
+add_action( 'load-customize.php', 'twentythirteen_customize' );
+
+/**
+ * Prevent the Theme Preview from being loaded on WordPress versions prior to 3.4.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_preview() {
+	if ( isset( $_GET['preview'] ) ) {
+		/* translators: %s: WordPress version. */
+		wp_die( sprintf( __( 'Twenty Thirteen requires at least WordPress version 3.6. You are running version %s. Please upgrade and try again.', 'twentythirteen' ), $GLOBALS['wp_version'] ) );
+	}
+}
+add_action( 'template_redirect', 'twentythirteen_preview' );
diff --git a/wp-content/themes/twentythirteen/inc/custom-header.php b/wp-content/themes/twentythirteen/inc/custom-header.php
index 29a98f3f527eb8f64ee61d71c8919acd97e3a5a3..0d67e98226bdd5dc4e16ee543693a73bbd34360c 100644
--- a/wp-content/themes/twentythirteen/inc/custom-header.php
+++ b/wp-content/themes/twentythirteen/inc/custom-header.php
@@ -1,236 +1,236 @@
-<?php
-/**
- * Implement a custom header for Twenty Thirteen
- *
- * @link https://codex.wordpress.org/Custom_Headers
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-/**
- * Set up the WordPress core custom header arguments and settings.
- *
- * @uses add_theme_support() to register support for 3.4 and up.
- * @uses twentythirteen_header_style() to style front end.
- * @uses twentythirteen_admin_header_style() to style wp-admin form.
- * @uses twentythirteen_admin_header_image() to add custom markup to wp-admin form.
- * @uses register_default_headers() to set up the bundled header images.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_custom_header_setup() {
-	$args = array(
-		// Text color and image (empty to use none).
-		'default-text-color'     => '220e10',
-		'default-image'          => '%s/images/headers/circle.png',
-
-		// Set height and width, with a maximum value for the width.
-		'height'                 => 230,
-		'width'                  => 1600,
-
-		// Callbacks for styling the header and the admin preview.
-		'wp-head-callback'       => 'twentythirteen_header_style',
-		'admin-head-callback'    => 'twentythirteen_admin_header_style',
-		'admin-preview-callback' => 'twentythirteen_admin_header_image',
-	);
-
-	add_theme_support( 'custom-header', $args );
-
-	/*
-	 * Default custom headers packaged with the theme.
-	 * %s is a placeholder for the theme template directory URI.
-	 */
-	register_default_headers(
-		array(
-			'circle'  => array(
-				'url'           => '%s/images/headers/circle.png',
-				'thumbnail_url' => '%s/images/headers/circle-thumbnail.png',
-				'description'   => _x( 'Circle', 'header image description', 'twentythirteen' ),
-			),
-			'diamond' => array(
-				'url'           => '%s/images/headers/diamond.png',
-				'thumbnail_url' => '%s/images/headers/diamond-thumbnail.png',
-				'description'   => _x( 'Diamond', 'header image description', 'twentythirteen' ),
-			),
-			'star'    => array(
-				'url'           => '%s/images/headers/star.png',
-				'thumbnail_url' => '%s/images/headers/star-thumbnail.png',
-				'description'   => _x( 'Star', 'header image description', 'twentythirteen' ),
-			),
-		)
-	);
-}
-add_action( 'after_setup_theme', 'twentythirteen_custom_header_setup', 11 );
-
-/**
- * Load our special font CSS files.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_custom_header_fonts() {
-	// Add Source Sans Pro and Bitter fonts.
-	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
-
-	// Add Genericons font.
-	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
-}
-add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
-
-/**
- * Style the header text displayed on the blog.
- *
- * get_header_textcolor() options: Hide text (returns 'blank'), or any hex value.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_header_style() {
-	$header_image = get_header_image();
-	$text_color   = get_header_textcolor();
-
-	// If no custom options for text are set, let's bail.
-	if ( empty( $header_image ) && $text_color == get_theme_support( 'custom-header', 'default-text-color' ) ) {
-		return;
-	}
-
-	// If we get this far, we have custom styles.
-	?>
-	<style type="text/css" id="twentythirteen-header-css">
-	<?php
-	if ( ! empty( $header_image ) ) :
-		?>
-	.site-header {
-		background: url(<?php header_image(); ?>) no-repeat scroll top;
-		background-size: 1600px auto;
-	}
-	@media (max-width: 767px) {
-		.site-header {
-			background-size: 768px auto;
-		}
-	}
-	@media (max-width: 359px) {
-		.site-header {
-			background-size: 360px auto;
-		}
-	}
-		<?php
-		endif;
-
-		// Has the text been hidden?
-	if ( ! display_header_text() ) :
-		?>
-	.site-title,
-	.site-description {
-		position: absolute;
-		clip: rect(1px 1px 1px 1px); /* IE7 */
-		clip: rect(1px, 1px, 1px, 1px);
-	}
-		<?php
-		if ( empty( $header_image ) ) :
-			?>
-	.site-header .home-link {
-	min-height: 0;
-	}
-			<?php
-		endif;
-
-		// If the user has set a custom color for the text, use that.
-		elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) :
-			?>
-		.site-title,
-		.site-description {
-			color: #<?php echo esc_attr( $text_color ); ?>;
-		}
-	<?php endif; ?>
-	</style>
-	<?php
-}
-
-/**
- * Style the header image displayed on the Appearance > Header admin panel.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_admin_header_style() {
-	$header_image = get_header_image();
-	?>
-	<style type="text/css" id="twentythirteen-admin-header-css">
-	.appearance_page_custom-header #headimg {
-		border: none;
-		-webkit-box-sizing: border-box;
-		-moz-box-sizing:    border-box;
-		box-sizing:         border-box;
-		<?php
-		if ( ! empty( $header_image ) ) {
-			echo 'background: url(' . esc_url( $header_image ) . ') no-repeat scroll top; background-size: 1600px auto;';
-		}
-		?>
-		padding: 0 20px;
-	}
-	#headimg .home-link {
-		-webkit-box-sizing: border-box;
-		-moz-box-sizing:    border-box;
-		box-sizing:         border-box;
-		margin: 0 auto;
-		max-width: 1040px;
-		<?php
-		if ( ! empty( $header_image ) || display_header_text() ) {
-			echo 'min-height: 230px;';
-		}
-		?>
-		width: 100%;
-	}
-	<?php if ( ! display_header_text() ) : ?>
-	#headimg h1,
-	#headimg h2 {
-		position: absolute !important;
-		clip: rect(1px 1px 1px 1px); /* IE7 */
-		clip: rect(1px, 1px, 1px, 1px);
-	}
-	<?php endif; ?>
-	#headimg h1 {
-		font: bold 60px/1 Bitter, Georgia, serif;
-		margin: 0;
-		padding: 58px 0 10px;
-	}
-	#headimg h1 a {
-		text-decoration: none;
-	}
-	#headimg h1 a:hover {
-		text-decoration: underline;
-	}
-	#headimg h2 {
-		font: 200 italic 24px "Source Sans Pro", Helvetica, sans-serif;
-		margin: 0;
-		text-shadow: none;
-	}
-	.default-header img {
-		max-width: 230px;
-		width: auto;
-	}
-	</style>
-	<?php
-}
-
-/**
- * Output markup to be displayed on the Appearance > Header admin panel.
- *
- * This callback overrides the default markup displayed there.
- *
- * @since Twenty Thirteen 1.0
- */
-function twentythirteen_admin_header_image() {
-	$style = 'color: #' . get_header_textcolor() . ';';
-	if ( ! display_header_text() ) {
-		$style = 'display: none;';
-	}
-	?>
-	<div id="headimg" style="background: url(<?php echo esc_url( get_header_image() ); ?>) no-repeat scroll top; background-size: 1600px auto;">
-		<div class="home-link">
-			<h1 class="displaying-header-text"><a id="name" style="<?php echo esc_attr( $style ); ?>" onclick="return false;" href="#" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
-			<h2 id="desc" class="displaying-header-text" style="<?php echo esc_attr( $style ); ?>"><?php bloginfo( 'description' ); ?></h2>
-		</div>
-	</div>
-	<?php
-}
+<?php
+/**
+ * Implement a custom header for Twenty Thirteen
+ *
+ * @link https://codex.wordpress.org/Custom_Headers
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+/**
+ * Set up the WordPress core custom header arguments and settings.
+ *
+ * @uses add_theme_support() to register support for 3.4 and up.
+ * @uses twentythirteen_header_style() to style front end.
+ * @uses twentythirteen_admin_header_style() to style wp-admin form.
+ * @uses twentythirteen_admin_header_image() to add custom markup to wp-admin form.
+ * @uses register_default_headers() to set up the bundled header images.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_custom_header_setup() {
+	$args = array(
+		// Text color and image (empty to use none).
+		'default-text-color'     => '220e10',
+		'default-image'          => '%s/images/headers/circle.png',
+
+		// Set height and width, with a maximum value for the width.
+		'height'                 => 230,
+		'width'                  => 1600,
+
+		// Callbacks for styling the header and the admin preview.
+		'wp-head-callback'       => 'twentythirteen_header_style',
+		'admin-head-callback'    => 'twentythirteen_admin_header_style',
+		'admin-preview-callback' => 'twentythirteen_admin_header_image',
+	);
+
+	add_theme_support( 'custom-header', $args );
+
+	/*
+	 * Default custom headers packaged with the theme.
+	 * %s is a placeholder for the theme template directory URI.
+	 */
+	register_default_headers(
+		array(
+			'circle'  => array(
+				'url'           => '%s/images/headers/circle.png',
+				'thumbnail_url' => '%s/images/headers/circle-thumbnail.png',
+				'description'   => _x( 'Circle', 'header image description', 'twentythirteen' ),
+			),
+			'diamond' => array(
+				'url'           => '%s/images/headers/diamond.png',
+				'thumbnail_url' => '%s/images/headers/diamond-thumbnail.png',
+				'description'   => _x( 'Diamond', 'header image description', 'twentythirteen' ),
+			),
+			'star'    => array(
+				'url'           => '%s/images/headers/star.png',
+				'thumbnail_url' => '%s/images/headers/star-thumbnail.png',
+				'description'   => _x( 'Star', 'header image description', 'twentythirteen' ),
+			),
+		)
+	);
+}
+add_action( 'after_setup_theme', 'twentythirteen_custom_header_setup', 11 );
+
+/**
+ * Load our special font CSS files.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_custom_header_fonts() {
+	// Add Source Sans Pro and Bitter fonts.
+	wp_enqueue_style( 'twentythirteen-fonts', twentythirteen_fonts_url(), array(), null );
+
+	// Add Genericons font.
+	wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
+}
+add_action( 'admin_print_styles-appearance_page_custom-header', 'twentythirteen_custom_header_fonts' );
+
+/**
+ * Style the header text displayed on the blog.
+ *
+ * get_header_textcolor() options: Hide text (returns 'blank'), or any hex value.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_header_style() {
+	$header_image = get_header_image();
+	$text_color   = get_header_textcolor();
+
+	// If no custom options for text are set, let's bail.
+	if ( empty( $header_image ) && get_theme_support( 'custom-header', 'default-text-color' ) == $text_color ) {
+		return;
+	}
+
+	// If we get this far, we have custom styles.
+	?>
+	<style type="text/css" id="twentythirteen-header-css">
+	<?php
+	if ( ! empty( $header_image ) ) :
+		?>
+	.site-header {
+		background: url(<?php header_image(); ?>) no-repeat scroll top;
+		background-size: 1600px auto;
+	}
+	@media (max-width: 767px) {
+		.site-header {
+			background-size: 768px auto;
+		}
+	}
+	@media (max-width: 359px) {
+		.site-header {
+			background-size: 360px auto;
+		}
+	}
+		<?php
+		endif;
+
+		// Has the text been hidden?
+	if ( ! display_header_text() ) :
+		?>
+	.site-title,
+	.site-description {
+		position: absolute;
+		clip: rect(1px 1px 1px 1px); /* IE7 */
+		clip: rect(1px, 1px, 1px, 1px);
+	}
+		<?php
+		if ( empty( $header_image ) ) :
+			?>
+	.site-header .home-link {
+	min-height: 0;
+	}
+			<?php
+		endif;
+
+		// If the user has set a custom color for the text, use that.
+		elseif ( get_theme_support( 'custom-header', 'default-text-color' ) != $text_color ) :
+			?>
+		.site-title,
+		.site-description {
+			color: #<?php echo esc_attr( $text_color ); ?>;
+		}
+	<?php endif; ?>
+	</style>
+	<?php
+}
+
+/**
+ * Style the header image displayed on the Appearance > Header admin panel.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_admin_header_style() {
+	$header_image = get_header_image();
+	?>
+	<style type="text/css" id="twentythirteen-admin-header-css">
+	.appearance_page_custom-header #headimg {
+		border: none;
+		-webkit-box-sizing: border-box;
+		-moz-box-sizing:    border-box;
+		box-sizing:         border-box;
+		<?php
+		if ( ! empty( $header_image ) ) {
+			echo 'background: url(' . esc_url( $header_image ) . ') no-repeat scroll top; background-size: 1600px auto;';
+		}
+		?>
+		padding: 0 20px;
+	}
+	#headimg .home-link {
+		-webkit-box-sizing: border-box;
+		-moz-box-sizing:    border-box;
+		box-sizing:         border-box;
+		margin: 0 auto;
+		max-width: 1040px;
+		<?php
+		if ( ! empty( $header_image ) || display_header_text() ) {
+			echo 'min-height: 230px;';
+		}
+		?>
+		width: 100%;
+	}
+	<?php if ( ! display_header_text() ) : ?>
+	#headimg h1,
+	#headimg h2 {
+		position: absolute !important;
+		clip: rect(1px 1px 1px 1px); /* IE7 */
+		clip: rect(1px, 1px, 1px, 1px);
+	}
+	<?php endif; ?>
+	#headimg h1 {
+		font: bold 60px/1 Bitter, Georgia, serif;
+		margin: 0;
+		padding: 58px 0 10px;
+	}
+	#headimg h1 a {
+		text-decoration: none;
+	}
+	#headimg h1 a:hover {
+		text-decoration: underline;
+	}
+	#headimg h2 {
+		font: 200 italic 24px "Source Sans Pro", Helvetica, sans-serif;
+		margin: 0;
+		text-shadow: none;
+	}
+	.default-header img {
+		max-width: 230px;
+		width: auto;
+	}
+	</style>
+	<?php
+}
+
+/**
+ * Output markup to be displayed on the Appearance > Header admin panel.
+ *
+ * This callback overrides the default markup displayed there.
+ *
+ * @since Twenty Thirteen 1.0
+ */
+function twentythirteen_admin_header_image() {
+	$style = 'color: #' . get_header_textcolor() . ';';
+	if ( ! display_header_text() ) {
+		$style = 'display: none;';
+	}
+	?>
+	<div id="headimg" style="background: url(<?php echo esc_url( get_header_image() ); ?>) no-repeat scroll top; background-size: 1600px auto;">
+		<div class="home-link">
+			<h1 class="displaying-header-text"><a id="name" style="<?php echo esc_attr( $style ); ?>" onclick="return false;" href="#" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
+			<h2 id="desc" class="displaying-header-text" style="<?php echo esc_attr( $style ); ?>"><?php bloginfo( 'description' ); ?></h2>
+		</div>
+	</div>
+	<?php
+}
diff --git a/wp-content/themes/twentythirteen/index.php b/wp-content/themes/twentythirteen/index.php
index ec8de084ddf67d4283c45b1b075e6eee02424083..8fc060cdbdf3b66aa40f798a31a72aa6ce68984f 100644
--- a/wp-content/themes/twentythirteen/index.php
+++ b/wp-content/themes/twentythirteen/index.php
@@ -1,41 +1,41 @@
-<?php
-/**
- * The 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.
- * For example, it puts together the home page when no home.php file exists.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-		<?php if ( have_posts() ) : ?>
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The 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.
+ * For example, it puts together the home page when no home.php file exists.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+		<?php if ( have_posts() ) : ?>
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/js/functions.js b/wp-content/themes/twentythirteen/js/functions.js
index 1b18180c2028cae369f52315190867cf23efe5b5..fd92ad0f3710c88f40d3c5dac724081f2959a2d9 100644
--- a/wp-content/themes/twentythirteen/js/functions.js
+++ b/wp-content/themes/twentythirteen/js/functions.js
@@ -1,167 +1,167 @@
-/**
- * Functionality specific to Twenty Thirteen.
- *
- * Provides helper functions to enhance the theme experience.
- */
-
-( function( $ ) {
-	var body    = $( 'body' ),
-	    _window = $( window ),
-		nav, button, menu;
-
-	nav = $( '#site-navigation' );
-	button = nav.find( '.menu-toggle' );
-	menu = nav.find( '.nav-menu' );
-
-	/**
-	 * Adds a top margin to the footer if the sidebar widget area is higher
-	 * than the rest of the page, to help the footer always visually clear
-	 * the sidebar.
-	 */
-	$( function() {
-		if ( body.is( '.sidebar' ) ) {
-			var sidebar   = $( '#secondary .widget-area' ),
-			    secondary = ( 0 === sidebar.length ) ? -40 : sidebar.height(),
-			    margin    = $( '#tertiary .widget-area' ).height() - $( '#content' ).height() - secondary;
-
-			if ( margin > 0 && _window.innerWidth() > 999 ) {
-				$( '#colophon' ).css( 'margin-top', margin + 'px' );
-			}
-		}
-	} );
-
-	/**
-	 * Enables menu toggle for small screens.
-	 */
-	( function() {
-		if ( ! nav.length || ! button.length ) {
-			return;
-		}
-
-		// Hide button if menu is missing or empty.
-		if ( ! menu.length || ! menu.children().length ) {
-			button.hide();
-			return;
-		}
-
-		button.on( 'click.twentythirteen', function() {
-			nav.toggleClass( 'toggled-on' );
-			if ( nav.hasClass( 'toggled-on' ) ) {
-				$( this ).attr( 'aria-expanded', 'true' );
-				menu.attr( 'aria-expanded', 'true' );
-			} else {
-				$( this ).attr( 'aria-expanded', 'false' );
-				menu.attr( 'aria-expanded', 'false' );
-			}
-		} );
-
-		// Fix sub-menus for touch devices.
-		if ( 'ontouchstart' in window ) {
-			menu.find( '.menu-item-has-children > a, .page_item_has_children > a' ).on( 'touchstart.twentythirteen', function( e ) {
-				var el = $( this ).parent( 'li' );
-
-				if ( ! el.hasClass( 'focus' ) ) {
-					e.preventDefault();
-					el.toggleClass( 'focus' );
-					el.siblings( '.focus' ).removeClass( 'focus' );
-				}
-			} );
-		}
-
-		// Better focus for hidden submenu items for accessibility.
-		menu.find( 'a' ).on( 'focus.twentythirteen blur.twentythirteen', function() {
-			$( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' );
-		} );
-	} )();
-
-	/**
-	 * Add or remove ARIA attributes.
-	 *
-	 * Uses jQuery's width() function to determine the size of the window and add
-	 * the default ARIA attributes for the menu toggle if it's visible.
-	 *
-	 * @since Twenty Thirteen 1.5
-	 */
-	function onResizeARIA() {
-		if ( 643 > _window.width() ) {
-			button.attr( 'aria-expanded', 'false' );
-			menu.attr( 'aria-expanded', 'false' );
-			button.attr( 'aria-controls', 'primary-menu' );
-		} else {
-			button.removeAttr( 'aria-expanded' );
-			menu.removeAttr( 'aria-expanded' );
-			button.removeAttr( 'aria-controls' );
-		}
-	}
-
-	_window
-		.on( 'load.twentythirteen', onResizeARIA )
-		.on( 'resize.twentythirteen', function() {
-			onResizeARIA();
-	} );
-
-	/**
-	 * Makes "skip to content" link work correctly in IE9 and Chrome for better
-	 * accessibility.
-	 *
-	 * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
-	 */
-	_window.on( 'hashchange.twentythirteen', function() {
-		var element = document.getElementById( location.hash.substring( 1 ) );
-
-		if ( element ) {
-			if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
-				element.tabIndex = -1;
-			}
-
-			element.focus();
-		}
-	} );
-
-	/**
-	 * Arranges footer widgets vertically.
-	 */
-	$( function() {
-		var columnWidth, widgetArea;
-		if ( ! $.isFunction( $.fn.masonry ) ) {
-			return;
-		}
-		columnWidth = body.is( '.sidebar' ) ? 228 : 245;
-		widgetArea = $( '#secondary .widget-area' );
-
-		widgetArea.masonry( {
-			itemSelector: '.widget',
-			columnWidth: columnWidth,
-			gutterWidth: 20,
-			isRTL: body.is( '.rtl' )
-		} );
-
-		if ( 'undefined' !== typeof wp && wp.customize && wp.customize.selectiveRefresh ) {
-
-			// Retain previous masonry-brick initial position.
-			wp.customize.selectiveRefresh.bind( 'partial-content-rendered', function( placement ) {
-				var copyPosition = (
-					placement.partial.extended( wp.customize.widgetsPreview.WidgetPartial ) &&
-					placement.removedNodes instanceof jQuery &&
-					placement.removedNodes.is( '.masonry-brick' ) &&
-					placement.container instanceof jQuery
-				);
-				if ( copyPosition ) {
-					placement.container.css( {
-						position: placement.removedNodes.css( 'position' ),
-						top: placement.removedNodes.css( 'top' ),
-						left: placement.removedNodes.css( 'left' )
-					} );
-				}
-			} );
-
-			// Re-arrange footer widgets when sidebar is updated via selective refresh in the Customizer.
-			wp.customize.selectiveRefresh.bind( 'sidebar-updated', function( sidebarPartial ) {
-				if ( 'sidebar-1' === sidebarPartial.sidebarId ) {
-					widgetArea.masonry( 'reloadItems' );
-					widgetArea.masonry( 'layout' );
-				}
-			} );
-		}
-	} );
+/**
+ * Functionality specific to Twenty Thirteen.
+ *
+ * Provides helper functions to enhance the theme experience.
+ */
+
+( function( $ ) {
+	var body    = $( 'body' ),
+	    _window = $( window ),
+		nav, button, menu;
+
+	nav = $( '#site-navigation' );
+	button = nav.find( '.menu-toggle' );
+	menu = nav.find( '.nav-menu' );
+
+	/**
+	 * Adds a top margin to the footer if the sidebar widget area is higher
+	 * than the rest of the page, to help the footer always visually clear
+	 * the sidebar.
+	 */
+	$( function() {
+		if ( body.is( '.sidebar' ) ) {
+			var sidebar   = $( '#secondary .widget-area' ),
+			    secondary = ( 0 === sidebar.length ) ? -40 : sidebar.height(),
+			    margin    = $( '#tertiary .widget-area' ).height() - $( '#content' ).height() - secondary;
+
+			if ( margin > 0 && _window.innerWidth() > 999 ) {
+				$( '#colophon' ).css( 'margin-top', margin + 'px' );
+			}
+		}
+	} );
+
+	/**
+	 * Enables menu toggle for small screens.
+	 */
+	( function() {
+		if ( ! nav.length || ! button.length ) {
+			return;
+		}
+
+		// Hide button if menu is missing or empty.
+		if ( ! menu.length || ! menu.children().length ) {
+			button.hide();
+			return;
+		}
+
+		button.on( 'click.twentythirteen', function() {
+			nav.toggleClass( 'toggled-on' );
+			if ( nav.hasClass( 'toggled-on' ) ) {
+				$( this ).attr( 'aria-expanded', 'true' );
+				menu.attr( 'aria-expanded', 'true' );
+			} else {
+				$( this ).attr( 'aria-expanded', 'false' );
+				menu.attr( 'aria-expanded', 'false' );
+			}
+		} );
+
+		// Fix sub-menus for touch devices.
+		if ( 'ontouchstart' in window ) {
+			menu.find( '.menu-item-has-children > a, .page_item_has_children > a' ).on( 'touchstart.twentythirteen', function( e ) {
+				var el = $( this ).parent( 'li' );
+
+				if ( ! el.hasClass( 'focus' ) ) {
+					e.preventDefault();
+					el.toggleClass( 'focus' );
+					el.siblings( '.focus' ).removeClass( 'focus' );
+				}
+			} );
+		}
+
+		// Better focus for hidden submenu items for accessibility.
+		menu.find( 'a' ).on( 'focus.twentythirteen blur.twentythirteen', function() {
+			$( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' );
+		} );
+	} )();
+
+	/**
+	 * Add or remove ARIA attributes.
+	 *
+	 * Uses jQuery's width() function to determine the size of the window and add
+	 * the default ARIA attributes for the menu toggle if it's visible.
+	 *
+	 * @since Twenty Thirteen 1.5
+	 */
+	function onResizeARIA() {
+		if ( 643 > _window.width() ) {
+			button.attr( 'aria-expanded', 'false' );
+			menu.attr( 'aria-expanded', 'false' );
+			button.attr( 'aria-controls', 'primary-menu' );
+		} else {
+			button.removeAttr( 'aria-expanded' );
+			menu.removeAttr( 'aria-expanded' );
+			button.removeAttr( 'aria-controls' );
+		}
+	}
+
+	_window
+		.on( 'load.twentythirteen', onResizeARIA )
+		.on( 'resize.twentythirteen', function() {
+			onResizeARIA();
+	} );
+
+	/**
+	 * Makes "skip to content" link work correctly in IE9 and Chrome for better
+	 * accessibility.
+	 *
+	 * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
+	 */
+	_window.on( 'hashchange.twentythirteen', function() {
+		var element = document.getElementById( location.hash.substring( 1 ) );
+
+		if ( element ) {
+			if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) {
+				element.tabIndex = -1;
+			}
+
+			element.focus();
+		}
+	} );
+
+	/**
+	 * Arranges footer widgets vertically.
+	 */
+	$( function() {
+		var columnWidth, widgetArea;
+		if ( ! $.isFunction( $.fn.masonry ) ) {
+			return;
+		}
+		columnWidth = body.is( '.sidebar' ) ? 228 : 245;
+		widgetArea = $( '#secondary .widget-area' );
+
+		widgetArea.masonry( {
+			itemSelector: '.widget',
+			columnWidth: columnWidth,
+			gutterWidth: 20,
+			isRTL: body.is( '.rtl' )
+		} );
+
+		if ( 'undefined' !== typeof wp && wp.customize && wp.customize.selectiveRefresh ) {
+
+			// Retain previous masonry-brick initial position.
+			wp.customize.selectiveRefresh.bind( 'partial-content-rendered', function( placement ) {
+				var copyPosition = (
+					placement.partial.extended( wp.customize.widgetsPreview.WidgetPartial ) &&
+					placement.removedNodes instanceof jQuery &&
+					placement.removedNodes.is( '.masonry-brick' ) &&
+					placement.container instanceof jQuery
+				);
+				if ( copyPosition ) {
+					placement.container.css( {
+						position: placement.removedNodes.css( 'position' ),
+						top: placement.removedNodes.css( 'top' ),
+						left: placement.removedNodes.css( 'left' )
+					} );
+				}
+			} );
+
+			// Re-arrange footer widgets when sidebar is updated via selective refresh in the Customizer.
+			wp.customize.selectiveRefresh.bind( 'sidebar-updated', function( sidebarPartial ) {
+				if ( 'sidebar-1' === sidebarPartial.sidebarId ) {
+					widgetArea.masonry( 'reloadItems' );
+					widgetArea.masonry( 'layout' );
+				}
+			} );
+		}
+	} );
 } )( jQuery );
\ No newline at end of file
diff --git a/wp-content/themes/twentythirteen/js/html5.js b/wp-content/themes/twentythirteen/js/html5.js
index 6168aacd5ed78801973b1b5fb4e43599096dc258..c83dfdc0bbf12e5b2072603ed2249278c369553b 100644
--- a/wp-content/themes/twentythirteen/js/html5.js
+++ b/wp-content/themes/twentythirteen/js/html5.js
@@ -1,8 +1,8 @@
-/*
- HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
-*/
-(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
-a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
-c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
-"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
+/*
+ HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
+*/
+(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
+a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
+c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
+"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
 if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
\ No newline at end of file
diff --git a/wp-content/themes/twentythirteen/js/theme-customizer.js b/wp-content/themes/twentythirteen/js/theme-customizer.js
index 60721045cdc6d3cb7a9e01b3f8940b3038b84ef0..33b5f9d26f65a8a4082992b7881c5b8ccb606049 100644
--- a/wp-content/themes/twentythirteen/js/theme-customizer.js
+++ b/wp-content/themes/twentythirteen/js/theme-customizer.js
@@ -1,41 +1,41 @@
-/**
- * Customizer enhancements for a better user experience.
- *
- * Contains handlers to make Customizer preview reload changes asynchronously.
- * Things like site title and description changes.
- */
-
-( function( $ ) {
-	// Site title and description.
-	wp.customize( 'blogname', function( value ) {
-		value.bind( function( to ) {
-			$( '.site-title' ).text( to );
-		} );
-	} );
-	wp.customize( 'blogdescription', function( value ) {
-		value.bind( function( to ) {
-			$( '.site-description' ).text( to );
-		} );
-	} );
-	// Header text color.
-	wp.customize( 'header_textcolor', function( value ) {
-		value.bind( function( to ) {
-			if ( 'blank' == to ) {
-				if ( 'remove-header' == wp.customize.instance( 'header_image' ).get() ) {
-					$( '.home-link' ).css( 'min-height', '0' );
-				}
-				$( '.site-title, .site-description' ).css( {
-					'clip': 'rect(1px, 1px, 1px, 1px)',
-					'position': 'absolute'
-				} );
-			} else {
-				$( '.home-link' ).css( 'min-height', '230px' );
-				$( '.site-title, .site-description' ).css( {
-					'clip': 'auto',
-					'color': to,
-					'position': 'relative'
-				} );
-			}
-		} );
-	} );
-} )( jQuery );
+/**
+ * Customizer enhancements for a better user experience.
+ *
+ * Contains handlers to make Customizer preview reload changes asynchronously.
+ * Things like site title and description changes.
+ */
+
+( function( $ ) {
+	// Site title and description.
+	wp.customize( 'blogname', function( value ) {
+		value.bind( function( to ) {
+			$( '.site-title' ).text( to );
+		} );
+	} );
+	wp.customize( 'blogdescription', function( value ) {
+		value.bind( function( to ) {
+			$( '.site-description' ).text( to );
+		} );
+	} );
+	// Header text color.
+	wp.customize( 'header_textcolor', function( value ) {
+		value.bind( function( to ) {
+			if ( 'blank' == to ) {
+				if ( 'remove-header' == wp.customize.instance( 'header_image' ).get() ) {
+					$( '.home-link' ).css( 'min-height', '0' );
+				}
+				$( '.site-title, .site-description' ).css( {
+					'clip': 'rect(1px, 1px, 1px, 1px)',
+					'position': 'absolute'
+				} );
+			} else {
+				$( '.home-link' ).css( 'min-height', '230px' );
+				$( '.site-title, .site-description' ).css( {
+					'clip': 'auto',
+					'color': to,
+					'position': 'relative'
+				} );
+			}
+		} );
+	} );
+} )( jQuery );
diff --git a/wp-content/themes/twentythirteen/page.php b/wp-content/themes/twentythirteen/page.php
index 5fad9750e09ba76aa70cbe9265169c8a45e1271b..5e1f7911a2fd8d12104b150137288d6ea85a8480 100644
--- a/wp-content/themes/twentythirteen/page.php
+++ b/wp-content/themes/twentythirteen/page.php
@@ -1,62 +1,62 @@
-<?php
-/**
- * The 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_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-
-				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
-					<header class="entry-header">
-						<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
-						<div class="entry-thumbnail">
-							<?php the_post_thumbnail(); ?>
-						</div>
-						<?php endif; ?>
-
-						<h1 class="entry-title"><?php the_title(); ?></h1>
-					</header><!-- .entry-header -->
-
-					<div class="entry-content">
-						<?php the_content(); ?>
-						<?php
-						wp_link_pages(
-							array(
-								'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
-								'after'       => '</div>',
-								'link_before' => '<span>',
-								'link_after'  => '</span>',
-							)
-						);
-						?>
-					</div><!-- .entry-content -->
-
-					<footer class="entry-meta">
-						<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
-					</footer><!-- .entry-meta -->
-				</article><!-- #post -->
-
-				<?php comments_template(); ?>
-			<?php endwhile; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The 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_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+
+				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<header class="entry-header">
+						<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
+						<div class="entry-thumbnail">
+							<?php the_post_thumbnail(); ?>
+						</div>
+						<?php endif; ?>
+
+						<h1 class="entry-title"><?php the_title(); ?></h1>
+					</header><!-- .entry-header -->
+
+					<div class="entry-content">
+						<?php the_content(); ?>
+						<?php
+						wp_link_pages(
+							array(
+								'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
+								'after'       => '</div>',
+								'link_before' => '<span>',
+								'link_after'  => '</span>',
+							)
+						);
+						?>
+					</div><!-- .entry-content -->
+
+					<footer class="entry-meta">
+						<?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
+					</footer><!-- .entry-meta -->
+				</article><!-- #post -->
+
+				<?php comments_template(); ?>
+			<?php endwhile; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/readme.txt b/wp-content/themes/twentythirteen/readme.txt
index 49a64f63f8fdfb48a876c1a579e225eae9577536..ee83cfd8eb8223fa2d6fb2233eb788d9ef65bacb 100644
--- a/wp-content/themes/twentythirteen/readme.txt
+++ b/wp-content/themes/twentythirteen/readme.txt
@@ -1,9 +1,7 @@
 === Twenty Thirteen ===
 Contributors: wordpressdotorg
-Requires at least: WordPress 3.6
-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, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
@@ -23,7 +21,7 @@ For more information about Twenty Thirteen please go to https://codex.wordpress.
 
 == Copyright ==
 
-Twenty Thirteen WordPress Theme, Copyright 2013-2018 WordPress.org & Automattic.com
+Twenty Thirteen WordPress Theme, Copyright 2013-2020 WordPress.org & Automattic.com
 Twenty Thirteen is Distributed under the terms of the GNU GPL
 
 This program is free software: you can redistribute it and/or modify
@@ -48,6 +46,11 @@ Source: http://www.genericons.com
 
 == Changelog ==
 
+= 3.0 =
+* Released: March, 2020
+
+https://codex.wordpress.org/Twenty_Thirteen_Theme_Changelog#Version_3.0
+
 = 2.9 =
 * Released: May 7, 2019
 
diff --git a/wp-content/themes/twentythirteen/rtl.css b/wp-content/themes/twentythirteen/rtl.css
index b815ea95337688c8986c3bfc0ef0f2c9980a6b1e..41ecf0436bad278e0eb9c999289cdfc755df7d45 100644
--- a/wp-content/themes/twentythirteen/rtl.css
+++ b/wp-content/themes/twentythirteen/rtl.css
@@ -1,779 +1,779 @@
-/*
-Theme Name: Twenty Thirteen
-Description: Adds support for languages written in a Right To Left (RTL) direction.
-It's easy, just a matter of overwriting all the horizontal positioning attributes
-of your CSS stylesheet in a separate stylesheet file named rtl.css.
-
-See https://codex.wordpress.org/Right_to_Left_Language_Support
-*/
-
-/**
- * Table of Contents:
- *
- * 1.0 - Reset
- * 4.0 - Header
- *   4.1 - Site Header
- *   4.2 - Navigation
- * 5.0 - Content
- *   5.2 - Entry Meta
- *   5.4 - Galleries
- *   5.5 - Post Formats
- *   5.6 - Attachments
- *   5.7 - Post/Paging Navigation
- *   5.8 - Author Bio
- *   5.9 - Archives
- *   5.10 - Search Results/No posts
- *   5.12 - Comments
- * 6.0 - Sidebar
- *   6.1 - Widgets
- * 7.0 - Footer
- * 8.0 - Media Queries
- * 9.0 - Print
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Reset
- * ----------------------------------------------------------------------------
- */
-
-body {
-	direction: rtl;
-	unicode-bidi: embed;
-}
-
-a {
-	display: inline-block;
-}
-
-blockquote blockquote {
-	margin-left: 0;
-	margin-right: 24px;
-}
-
-menu,
-ol,
-ul {
-	padding: 0 40px 0 0;
-}
-
-caption,
-th,
-td {
-	text-align: right;
-}
-
-td {
-	padding-left: 10px;
-	padding-right: 0;
-}
-
-.assistive-text:focus {
-	left: auto;
-	right: 5px;
-}
-
-
-/**
- * 4.0 Header
- * ----------------------------------------------------------------------------
- */
-
-/**
- * 4.1 Site Header
- * ----------------------------------------------------------------------------
- */
-
-.site-header > a:first-child {
-	display: inherit;
-}
-
-.site-description {
-	font-style: normal;
-}
-
-
-/**
- * 4.2 Navigation
- * ----------------------------------------------------------------------------
- */
-
-/* Navbar */
-ul.nav-menu,
-div.nav-menu > ul {
-	margin: 0 -20px 0 0;
-	padding: 0 0 0 40px;
-}
-
-.nav-menu .sub-menu,
-.nav-menu .children {
-	float: right;
-	left: auto;
-	right: -2px;
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
-	border-left: 2px solid #f7f5e7;
-	border-right: 0;
-	left: auto;
-	right: 100%;
-}
-
-.main-navigation .search-form {
-	left: 0;
-	right: auto;
-}
-
-.site-header .search-field {
-	background-position: 98% center;
-	padding: 0 34px 0 0;
-}
-
-.nav-menu .current_page_item > a,
-.nav-menu .current_page_ancestor > a,
-.nav-menu .current-menu-item > a,
-.nav-menu .current-menu-ancestor > a {
-	font-style: normal;
-}
-
-.menu-toggle {
-	padding-left: 0;
-	padding-right: 20px;
-}
-
-
-/**
- * 5.0 Content
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .entry-header,
-.sidebar .entry-content,
-.sidebar .entry-summary,
-.sidebar .entry-meta {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-
-/**
- * 5.2 Entry Meta
- * ----------------------------------------------------------------------------
- */
-
-.entry-meta > span {
-	margin-left: 20px;
-	margin-right: auto;
-}
-
-.entry-meta > span:last-child {
-	margin-left: 0;
-	margin-right: auto;
-}
-
-.featured-post:before {
-	margin-left: 2px;
-	margin-right: auto;
-}
-
-.entry-meta .date a:before {
-	margin-left: 2px;
-}
-
-.comments-link a:before {
-	margin-left: 2px;
-	margin-right: auto;
-}
-
-.tags-links a:first-child:before {
-	margin-left: 2px;
-}
-
-.edit-link a:before {
-	margin-left: 2px;
-}
-
-.page-links .page-links-title {
-	margin-left: 20px;
-	margin-right: auto;
-}
-
-/**
- * 5.4 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery {
-	margin-left: auto;
-	margin-right: -4px;
-}
-
-.gallery-item {
-	float: right;
-	margin: 0 0 4px 4px;
-}
-
-.gallery-item a {
-	display: inline;
-}
-
-
-/**
- * 5.5 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-.entry-content a {
-	display: inline;
-}
-
-.format-aside cite:before {
-	content: normal;
-	margin-right: auto;
-}
-
-.format-aside cite:after {
-	content: "\2014";
-	margin-left: 5px;
-}
-
-.format-audio .entry-content:before {
-	float: right;
-	-webkit-transform: scaleX(-1);
-	-moz-transform:    scaleX(-1);
-	-ms-transform:     scaleX(-1);
-	-o-transform:      scaleX(-1);
-	transform:         scaleX(-1);
-}
-
-.format-audio .audio-content {
-	background-position: right top;
-	float: left;
-	padding-left: 0;
-	padding-right: 35px;
-}
-
-.format-chat .entry-meta .date a:before {
-	margin-left: 4px;
-	margin-right: auto;
-}
-
-.format-image .wp-caption-text {
-	text-align: right;
-}
-
-.format-link .entry-title {
-	margin-left: 20px;
-	margin-right: auto;
-}
-
-.format-status .entry-content,
-.format-status .entry-meta {
-	padding-left: 0;
-	padding-right: 35px;
-}
-
-.sidebar .format-status .entry-content,
-.sidebar .format-status .entry-meta {
-	padding-left: 376px;
-	padding-right: 95px;
-}
-
-.format-status .entry-content:before,
-.format-status .entry-meta:before {
-	left: auto;
-	right: 10px;
-}
-
-.sidebar .format-status .entry-content:before,
-.sidebar .format-status .entry-meta:before {
-	left: auto;
-	right: 70px;
-}
-
-.format-status .entry-content p:first-child:before {
-	left: auto;
-	right: 4px;
-}
-
-.sidebar .format-status .entry-content p:first-child:before {
-	left: auto;
-	right: 64px;
-}
-
-.format-quote blockquote {
-	padding-left: 0;
-	padding-right: 75px;
-}
-
-.format-quote blockquote:before {
-	content: '\201D';
-	padding-left: 25px;
-	padding-right: 0;
-	left: auto;
-	right: -15px;
-}
-
-
-/**
- * 5.6 Attachments
- * ----------------------------------------------------------------------------
- */
-
-.attachment .entry-title {
-	float: right;
-}
-
-.attachment .entry-title:before {
-	margin-left: 10px;
-	margin-right: auto;
-}
-
-.attachment .entry-meta {
-	float: left;
-}
-
-.image-navigation .nav-previous {
-	left: auto;
-	right: 0;
-}
-
-.image-navigation .nav-next {
-	left: 0;
-	right: auto;
-}
-
-.attachment .entry-caption {
-	text-align: right;
-}
-
-
-/**
- * 5.7 Post/Paging Navigation
- * ----------------------------------------------------------------------------
- */
-
-.navigation .nav-previous {
-	float: right;
-}
-
-.navigation .nav-next {
-	float: left;
-}
-
-.sidebar .paging-navigation .nav-links,
-.sidebar .post-navigation .nav-links {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-.paging-navigation .nav-previous .meta-nav {
-	margin-left: 10px;
-	margin-right: auto;
-}
-
-.paging-navigation .nav-next .meta-nav {
-	margin-left: auto;
-	margin-right: 10px;
-}
-
-.post-navigation a[rel="next"] {
-	float: left;
-	text-align: left;
-}
-
-
-/**
- * 5.8 Author Bio
- * ----------------------------------------------------------------------------
- */
-
-.author-info {
-	text-align: right; /* gallery & video post formats */
-}
-
-.author.sidebar .author-info {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-.author-avatar .avatar {
-	float: right;
-	margin: 0 0 30px 30px;
-}
-
-.author-link {
-	margin-left: auto;
-	margin-right: 2px;
-}
-
-
-/**
- * 5.9 Archives
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .archive-meta {
-	padding-left: 316px;
-	padding-right: 0;
-}
-
-
-/**
- * 5.10 Search Results/No posts
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .page-content {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-/**
- * 5.12 Comments
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .comments-title,
-.sidebar .comment-list,
-.sidebar .comment-reply-title,
-.sidebar .comment-navigation,
-.sidebar .comment-respond .comment-form {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-.comment-list .children {
-	margin-left: auto;
-	margin-right: 20px;
-}
-
-.comment-author {
-	float: right;
-	margin-left: 50px;
-	margin-right: auto;
-}
-
-.comment-list .edit-link {
-	margin-left: auto;
-	margin-right: 20px;
-}
-
-.comment-metadata,
-.comment-content,
-.comment-list .reply,
-.comment-awaiting-moderation {
-	float: left;
-}
-
-.comment-awaiting-moderation:before {
-	margin-left: 5px;
-	margin-right: auto;
-}
-
-.comment-reply-link:before,
-.comment-reply-login:before {
-	margin-left: 3px;
-	margin-right: auto;
-	-webkit-transform: scaleX(-1);
-	-moz-transform:    scaleX(-1);
-	-ms-transform:     scaleX(-1);
-	-o-transform:      scaleX(-1);
-	transform:         scaleX(-1);
-}
-
-.comment-reply-title small a {
-	float: left;
-}
-
-.comment-form [for="author"],
-.comment-form [for="email"],
-.comment-form [for="url"],
-.comment-form [for="comment"] {
-	float: right;
-}
-
-.comment-form #wp-comment-cookies-consent {
-	margin: 0 0 0 10px;
-}
-
-.form-allowed-tags code {
-	margin-left: auto;
-	margin-right: 3px;
-}
-
-.sidebar .no-comments {
-	padding-left: 376px;
-	padding-right: 60px;
-}
-
-
-/**
- * 6.0 Sidebar
- * ----------------------------------------------------------------------------
- */
-
-.site-main .widget-area {
-	float: left;
-}
-
-.widget-area a {
-	max-width: 100%;
-}
-
-
-/**
- * 6.1 Widgets
- * ----------------------------------------------------------------------------
- */
-
-.widget .widget-title {
-	font-style: normal;
-}
-
-.widget li > ul,
-.widget li > ol {
-	margin-left: auto;
-	margin-right: 20px;
-}
-
-.widget_text ul,
-.widget_text ol {
-	padding-left: auto;
-	padding-right: 20px;
-}
-
-/**
- * 7.0 Footer
- * ----------------------------------------------------------------------------
- */
-
-.site-footer .widget-area,
-.sidebar .site-footer {
-	text-align: right;
-}
-.sidebar .site-footer .widget-area {
-	left: auto;
-	right: -158px;
-}
-
-.site-footer .widget {
-	float: right;
-	margin-left: 20px;
-	margin-right: auto;
-}
-
-.sidebar .site-footer .widget:nth-of-type(4),
-.sidebar .site-footer .widget:nth-of-type(3) {
-	margin-left: 0;
-	margin-right: auto;
-}
-
-.site-footer span[role=separator] {
-	padding: 0 0.5em;
-}
-
-/**
- * 8.0 Media Queries
- * ----------------------------------------------------------------------------
- */
-
-@media (max-width: 1069px) {
-	ul.nav-menu,
-	div.nav-menu > ul {
-		margin-left: auto;
-		margin-right: 0;
-	}
-
-	.error404 .page-header,
-	.sidebar .format-image .entry-content img.size-full,
-	.sidebar .format-image .wp-caption:first-child .wp-caption-text {
-		margin-right: auto;
-	}
-
-	.main-navigation .search-form {
-		left: 20px;
-		right: auto;
-	}
-
-	.site-main .widget-area {
-		margin-left: 60px;
-		margin-right: auto;
-	}
-}
-
-@media (max-width: 999px) {
-	.sidebar .entry-header,
-	.sidebar .entry-content,
-	.sidebar .entry-summary,
-	.sidebar .entry-meta,
-	.sidebar .comment-list,
-	.sidebar .comment-reply-title,
-	.sidebar .comment-navigation,
-	.sidebar .comment-respond .comment-form,
-	.sidebar .featured-gallery,
-	.sidebar .post-navigation .nav-links,
-	.author.sidebar .author-info,
-	.sidebar .format-image .entry-content {
-		max-width: 604px;
-		padding-left: 0;
-		padding-right: 0;
-	}
-
-	.site-main .widget-area {
-		float: none;
-		margin-left: auto;
-	}
-
-	.attachment .entry-meta {
-		float: right;
-		text-align: right;
-	}
-
-	.sidebar .format-status .entry-content,
-	.sidebar .format-status .entry-meta {
-		padding-left: 0;
-		padding-right: 35px;
-	}
-
-	.sidebar .format-status .entry-content:before,
-	.sidebar .format-status .entry-meta:before {
-		left: auto;
-		right: 10px;
-	}
-
-	.sidebar .format-status .entry-content p:first-child:before {
-		left: auto;
-		right: 4px;
-	}
-
-	.sidebar .site-footer .widget-area {
-		left: auto;
-		right: 0;
-	}
-
-	.sidebar .paging-navigation .nav-links {
-		padding: 0 60px;
-	}
-}
-
-@media (max-width: 767px) {
-	.format-image .entry-content img:first-of-type,
-	.format-image .wp-caption:first-child .wp-caption-text {
-		margin-right: auto;
-	}
-}
-
-@media (max-width: 643px) {
-	.sidebar .entry-header,
-	.sidebar .entry-content,
-	.sidebar .entry-summary,
-	.sidebar .entry-meta,
-	.sidebar .comment-list,
-	.sidebar .comment-navigation,
-	.sidebar .featured-gallery,
-	.sidebar .post-navigation .nav-links,
-	.sidebar .format-image .entry-content {
-		padding-left: 20px;
-		padding-right: 20px;
-	}
-
-	#content .format-status .entry-content,
-	#content .format-status .entry-met {
-		padding-left: 0;
-		padding-right: 35px;
-	}
-
-	.menu-toggle:after {
-		padding-left: 0;
-		padding-right: 8px;
-	}
-
-	.toggled-on .nav-menu,
-	.toggled-on .nav-menu > ul {
-		margin-left: auto;
-		margin-right: 0;
-	}
-
-	.toggled-on .nav-menu li > ul {
-		margin-left: auto;
-		margin-right: 20px;
-		right: auto;
-	}
-
-	#content .featured-gallery {
-		padding-left: 0;
-		padding-right: 24px;
-	}
-
-	.gallery-columns-1 .gallery-item {
-		margin-left: 0;
-		margin-right: auto;
-	}
-
-	.comment-author {
-		margin-left: 30px;
-		margin-right: auto;
-	}
-
-	.format-audio .audio-content {
-		background: none;
-		float: none;
-		padding-left: 0;
-		padding-right: 0;
-	}
-
-	.gallery-columns-3 .gallery-item:nth-of-type(3n) {
-		margin-left: 4px;
-		margin-right: auto;
-	}
-}
-
-@media (max-width: 359px) {
-	.gallery {
-		margin-left: auto;
-		margin-right: 0;
-	}
-
-	.gallery .gallery-item:nth-of-type(even) {
-		margin-left: 0;
-		margin-right: auto;
-	}
-
-	.gallery .gallery-item,
-	.gallery.gallery-columns-3 .gallery-item:nth-of-type(even),
-	.gallery-columns-3 .gallery-item:nth-of-type(3n),
-	.gallery-columns-5 .gallery-item:nth-of-type(5n),
-	.gallery-columns-7 .gallery-item:nth-of-type(7n),
-	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
-		margin-left: 4px;
-		margin-right: auto;
-	}
-
-	.comment-author .avatar {
-		margin-left: 5px;
-		margin-right: auto;
-	}
-}
-
-
-/**
- * 9.0 Print
- * ----------------------------------------------------------------------------
- */
-
-@media print {
-	.entry-content img.alignleft,
-	.entry-content .wp-caption.alignleft {
-		margin-left: auto;
-		margin-right: 0;
-	}
-
-	.entry-content img.alignright,
-	.entry-content .wp-caption.alignright {
-		margin-left: 0;
-		margin-right: auto;
-	}
-}
+/*
+Theme Name: Twenty Thirteen
+Description: Adds support for languages written in a Right To Left (RTL) direction.
+It's easy, just a matter of overwriting all the horizontal positioning attributes
+of your CSS stylesheet in a separate stylesheet file named rtl.css.
+
+See https://codex.wordpress.org/Right_to_Left_Language_Support
+*/
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Reset
+ * 4.0 - Header
+ *   4.1 - Site Header
+ *   4.2 - Navigation
+ * 5.0 - Content
+ *   5.2 - Entry Meta
+ *   5.4 - Galleries
+ *   5.5 - Post Formats
+ *   5.6 - Attachments
+ *   5.7 - Post/Paging Navigation
+ *   5.8 - Author Bio
+ *   5.9 - Archives
+ *   5.10 - Search Results/No posts
+ *   5.12 - Comments
+ * 6.0 - Sidebar
+ *   6.1 - Widgets
+ * 7.0 - Footer
+ * 8.0 - Media Queries
+ * 9.0 - Print
+ * ----------------------------------------------------------------------------
+ */
+
+
+/**
+ * 1.0 Reset
+ * ----------------------------------------------------------------------------
+ */
+
+body {
+	direction: rtl;
+	unicode-bidi: embed;
+}
+
+a {
+	display: inline-block;
+}
+
+blockquote blockquote {
+	margin-left: 0;
+	margin-right: 24px;
+}
+
+menu,
+ol,
+ul {
+	padding: 0 40px 0 0;
+}
+
+caption,
+th,
+td {
+	text-align: right;
+}
+
+td {
+	padding-left: 10px;
+	padding-right: 0;
+}
+
+.assistive-text:focus {
+	left: auto;
+	right: 5px;
+}
+
+
+/**
+ * 4.0 Header
+ * ----------------------------------------------------------------------------
+ */
+
+/**
+ * 4.1 Site Header
+ * ----------------------------------------------------------------------------
+ */
+
+.site-header > a:first-child {
+	display: inherit;
+}
+
+.site-description {
+	font-style: normal;
+}
+
+
+/**
+ * 4.2 Navigation
+ * ----------------------------------------------------------------------------
+ */
+
+/* Navbar */
+ul.nav-menu,
+div.nav-menu > ul {
+	margin: 0 -20px 0 0;
+	padding: 0 0 0 40px;
+}
+
+.nav-menu .sub-menu,
+.nav-menu .children {
+	float: right;
+	left: auto;
+	right: -2px;
+}
+
+.nav-menu .sub-menu ul,
+.nav-menu .children ul {
+	border-left: 2px solid #f7f5e7;
+	border-right: 0;
+	left: auto;
+	right: 100%;
+}
+
+.main-navigation .search-form {
+	left: 0;
+	right: auto;
+}
+
+.site-header .search-field {
+	background-position: 98% center;
+	padding: 0 34px 0 0;
+}
+
+.nav-menu .current_page_item > a,
+.nav-menu .current_page_ancestor > a,
+.nav-menu .current-menu-item > a,
+.nav-menu .current-menu-ancestor > a {
+	font-style: normal;
+}
+
+.menu-toggle {
+	padding-left: 0;
+	padding-right: 20px;
+}
+
+
+/**
+ * 5.0 Content
+ * ----------------------------------------------------------------------------
+ */
+
+.sidebar .entry-header,
+.sidebar .entry-content,
+.sidebar .entry-summary,
+.sidebar .entry-meta {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+
+/**
+ * 5.2 Entry Meta
+ * ----------------------------------------------------------------------------
+ */
+
+.entry-meta > span {
+	margin-left: 20px;
+	margin-right: auto;
+}
+
+.entry-meta > span:last-child {
+	margin-left: 0;
+	margin-right: auto;
+}
+
+.featured-post:before {
+	margin-left: 2px;
+	margin-right: auto;
+}
+
+.entry-meta .date a:before {
+	margin-left: 2px;
+}
+
+.comments-link a:before {
+	margin-left: 2px;
+	margin-right: auto;
+}
+
+.tags-links a:first-child:before {
+	margin-left: 2px;
+}
+
+.edit-link a:before {
+	margin-left: 2px;
+}
+
+.page-links .page-links-title {
+	margin-left: 20px;
+	margin-right: auto;
+}
+
+/**
+ * 5.4 Galleries
+ * ----------------------------------------------------------------------------
+ */
+
+.gallery {
+	margin-left: auto;
+	margin-right: -4px;
+}
+
+.gallery-item {
+	float: right;
+	margin: 0 0 4px 4px;
+}
+
+.gallery-item a {
+	display: inline;
+}
+
+
+/**
+ * 5.5 Post Formats
+ * ----------------------------------------------------------------------------
+ */
+
+.entry-content a {
+	display: inline;
+}
+
+.format-aside cite:before {
+	content: normal;
+	margin-right: auto;
+}
+
+.format-aside cite:after {
+	content: "\2014";
+	margin-left: 5px;
+}
+
+.format-audio .entry-content:before {
+	float: right;
+	-webkit-transform: scaleX(-1);
+	-moz-transform:    scaleX(-1);
+	-ms-transform:     scaleX(-1);
+	-o-transform:      scaleX(-1);
+	transform:         scaleX(-1);
+}
+
+.format-audio .audio-content {
+	background-position: right top;
+	float: left;
+	padding-left: 0;
+	padding-right: 35px;
+}
+
+.format-chat .entry-meta .date a:before {
+	margin-left: 4px;
+	margin-right: auto;
+}
+
+.format-image .wp-caption-text {
+	text-align: right;
+}
+
+.format-link .entry-title {
+	margin-left: 20px;
+	margin-right: auto;
+}
+
+.format-status .entry-content,
+.format-status .entry-meta {
+	padding-left: 0;
+	padding-right: 35px;
+}
+
+.sidebar .format-status .entry-content,
+.sidebar .format-status .entry-meta {
+	padding-left: 376px;
+	padding-right: 95px;
+}
+
+.format-status .entry-content:before,
+.format-status .entry-meta:before {
+	left: auto;
+	right: 10px;
+}
+
+.sidebar .format-status .entry-content:before,
+.sidebar .format-status .entry-meta:before {
+	left: auto;
+	right: 70px;
+}
+
+.format-status .entry-content p:first-child:before {
+	left: auto;
+	right: 4px;
+}
+
+.sidebar .format-status .entry-content p:first-child:before {
+	left: auto;
+	right: 64px;
+}
+
+.format-quote blockquote {
+	padding-left: 0;
+	padding-right: 75px;
+}
+
+.format-quote blockquote:before {
+	content: '\201D';
+	padding-left: 25px;
+	padding-right: 0;
+	left: auto;
+	right: -15px;
+}
+
+
+/**
+ * 5.6 Attachments
+ * ----------------------------------------------------------------------------
+ */
+
+.attachment .entry-title {
+	float: right;
+}
+
+.attachment .entry-title:before {
+	margin-left: 10px;
+	margin-right: auto;
+}
+
+.attachment .entry-meta {
+	float: left;
+}
+
+.image-navigation .nav-previous {
+	left: auto;
+	right: 0;
+}
+
+.image-navigation .nav-next {
+	left: 0;
+	right: auto;
+}
+
+.attachment .entry-caption {
+	text-align: right;
+}
+
+
+/**
+ * 5.7 Post/Paging Navigation
+ * ----------------------------------------------------------------------------
+ */
+
+.navigation .nav-previous {
+	float: right;
+}
+
+.navigation .nav-next {
+	float: left;
+}
+
+.sidebar .paging-navigation .nav-links,
+.sidebar .post-navigation .nav-links {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+.paging-navigation .nav-previous .meta-nav {
+	margin-left: 10px;
+	margin-right: auto;
+}
+
+.paging-navigation .nav-next .meta-nav {
+	margin-left: auto;
+	margin-right: 10px;
+}
+
+.post-navigation a[rel="next"] {
+	float: left;
+	text-align: left;
+}
+
+
+/**
+ * 5.8 Author Bio
+ * ----------------------------------------------------------------------------
+ */
+
+.author-info {
+	text-align: right; /* gallery & video post formats */
+}
+
+.author.sidebar .author-info {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+.author-avatar .avatar {
+	float: right;
+	margin: 0 0 30px 30px;
+}
+
+.author-link {
+	margin-left: auto;
+	margin-right: 2px;
+}
+
+
+/**
+ * 5.9 Archives
+ * ----------------------------------------------------------------------------
+ */
+
+.sidebar .archive-meta {
+	padding-left: 316px;
+	padding-right: 0;
+}
+
+
+/**
+ * 5.10 Search Results/No posts
+ * ----------------------------------------------------------------------------
+ */
+
+.sidebar .page-content {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+/**
+ * 5.12 Comments
+ * ----------------------------------------------------------------------------
+ */
+
+.sidebar .comments-title,
+.sidebar .comment-list,
+.sidebar .comment-reply-title,
+.sidebar .comment-navigation,
+.sidebar .comment-respond .comment-form {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+.comment-list .children {
+	margin-left: auto;
+	margin-right: 20px;
+}
+
+.comment-author {
+	float: right;
+	margin-left: 50px;
+	margin-right: auto;
+}
+
+.comment-list .edit-link {
+	margin-left: auto;
+	margin-right: 20px;
+}
+
+.comment-metadata,
+.comment-content,
+.comment-list .reply,
+.comment-awaiting-moderation {
+	float: left;
+}
+
+.comment-awaiting-moderation:before {
+	margin-left: 5px;
+	margin-right: auto;
+}
+
+.comment-reply-link:before,
+.comment-reply-login:before {
+	margin-left: 3px;
+	margin-right: auto;
+	-webkit-transform: scaleX(-1);
+	-moz-transform:    scaleX(-1);
+	-ms-transform:     scaleX(-1);
+	-o-transform:      scaleX(-1);
+	transform:         scaleX(-1);
+}
+
+.comment-reply-title small a {
+	float: left;
+}
+
+.comment-form [for="author"],
+.comment-form [for="email"],
+.comment-form [for="url"],
+.comment-form [for="comment"] {
+	float: right;
+}
+
+.comment-form #wp-comment-cookies-consent {
+	margin: 0 0 0 10px;
+}
+
+.form-allowed-tags code {
+	margin-left: auto;
+	margin-right: 3px;
+}
+
+.sidebar .no-comments {
+	padding-left: 376px;
+	padding-right: 60px;
+}
+
+
+/**
+ * 6.0 Sidebar
+ * ----------------------------------------------------------------------------
+ */
+
+.site-main .widget-area {
+	float: left;
+}
+
+.widget-area a {
+	max-width: 100%;
+}
+
+
+/**
+ * 6.1 Widgets
+ * ----------------------------------------------------------------------------
+ */
+
+.widget .widget-title {
+	font-style: normal;
+}
+
+.widget li > ul,
+.widget li > ol {
+	margin-left: auto;
+	margin-right: 20px;
+}
+
+.widget_text ul,
+.widget_text ol {
+	padding-left: auto;
+	padding-right: 20px;
+}
+
+/**
+ * 7.0 Footer
+ * ----------------------------------------------------------------------------
+ */
+
+.site-footer .widget-area,
+.sidebar .site-footer {
+	text-align: right;
+}
+.sidebar .site-footer .widget-area {
+	left: auto;
+	right: -158px;
+}
+
+.site-footer .widget {
+	float: right;
+	margin-left: 20px;
+	margin-right: auto;
+}
+
+.sidebar .site-footer .widget:nth-of-type(4),
+.sidebar .site-footer .widget:nth-of-type(3) {
+	margin-left: 0;
+	margin-right: auto;
+}
+
+.site-footer span[role=separator] {
+	padding: 0 0.5em;
+}
+
+/**
+ * 8.0 Media Queries
+ * ----------------------------------------------------------------------------
+ */
+
+@media (max-width: 1069px) {
+	ul.nav-menu,
+	div.nav-menu > ul {
+		margin-left: auto;
+		margin-right: 0;
+	}
+
+	.error404 .page-header,
+	.sidebar .format-image .entry-content img.size-full,
+	.sidebar .format-image .wp-caption:first-child .wp-caption-text {
+		margin-right: auto;
+	}
+
+	.main-navigation .search-form {
+		left: 20px;
+		right: auto;
+	}
+
+	.site-main .widget-area {
+		margin-left: 60px;
+		margin-right: auto;
+	}
+}
+
+@media (max-width: 999px) {
+	.sidebar .entry-header,
+	.sidebar .entry-content,
+	.sidebar .entry-summary,
+	.sidebar .entry-meta,
+	.sidebar .comment-list,
+	.sidebar .comment-reply-title,
+	.sidebar .comment-navigation,
+	.sidebar .comment-respond .comment-form,
+	.sidebar .featured-gallery,
+	.sidebar .post-navigation .nav-links,
+	.author.sidebar .author-info,
+	.sidebar .format-image .entry-content {
+		max-width: 604px;
+		padding-left: 0;
+		padding-right: 0;
+	}
+
+	.site-main .widget-area {
+		float: none;
+		margin-left: auto;
+	}
+
+	.attachment .entry-meta {
+		float: right;
+		text-align: right;
+	}
+
+	.sidebar .format-status .entry-content,
+	.sidebar .format-status .entry-meta {
+		padding-left: 0;
+		padding-right: 35px;
+	}
+
+	.sidebar .format-status .entry-content:before,
+	.sidebar .format-status .entry-meta:before {
+		left: auto;
+		right: 10px;
+	}
+
+	.sidebar .format-status .entry-content p:first-child:before {
+		left: auto;
+		right: 4px;
+	}
+
+	.sidebar .site-footer .widget-area {
+		left: auto;
+		right: 0;
+	}
+
+	.sidebar .paging-navigation .nav-links {
+		padding: 0 60px;
+	}
+}
+
+@media (max-width: 767px) {
+	.format-image .entry-content img:first-of-type,
+	.format-image .wp-caption:first-child .wp-caption-text {
+		margin-right: auto;
+	}
+}
+
+@media (max-width: 643px) {
+	.sidebar .entry-header,
+	.sidebar .entry-content,
+	.sidebar .entry-summary,
+	.sidebar .entry-meta,
+	.sidebar .comment-list,
+	.sidebar .comment-navigation,
+	.sidebar .featured-gallery,
+	.sidebar .post-navigation .nav-links,
+	.sidebar .format-image .entry-content {
+		padding-left: 20px;
+		padding-right: 20px;
+	}
+
+	#content .format-status .entry-content,
+	#content .format-status .entry-met {
+		padding-left: 0;
+		padding-right: 35px;
+	}
+
+	.menu-toggle:after {
+		padding-left: 0;
+		padding-right: 8px;
+	}
+
+	.toggled-on .nav-menu,
+	.toggled-on .nav-menu > ul {
+		margin-left: auto;
+		margin-right: 0;
+	}
+
+	.toggled-on .nav-menu li > ul {
+		margin-left: auto;
+		margin-right: 20px;
+		right: auto;
+	}
+
+	#content .featured-gallery {
+		padding-left: 0;
+		padding-right: 24px;
+	}
+
+	.gallery-columns-1 .gallery-item {
+		margin-left: 0;
+		margin-right: auto;
+	}
+
+	.comment-author {
+		margin-left: 30px;
+		margin-right: auto;
+	}
+
+	.format-audio .audio-content {
+		background: none;
+		float: none;
+		padding-left: 0;
+		padding-right: 0;
+	}
+
+	.gallery-columns-3 .gallery-item:nth-of-type(3n) {
+		margin-left: 4px;
+		margin-right: auto;
+	}
+}
+
+@media (max-width: 359px) {
+	.gallery {
+		margin-left: auto;
+		margin-right: 0;
+	}
+
+	.gallery .gallery-item:nth-of-type(even) {
+		margin-left: 0;
+		margin-right: auto;
+	}
+
+	.gallery .gallery-item,
+	.gallery.gallery-columns-3 .gallery-item:nth-of-type(even),
+	.gallery-columns-3 .gallery-item:nth-of-type(3n),
+	.gallery-columns-5 .gallery-item:nth-of-type(5n),
+	.gallery-columns-7 .gallery-item:nth-of-type(7n),
+	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
+		margin-left: 4px;
+		margin-right: auto;
+	}
+
+	.comment-author .avatar {
+		margin-left: 5px;
+		margin-right: auto;
+	}
+}
+
+
+/**
+ * 9.0 Print
+ * ----------------------------------------------------------------------------
+ */
+
+@media print {
+	.entry-content img.alignleft,
+	.entry-content .wp-caption.alignleft {
+		margin-left: auto;
+		margin-right: 0;
+	}
+
+	.entry-content img.alignright,
+	.entry-content .wp-caption.alignright {
+		margin-left: 0;
+		margin-right: auto;
+	}
+}
diff --git a/wp-content/themes/twentythirteen/search.php b/wp-content/themes/twentythirteen/search.php
index 5b335f4cb5720bada1058d620603aad008ad990d..990e1c1d32b1ad9c94c7d328de8c948502286550 100644
--- a/wp-content/themes/twentythirteen/search.php
+++ b/wp-content/themes/twentythirteen/search.php
@@ -1,39 +1,44 @@
-<?php
-/**
- * The template for displaying Search Results pages
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-
-			<header class="page-header">
-				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() ); ?></h1>
-			</header>
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying Search Results pages
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+
+			<header class="page-header">
+				<h1 class="page-title">
+				<?php
+				/* translators: %s: Search query. */
+				printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() );
+				?>
+				</h1>
+			</header>
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/sidebar-main.php b/wp-content/themes/twentythirteen/sidebar-main.php
index c404b0650c6121c89a00b9aad17d65ebcf9afc70..4968293756460cbeab9d7ad732518b41cc5641d1 100644
--- a/wp-content/themes/twentythirteen/sidebar-main.php
+++ b/wp-content/themes/twentythirteen/sidebar-main.php
@@ -1,18 +1,18 @@
-<?php
-/**
- * The sidebar containing the footer widget area
- *
- * If no active widgets in this sidebar, hide it completely.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
-	<div id="secondary" class="sidebar-container" role="complementary">
-		<div class="widget-area">
-			<?php dynamic_sidebar( 'sidebar-1' ); ?>
-		</div><!-- .widget-area -->
-	</div><!-- #secondary -->
-<?php endif; ?>
+<?php
+/**
+ * The sidebar containing the footer widget area
+ *
+ * If no active widgets in this sidebar, hide it completely.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
+	<div id="secondary" class="sidebar-container" role="complementary">
+		<div class="widget-area">
+			<?php dynamic_sidebar( 'sidebar-1' ); ?>
+		</div><!-- .widget-area -->
+	</div><!-- #secondary -->
+<?php endif; ?>
diff --git a/wp-content/themes/twentythirteen/sidebar.php b/wp-content/themes/twentythirteen/sidebar.php
index 874554d746bbdd2c4a79fd3fbcfb49255338f9e2..62adea2e80b1e993f17f72767a740ff8c1fc8def 100644
--- a/wp-content/themes/twentythirteen/sidebar.php
+++ b/wp-content/themes/twentythirteen/sidebar.php
@@ -1,22 +1,22 @@
-<?php
-/**
- * The sidebar containing the secondary widget area
- *
- * Displays on posts and pages.
- *
- * If no active widgets are in this sidebar, hide it completely.
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
-	<div id="tertiary" class="sidebar-container" role="complementary">
-		<div class="sidebar-inner">
-			<div class="widget-area">
-				<?php dynamic_sidebar( 'sidebar-2' ); ?>
-			</div><!-- .widget-area -->
-		</div><!-- .sidebar-inner -->
-	</div><!-- #tertiary -->
-<?php endif; ?>
+<?php
+/**
+ * The sidebar containing the secondary widget area
+ *
+ * Displays on posts and pages.
+ *
+ * If no active widgets are in this sidebar, hide it completely.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
+	<div id="tertiary" class="sidebar-container" role="complementary">
+		<div class="sidebar-inner">
+			<div class="widget-area">
+				<?php dynamic_sidebar( 'sidebar-2' ); ?>
+			</div><!-- .widget-area -->
+		</div><!-- .sidebar-inner -->
+	</div><!-- #tertiary -->
+<?php endif; ?>
diff --git a/wp-content/themes/twentythirteen/single.php b/wp-content/themes/twentythirteen/single.php
index 587ae86561949b85a75952febc319aa415b7c2e2..9e36ff08325c0a53dd635b0db795a812353ae6bd 100644
--- a/wp-content/themes/twentythirteen/single.php
+++ b/wp-content/themes/twentythirteen/single.php
@@ -1,31 +1,31 @@
-<?php
-/**
- * The template for displaying all single posts
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-
-				<?php get_template_part( 'content', get_post_format() ); ?>
-				<?php twentythirteen_post_nav(); ?>
-				<?php comments_template(); ?>
-
-			<?php endwhile; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying all single posts
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+
+				<?php get_template_part( 'content', get_post_format() ); ?>
+				<?php twentythirteen_post_nav(); ?>
+				<?php comments_template(); ?>
+
+			<?php endwhile; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/style.css b/wp-content/themes/twentythirteen/style.css
index 2da2729918844bb0ca0857ca721b777b87323805..af78cf49e38531cdcbfa7df85bd6b93830004061 100644
--- a/wp-content/themes/twentythirteen/style.css
+++ b/wp-content/themes/twentythirteen/style.css
@@ -1,3315 +1,3338 @@
-/*
-Theme Name: Twenty Thirteen
-Theme URI: https://wordpress.org/themes/twentythirteen/
-Author: the WordPress team
-Author URI: https://wordpress.org/
-Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
-Version: 2.9
-License: GNU General Public License v2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
-Text Domain: twentythirteen
-
-This theme, like WordPress, is licensed under the GPL.
-Use it to make something cool, have fun, and share what you've learned with others.
-*/
-
-
-/**
- * Table of Contents:
- *
- * 1.0 - Reset
- * 2.0 - Repeatable Patterns
- * 3.0 - Basic Structure
- * 4.0 - Header
- *   4.1 - Site Header
- *   4.2 - Navigation
- * 5.0 - Content
- *   5.1 - Entry Header
- *   5.2 - Entry Meta
- *   5.3 - Entry Content
- *   5.4 - Galleries
- *   5.5 - Post Formats
- *   5.6 - Attachments
- *   5.7 - Post/Paging Navigation
- *   5.8 - Author Bio
- *   5.9 - Archives
- *   5.10 - Search Results/No posts
- *   5.11 - 404
- *   5.12 - Comments
- *   5.13 - Multisite
- * 6.0 - Sidebar
- *   6.1 - Widgets
- * 7.0 - Footer
- * 8.0 - Media Queries
- * 9.0 - Print
- * ----------------------------------------------------------------------------
- */
-
-
-/**
- * 1.0 Reset
- *
- * Modified from Normalize.css to provide cross-browser consistency and a smart
- * default styling of HTML elements.
- *
- * @see http://git.io/normalize
- * ----------------------------------------------------------------------------
- */
-
-* {
-	-webkit-box-sizing: border-box;
-	-moz-box-sizing:    border-box;
-	box-sizing:         border-box;
-}
-
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-nav,
-section,
-summary {
-	display: block;
-}
-
-audio,
-canvas,
-video {
-	display: inline-block;
-}
-
-audio:not([controls]) {
-	display: none;
-	height: 0;
-}
-
-[hidden] {
-	display: none;
-}
-
-html {
-	font-size: 100%;
-	overflow-y: scroll;
-	-webkit-text-size-adjust: 100%;
-	-ms-text-size-adjust: 100%;
-}
-
-html,
-button,
-input,
-select,
-textarea {
-	font-family: "Source Sans Pro", Helvetica, sans-serif;
-}
-
-body {
-	color: #141412;
-	line-height: 1.5;
-	margin: 0;
-}
-
-a {
-	color: #ca3c08;
-	text-decoration: none;
-}
-
-a:visited {
-	color: #ac0404;
-}
-
-a:focus {
-	outline: thin dotted;
-}
-
-a:active,
-a:hover {
-	color: #ea9629;
-	outline: 0;
-}
-
-a:hover {
-	text-decoration: underline;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
-	clear: both;
-	font-family: Bitter, Georgia, serif;
-	line-height: 1.3;
-}
-
-h1 {
-	font-size: 48px;
-	margin: 33px 0;
-}
-
-h2 {
-	font-size: 30px;
-	margin: 25px 0;
-}
-
-h3 {
-	font-size: 22px;
-	margin: 22px 0;
-}
-
-h4 {
-	font-size: 20px;
-	margin: 25px 0;
-}
-
-h5 {
-	font-size: 18px;
-	margin: 30px 0;
-}
-
-h6 {
-	font-size: 16px;
-	margin: 36px 0;
-}
-
-address {
-	font-style: italic;
-	margin: 0 0 24px;
-}
-
-abbr[title] {
-	border-bottom: 1px dotted;
-}
-
-b,
-strong {
-	font-weight: bold;
-}
-
-dfn {
-	font-style: italic;
-}
-
-mark {
-	background: #ff0;
-	color: #000;
-}
-
-p {
-	margin: 0 0 24px;
-}
-
-code,
-kbd,
-pre,
-samp {
-	font-family: monospace, serif;
-	font-size: 14px;
-	-webkit-hyphens: none;
-	-moz-hyphens:    none;
-	-ms-hyphens:     none;
-	hyphens:         none;
-}
-
-pre {
-	background: #f5f5f5;
-	color: #666;
-	font-family: monospace;
-	font-size: 14px;
-	margin: 20px 0;
-	overflow: auto;
-	padding: 20px;
-	white-space: pre;
-	white-space: pre-wrap;
-	word-wrap: break-word;
-}
-
-blockquote,
-q {
-	-webkit-hyphens: none;
-	-moz-hyphens:    none;
-	-ms-hyphens:     none;
-	hyphens:         none;
-	quotes: none;
-}
-
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
-	content: "";
-	content: none;
-}
-
-blockquote {
-	font-size: 18px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 24px 40px;
-}
-
-blockquote blockquote {
-	margin-right: 0;
-}
-
-blockquote cite,
-blockquote small {
-	font-size: 14px;
-	font-weight: normal;
-	text-transform: uppercase;
-}
-
-blockquote em,
-blockquote i {
-	font-style: normal;
-	font-weight: 300;
-}
-
-blockquote strong,
-blockquote b {
-	font-weight: 400;
-}
-
-small {
-	font-size: smaller;
-}
-
-sub,
-sup {
-	font-size: 75%;
-	line-height: 0;
-	position: relative;
-	vertical-align: baseline;
-}
-
-sup {
-	top: -0.5em;
-}
-
-sub {
-	bottom: -0.25em;
-}
-
-dl {
-	margin: 0 20px;
-}
-
-dt {
-	font-weight: bold;
-}
-
-dd {
-	margin: 0 0 20px;
-}
-
-menu,
-ol,
-ul {
-	margin: 16px 0;
-	padding: 0 0 0 40px;
-}
-
-ul {
-	list-style-type: square;
-}
-
-nav ul,
-nav ol {
-	list-style: none;
-	list-style-image: none;
-}
-
-li > ul,
-li > ol {
-	margin: 0;
-}
-
-img {
-	-ms-interpolation-mode: bicubic;
-	border: 0;
-	vertical-align: middle;
-}
-
-svg:not(:root) {
-	overflow: hidden;
-}
-
-figure {
-	margin: 0;
-}
-
-form {
-	margin: 0;
-}
-
-fieldset {
-	border: 1px solid #c0c0c0;
-	margin: 0 2px;
-	min-width: inherit;
-	padding: 0.35em 0.625em 0.75em;
-}
-
-legend {
-	border: 0;
-	padding: 0;
-	white-space: normal;
-}
-
-button,
-input,
-select,
-textarea {
-	font-size: 100%;
-	margin: 0;
-	max-width: 100%;
-	vertical-align: baseline;
-}
-
-button,
-input {
-	line-height: normal;
-}
-
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
-	-webkit-appearance: button;
-	cursor: pointer;
-}
-
-button[disabled],
-input[disabled] {
-	cursor: default;
-}
-
-input[type="checkbox"],
-input[type="radio"] {
-	padding: 0;
-}
-
-input[type="search"] {
-	-webkit-appearance: textfield;
-	padding-right: 2px; /* Don't cut off the webkit search cancel button */
-	width: 270px;
-}
-
-input[type="search"]::-webkit-search-decoration {
-	-webkit-appearance: none;
-}
-
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-	border: 0;
-	padding: 0;
-}
-
-textarea {
-	overflow: auto;
-	vertical-align: top;
-}
-
-table {
-	border-bottom: 1px solid #ededed;
-	border-collapse: collapse;
-	border-spacing: 0;
-	font-size: 14px;
-	line-height: 2;
-	margin: 0 0 20px;
-	width: 100%;
-}
-
-caption,
-th,
-td {
-	font-weight: normal;
-	text-align: left;
-}
-
-caption {
-	font-size: 16px;
-	margin: 20px 0;
-}
-
-th {
-	font-weight: bold;
-	text-transform: uppercase;
-}
-
-td {
-	border-top: 1px solid #ededed;
-	padding: 6px 10px 6px 0;
-}
-
-del {
-	color: #333;
-}
-
-ins {
-	background: #fff9c0;
-	text-decoration: none;
-}
-
-hr {
-	background: url(images/dotted-line.png) repeat center top;
-	background-size: 4px 4px;
-	border: 0;
-	height: 1px;
-	margin: 0 0 24px;
-}
-
-
-/**
- * 2.0 Repeatable Patterns
- * ----------------------------------------------------------------------------
- */
-
-.genericon:before,
-.menu-toggle:after,
-.featured-post:before,
-.date a:before,
-.entry-meta .author a:before,
-.format-audio .entry-content:before,
-.comments-link a:before,
-.tags-links a:first-child:before,
-.categories-links a:first-child:before,
-.edit-link a:before,
-.attachment .entry-title:before,
-.attachment-meta:before,
-.attachment-meta a:before,
-.comment-awaiting-moderation:before,
-.comment-reply-link:before,
-.comment-reply-login:before,
-.comment-reply-title small a:before,
-.bypostauthor > .comment-body .fn:before,
-.error404 .page-title:before {
-	-webkit-font-smoothing: antialiased;
-	display: inline-block;
-	font: normal 16px/1 Genericons;
-	vertical-align: text-bottom;
-}
-
-/* Clearing floats */
-.clear:after,
-.attachment .entry-header:after,
-.site-footer .widget-area:after,
-.entry-content:after,
-.page-content:after,
-.navigation:after,
-.nav-links:after,
-.gallery:after,
-.comment-form-author:after,
-.comment-form-email:after,
-.comment-form-url:after,
-.comment-body:after {
-	clear: both;
-}
-
-.clear:before,
-.clear:after,
-.attachment .entry-header:before,
-.attachment .entry-header:after,
-.site-footer .widget-area:before,
-.site-footer .widget-area:after,
-.entry-content:before,
-.entry-content:after,
-.page-content:before,
-.page-content:after,
-.navigation:before,
-.navigation:after,
-.nav-links:before,
-.nav-links:after,
-.gallery:before,
-.gallery:after,
-.comment-form-author:before,
-.comment-form-author:after,
-.comment-form-email:before,
-.comment-form-email:after,
-.comment-form-url:before,
-.comment-form-url:after,
-.comment-body:before,
-.comment-body:after {
-	content: "";
-	display: table;
-}
-
-/* Assistive text */
-.screen-reader-text {
-	clip: rect(1px, 1px, 1px, 1px);
-	overflow: hidden;
-	position: absolute !important;
-	height: 1px;
-	width: 1px;
-}
-
-.screen-reader-text:focus {
-	background-color: #f1f1f1;
-	border-radius: 3px;
-	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
-	clip: auto !important;
-	color: #21759b;
-	display: block;
-	font-size: 14px;
-	font-weight: bold;
-	height: auto;
-	line-height: normal;
-	padding: 15px 23px 14px;
-	position: absolute;
-	left: 5px;
-	top: 5px;
-	text-decoration: none;
-	width: auto;
-	z-index: 100000; /* Above WP toolbar */
-}
-
-/* Form fields, general styles first. */
-button,
-input,
-textarea {
-	border: 2px solid #d4d0ba;
-	font-family: inherit;
-	padding: 5px;
-}
-
-input,
-textarea {
-	color: #141412;
-}
-
-input:focus,
-textarea:focus {
-	border: 2px solid #c3c0ab;
-	outline: 0;
-}
-
-/* Buttons */
-button,
-input[type="submit"],
-input[type="button"],
-input[type="reset"] {
-	background: #e05d22; /* Old browsers */
-	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
-	border: none;
-	border-bottom: 3px solid #b93207;
-	border-radius: 2px;
-	color: #fff;
-	display: inline-block;
-	padding: 11px 24px 10px;
-	text-decoration: none;
-}
-
-button:hover,
-button:focus,
-input[type="submit"]:hover,
-input[type="button"]:hover,
-input[type="reset"]:hover,
-input[type="submit"]:focus,
-input[type="button"]:focus,
-input[type="reset"]:focus {
-	background: #ed6a31; /* Old browsers */
-	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
-	outline: none;
-}
-
-button:active,
-input[type="submit"]:active,
-input[type="button"]:active,
-input[type="reset"]:active {
-	background: #d94412; /* Old browsers */
-	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
-	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
-	border: none;
-	border-top: 3px solid #b93207;
-	padding: 10px 24px 11px;
-}
-
-.post-password-required input[type="submit"] {
-	padding: 7px 24px 4px;
-	vertical-align: bottom;
-}
-
-.post-password-required input[type="submit"]:active {
-	padding: 5px 24px 6px;
-}
-
-/* Placeholder text color -- selectors need to be separate to work. */
-::-webkit-input-placeholder {
-	color: #7d7b6d;
-}
-
-:-moz-placeholder {
-	color: #7d7b6d;
-}
-
-::-moz-placeholder {
-	color: #7d7b6d;
-}
-
-:-ms-input-placeholder {
-	color: #7d7b6d;
-}
-
-/*
- * Responsive images
- *
- * Fluid images for posts, comments, and widgets
- */
-.entry-content img,
-.entry-summary img,
-.comment-content img,
-.widget img,
-.wp-caption {
-	max-width: 100%;
-}
-
-/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
-.entry-content img,
-.entry-summary img,
-.comment-content img[height],
-img[class*="align"],
-img[class*="wp-image-"],
-img[class*="attachment-"] {
-	height: auto;
-}
-
-img.size-full,
-img.size-large,
-img.wp-post-image {
-	height: auto;
-	max-width: 100%;
-}
-
-/* Make sure videos and embeds fit their containers. */
-embed,
-iframe,
-object,
-video {
-	max-width: 100%;
-}
-
-/* Override the Twitter embed fixed width. */
-.entry-content .twitter-tweet-rendered {
-	max-width: 100% !important;
-}
-
-/* Images */
-.alignleft {
-	float: left;
-}
-
-.alignright {
-	float: right;
-}
-
-.aligncenter {
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-}
-
-figure.wp-caption.alignleft,
-img.alignleft {
-	margin: 5px 20px 5px 0;
-}
-
-.wp-caption.alignleft {
-	margin: 5px 10px 5px 0;
-}
-
-figure.wp-caption.alignright,
-img.alignright {
-	margin: 5px 0 5px 20px;
-}
-
-.wp-caption.alignright {
-	margin: 5px 0 5px 10px;
-}
-
-img.aligncenter {
-	margin: 5px auto;
-}
-
-img.alignnone {
-	margin: 5px 0;
-}
-
-.wp-caption .wp-caption-text,
-.entry-caption,
-.gallery-caption {
-	color: #220e10;
-	font-size: 18px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 0 0 24px;
-}
-
-div.wp-caption.alignright img[class*="wp-image-"] {
-	float: right;
-}
-
-div.wp-caption.alignright .wp-caption-text {
-	padding-left: 10px;
-}
-
-img.wp-smiley,
-.rsswidget img {
-	border: 0;
-	border-radius: 0;
-	box-shadow: none;
-	margin-bottom: 0;
-	margin-top: 0;
-	padding: 0;
-}
-
-.wp-caption.alignleft + ul,
-.wp-caption.alignleft + ol {
-	list-style-position: inside;
-}
-
-
-/**
- * 3.0 Basic Structure
- * ----------------------------------------------------------------------------
- */
-
-.site {
-	background-color: #fff;
-	border-left: 1px solid #f2f2f2;
-	border-right: 1px solid #f2f2f2;
-	margin: 0 auto;
-	max-width: 1600px;
-	width: 100%;
-}
-
-.site-main {
-	position: relative;
-}
-
-.site-main .sidebar-container {
-	height: 0;
-	position: absolute;
-	top: 40px;
-	width: 100%;
-	z-index: 1;
-}
-
-.site-main .sidebar-inner {
-	margin: 0 auto;
-	max-width: 1040px;
-}
-
-
-/**
- * 4.0 Header
- * ----------------------------------------------------------------------------
- */
-
-/**
- * 4.1 Site Header
- * ----------------------------------------------------------------------------
- */
-
-.site-header {
-	position: relative;
-}
-
-.site-header .home-link {
-	color: #141412;
-	display: block;
-	margin: 0 auto;
-	max-width: 1080px;
-	min-height: 230px;
-	padding: 0 20px;
-	text-decoration: none;
-	width: 100%;
-}
-
-.site-header .site-title:hover {
-	text-decoration: underline;
-}
-
-.site-title {
-	font-size: 60px;
-	font-weight: bold;
-	line-height: 1;
-	margin: 0;
-	padding: 58px 0 10px;
-}
-
-.site-description {
-	font: 300 italic 24px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0;
-}
-
-
-/**
- * 4.2 Navigation
- * ----------------------------------------------------------------------------
- */
-
-.main-navigation {
-	clear: both;
-	margin: 0 auto;
-	max-width: 1080px;
-	min-height: 45px;
-	position: relative;
-}
-
-ul.nav-menu,
-div.nav-menu > ul {
-	margin: 0;
-	padding: 0 40px 0 0;
-}
-
-.nav-menu li {
-	display: inline-block;
-	position: relative;
-}
-
-.nav-menu li a {
-	color: #141412;
-	display: block;
-	font-size: 15px;
-	line-height: 1;
-	padding: 15px 20px;
-	text-decoration: none;
-}
-
-.nav-menu li:hover > a,
-.nav-menu li a:hover,
-.nav-menu li:focus > a,
-.nav-menu li a:focus {
-	background-color: #220e10;
-	color: #fff;
-}
-
-.nav-menu .sub-menu,
-.nav-menu .children {
-	background-color: #220e10;
-	border: 2px solid #f7f5e7;
-	border-top: 0;
-	padding: 0;
-	position: absolute;
-	left: -2px;
-	z-index: 99999;
-	height: 1px;
-	width: 1px;
-	overflow: hidden;
-	clip: rect(1px, 1px, 1px, 1px);
-}
-
-.nav-menu .sub-menu ul,
-.nav-menu .children ul {
-	border-left: 0;
-	left: 100%;
-	top: 0;
-}
-
-ul.nav-menu ul a,
-.nav-menu ul ul a {
-	color: #fff;
-	margin: 0;
-	width: 200px;
-}
-
-ul.nav-menu ul a:hover,
-.nav-menu ul ul a:hover,
-ul.nav-menu ul a:focus,
-.nav-menu ul ul a:focus {
-	background-color: #db572f;
-}
-
-ul.nav-menu li:hover > ul,
-.nav-menu ul li:hover > ul,
-ul.nav-menu .focus > ul,
-.nav-menu .focus > ul {
-	clip: inherit;
-	overflow: inherit;
-	height: inherit;
-	width: inherit;
-}
-
-.nav-menu .current_page_item > a,
-.nav-menu .current_page_ancestor > a,
-.nav-menu .current-menu-item > a,
-.nav-menu .current-menu-ancestor > a {
-	color: #bc360a;
-	font-style: italic;
-}
-
-.menu-toggle {
-	display: none;
-}
-
-/* Navbar */
-.navbar {
-	background-color: #f7f5e7;
-	margin: 0 auto;
-	max-width: 1600px;
-	width: 100%;
-}
-
-.site-header .search-form {
-	position: absolute;
-	right: 20px;
-	top: 1px;
-}
-
-.site-header .search-field {
-	background-color: transparent;
-	background-image: url(images/search-icon.png);
-	background-position: 5px center;
-	background-repeat: no-repeat;
-	background-size: 24px 24px;
-	border: none;
-	cursor: pointer;
-	height: 37px;
-	margin: 3px 0;
-	padding: 0 0 0 34px;
-	position: relative;
-	-webkit-transition: width 400ms ease, background 400ms ease;
-	transition:         width 400ms ease, background 400ms ease;
-	width: 1px;
-}
-
-.site-header .search-field:focus {
-	background-color: #fff;
-	border: 2px solid #c3c0ab;
-	cursor: text;
-	outline: 0;
-	width: 230px;
-}
-
-
-/**
- * 5.0 Content
- * ----------------------------------------------------------------------------
- */
-
-.hentry {
-	padding: 40px 0;
-}
-
-.entry-header,
-.entry-content,
-.entry-summary,
-.entry-meta {
-	margin: 0 auto;
-	max-width: 604px;
-	width: 100%;
-}
-
-.sidebar .entry-header,
-.sidebar .entry-content,
-.sidebar .entry-summary,
-.sidebar .entry-meta {
-	max-width: 1040px;
-	padding: 0 376px 0 60px;
-}
-
-
-/**
- * 5.1 Entry Header
- * ----------------------------------------------------------------------------
- */
-
-.sidebar .entry-header .entry-meta {
-	padding: 0;
-}
-
-.entry-thumbnail img {
-	display: block;
-	margin: 0 auto 10px;
-}
-
-.entry-header {
-	margin-bottom: 30px;
-}
-
-.entry-title {
-	font-weight: normal;
-	margin: 0 0 5px;
-}
-
-.entry-title a {
-	color: #141412;
-}
-
-.entry-title a:hover {
-	color: #ea9629;
-}
-
-
-/**
- * 5.2 Entry Meta
- * ----------------------------------------------------------------------------
- */
-
-.entry-meta {
-	clear: both;
-	font-size: 14px;
-}
-
-.entry-meta a {
-	color: #bc360a;
-}
-
-.entry-meta a:hover {
-	color: #bc360a;
-}
-
-.entry-meta > span {
-	margin-right: 20px;
-}
-
-.entry-meta > span:last-child {
-	margin-right: 0;
-}
-
-.featured-post:before {
-	content: "\f308";
-	margin-right: 2px;
-}
-
-.entry-meta .date a:before {
-	content: "\f303";
-}
-
-.comments-link a:before {
-	content: "\f300";
-	margin-right: 2px;
-	position: relative;
-	top: -1px;
-}
-
-.entry-meta .author a:before {
-	content: "\f304";
-	position: relative;
-	top: -1px;
-}
-
-.categories-links a:first-child:before {
-	content: "\f301";
-}
-
-.tags-links a:first-child:before {
-	content: "\f302";
-	position: relative;
-	top: -1px;
-}
-
-.edit-link a:before {
-	content: "\f411";
-	position: relative;
-	top: -1px;
-}
-
-.single-author .entry-meta .author,
-.sticky.format-standard .entry-meta .date,
-.sticky.format-audio .entry-meta .date,
-.sticky.format-chat .entry-meta .date,
-.sticky.format-image .entry-meta .date,
-.sticky.format-gallery .entry-meta .date {
-	display: none;
-}
-
-
-/**
- * 5.3 Entry Content
- * ----------------------------------------------------------------------------
- */
-
-.entry-content {
-	-webkit-hyphens: auto;
-	-moz-hyphens:    auto;
-	-ms-hyphens:     auto;
-	hyphens:         auto;
-	word-wrap: break-word;
-}
-
-.entry-content a,
-.comment-content a {
-	color: #bc360a;
-}
-
-.entry-content a:hover,
-.comment-content a:hover {
-	color: #ea9629;
-}
-
-.entry-content .more-link {
-	white-space: nowrap;
-}
-
-.entry-content blockquote {
-	font-size: 24px;
-}
-
-.entry-content blockquote cite,
-.entry-content blockquote small {
-	font-size: 16px;
-}
-
-.entry-content img.alignleft,
-.entry-content .wp-caption.alignleft {
-	margin-left: -60px;
-}
-
-.entry-content img.alignright,
-.entry-content .wp-caption.alignright {
-	margin-right: -60px;
-}
-
-footer.entry-meta {
-	margin-top: 24px;
-}
-
-.format-standard footer.entry-meta {
-	margin-top: 0;
-}
-
-/* Page links */
-.page-links {
-	clear: both;
-	font-size: 16px;
-	font-style: italic;
-	font-weight: normal;
-	line-height: 2.2;
-	margin: 20px 0;
-	text-transform: uppercase;
-}
-
-.page-links a,
-.page-links > span {
-	background: #fff;
-	border: 1px solid #fff;
-	padding: 5px 10px;
-	text-decoration: none;
-}
-
-.format-status .entry-content .page-links a,
-.format-gallery .entry-content .page-links a,
-.format-chat .entry-content .page-links a,
-.format-quote .entry-content .page-links a,
-.page-links a {
-	background: #e63f2a;
-	border: 1px solid #e63f2a;
-	color: #fff;
-}
-
-.format-gallery .entry-content .page-links a:hover,
-.format-audio .entry-content .page-links a:hover,
-.format-status .entry-content .page-links a:hover,
-.format-video .entry-content .page-links a:hover,
-.format-chat .entry-content .page-links a:hover,
-.format-quote .entry-content .page-links a:hover,
-.page-links a:hover {
-	background: #fff;
-	color: #e63f2a;
-}
-
-.format-status .entry-content .page-links > span,
-.format-quote .entry-content .page-links > span {
-	background: none;
-}
-
-.page-links .page-links-title {
-	background: transparent;
-	border: none;
-	margin-right: 20px;
-	padding: 0;
-}
-
-/* Mediaelements */
-.hentry .mejs-mediaelement,
-.widget .mejs-mediaelement,
-.hentry .mejs-container .mejs-controls,
-.widget .mejs-container .mejs-controls {
-	background: #220e10;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
-.widget .mejs-controls .mejs-time-rail .mejs-time-loaded,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
-.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
-	background: #fff;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-current,
-.widget .mejs-controls .mejs-time-rail .mejs-time-current {
-	background: #ea9629;
-}
-
-.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
-.widget .mejs-controls .mejs-time-rail .mejs-time-total,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
-	background: #595959;
-}
-
-.hentry .mejs-controls .mejs-time-rail span,
-.widget .mejs-controls .mejs-time-rail span,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
-.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
-.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
-	border-radius: 0;
-}
-
-
-/**
- * 5.4 Galleries
- * ----------------------------------------------------------------------------
- */
-
-.gallery {
-	margin-bottom: 20px;
-	margin-left: -4px;
-}
-
-.gallery-item {
-	float: left;
-	margin: 0 4px 4px 0;
-	overflow: hidden;
-	position: relative;
-}
-
-.gallery-columns-1.gallery-size-medium,
-.gallery-columns-1.gallery-size-thumbnail,
-.gallery-columns-2.gallery-size-thumbnail,
-.gallery-columns-3.gallery-size-thumbnail {
-	display: table;
-	margin: 0 auto 20px;
-}
-
-.gallery-columns-1 .gallery-item,
-.gallery-columns-2 .gallery-item,
-.gallery-columns-3 .gallery-item {
-	text-align: center;
-}
-
-.gallery-columns-4 .gallery-item {
-	max-width: 23%;
-	max-width: -webkit-calc(25% - 4px);
-	max-width:         calc(25% - 4px);
-}
-
-.gallery-columns-5 .gallery-item {
-	max-width: 19%;
-	max-width: -webkit-calc(20% - 4px);
-	max-width:         calc(20% - 4px);
-}
-
-.gallery-columns-6 .gallery-item {
-	max-width: 15%;
-	max-width: -webkit-calc(16.7% - 4px);
-	max-width:         calc(16.7% - 4px);
-}
-
-.gallery-columns-7 .gallery-item {
-	max-width: 13%;
-	max-width: -webkit-calc(14.28% - 4px);
-	max-width:         calc(14.28% - 4px);
-}
-
-.gallery-columns-8 .gallery-item {
-	max-width: 11%;
-	max-width: -webkit-calc(12.5% - 4px);
-	max-width:         calc(12.5% - 4px);
-}
-
-.gallery-columns-9 .gallery-item {
-	max-width: 9%;
-	max-width: -webkit-calc(11.1% - 4px);
-	max-width:         calc(11.1% - 4px);
-}
-
-.gallery-columns-1 .gallery-item:nth-of-type(1n),
-.gallery-columns-2 .gallery-item:nth-of-type(2n),
-.gallery-columns-3 .gallery-item:nth-of-type(3n),
-.gallery-columns-4 .gallery-item:nth-of-type(4n),
-.gallery-columns-5 .gallery-item:nth-of-type(5n),
-.gallery-columns-6 .gallery-item:nth-of-type(6n),
-.gallery-columns-7 .gallery-item:nth-of-type(7n),
-.gallery-columns-8 .gallery-item:nth-of-type(8n),
-.gallery-columns-9 .gallery-item:nth-of-type(9n) {
-	margin-right: 0;
-}
-
-.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
-.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
-.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
-.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1),
-.widget-area .gallery-columns-2 figure.gallery-item:nth-of-type(2n+1),
-.widget-area .gallery-columns-3 figure.gallery-item:nth-of-type(3n+1),
-.widget-area .gallery-columns-4 figure.gallery-item:nth-of-type(4n+1),
-.widget-area .gallery-columns-5 figure.gallery-item:nth-of-type(5n+1),
-.widget-area .gallery-columns-6 figure.gallery-item:nth-of-type(6n+1),
-.widget-area .gallery-columns-7 figure.gallery-item:nth-of-type(7n+1),
-.widget-area .gallery-columns-8 figure.gallery-item:nth-of-type(8n+1),
-.widget-area .gallery-columns-9 figure.gallery-item:nth-of-type(9n+1) {
-	clear: left;
-}
-
-.gallery-caption {
-	background-color: rgba(0, 0, 0, 0.7);
-	box-sizing: border-box;
-	color: #fff;
-	font-size: 14px;
-	line-height: 1.3;
-	margin: 0;
-	max-height: 50%;
-	opacity: 0;
-	padding: 2px 8px;
-	position: absolute;
-	bottom: 0;
-	left: 0;
-	text-align: left;
-	-webkit-transition: opacity 400ms ease;
-	transition:         opacity 400ms ease;
-	width: 100%;
-}
-
-.gallery-caption:before {
-	box-shadow: 0 -10px 15px #000 inset;
-	content: "";
-	height: 100%;
-	min-height: 49px;
-	position: absolute;
-	left: 0;
-	top: 0;
-	width: 100%;
-}
-
-.gallery-item:hover .gallery-caption {
-	opacity: 1;
-}
-
-.gallery-columns-7 .gallery-caption,
-.gallery-columns-8 .gallery-caption,
-.gallery-columns-9 .gallery-caption,
-.widget-area .gallery-columns-2 .gallery-caption,
-.widget-area .gallery-columns-3 .gallery-caption,
-.widget-area .gallery-columns-4 .gallery-caption,
-.widget-area .gallery-columns-5 .gallery-caption,
-.widget-area .gallery-columns-6 .gallery-caption,
-.widget-area .gallery-columns-7 .gallery-caption,
-.widget-area .gallery-columns-8 .gallery-caption,
-.widget-area .gallery-columns-9 .gallery-caption {
-	display: none;
-}
-
-
-/**
- * 5.5 Post Formats
- * ----------------------------------------------------------------------------
- */
-
-/* Aside */
-.format-aside {
-	background-color: #f7f5e7;
-}
-
-.blog .format-aside:first-of-type,
-.single .format-aside:first-of-type,
-.format-aside + .format-aside,
-.format-aside + .format-link,
-.format-link + .format-aside {
-	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
-}
-
-.format-aside .entry-meta {
-	margin-top: 0;
-}
-
-.format-aside blockquote {
-	font-size: 100%;
-	font-weight: normal;
-}
-
-.format-aside cite {
-	font-size: 100%;
-	text-transform: none;
-}
-
-.format-aside cite:before {
-	content: "\2014";
-	margin-right: 5px;
-}
-
-/* Audio */
-.format-audio {
-	background-color: #db572f;
-}
-
-.format-audio .entry-title {
-	font-size: 28px;
-	font-weight: bold;
-}
-
-.format-audio .entry-content:before {
-	content: "\f109";
-	float: left;
-	font-size: 64px;
-	position: relative;
-	top: 4px;
-}
-
-.format-audio .entry-content a,
-.format-audio .entry-meta a,
-.format-audio .entry-content a:hover,
-.format-audio .entry-meta a:hover {
-	color: #fbfaf3;
-}
-
-.format-audio .audio-content {
-	background: url(images/dotted-line.png) repeat-y left top;
-	background-size: 4px 4px;
-	float: right;
-	padding-left: 35px;
-	width: 80%;
-	width: -webkit-calc(100% - 85px);
-	width:         calc(100% - 85px);
-}
-
-.format-audio .wp-audio-shortcode {
-	height: 30px !important; /* Override mediaelement.js style */
-	margin: 20px 0;
-	max-width: 400px !important; /* Override mediaelement.js style */
-}
-
-.format-audio audio {
-	max-width: 100% !important; /* Avoid player width overflow. */
-}
-
-/* Chat */
-.format-chat {
-	background-color: #eadaa6;
-}
-
-.format-chat .entry-title {
-	font-size: 28px;
-	font-weight: bold;
-}
-
-.format-chat .entry-meta a,
-.format-chat .entry-content a {
-	color: #722d19;
-}
-
-.format-chat .entry-meta .date a:before {
-	content: "\f108";
-	margin-right: 2px;
-}
-
-.format-chat .entry-meta .author {
-	display: none;
-}
-
-.format-chat .chat {
-	margin: 0;
-}
-
-.format-chat .chat .chat-timestamp {
-	color: #722d19;
-	float: right;
-	font-size: 12px;
-	font-weight: normal;
-	margin: 5px 10px 0;
-}
-
-.format-chat .chat .fn {
-	font-style: normal;
-}
-
-/* Gallery */
-.format-gallery {
-	background-color: #fbca3c;
-}
-
-.format-gallery .entry-header {
-	margin-bottom: 15px;
-}
-
-.format-gallery .entry-title {
-	font-size: 50px;
-	font-weight: 400;
-	margin: 0;
-}
-
-.format-gallery .entry-meta a,
-.format-gallery .entry-content a {
-	color: #722d19;
-}
-
-/* Image */
-.format-image .entry-title {
-	font-size: 28px;
-	font-weight: bold;
-}
-
-.format-image .categories-links,
-.format-image .tags-links {
-	display: none;
-}
-
-/* Link */
-.format-link {
-	background-color: #f7f5e7;
-}
-
-.blog .format-link:first-of-type,
-.single .format-link:first-of-type {
-	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
-}
-
-.format-link .entry-header,
-.format-link .entry-content p:last-child {
-	margin-bottom: 0;
-}
-
-.format-link .entry-title {
-	color: #ca3c08;
-	display: inline;
-	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
-	margin-right: 20px;
-}
-
-.format-link .entry-title a {
-	color: #bc360a;
-}
-
-.format-link div.entry-meta {
-	display: inline;
-}
-
-/* Standard */
-.format-standard .wp-video,
-.format-standard .wp-audio-shortcode,
-.format-audio .wp-audio-shortcode,
-.format-standard .video-player {
-	margin-bottom: 24px;
-}
-
-/* Quote */
-.format-quote {
-	background-color: #210d10;
-}
-
-.format-quote .entry-content,
-.format-quote .entry-meta {
-	color: #f7f5e7;
-}
-
-.format-quote .entry-content blockquote {
-	font-size: 28px;
-	margin: 0;
-}
-
-.format-quote .entry-content a,
-.format-quote .entry-meta a,
-.format-quote .linked {
-	color: #e63f2a;
-}
-
-.format-quote .entry-content cite a {
-	border-bottom: 1px dotted #fff;
-	color: #fff;
-}
-
-.format-quote .entry-content cite a:hover {
-	text-decoration: none;
-}
-
-.format-quote blockquote small,
-.format-quote blockquote cite {
-	display: block;
-	font-size: 16px;
-}
-
-.format-quote blockquote {
-	font-style: italic;
-	font-weight: 300;
-	padding-left: 75px;
-	position: relative;
-}
-
-.format-quote blockquote:before {
-	content: '\201C';
-	font-size: 140px;
-	font-weight: 400;
-	line-height: .8;
-	padding-right: 25px;
-	position: absolute;
-	left: -15px;
-	top: -3px;
-}
-
-.format-quote .entry-meta .author {
-	display: none;
-}
-
-/* Status */
-.format-status {
-	background-color: #722d19;
-	padding: 0;
-}
-
-.format-status .entry-content,
-.format-status .entry-meta {
-	padding-left: 35px;
-	position: relative;
-}
-
-.format-status .entry-content a {
-	color: #eadaa6;
-}
-
-.format-status .entry-meta a {
-	color: #f7f5e7;
-}
-
-.sidebar .format-status .entry-content,
-.sidebar .format-status .entry-meta {
-	padding-left: 95px;
-}
-
-.format-status .entry-content:before,
-.format-status .entry-meta:before {
-	background: url(images/dotted-line.png) repeat-y left bottom;
-	background-size: 4px 4px;
-	content: "";
-	display: block;
-	height: 100%;
-	position: absolute;
-	left: 10px;
-	top: 0;
-	width: 1px;
-}
-
-.sidebar .format-status .entry-content:before,
-.sidebar .format-status .entry-meta:before {
-	left: 70px;
-}
-
-.format-status .categories-links,
-.format-status .tags-links {
-	display: none;
-}
-
-/* Ensures the dots in the dot background are in lockstep. */
-.format-status .entry-meta:before {
-	background-position: left top;
-}
-
-.format-status .entry-content {
-	color: #f7f5e7;
-	font-size: 24px;
-	font-style: italic;
-	font-weight: 300;
-	padding-bottom: 30px;
-	padding-top: 40px;
-	position: relative;
-}
-
-.format-status .entry-content p:first-child:before {
-	background-color: rgba(0, 0, 0, 0.65);
-	content: "";
-	height: 3px;
-	margin-top: 13px;
-	position: absolute;
-	left: 4px;
-	width: 13px;
-}
-
-.sidebar .format-status .entry-content > p:first-child:before {
-	left: 64px;
-}
-
-.format-status .entry-content p:last-child {
-	margin-bottom: 0;
-}
-
-.format-status .entry-meta {
-	margin-top: 0;
-	padding-bottom: 40px;
-}
-
-.format-status .entry-meta .date a:before {
-	content: "\f105";
-}
-
-/* Video */
-.format-video {
-	background-color: #db572f;
-}
-
-.format-video .entry-content a,
-.format-video .entry-meta a,
-.format-video .entry-content a:hover,
-.format-video .entry-meta a:hover {
-	color: #fbfaf3;
-}
-
-.format-video .entry-title {
-	font-size: 50px;
-	font-weight: 400;
-}
-
-.format-video .entry-meta {
-	color: #220e10;
-}
-
-
-/**
- * 5.6 Attachments
- * ----------------------------------------------------------------------------
- */
-
-.attachment .hentry {
-	background-color: #e8e5ce;
-	margin: 0;
-	padding: 0;
-}
-
-.attachment .entry-header {
-	margin-bottom: 0;
-	max-width: 1040px;
-	padding: 30px 0;
-}
-
-.attachment .entry-title {
-	display: inline-block;
-	float: left;
-	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0;
-}
-
-.attachment .entry-title:before {
-	content: "\f416";
-	font-size: 32px;
-	margin-right: 10px;
-}
-
-.attachment .entry-meta {
-	clear: none;
-	color: inherit;
-	float: right;
-	max-width: 604px;
-	padding: 9px 0 0;
-	text-align: right;
-}
-
-.hentry.attachment:not(.image-attachment) .entry-meta {
-	max-width: 104px;
-}
-
-.attachment footer.entry-meta {
-	display: none;
-}
-
-.attachment-meta:before {
-	content: "\f307";
-}
-
-.full-size-link a:before {
-	content: "\f402";
-}
-
-.full-size-link:before {
-	content: none;
-}
-
-.attachment .entry-meta a,
-.attachment .entry-meta .edit-link:before,
-.attachment .full-size-link:before {
-	color: #ca3c08;
-}
-
-.attachment .entry-content {
-	background-color: #fff;
-	max-width: 100%;
-	padding: 40px 0;
-}
-
-.image-navigation {
-	margin: 0 auto;
-	max-width: 1040px;
-	position: relative;
-}
-
-.image-navigation a:hover {
-	text-decoration: none;
-}
-
-.image-navigation .nav-previous,
-.image-navigation .nav-next {
-	position: absolute;
-	top: 50px;
-}
-
-.image-navigation .nav-previous {
-	left: 0;
-}
-
-.image-navigation .nav-next {
-	right: 0;
-}
-
-.image-navigation .meta-nav {
-	font-size: 32px;
-	font-weight: 300;
-	vertical-align: -4px;
-}
-
-.attachment .entry-attachment,
-.attachment .type-attachment p {
-	margin: 0 auto;
-	max-width: 724px;
-	text-align: center;
-}
-
-.attachment .entry-attachment .attachment {
-	display: inline-block;
-}
-
-.attachment .entry-caption {
-	text-align: left;
-}
-
-.attachment .entry-description {
-	margin: 20px auto 0;
-	max-width: 604px;
-}
-
-.attachment .entry-caption p:last-child,
-.attachment .entry-description p:last-child {
-	margin: 0;
-}
-
-.attachment .site-main .sidebar-container {
-	display: none;
-}
-
-.attachment .entry-content .mejs-audio {
-	max-width: 400px;
-	margin: 0 auto;
-}
-
-.attachment .entry-content .wp-video {
-	margin: 0 auto;
-}
-
-.attachment .entry-content .mejs-container {
-	margin-bottom: 24px;
-}
-
-/**
- * 5.7 Post/Paging Navigation
- * ----------------------------------------------------------------------------
- */
-
-.navigation .nav-previous {
-	float: left;
-}
-
-.navigation .nav-next {
-	float: right;
-}
-
-.navigation a {
-	color: #bc360a;
-}
-
-.navigation a:hover {
-	color: #ea9629;
-	text-decoration: none;
-}
-
-.paging-navigation {
-	background-color: #e8e5ce;
-	padding: 40px 0;
-}
-
-.paging-navigation .nav-links {
-	margin: 0 auto;
-	max-width: 604px;
-	width: 100%;
-}
-
-.sidebar .paging-navigation .nav-links {
-	max-width: 1040px;
-	padding: 0 376px 0 60px;
-}
-
-.paging-navigation .nav-next {
-	padding: 13px 0;
-}
-
-.paging-navigation a {
-	font-size: 22px;
-	font-style: italic;
-	font-weight: 300;
-}
-
-.paging-navigation .meta-nav {
-	background-color: #e63f2a;
-	border-radius: 50%;
-	color: #fff;
-	display: inline-block;
-	font-size: 26px;
-	padding: 3px 0 8px;
-	text-align: center;
-	width: 50px;
-}
-
-.paging-navigation .nav-previous .meta-nav {
-	margin-right: 10px;
-	padding: 17px 0 23px;
-	width: 80px;
-}
-
-.paging-navigation .nav-next .meta-nav {
-	margin-left: 10px;
-}
-
-.paging-navigation a:hover .meta-nav {
-	background-color: #ea9629;
-	text-decoration: none;
-}
-
-.post-navigation {
-	background-color: #fff;
-	color: #ca3c08;
-	font-size: 20px;
-	font-style: italic;
-	font-weight: 300;
-	padding: 20px 0;
-}
-
-.post-navigation .nav-links {
-	margin: 0 auto;
-	max-width: 1040px;
-}
-
-.sidebar .post-navigation .nav-links {
-	padding: 0 376px 0 60px;
-}
-
-.post-navigation a[rel="next"] {
-	float: right;
-	text-align: right;
-}
-
-
-/**
- * 5.8 Author Bio
- * ----------------------------------------------------------------------------
- */
-
-.author-info {
-	margin: 0 auto;
-	max-width: 604px;
-	padding: 30px 0 10px;
-	text-align: left; /* gallery & video post formats */
-	width: 100%;
-}
-
-.author.sidebar .author-info {
-	max-width: 1040px;
-	padding: 30px 376px 10px 60px;
-}
-
-.single .author-info {
-	padding: 50px 0 0;
-}
-
-.author-avatar .avatar {
-	float: left;
-	margin: 0 30px 30px 0;
-}
-
-.single-format-status .author-description {
-	color: #f7f5e7;
-}
-
-.author-description .author-title {
-	clear: none;
-	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0 0 8px;
-}
-
-.author-link {
-	color: #ca3c08;
-	margin-left: 2px;
-}
-
-.author.archive .author-link {
-	display: none;
-}
-
-
-/**
- * 5.9 Archives
- * ----------------------------------------------------------------------------
- */
-
-.archive-header {
-	background-color: #e8e5ce;
-}
-
-.archive-title,
-.archive-meta {
-	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0 auto;
-	max-width: 1040px;
-	padding: 30px 0;
-	width: 100%;
-}
-
-.archive-meta {
-	font-size: 16px;
-	font-style: normal;
-	font-weight: normal;
-	margin-top: -15px;
-	padding: 0 0 11px;
-}
-
-.sidebar .archive-meta {
-	padding-right: 316px;
-}
-
-
-/**
- * 5.10 Search Results/No posts
- * ----------------------------------------------------------------------------
- */
-
-.page-header {
-	background-color: #e8e5ce;
-}
-
-.page-title {
-	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0 auto;
-	max-width: 1040px;
-	padding: 30px 0;
-	width: 100%;
-}
-
-.page-content {
-	margin: 0 auto;
-	max-width: 604px;
-	padding: 40px 0;
-	width: 100%;
-}
-
-.sidebar .page-content {
-	margin: 0 auto;
-	max-width: 1040px;
-	padding: 40px 376px 40px 60px;
-}
-
-
-/**
- * 5.11 404
- * ----------------------------------------------------------------------------
- */
-
-.error404 .page-header {
-	background-color: #fff;
-}
-
-.error404 .page-title {
-	line-height: 0.6;
-	margin: 0;
-	padding: 300px;
-	position: relative;
-	text-align: center;
-	width: auto;
-}
-
-.error404 .page-title:before {
-	color: #e8e5ce;
-	content: "\f423";
-	font-size: 964px;
-	line-height: 0.6;
-	overflow: hidden;
-	position: absolute;
-	left: 7px;
-	top: 28px;
-}
-
-.error404 .page-wrapper {
-	background-color: #e8e5ce;
-}
-
-.error404 .page-header,
-.error404 .page-content {
-	margin: 0 auto;
-	max-width: 1040px;
-	padding-bottom: 40px;
-	width: 100%;
-}
-
-
-/**
- * 5.12 Comments
- * ----------------------------------------------------------------------------
- */
-
-.comments-title,
-.comment-list,
-.comment-reply-title,
-.must-log-in,
-.comment-respond .comment-form,
-.comment-respond iframe {
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-	max-width: 604px;
-	width: 100%;
-}
-
-.sidebar .comments-title,
-.sidebar .comment-list,
-.sidebar .must-log-in,
-.sidebar .comment-reply-title,
-.sidebar .comment-navigation,
-.sidebar .comment-respond .comment-form {
-	max-width: 1040px;
-	padding-left: 60px;
-	padding-right: 376px;
-}
-
-.comments-title {
-	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
-}
-
-.comment-list,
-.comment-list .children {
-	list-style-type: none;
-	padding: 0;
-}
-
-.comment-list .children {
-	margin-left: 20px;
-}
-
-.comment-list > li:after,
-.comment-list .children > li:before {
-	background: url(images/dotted-line.png) repeat left top;
-	background-size: 4px 4px;
-	content: "";
-	display: block;
-	height: 1px;
-	width: 100%;
-}
-
-.comment-list > li:last-child:after {
-	display: none;
-}
-
-.comment-body {
-	padding: 24px 0;
-	position: relative;
-}
-
-.comment-author {
-	float: left;
-	max-width: 74px;
-}
-
-.comment-author .avatar {
-	display: block;
-	margin-bottom: 10px;
-}
-
-.comment-author .fn {
-	word-wrap: break-word;
-}
-
-.comment-author .fn,
-.comment-author .url,
-.comment-reply-link,
-.comment-reply-login {
-	color: #bc360a;
-	font-size: 14px;
-	font-style: normal;
-	font-weight: normal;
-}
-
-.says {
-	display: none;
-}
-
-.no-avatars .comment-author {
-	margin: 0 0 5px;
-	max-width: 100%;
-	position: relative;
-}
-
-.no-avatars .comment-metadata,
-.no-avatars .comment-content,
-.no-avatars .comment-list .reply {
-	width: 100%;
-}
-
-.bypostauthor > .comment-body .fn:before {
-	content: "\f408";
-	vertical-align: text-top;
-}
-
-.comment-list .edit-link {
-	margin-left: 20px;
-}
-
-.comment-metadata,
-.comment-awaiting-moderation,
-.comment-content,
-.comment-list .reply {
-	float: right;
-	width: 79%;
-	width: -webkit-calc(100% - 124px);
-	width:         calc(100% - 124px);
-	word-wrap: break-word;
-}
-
-.comment-meta,
-.comment-meta a {
-	color: #a2a2a2;
-	font-size: 13px;
-}
-
-.comment-meta a:hover {
-	color: #ea9629;
-}
-
-.comment-metadata {
-	margin-bottom: 20px;
-}
-
-.ping-meta {
-	color: #a2a2a2;
-	font-size: 13px;
-	line-height: 2;
-}
-
-.comment-awaiting-moderation {
-	color: #a2a2a2;
-}
-
-.comment-awaiting-moderation:before {
-	content: "\f414";
-	margin-right: 5px;
-	position: relative;
-	top: -2px;
-}
-
-.comment-reply-link:before,
-.comment-reply-login:before {
-	content: "\f412";
-	margin-right: 3px;
-}
-
-/* Comment form */
-.comment-respond {
-	background-color: #f7f5e7;
-	padding: 30px 0;
-}
-
-.comment .comment-respond {
-	margin-bottom: 20px;
-	padding: 20px;
-}
-
-.comment-reply-title {
-	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
-}
-
-.comment-reply-title small a {
-	color: #131310;
-	display: inline-block;
-	float: right;
-	height: 16px;
-	overflow: hidden;
-	width: 16px;
-}
-
-.comment-reply-title small a:hover {
-	color: #ed331c;
-	text-decoration: none;
-}
-
-.comment-reply-title small a:before {
-	content: "\f406";
-	vertical-align: top;
-}
-
-.sidebar .comment-list .comment-reply-title,
-.sidebar .comment-list .comment-respond .comment-form {
-	padding: 0;
-}
-
-.comment-form .comment-notes {
-	margin-bottom: 15px;
-}
-
-.comment-form .comment-form-author,
-.comment-form .comment-form-email,
-.comment-form .comment-form-url {
-	margin-bottom: 8px;
-}
-
-.comment-form [for="author"],
-.comment-form [for="email"],
-.comment-form [for="url"],
-.comment-form [for="comment"] {
-	float: left;
-	padding: 5px 0;
-	width: 120px;
-}
-
-.comment-form .required {
-	color: #ed331c;
-}
-
-.comment-form input[type="text"],
-.comment-form input[type="email"],
-.comment-form input[type="url"] {
-	max-width: 270px;
-	width: 60%;
-}
-
-.comment-form textarea {
-	width: 100%;
-}
-
-.comment-form #wp-comment-cookies-consent {
-	margin: 0 10px 0 0;
-}
-
-.form-allowed-tags,
-.form-allowed-tags code {
-	color: #686758;
-	font-size: 12px;
-}
-
-.form-allowed-tags code {
-	font-size: 10px;
-	margin-left: 3px;
-}
-
-.comment-list .pingback,
-.comment-list .trackback {
-	padding-top: 24px;
-}
-
-.comment-navigation {
-	font-size: 20px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 0 auto;
-	max-width: 604px;
-	padding: 20px 0 30px;
-	width: 100%;
-}
-
-.no-comments {
-	background-color: #f7f5e7;
-	font-size: 20px;
-	font-style: italic;
-	font-weight: 300;
-	margin: 0;
-	padding: 40px 0;
-	text-align: center;
-}
-
-.sidebar .no-comments {
-	padding-left: 60px;
-	padding-right: 376px;
-}
-
-
-/**
- * 5.13 Multisite
- * ----------------------------------------------------------------------------
- */
-
-.site-main .mu_register {
-	margin: 0 auto;
-	max-width: 604px;
-	width: 100%;
-}
-
-.mu_alert {
-	margin-top: 25px;
-}
-
-.site-main .mu_register input[type="submit"],
-.site-main .mu_register #blog_title,
-.site-main .mu_register #user_email,
-.site-main .mu_register #blogname,
-.site-main .mu_register #user_name {
-	font-size: inherit;
-	width: 270px;
-}
-
-.site-main .mu_register input[type="submit"] {
-	width: auto;
-}
-
-
-/**
- * 6.0 Sidebar
- * ----------------------------------------------------------------------------
- */
-
-.site-main .widget-area {
-	float: right;
-	width: 300px;
-}
-
-
-/**
- * 6.1 Widgets
- * ----------------------------------------------------------------------------
- */
-
-.widget {
-	background-color: rgba(247, 245, 231, 0.7);
-	font-size: 14px;
-	-webkit-hyphens: auto;
-	-moz-hyphens:    auto;
-	-ms-hyphens:     auto;
-	hyphens:         auto;
-	margin: 0 0 24px;
-	padding: 20px;
-	word-wrap: break-word;
-}
-
-.widget .widget-title {
-	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
-	margin: 0 0 10px;
-}
-
-.widget ul,
-.widget ol {
-	list-style-type: none;
-	margin: 0;
-	padding: 0;
-}
-
-.widget li {
-	padding: 5px 0;
-}
-
-.widget .children li:last-child {
-	padding-bottom: 0;
-}
-
-.widget li > ul,
-.widget li > ol {
-	margin-left: 20px;
-}
-
-.widget a {
-	color: #bc360a;
-}
-
-.widget a:hover {
-	color: #ea9629;
-}
-
-/* Search widget */
-.search-form .search-submit {
-	display: none;
-}
-
-/* RSS Widget */
-.widget_rss .rss-date {
-	display: block;
-}
-
-.widget_rss .rss-date,
-.widget_rss li > cite {
-	color: #a2a2a2;
-}
-
-/* Calendar Widget */
-.widget_calendar table,
-.widget_calendar td {
-	border: 0;
-	border-collapse: separate;
-	border-spacing: 1px;
-}
-
-.widget_calendar caption {
-	font-size: 14px;
-	margin: 0;
-}
-
-.widget_calendar th,
-.widget_calendar td {
-	padding: 0;
-	text-align: center;
-}
-
-.widget_calendar a {
-	display: block;
-}
-
-.widget_calendar a:hover {
-	background-color: rgba(0, 0, 0, 0.15);
-}
-
-.widget_calendar tbody td {
-	background-color: rgba(255, 255, 255, 0.5);
-}
-
-.site-footer .widget_calendar tbody td {
-	background-color: rgba(255, 255, 255, 0.05);
-}
-
-.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
-	background-color: transparent;
-}
-
-/* Text widget */
-.widget_text ul,
-.widget_text ol {
-	padding-left: 20px;
-	margin-bottom: 16px;
-}
-
-.widget_text li:last-child {
-	padding-bottom: 0;
-}
-
-.widget_text li > ul,
-.widget_text li > ol {
-	margin-bottom: 0;
-}
-
-.widget_text ul {
-	list-style: square;
-}
-
-.widget_text ol {
-	list-style: decimal;
-}
-
-/* Tag Cloud widget */
-.tagcloud ul {
-	list-style-type: none;
-}
-
-.tagcloud ul li {
-	display: inline-block;
-	padding: 0;
-}
-
-/* Gallery Widget */
-.widget .gallery-columns-1 .gallery-item {
-	max-width: 100%;
-}
-
-.widget .gallery-columns-2 .gallery-item {
-	max-width: 49%;
-	max-width: -webkit-calc(50% - 4px);
-	max-width:         calc(50% - 4px);
-}
-
-.widget .gallery-columns-3 .gallery-item {
-	max-width: 22%;
-	max-width: -webkit-calc(33% - 4px);
-	max-width:         calc(33% - 4px);
-}
-
-/**
- * 7.0 Footer
- * ----------------------------------------------------------------------------
- */
-
-.site-footer {
-	background-color: #e8e5ce;
-	color: #686758;
-	font-size: 14px;
-	text-align: center;
-}
-
-.site-footer .widget-area,
-.sidebar .site-footer {
-	text-align: left;
-}
-
-.site-footer a {
-	color: #686758;
-}
-
-.site-footer .sidebar-container {
-	background-color: #220e10;
-	padding: 20px 0;
-}
-
-.site-footer .widget-area {
-	margin: 0 auto;
-	max-width: 1040px;
-	width: 100%;
-}
-
-.sidebar .site-footer .widget-area {
-	max-width: 724px;
-	position: relative;
-	left: -158px;
-}
-
-.site-footer .widget {
-	background: transparent;
-	color: #fff;
-	float: left;
-	margin-right: 20px;
-	width: 245px;
-}
-
-.sidebar .site-footer .widget {
-	width: 228px;
-}
-
-.sidebar .site-footer .widget:nth-of-type(4),
-.sidebar .site-footer .widget:nth-of-type(3) {
-	margin-right: 0;
-}
-
-.site-footer .widget a {
-	color: #e6402a;
-}
-
-.site-footer .widget-title,
-.site-footer .widget-title a,
-.site-footer .wp-caption-text {
-	color: #fff;
-}
-
-.site-info {
-	margin: 0 auto;
-	max-width: 1040px;
-	padding: 30px 0;
-	width: 100%;
-}
-
-#wpstats {
-	display: block;
-	margin: -10px auto 0;
-}
-
-.site-footer span[role=separator] {
-	padding: 0 0.25em 0 0.5em;
-}
-
-.site-footer span[role=separator]::before {
-	content: '\002f';
-}
-
-/**
- * 8.0 Media Queries
- * ----------------------------------------------------------------------------
- */
-
-/* Does the same thing as <meta name="viewport" content="width=device-width">,
- * but in the future W3C standard way. -ms- prefix is required for IE10+ to
- * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
- * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
- */
-@-ms-viewport {
-	width: device-width;
-}
-@viewport {
-	width: device-width;
-}
-
-@media (max-width: 1599px) {
-	.site {
-		border: 0;
-	}
-}
-
-@media (max-width: 1069px) {
-	.sidebar img.alignleft,
-	.sidebar .wp-caption.alignleft {
-		margin-left: 0;
-	}
-
-	.sidebar img.alignright,
-	.sidebar .wp-caption.alignright {
-		margin-right: 0;
-	}
-
-	.error404 .page-header {
-		margin-left: auto;
-		max-width: 604px;
-		width: 100%;
-	}
-
-	.archive-header,
-	.search .page-header,
-	.archive .page-header,
-	.blog .page-header,
-	.error404 .page-content,
-	.search .page-content,
-	.archive .page-content,
-	.attachment .entry-header,
-	.attachment .entry-content,
-	.post-navigation .nav-links,
-	.sidebar .site-info,
-	.site-footer .widget-area {
-		padding-left: 20px;
-		padding-right: 20px;
-	}
-
-	.error404 .page-title {
-		font-size: 24px;
-		padding: 180px;
-	}
-
-	.error404 .page-title:before {
-		font-size: 554px;
-	}
-
-	.attachment .image-navigation {
-		max-width: 724px;
-	}
-
-	.image-navigation .nav-previous,
-	.image-navigation .nav-next {
-		position: static;
-	}
-
-	.site-main .widget-area {
-		margin-right: 60px;
-	}
-}
-
-@media (max-width: 999px) {
-	.sidebar .entry-header,
-	.sidebar .entry-content,
-	.sidebar .entry-summary,
-	.sidebar .entry-meta,
-	.sidebar .comment-list,
-	.sidebar .comment-reply-title,
-	.sidebar .comment-navigation,
-	.sidebar .comment-respond .comment-form,
-	.sidebar .featured-gallery,
-	.sidebar .post-navigation .nav-links,
-	.author.sidebar .author-info {
-		max-width: 604px;
-		padding-left: 0;
-		padding-right: 0;
-	}
-
-	.sidebar .site-info,
-	.search.sidebar .page-content,
-	.blog.sidebar .page-content,
-	.attachment .entry-header,
-	.sidebar .comments-title {
-		max-width: 604px;
-	}
-
-	.sidebar .archive-meta,
-	.attachment .entry-header,
-	.search.sidebar .page-content,
-	.blog.sidebar .page-content,
-	.sidebar .site-info,
-	.sidebar .comments-title,
-	.sidebar .no-comments {
-		padding-left: 0;
-		padding-right: 0;
-	}
-
-	.attachment .entry-meta {
-		float: left;
-		text-align: left;
-		width: 100%;
-	}
-
-	.attachment .entry-content {
-		max-width: 100%;
-		padding: 40px 0;
-	}
-
-	.format-status .entry-content {
-		padding-top: 40px;
-	}
-
-	.format-status .entry-meta {
-		padding-bottom: 40px;
-	}
-
-	.sidebar .format-status .entry-content,
-	.sidebar .format-status .entry-meta {
-		padding-left: 35px;
-	}
-
-	.sidebar .format-status .entry-content:before,
-	.sidebar .format-status .entry-meta:before {
-		left: 10px;
-	}
-
-	.sidebar .format-status .entry-content p:first-child:before {
-		left: 4px;
-	}
-
-	.sidebar .paging-navigation .nav-links {
-		padding: 0 60px;
-	}
-
-	.site-main .sidebar-container {
-		height: auto;
-		margin: 0 auto;
-		max-width: 604px;
-		position: relative;
-		top: 20px;
-	}
-
-	.site-main .widget-area {
-		float: none;
-		margin: 0;
-		width: 100%;
-	}
-
-	.sidebar .site-footer .widget-area {
-		max-width: 100%;
-		left: 0;
-	}
-}
-
-/* Collapse oversized image and pulled images after iPad breakpoint. */
-@media (max-width: 767px) {
-	.site-header .home-link {
-		min-height: 0;
-	}
-	.site-title {
-		font-size: 36px;
-		padding: 8px 0 10px;
-	}
-	.entry-content img.alignleft,
-	.entry-content .wp-caption.alignleft {
-		margin-left: 0;
-	}
-
-	.entry-content img.alignright,
-	.entry-content .wp-caption.alignright {
-		margin-right: 0;
-	}
-
-	.attachment .image-navigation,
-	.attachment .entry-attachment .attachment {
-		max-width: 604px;
-		padding: 0;
-		width: 100%;
-	}
-
-	.gallery-caption {
-		display: none;
-	}
-}
-
-@media (max-width: 643px) {
-	.site-title {
-		font-size: 30px;
-	}
-
-	#content .entry-header,
-	#content .entry-content,
-	#content .entry-summary,
-	#content footer.entry-meta,
-	#content .featured-gallery,
-	.search.sidebar .page-content,
-	.blog.sidebar .page-content,
-	.sidebar .post-navigation .nav-links,
-	.paging-navigation .nav-links,
-	#content .author-info,
-	.comments-area .comments-title,
-	.comments-area .comment-list,
-	.comments-area .comment-navigation,
-	.comment-respond,
-	.sidebar .site-info,
-	.sidebar .paging-navigation .nav-links {
-		padding-left: 20px;
-		padding-right: 20px;
-	}
-
-	#content .format-status .entry-content,
-	#content .format-status .entry-met {
-		padding-left: 35px;
-	}
-
-	/* Small menu */
-	.menu-toggle {
-		cursor: pointer;
-		display: inline-block;
-		font: bold 16px/1.3 "Source Sans Pro", Helvetica, sans-serif;
-		margin: 0;
-	}
-
-	.menu-toggle,
-	.menu-toggle:hover,
-	.menu-toggle:focus,
-	.menu-toggle:active {
-		background: none;
-		border: none;
-		color: #141412;
-		padding: 12px 0 12px 20px;
-	}
-
-	.menu-toggle:focus {
-		outline: thin dotted;
-	}
-
-	.menu-toggle:after {
-		content: "\f502";
-		font-size: 12px;
-		padding-left: 8px;
-		vertical-align: -4px;
-	}
-
-	.toggled-on .menu-toggle:after {
-		content: "\f500";
-		vertical-align: 2px;
-	}
-
-	.toggled-on .nav-menu,
-	.toggled-on .nav-menu > ul {
-		display: block;
-		margin-left: 0;
-		padding: 0;
-		width: 100%;
-	}
-
-	.toggled-on li,
-	.toggled-on .children {
-		display: block;
-	}
-
-	.toggled-on .nav-menu li > ul {
-		background-color: transparent;
-		display: block;
-		float: none;
-		margin-left: 20px;
-		position: relative;
-		left: auto;
-		top: auto;
-	}
-
-	.toggled-on .nav-menu li > ul a {
-		color: #141412;
-		width: auto;
-	}
-
-	.toggled-on .nav-menu li:hover > a,
-	.toggled-on .nav-menu .children a {
-		background-color: transparent;
-		color: #141412;
-	}
-
-	.toggled-on .nav-menu > li a:hover,
-	.toggled-on .nav-menu > ul a:hover {
-		background-color: #db572f;
-		color: #fff;
-	}
-
-	.toggled-on .nav-menu > li a:focus,
-	.toggled-on .nav-menu > ul a:focus {
-		background-color: #220e10;
-		color: #fff;
-	}
-
-	ul.nav-menu,
-	div.nav-menu > ul {
-		display: none;
-	}
-
-	#content .featured-gallery {
-		padding-left: 24px;
-	}
-
-	.gallery-columns-1 .gallery-item {
-		margin-right: 0;
-		width: 100%;
-	}
-
-	.entry-title,
-	.format-chat .entry-title,
-	.format-image .entry-title,
-	.format-gallery .entry-title,
-	.format-video .entry-title {
-		font-size: 22px;
-		font-weight: bold;
-	}
-
-	.format-quote blockquote,
-	.format-status .entry-content {
-		font-size: 18px;
-	}
-
-	.format-quote blockquote small,
-	.format-quote blockquote cite {
-		font-size: 13px;
-	}
-
-	.error404 .page-title {
-		padding: 40px 0 0;
-	}
-
-	.error404 .page-title:before {
-		content: normal;
-	}
-
-	.comment-author {
-		margin-right: 30px;
-	}
-
-	.comment-author .avatar {
-		height: auto;
-		max-width: 100%;
-	}
-
-	.comment-metadata,
-	.comment-content,
-	.comment-list .reply {
-		width: 70%;
-		width: -webkit-calc(100% - 104px);
-		width:         calc(100% - 104px);
-	}
-
-	.comment-form input[type="text"],
-	.comment-form input[type="email"],
-	.comment-form input[type="url"] {
-		width: -webkit-calc(100% - 120px);
-		width:         calc(100% - 120px);
-	}
-
-	.comment-form textarea {
-		height: 80px; /* Smaller field for mobile. */
-	}
-
-	/* Audio */
-	.format-audio .entry-content:before {
-		display: none;
-	}
-
-	.format-audio .audio-content {
-		background-image: none;
-		float: none;
-		padding-left: 0;
-		width: auto;
-	}
-}
-
-/* Mobile devices */
-@media (max-width: 359px) {
-	.site-title {
-		font-weight: normal;
-	}
-	.site-description {
-	    clip: rect(1px, 1px, 1px, 1px);
-	    position: absolute;
-	}
-	.gallery {
-		margin-left: 0;
-	}
-
-	.gallery .gallery-item,
-	.gallery-columns-2.gallery-size-thumbnail .gallery-item {
-		max-width: none;
-		width: 49%;
-		width: -webkit-calc(50% - 4px);
-		width:         calc(50% - 4px);
-	}
-
-	.gallery-columns-1.gallery-size-medium,
-	.gallery-columns-1.gallery-size-thumbnail,
-	.gallery-columns-2.gallery-size-thumbnail,
-	.gallery-columns-3.gallery-size-thumbnail {
-		display: block;
-	}
-
-	.gallery-columns-1 .gallery-item,
-	.gallery-columns-1.gallery-size-medium .gallery-item,
-	.gallery-columns-1.gallery-size-thumbnail .gallery-item {
-		text-align: center;
-		width: 98%;
-		width: -webkit-calc(100% - 4px);
-		width:         calc(100% - 4px);
-	}
-
-	.gallery-columns-3 .gallery-item:nth-of-type(3n),
-	.gallery-columns-5 .gallery-item:nth-of-type(5n),
-	.gallery-columns-7 .gallery-item:nth-of-type(7n),
-	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
-		margin-right: 4px;
-	}
-
-	.gallery br {
-		display: none;
-	}
-
-	.gallery .gallery-item:nth-of-type(even) {
-		margin-right: 0;
-	}
-
-	/* Comments */
-	.comment-author {
-		margin: 0 0 5px;
-		max-width: 100%;
-	}
-
-	.comment-author .avatar {
-		display: inline;
-		margin: 0 5px 0 0;
-		max-width: 20px;
-	}
-
-	.comment-metadata,
-	.comment-content,
-	.comment-list .reply {
-		width: 100%;
-	}
-}
-
-
-/**
- * 9.0 Print
- * ----------------------------------------------------------------------------
- */
-
-/* Retina-specific styles. */
-@media print,
-	(-o-min-device-pixel-ratio: 5/4),
-	(-webkit-min-device-pixel-ratio: 1.25),
-	(min-resolution: 120dpi) {
-
-	.site-header .search-field {
-		background-image: url(images/search-icon-2x.png);
-	}
-
-	.format-audio .audio-content,
-	.format-status .entry-content:before,
-	.format-status .entry-meta:before,
-	.comment-list > li:after,
-	.comment-list .children > li:before {
-		background-image: url(images/dotted-line-2x.png);
-	}
-}
-
-@media print {
-	body {
-		background: none !important;
-		color: #000;
-		font-size: 10pt;
-	}
-
-	footer a[rel="bookmark"]:link:after,
-	footer a[rel="bookmark"]:visited:after {
-		content: " [" attr(href) "] "; /* Show URLs */
-	}
-
-	.site {
-		max-width: 98%;
-	}
-
-	.site-header {
-		background-image: none !important;
-	}
-
-	.site-header .home-link {
-		max-width: none;
-		min-height: 0;
-	}
-
-	.site-title {
-		color: #000;
-		font-size: 21pt;
-	}
-
-	.site-description {
-		font-size: 10pt;
-	}
-
-	.author-avatar,
-	.site-footer,
-	.comment-respond,
-	.comments-area .comment-edit-link,
-	.comments-area .reply,
-	.comments-link,
-	.entry-meta .edit-link,
-	.page-links,
-	.site-content nav,
-	.widget-area,
-	.main-navigation,
-	.navbar,
-	.more-link {
-		display: none;
-	}
-
-	.entry-header,
-	.entry-content,
-	.entry-summary,
-	.entry-meta {
-		margin: 0;
-		width: 100%;
-	}
-
-	.page-title,
-	.entry-title {
-		font-size: 21pt;
-	}
-
-	.entry-meta,
-	.entry-meta a {
-		color: #444;
-		font-size: 10pt;
-	}
-
-	.entry-content img.alignleft,
-	.entry-content .wp-caption.alignleft {
-		margin-left: 0;
-	}
-
-	.entry-content img.alignright,
-	.entry-content .wp-caption.alignright {
-		margin-right: 0;
-	}
-
-	.format-image .entry-content .size-full {
-		margin: 0;
-	}
-
-	/* Remove colors from post formats */
-	.hentry {
-		background-color: #fff;
-	}
-
-	/* Comments */
-	.comments-area > li.comment {
-		background: none;
-		position: relative;
-		width: auto;
-	}
-
-	.comment-metadata {
-		float: none;
-	}
-
-	.comment-author .fn,
-	.comment-reply-link,
-	.comment-reply-login {
-		color: #333;
-	}
-}
+/*
+Theme Name: Twenty Thirteen
+Theme URI: https://wordpress.org/themes/twentythirteen/
+Author: the WordPress team
+Author URI: https://wordpress.org/
+Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
+Version: 3.0
+Requires at least: 3.6
+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, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
+Text Domain: twentythirteen
+
+This theme, like WordPress, is licensed under the GPL.
+Use it to make something cool, have fun, and share what you've learned with others.
+*/
+
+
+/**
+ * Table of Contents:
+ *
+ * 1.0 - Reset
+ * 2.0 - Repeatable Patterns
+ * 3.0 - Basic Structure
+ * 4.0 - Header
+ *   4.1 - Site Header
+ *   4.2 - Navigation
+ * 5.0 - Content
+ *   5.1 - Entry Header
+ *   5.2 - Entry Meta
+ *   5.3 - Entry Content
+ *   5.4 - Galleries
+ *   5.5 - Post Formats
+ *   5.6 - Attachments
+ *   5.7 - Post/Paging Navigation
+ *   5.8 - Author Bio
+ *   5.9 - Archives
+ *   5.10 - Search Results/No posts
+ *   5.11 - 404
+ *   5.12 - Comments
+ *   5.13 - Multisite
+ * 6.0 - Sidebar
+ *   6.1 - Widgets
+ * 7.0 - Footer
+ * 8.0 - Media Queries
+ * 9.0 - Print
+ * ----------------------------------------------------------------------------
+ */
+
+
+/**
+ * 1.0 Reset
+ *
+ * Modified from Normalize.css to provide cross-browser consistency and a smart
+ * default styling of HTML elements.
+ *
+ * @see http://git.io/normalize
+ * ----------------------------------------------------------------------------
+ */
+
+* {
+	-webkit-box-sizing: border-box;
+	-moz-box-sizing:    border-box;
+	box-sizing:         border-box;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+nav,
+section,
+summary {
+	display: block;
+}
+
+audio,
+canvas,
+video {
+	display: inline-block;
+}
+
+audio:not([controls]) {
+	display: none;
+	height: 0;
+}
+
+[hidden] {
+	display: none;
+}
+
+html {
+	font-size: 100%;
+	overflow-y: scroll;
+	-webkit-text-size-adjust: 100%;
+	-ms-text-size-adjust: 100%;
+}
+
+html,
+button,
+input,
+select,
+textarea {
+	font-family: "Source Sans Pro", Helvetica, sans-serif;
+}
+
+body {
+	color: #141412;
+	line-height: 1.5;
+	margin: 0;
+}
+
+a {
+	color: #ca3c08;
+	text-decoration: none;
+}
+
+a:visited {
+	color: #ac0404;
+}
+
+a:focus {
+	outline: thin dotted;
+}
+
+a:active,
+a:hover {
+	color: #ea9629;
+	outline: 0;
+}
+
+a:hover {
+	text-decoration: underline;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	clear: both;
+	font-family: Bitter, Georgia, serif;
+	line-height: 1.3;
+}
+
+h1 {
+	font-size: 48px;
+	margin: 33px 0;
+}
+
+h2 {
+	font-size: 30px;
+	margin: 25px 0;
+}
+
+h3 {
+	font-size: 22px;
+	margin: 22px 0;
+}
+
+h4 {
+	font-size: 20px;
+	margin: 25px 0;
+}
+
+h5 {
+	font-size: 18px;
+	margin: 30px 0;
+}
+
+h6 {
+	font-size: 16px;
+	margin: 36px 0;
+}
+
+address {
+	font-style: italic;
+	margin: 0 0 24px;
+}
+
+abbr[title] {
+	border-bottom: 1px dotted;
+}
+
+b,
+strong {
+	font-weight: bold;
+}
+
+dfn {
+	font-style: italic;
+}
+
+mark {
+	background: #ff0;
+	color: #000;
+}
+
+p {
+	margin: 0 0 24px;
+}
+
+code,
+kbd,
+pre,
+samp {
+	font-family: monospace, serif;
+	font-size: 14px;
+	-webkit-hyphens: none;
+	-moz-hyphens:    none;
+	-ms-hyphens:     none;
+	hyphens:         none;
+}
+
+pre {
+	background: #f5f5f5;
+	color: #666;
+	font-family: monospace;
+	font-size: 14px;
+	margin: 20px 0;
+	overflow: auto;
+	padding: 20px;
+	white-space: pre;
+	white-space: pre-wrap;
+	word-wrap: break-word;
+}
+
+blockquote,
+q {
+	-webkit-hyphens: none;
+	-moz-hyphens:    none;
+	-ms-hyphens:     none;
+	hyphens:         none;
+	quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+	content: "";
+	content: none;
+}
+
+blockquote {
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 24px 40px;
+}
+
+blockquote blockquote {
+	margin-right: 0;
+}
+
+blockquote cite,
+blockquote small {
+	font-size: 14px;
+	font-weight: normal;
+	text-transform: uppercase;
+}
+
+blockquote em,
+blockquote i {
+	font-style: normal;
+	font-weight: 300;
+}
+
+blockquote strong,
+blockquote b {
+	font-weight: 400;
+}
+
+small {
+	font-size: smaller;
+}
+
+sub,
+sup {
+	font-size: 75%;
+	line-height: 0;
+	position: relative;
+	vertical-align: baseline;
+}
+
+sup {
+	top: -0.5em;
+}
+
+sub {
+	bottom: -0.25em;
+}
+
+dl {
+	margin: 0 20px;
+}
+
+dt {
+	font-weight: bold;
+}
+
+dd {
+	margin: 0 0 20px;
+}
+
+menu,
+ol,
+ul {
+	margin: 16px 0;
+	padding: 0 0 0 40px;
+}
+
+ul {
+	list-style-type: square;
+}
+
+nav ul,
+nav ol {
+	list-style: none;
+	list-style-image: none;
+}
+
+li > ul,
+li > ol {
+	margin: 0;
+}
+
+img {
+	-ms-interpolation-mode: bicubic;
+	border: 0;
+	vertical-align: middle;
+}
+
+svg:not(:root) {
+	overflow: hidden;
+}
+
+figure {
+	margin: 0;
+}
+
+form {
+	margin: 0;
+}
+
+fieldset {
+	border: 1px solid #c0c0c0;
+	margin: 0 2px;
+	min-width: inherit;
+	padding: 0.35em 0.625em 0.75em;
+}
+
+legend {
+	border: 0;
+	padding: 0;
+	white-space: normal;
+}
+
+button,
+input,
+select,
+textarea {
+	font-size: 100%;
+	margin: 0;
+	max-width: 100%;
+	vertical-align: baseline;
+}
+
+button,
+input {
+	line-height: normal;
+}
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+	-webkit-appearance: button;
+	cursor: pointer;
+}
+
+button[disabled],
+input[disabled] {
+	cursor: default;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+	padding: 0;
+}
+
+input[type="search"] {
+	-webkit-appearance: textfield;
+	padding-right: 2px; /* Don't cut off the webkit search cancel button */
+	width: 270px;
+}
+
+input[type="search"]::-webkit-search-decoration {
+	-webkit-appearance: none;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+	border: 0;
+	padding: 0;
+}
+
+textarea {
+	overflow: auto;
+	vertical-align: top;
+}
+
+table {
+	border-bottom: 1px solid #ededed;
+	border-collapse: collapse;
+	border-spacing: 0;
+	font-size: 14px;
+	line-height: 2;
+	margin: 0 0 20px;
+	width: 100%;
+}
+
+caption,
+th,
+td {
+	font-weight: normal;
+	text-align: left;
+}
+
+caption {
+	font-size: 16px;
+	margin: 20px 0;
+}
+
+th {
+	font-weight: bold;
+	text-transform: uppercase;
+}
+
+td {
+	border-top: 1px solid #ededed;
+	padding: 6px 10px 6px 0;
+}
+
+del {
+	color: #333;
+}
+
+ins {
+	background: #fff9c0;
+	text-decoration: none;
+}
+
+hr {
+	background: url(images/dotted-line.png) repeat center top;
+	background-size: 4px 4px;
+	border: 0;
+	height: 1px;
+	margin: 0 0 24px;
+}
+
+
+/**
+ * 2.0 Repeatable Patterns
+ * ----------------------------------------------------------------------------
+ */
+
+.genericon:before,
+.menu-toggle:after,
+.featured-post:before,
+.date a:before,
+.entry-meta .author a:before,
+.format-audio .entry-content:before,
+.comments-link a:before,
+.tags-links a:first-child:before,
+.categories-links a:first-child:before,
+.edit-link a:before,
+.attachment .entry-title:before,
+.attachment-meta:before,
+.attachment-meta a:before,
+.comment-awaiting-moderation:before,
+.comment-reply-link:before,
+.comment-reply-login:before,
+.comment-reply-title small a:before,
+.bypostauthor > .comment-body .fn:before,
+.error404 .page-title:before {
+	-webkit-font-smoothing: antialiased;
+	display: inline-block;
+	font: normal 16px/1 Genericons;
+	vertical-align: text-bottom;
+}
+
+/* Clearing floats */
+.clear:after,
+.attachment .entry-header:after,
+.site-footer .widget-area:after,
+.entry-content:after,
+.page-content:after,
+.navigation:after,
+.nav-links:after,
+.gallery:after,
+.comment-form-author:after,
+.comment-form-email:after,
+.comment-form-url:after,
+.comment-body:after {
+	clear: both;
+}
+
+.clear:before,
+.clear:after,
+.attachment .entry-header:before,
+.attachment .entry-header:after,
+.site-footer .widget-area:before,
+.site-footer .widget-area:after,
+.entry-content:before,
+.entry-content:after,
+.page-content:before,
+.page-content:after,
+.navigation:before,
+.navigation:after,
+.nav-links:before,
+.nav-links:after,
+.gallery:before,
+.gallery:after,
+.comment-form-author:before,
+.comment-form-author:after,
+.comment-form-email:before,
+.comment-form-email:after,
+.comment-form-url:before,
+.comment-form-url:after,
+.comment-body:before,
+.comment-body:after {
+	content: "";
+	display: table;
+}
+
+/* Assistive text */
+.screen-reader-text {
+	clip: rect(1px, 1px, 1px, 1px);
+	overflow: hidden;
+	position: absolute !important;
+	height: 1px;
+	width: 1px;
+}
+
+.screen-reader-text:focus {
+	background-color: #f1f1f1;
+	border-radius: 3px;
+	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+	clip: auto !important;
+	color: #21759b;
+	display: block;
+	font-size: 14px;
+	font-weight: bold;
+	height: auto;
+	line-height: normal;
+	padding: 15px 23px 14px;
+	position: absolute;
+	left: 5px;
+	top: 5px;
+	text-decoration: none;
+	width: auto;
+	z-index: 100000; /* Above WP toolbar */
+}
+
+/* Form fields, general styles first. */
+button,
+input,
+textarea {
+	border: 2px solid #d4d0ba;
+	font-family: inherit;
+	padding: 5px;
+}
+
+input,
+textarea {
+	color: #141412;
+}
+
+input:focus,
+textarea:focus {
+	border: 2px solid #c3c0ab;
+	outline: 0;
+}
+
+/* Buttons */
+button,
+input[type="submit"],
+input[type="button"],
+input[type="reset"] {
+	background: #e05d22; /* Old browsers */
+	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
+	border: none;
+	border-bottom: 3px solid #b93207;
+	border-radius: 2px;
+	color: #fff;
+	display: inline-block;
+	padding: 11px 24px 10px;
+	text-decoration: none;
+}
+
+button:hover,
+button:focus,
+input[type="submit"]:hover,
+input[type="button"]:hover,
+input[type="reset"]:hover,
+input[type="submit"]:focus,
+input[type="button"]:focus,
+input[type="reset"]:focus {
+	background: #ed6a31; /* Old browsers */
+	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
+	outline: none;
+}
+
+button:active,
+input[type="submit"]:active,
+input[type="button"]:active,
+input[type="reset"]:active {
+	background: #d94412; /* Old browsers */
+	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
+	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
+	border: none;
+	border-top: 3px solid #b93207;
+	padding: 10px 24px 11px;
+}
+
+.post-password-required input[type="submit"] {
+	padding: 7px 24px 4px;
+	vertical-align: bottom;
+}
+
+.post-password-required input[type="submit"]:active {
+	padding: 5px 24px 6px;
+}
+
+/* Placeholder text color -- selectors need to be separate to work. */
+::-webkit-input-placeholder {
+	color: #7d7b6d;
+}
+
+:-moz-placeholder {
+	color: #7d7b6d;
+}
+
+::-moz-placeholder {
+	color: #7d7b6d;
+}
+
+:-ms-input-placeholder {
+	color: #7d7b6d;
+}
+
+/*
+ * Responsive images
+ *
+ * Fluid images for posts, comments, and widgets
+ */
+.entry-content img,
+.entry-summary img,
+.comment-content img,
+.widget img,
+.wp-caption {
+	max-width: 100%;
+}
+
+/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
+.entry-content img,
+.entry-summary img,
+.comment-content img[height],
+img[class*="align"],
+img[class*="wp-image-"],
+img[class*="attachment-"] {
+	height: auto;
+}
+
+img.size-full,
+img.size-large,
+img.wp-post-image {
+	height: auto;
+	max-width: 100%;
+}
+
+/* Make sure videos and embeds fit their containers. */
+embed,
+iframe,
+object,
+video {
+	max-width: 100%;
+}
+
+/* Override the Twitter embed fixed width. */
+.entry-content .twitter-tweet-rendered {
+	max-width: 100% !important;
+}
+
+/* Images */
+.alignleft {
+	float: left;
+}
+
+.alignright {
+	float: right;
+}
+
+.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+figure.wp-caption.alignleft,
+img.alignleft {
+	margin: 5px 20px 5px 0;
+}
+
+.wp-caption.alignleft {
+	margin: 5px 10px 5px 0;
+}
+
+figure.wp-caption.alignright,
+img.alignright {
+	margin: 5px 0 5px 20px;
+}
+
+.wp-caption.alignright {
+	margin: 5px 0 5px 10px;
+}
+
+img.aligncenter {
+	margin: 5px auto;
+}
+
+img.alignnone {
+	margin: 5px 0;
+}
+
+.wp-caption .wp-caption-text,
+.entry-caption,
+.gallery-caption {
+	color: #220e10;
+	font-size: 18px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 0 0 24px;
+}
+
+div.wp-caption.alignright img[class*="wp-image-"] {
+	float: right;
+}
+
+div.wp-caption.alignright .wp-caption-text {
+	padding-left: 10px;
+}
+
+img.wp-smiley,
+.rsswidget img {
+	border: 0;
+	border-radius: 0;
+	box-shadow: none;
+	margin-bottom: 0;
+	margin-top: 0;
+	padding: 0;
+}
+
+.wp-caption.alignleft + ul,
+.wp-caption.alignleft + ol {
+	list-style-position: inside;
+}
+
+
+/**
+ * 3.0 Basic Structure
+ * ----------------------------------------------------------------------------
+ */
+
+.site {
+	background-color: #fff;
+	border-left: 1px solid #f2f2f2;
+	border-right: 1px solid #f2f2f2;
+	margin: 0 auto;
+	max-width: 1600px;
+	width: 100%;
+}
+
+.site-main {
+	position: relative;
+}
+
+.site-main .sidebar-container {
+	height: 0;
+	position: absolute;
+	top: 40px;
+	width: 100%;
+	z-index: 1;
+}
+
+.site-main .sidebar-inner {
+	margin: 0 auto;
+	max-width: 1040px;
+}
+
+
+/**
+ * 4.0 Header
+ * ----------------------------------------------------------------------------
+ */
+
+/**
+ * 4.1 Site Header
+ * ----------------------------------------------------------------------------
+ */
+
+.site-header {
+	position: relative;
+}
+
+.site-header .home-link {
+	color: #141412;
+	display: block;
+	margin: 0 auto;
+	max-width: 1080px;
+	min-height: 230px;
+	padding: 0 20px;
+	text-decoration: none;
+	width: 100%;
+}
+
+.site-header .site-title:hover {
+	text-decoration: underline;
+}
+
+.site-title {
+	font-size: 60px;
+	font-weight: bold;
+	line-height: 1;
+	margin: 0;
+	padding: 58px 0 10px;
+}
+
+.site-description {
+	font: 300 italic 24px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0;
+}
+
+
+/**
+ * 4.2 Navigation
+ * ----------------------------------------------------------------------------
+ */
+
+.main-navigation {
+	clear: both;
+	margin: 0 auto;
+	max-width: 1080px;
+	min-height: 45px;
+	position: relative;
+}
+
+ul.nav-menu,
+div.nav-menu > ul {
+	margin: 0;
+	padding: 0 40px 0 0;
+}
+
+.nav-menu li {
+	display: inline-block;
+	position: relative;
+}
+
+.nav-menu li a {
+	color: #141412;
+	display: block;
+	font-size: 15px;
+	line-height: 1;
+	padding: 15px 20px;
+	text-decoration: none;
+}
+
+.nav-menu li:hover > a,
+.nav-menu li a:hover,
+.nav-menu li:focus > a,
+.nav-menu li a:focus {
+	background-color: #220e10;
+	color: #fff;
+}
+
+.nav-menu .sub-menu,
+.nav-menu .children {
+	background-color: #220e10;
+	border: 2px solid #f7f5e7;
+	border-top: 0;
+	padding: 0;
+	position: absolute;
+	left: -2px;
+	z-index: 99999;
+	height: 1px;
+	width: 1px;
+	overflow: hidden;
+	clip: rect(1px, 1px, 1px, 1px);
+}
+
+.nav-menu .sub-menu ul,
+.nav-menu .children ul {
+	border-left: 0;
+	left: 100%;
+	top: 0;
+}
+
+ul.nav-menu ul a,
+.nav-menu ul ul a {
+	color: #fff;
+	margin: 0;
+	width: 200px;
+}
+
+ul.nav-menu ul a:hover,
+.nav-menu ul ul a:hover,
+ul.nav-menu ul a:focus,
+.nav-menu ul ul a:focus {
+	background-color: #db572f;
+}
+
+ul.nav-menu li:hover > ul,
+.nav-menu ul li:hover > ul,
+ul.nav-menu .focus > ul,
+.nav-menu .focus > ul {
+	clip: inherit;
+	overflow: inherit;
+	height: inherit;
+	width: inherit;
+}
+
+.nav-menu .current_page_item > a,
+.nav-menu .current_page_ancestor > a,
+.nav-menu .current-menu-item > a,
+.nav-menu .current-menu-ancestor > a {
+	color: #bc360a;
+	font-style: italic;
+}
+
+.menu-toggle {
+	display: none;
+}
+
+/* Navbar */
+.navbar {
+	background-color: #f7f5e7;
+	margin: 0 auto;
+	max-width: 1600px;
+	width: 100%;
+}
+
+.site-header .search-form {
+	position: absolute;
+	right: 20px;
+	top: 1px;
+}
+
+.site-header .search-field {
+	background-color: transparent;
+	background-image: url(images/search-icon.png);
+	background-position: 5px center;
+	background-repeat: no-repeat;
+	background-size: 24px 24px;
+	border: none;
+	cursor: pointer;
+	height: 37px;
+	margin: 3px 0;
+	padding: 0 0 0 34px;
+	position: relative;
+	-webkit-transition: width 400ms ease, background 400ms ease;
+	transition:         width 400ms ease, background 400ms ease;
+	width: 1px;
+}
+
+.site-header .search-field:focus {
+	background-color: #fff;
+	border: 2px solid #c3c0ab;
+	cursor: text;
+	outline: 0;
+	width: 230px;
+}
+
+
+/**
+ * 5.0 Content
+ * ----------------------------------------------------------------------------
+ */
+
+.hentry {
+	padding: 40px 0;
+}
+
+.entry-header,
+.entry-content,
+.entry-summary,
+.entry-meta {
+	margin: 0 auto;
+	max-width: 604px;
+	width: 100%;
+}
+
+.sidebar .entry-header,
+.sidebar .entry-content,
+.sidebar .entry-summary,
+.sidebar .entry-meta {
+	max-width: 1040px;
+	padding: 0 376px 0 60px;
+}
+
+
+/**
+ * 5.1 Entry Header
+ * ----------------------------------------------------------------------------
+ */
+
+.sidebar .entry-header .entry-meta {
+	padding: 0;
+}
+
+.entry-thumbnail img {
+	display: block;
+	margin: 0 auto 10px;
+}
+
+.entry-header {
+	margin-bottom: 30px;
+}
+
+.entry-title {
+	font-weight: normal;
+	margin: 0 0 5px;
+}
+
+.entry-title a {
+	color: #141412;
+}
+
+.entry-title a:hover {
+	color: #ea9629;
+}
+
+
+/**
+ * 5.2 Entry Meta
+ * ----------------------------------------------------------------------------
+ */
+
+.entry-meta {
+	clear: both;
+	font-size: 14px;
+}
+
+.entry-meta a {
+	color: #bc360a;
+}
+
+.entry-meta a:hover {
+	color: #bc360a;
+}
+
+.entry-meta > span {
+	margin-right: 20px;
+}
+
+.entry-meta > span:last-child {
+	margin-right: 0;
+}
+
+.featured-post:before {
+	content: "\f308";
+	margin-right: 2px;
+}
+
+.entry-meta .date a:before {
+	content: "\f303";
+}
+
+.comments-link a:before {
+	content: "\f300";
+	margin-right: 2px;
+	position: relative;
+	top: -1px;
+}
+
+.entry-meta .author a:before {
+	content: "\f304";
+	position: relative;
+	top: -1px;
+}
+
+.categories-links a:first-child:before {
+	content: "\f301";
+}
+
+.tags-links a:first-child:before {
+	content: "\f302";
+	position: relative;
+	top: -1px;
+}
+
+.edit-link a:before {
+	content: "\f411";
+	position: relative;
+	top: -1px;
+}
+
+.single-author .entry-meta .author,
+.sticky.format-standard .entry-meta .date,
+.sticky.format-audio .entry-meta .date,
+.sticky.format-chat .entry-meta .date,
+.sticky.format-image .entry-meta .date,
+.sticky.format-gallery .entry-meta .date {
+	display: none;
+}
+
+
+/**
+ * 5.3 Entry Content
+ * ----------------------------------------------------------------------------
+ */
+
+.entry-content {
+	-webkit-hyphens: auto;
+	-moz-hyphens:    auto;
+	-ms-hyphens:     auto;
+	hyphens:         auto;
+	word-wrap: break-word;
+}
+
+.entry-content a,
+.comment-content a {
+	color: #bc360a;
+}
+
+.entry-content a:hover,
+.comment-content a:hover {
+	color: #ea9629;
+}
+
+.entry-content .more-link {
+	white-space: nowrap;
+}
+
+.entry-content blockquote {
+	font-size: 24px;
+}
+
+.entry-content blockquote cite,
+.entry-content blockquote small {
+	font-size: 16px;
+}
+
+.entry-content img.alignleft,
+.entry-content .wp-caption.alignleft {
+	margin-left: -60px;
+}
+
+.entry-content img.alignright,
+.entry-content .wp-caption.alignright {
+	margin-right: -60px;
+}
+
+footer.entry-meta {
+	margin-top: 24px;
+}
+
+.format-standard footer.entry-meta {
+	margin-top: 0;
+}
+
+/* Page links */
+.page-links {
+	clear: both;
+	font-size: 16px;
+	font-style: italic;
+	font-weight: normal;
+	line-height: 2.2;
+	margin: 20px 0;
+	text-transform: uppercase;
+}
+
+.page-links a,
+.page-links > span {
+	background: #fff;
+	border: 1px solid #fff;
+	padding: 5px 10px;
+	text-decoration: none;
+}
+
+.format-status .entry-content .page-links a,
+.format-gallery .entry-content .page-links a,
+.format-chat .entry-content .page-links a,
+.format-quote .entry-content .page-links a,
+.page-links a {
+	background: #e63f2a;
+	border: 1px solid #e63f2a;
+	color: #fff;
+}
+
+.format-gallery .entry-content .page-links a:hover,
+.format-audio .entry-content .page-links a:hover,
+.format-status .entry-content .page-links a:hover,
+.format-video .entry-content .page-links a:hover,
+.format-chat .entry-content .page-links a:hover,
+.format-quote .entry-content .page-links a:hover,
+.page-links a:hover {
+	background: #fff;
+	color: #e63f2a;
+}
+
+.format-status .entry-content .page-links > span,
+.format-quote .entry-content .page-links > span {
+	background: none;
+}
+
+.page-links .page-links-title {
+	background: transparent;
+	border: none;
+	margin-right: 20px;
+	padding: 0;
+}
+
+/* Mediaelements */
+.hentry .mejs-mediaelement,
+.widget .mejs-mediaelement,
+.hentry .mejs-container .mejs-controls,
+.widget .mejs-container .mejs-controls {
+	background: #220e10;
+}
+
+.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
+.widget .mejs-controls .mejs-time-rail .mejs-time-loaded,
+.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
+.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	background: #fff;
+}
+
+.hentry .mejs-controls .mejs-time-rail .mejs-time-current,
+.widget .mejs-controls .mejs-time-rail .mejs-time-current {
+	background: #ea9629;
+}
+
+.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
+.widget .mejs-controls .mejs-time-rail .mejs-time-total,
+.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
+.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
+	background: #595959;
+}
+
+.hentry .mejs-controls .mejs-time-rail span,
+.widget .mejs-controls .mejs-time-rail span,
+.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
+.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
+.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
+.widget .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
+	border-radius: 0;
+}
+
+
+/**
+ * 5.4 Galleries
+ * ----------------------------------------------------------------------------
+ */
+
+.gallery {
+	margin-bottom: 20px;
+	margin-left: -4px;
+}
+
+.gallery-item {
+	float: left;
+	margin: 0 4px 4px 0;
+	overflow: hidden;
+	position: relative;
+}
+
+.gallery-columns-1.gallery-size-medium,
+.gallery-columns-1.gallery-size-thumbnail,
+.gallery-columns-2.gallery-size-thumbnail,
+.gallery-columns-3.gallery-size-thumbnail {
+	display: table;
+	margin: 0 auto 20px;
+}
+
+.gallery-columns-1 .gallery-item,
+.gallery-columns-2 .gallery-item,
+.gallery-columns-3 .gallery-item {
+	text-align: center;
+}
+
+.gallery-columns-4 .gallery-item {
+	max-width: 23%;
+	max-width: -webkit-calc(25% - 4px);
+	max-width:         calc(25% - 4px);
+}
+
+.gallery-columns-5 .gallery-item {
+	max-width: 19%;
+	max-width: -webkit-calc(20% - 4px);
+	max-width:         calc(20% - 4px);
+}
+
+.gallery-columns-6 .gallery-item {
+	max-width: 15%;
+	max-width: -webkit-calc(16.7% - 4px);
+	max-width:         calc(16.7% - 4px);
+}
+
+.gallery-columns-7 .gallery-item {
+	max-width: 13%;
+	max-width: -webkit-calc(14.28% - 4px);
+	max-width:         calc(14.28% - 4px);
+}
+
+.gallery-columns-8 .gallery-item {
+	max-width: 11%;
+	max-width: -webkit-calc(12.5% - 4px);
+	max-width:         calc(12.5% - 4px);
+}
+
+.gallery-columns-9 .gallery-item {
+	max-width: 9%;
+	max-width: -webkit-calc(11.1% - 4px);
+	max-width:         calc(11.1% - 4px);
+}
+
+.gallery-columns-1 .gallery-item:nth-of-type(1n),
+.gallery-columns-2 .gallery-item:nth-of-type(2n),
+.gallery-columns-3 .gallery-item:nth-of-type(3n),
+.gallery-columns-4 .gallery-item:nth-of-type(4n),
+.gallery-columns-5 .gallery-item:nth-of-type(5n),
+.gallery-columns-6 .gallery-item:nth-of-type(6n),
+.gallery-columns-7 .gallery-item:nth-of-type(7n),
+.gallery-columns-8 .gallery-item:nth-of-type(8n),
+.gallery-columns-9 .gallery-item:nth-of-type(9n) {
+	margin-right: 0;
+}
+
+.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
+.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
+.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
+.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1),
+.widget-area .gallery-columns-2 figure.gallery-item:nth-of-type(2n+1),
+.widget-area .gallery-columns-3 figure.gallery-item:nth-of-type(3n+1),
+.widget-area .gallery-columns-4 figure.gallery-item:nth-of-type(4n+1),
+.widget-area .gallery-columns-5 figure.gallery-item:nth-of-type(5n+1),
+.widget-area .gallery-columns-6 figure.gallery-item:nth-of-type(6n+1),
+.widget-area .gallery-columns-7 figure.gallery-item:nth-of-type(7n+1),
+.widget-area .gallery-columns-8 figure.gallery-item:nth-of-type(8n+1),
+.widget-area .gallery-columns-9 figure.gallery-item:nth-of-type(9n+1) {
+	clear: left;
+}
+
+.gallery-caption {
+	background-color: rgba(0, 0, 0, 0.7);
+	box-sizing: border-box;
+	color: #fff;
+	font-size: 14px;
+	line-height: 1.3;
+	margin: 0;
+	max-height: 50%;
+	opacity: 0;
+	padding: 2px 8px;
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	text-align: left;
+	-webkit-transition: opacity 400ms ease;
+	transition:         opacity 400ms ease;
+	width: 100%;
+}
+
+.gallery-caption:before {
+	box-shadow: 0 -10px 15px #000 inset;
+	content: "";
+	height: 100%;
+	min-height: 49px;
+	position: absolute;
+	left: 0;
+	top: 0;
+	width: 100%;
+}
+
+.gallery-item:hover .gallery-caption {
+	opacity: 1;
+}
+
+.gallery-columns-7 .gallery-caption,
+.gallery-columns-8 .gallery-caption,
+.gallery-columns-9 .gallery-caption,
+.widget-area .gallery-columns-2 .gallery-caption,
+.widget-area .gallery-columns-3 .gallery-caption,
+.widget-area .gallery-columns-4 .gallery-caption,
+.widget-area .gallery-columns-5 .gallery-caption,
+.widget-area .gallery-columns-6 .gallery-caption,
+.widget-area .gallery-columns-7 .gallery-caption,
+.widget-area .gallery-columns-8 .gallery-caption,
+.widget-area .gallery-columns-9 .gallery-caption {
+	display: none;
+}
+
+
+/**
+ * 5.5 Post Formats
+ * ----------------------------------------------------------------------------
+ */
+
+/* Aside */
+.format-aside {
+	background-color: #f7f5e7;
+}
+
+.blog .format-aside:first-of-type,
+.single .format-aside:first-of-type,
+.format-aside + .format-aside,
+.format-aside + .format-link,
+.format-link + .format-aside {
+	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
+}
+
+.format-aside .entry-meta {
+	margin-top: 0;
+}
+
+.format-aside blockquote {
+	font-size: 100%;
+	font-weight: normal;
+}
+
+.format-aside cite {
+	font-size: 100%;
+	text-transform: none;
+}
+
+.format-aside cite:before {
+	content: "\2014";
+	margin-right: 5px;
+}
+
+/* Audio */
+.format-audio {
+	background-color: #db572f;
+}
+
+.format-audio .entry-title {
+	font-size: 28px;
+	font-weight: bold;
+}
+
+.format-audio .entry-content:before {
+	content: "\f109";
+	float: left;
+	font-size: 64px;
+	position: relative;
+	top: 4px;
+}
+
+.format-audio .entry-content a,
+.format-audio .entry-meta a,
+.format-audio .entry-content a:hover,
+.format-audio .entry-meta a:hover {
+	color: #fbfaf3;
+}
+
+.format-audio .audio-content {
+	background: url(images/dotted-line.png) repeat-y left top;
+	background-size: 4px 4px;
+	float: right;
+	padding-left: 35px;
+	width: 80%;
+	width: -webkit-calc(100% - 85px);
+	width:         calc(100% - 85px);
+}
+
+.format-audio .wp-audio-shortcode {
+	height: 30px !important; /* Override mediaelement.js style */
+	margin: 20px 0;
+	max-width: 400px !important; /* Override mediaelement.js style */
+}
+
+.format-audio audio {
+	max-width: 100% !important; /* Avoid player width overflow. */
+}
+
+/* Chat */
+.format-chat {
+	background-color: #eadaa6;
+}
+
+.format-chat .entry-title {
+	font-size: 28px;
+	font-weight: bold;
+}
+
+.format-chat .entry-meta a,
+.format-chat .entry-content a {
+	color: #722d19;
+}
+
+.format-chat .entry-meta .date a:before {
+	content: "\f108";
+	margin-right: 2px;
+}
+
+.format-chat .entry-meta .author {
+	display: none;
+}
+
+.format-chat .chat {
+	margin: 0;
+}
+
+.format-chat .chat .chat-timestamp {
+	color: #722d19;
+	float: right;
+	font-size: 12px;
+	font-weight: normal;
+	margin: 5px 10px 0;
+}
+
+.format-chat .chat .fn {
+	font-style: normal;
+}
+
+/* Gallery */
+.format-gallery {
+	background-color: #fbca3c;
+}
+
+.format-gallery .entry-header {
+	margin-bottom: 15px;
+}
+
+.format-gallery .entry-title {
+	font-size: 50px;
+	font-weight: 400;
+	margin: 0;
+}
+
+.format-gallery .entry-meta a,
+.format-gallery .entry-content a {
+	color: #722d19;
+}
+
+/* Image */
+.format-image .entry-title {
+	font-size: 28px;
+	font-weight: bold;
+}
+
+.format-image .categories-links,
+.format-image .tags-links {
+	display: none;
+}
+
+/* Link */
+.format-link {
+	background-color: #f7f5e7;
+}
+
+.blog .format-link:first-of-type,
+.single .format-link:first-of-type {
+	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
+}
+
+.format-link .entry-header,
+.format-link .entry-content p:last-child {
+	margin-bottom: 0;
+}
+
+.format-link .entry-title {
+	color: #ca3c08;
+	display: inline;
+	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
+	margin-right: 20px;
+}
+
+.format-link .entry-title a {
+	color: #bc360a;
+}
+
+.format-link div.entry-meta {
+	display: inline;
+}
+
+/* Standard */
+.format-standard .wp-video,
+.format-standard .wp-audio-shortcode,
+.format-audio .wp-audio-shortcode,
+.format-standard .video-player {
+	margin-bottom: 24px;
+}
+
+/* Quote */
+.format-quote {
+	background-color: #210d10;
+}
+
+.format-quote .entry-content,
+.format-quote .entry-meta {
+	color: #f7f5e7;
+}
+
+.format-quote .entry-content blockquote {
+	font-size: 28px;
+	margin: 0;
+}
+
+.format-quote .entry-content a,
+.format-quote .entry-meta a,
+.format-quote .linked {
+	color: #e63f2a;
+}
+
+.format-quote .entry-content cite a {
+	border-bottom: 1px dotted #fff;
+	color: #fff;
+}
+
+.format-quote .entry-content cite a:hover {
+	text-decoration: none;
+}
+
+.format-quote blockquote small,
+.format-quote blockquote cite {
+	display: block;
+	font-size: 16px;
+}
+
+.format-quote blockquote {
+	font-style: italic;
+	font-weight: 300;
+	padding-left: 75px;
+	position: relative;
+}
+
+.format-quote blockquote:before {
+	content: '\201C';
+	font-size: 140px;
+	font-weight: 400;
+	line-height: .8;
+	padding-right: 25px;
+	position: absolute;
+	left: -15px;
+	top: -3px;
+}
+
+.format-quote .entry-meta .author {
+	display: none;
+}
+
+/* Status */
+.format-status {
+	background-color: #722d19;
+	padding: 0;
+}
+
+.format-status .entry-content,
+.format-status .entry-meta {
+	padding-left: 35px;
+	position: relative;
+}
+
+.format-status .entry-content a {
+	color: #eadaa6;
+}
+
+.format-status .entry-meta a {
+	color: #f7f5e7;
+}
+
+.sidebar .format-status .entry-content,
+.sidebar .format-status .entry-meta {
+	padding-left: 95px;
+}
+
+.format-status .entry-content:before,
+.format-status .entry-meta:before {
+	background: url(images/dotted-line.png) repeat-y left bottom;
+	background-size: 4px 4px;
+	content: "";
+	display: block;
+	height: 100%;
+	position: absolute;
+	left: 10px;
+	top: 0;
+	width: 1px;
+}
+
+.sidebar .format-status .entry-content:before,
+.sidebar .format-status .entry-meta:before {
+	left: 70px;
+}
+
+.format-status .categories-links,
+.format-status .tags-links {
+	display: none;
+}
+
+/* Ensures the dots in the dot background are in lockstep. */
+.format-status .entry-meta:before {
+	background-position: left top;
+}
+
+.format-status .entry-content {
+	color: #f7f5e7;
+	font-size: 24px;
+	font-style: italic;
+	font-weight: 300;
+	padding-bottom: 30px;
+	padding-top: 40px;
+	position: relative;
+}
+
+.format-status .entry-content p:first-child:before {
+	background-color: rgba(0, 0, 0, 0.65);
+	content: "";
+	height: 3px;
+	margin-top: 13px;
+	position: absolute;
+	left: 4px;
+	width: 13px;
+}
+
+.sidebar .format-status .entry-content > p:first-child:before {
+	left: 64px;
+}
+
+.format-status .entry-content p:last-child {
+	margin-bottom: 0;
+}
+
+.format-status .entry-meta {
+	margin-top: 0;
+	padding-bottom: 40px;
+}
+
+.format-status .entry-meta .date a:before {
+	content: "\f105";
+}
+
+/* Video */
+.format-video {
+	background-color: #db572f;
+}
+
+.format-video .entry-content a,
+.format-video .entry-meta a,
+.format-video .entry-content a:hover,
+.format-video .entry-meta a:hover {
+	color: #fbfaf3;
+}
+
+.format-video .entry-title {
+	font-size: 50px;
+	font-weight: 400;
+}
+
+.format-video .entry-meta {
+	color: #220e10;
+}
+
+
+/**
+ * 5.6 Attachments
+ * ----------------------------------------------------------------------------
+ */
+
+.attachment .hentry {
+	background-color: #e8e5ce;
+	margin: 0;
+	padding: 0;
+}
+
+.attachment .entry-header {
+	margin-bottom: 0;
+	max-width: 1040px;
+	padding: 30px 0;
+}
+
+.attachment .entry-title {
+	display: inline-block;
+	float: left;
+	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0;
+}
+
+.attachment .entry-title:before {
+	content: "\f416";
+	font-size: 32px;
+	margin-right: 10px;
+}
+
+.attachment .entry-meta {
+	clear: none;
+	color: inherit;
+	float: right;
+	max-width: 604px;
+	padding: 9px 0 0;
+	text-align: right;
+}
+
+.hentry.attachment:not(.image-attachment) .entry-meta {
+	max-width: 104px;
+}
+
+.attachment footer.entry-meta {
+	display: none;
+}
+
+.attachment-meta:before {
+	content: "\f307";
+}
+
+.full-size-link a:before {
+	content: "\f402";
+}
+
+.full-size-link:before {
+	content: none;
+}
+
+.attachment .entry-meta a,
+.attachment .entry-meta .edit-link:before,
+.attachment .full-size-link:before {
+	color: #ca3c08;
+}
+
+.attachment .entry-content {
+	background-color: #fff;
+	max-width: 100%;
+	padding: 40px 0;
+}
+
+.image-navigation {
+	margin: 0 auto;
+	max-width: 1040px;
+	position: relative;
+}
+
+.image-navigation a:hover {
+	text-decoration: none;
+}
+
+.image-navigation .nav-previous,
+.image-navigation .nav-next {
+	position: absolute;
+	top: 50px;
+}
+
+.image-navigation .nav-previous {
+	left: 0;
+}
+
+.image-navigation .nav-next {
+	right: 0;
+}
+
+.image-navigation .meta-nav {
+	font-size: 32px;
+	font-weight: 300;
+	vertical-align: -4px;
+}
+
+.attachment .entry-attachment,
+.attachment .type-attachment p {
+	margin: 0 auto;
+	max-width: 724px;
+	text-align: center;
+}
+
+.attachment .entry-attachment .attachment {
+	display: inline-block;
+}
+
+.attachment .entry-caption {
+	text-align: left;
+}
+
+.attachment .entry-description {
+	margin: 20px auto 0;
+	max-width: 604px;
+}
+
+.attachment .entry-caption p:last-child,
+.attachment .entry-description p:last-child {
+	margin: 0;
+}
+
+.attachment .site-main .sidebar-container {
+	display: none;
+}
+
+.attachment .entry-content .mejs-audio {
+	max-width: 400px;
+	margin: 0 auto;
+}
+
+.attachment .entry-content .wp-video {
+	margin: 0 auto;
+}
+
+.attachment .entry-content .mejs-container {
+	margin-bottom: 24px;
+}
+
+/**
+ * 5.7 Post/Paging Navigation
+ * ----------------------------------------------------------------------------
+ */
+
+.navigation .nav-previous {
+	float: left;
+}
+
+.navigation .nav-next {
+	float: right;
+}
+
+.navigation a {
+	color: #bc360a;
+}
+
+.navigation a:hover {
+	color: #ea9629;
+	text-decoration: none;
+}
+
+.paging-navigation {
+	background-color: #e8e5ce;
+	padding: 40px 0;
+}
+
+.paging-navigation .nav-links {
+	margin: 0 auto;
+	max-width: 604px;
+	width: 100%;
+}
+
+.sidebar .paging-navigation .nav-links {
+	max-width: 1040px;
+	padding: 0 376px 0 60px;
+}
+
+.paging-navigation .nav-next {
+	padding: 13px 0;
+}
+
+.paging-navigation a {
+	font-size: 22px;
+	font-style: italic;
+	font-weight: 300;
+}
+
+.paging-navigation .meta-nav {
+	background-color: #e63f2a;
+	border-radius: 50%;
+	color: #fff;
+	display: inline-block;
+	font-size: 26px;
+	padding: 3px 0 8px;
+	text-align: center;
+	width: 50px;
+}
+
+.paging-navigation .nav-previous .meta-nav {
+	margin-right: 10px;
+	padding: 17px 0 23px;
+	width: 80px;
+}
+
+.paging-navigation .nav-next .meta-nav {
+	margin-left: 10px;
+}
+
+.paging-navigation a:hover .meta-nav {
+	background-color: #ea9629;
+	text-decoration: none;
+}
+
+.post-navigation {
+	background-color: #fff;
+	color: #ca3c08;
+	font-size: 20px;
+	font-style: italic;
+	font-weight: 300;
+	padding: 20px 0;
+}
+
+.post-navigation .nav-links {
+	margin: 0 auto;
+	max-width: 1040px;
+}
+
+.sidebar .post-navigation .nav-links {
+	padding: 0 376px 0 60px;
+}
+
+.post-navigation a[rel="next"] {
+	float: right;
+	text-align: right;
+}
+
+
+/**
+ * 5.8 Author Bio
+ * ----------------------------------------------------------------------------
+ */
+
+.author-info {
+	margin: 0 auto;
+	max-width: 604px;
+	padding: 30px 0 10px;
+	text-align: left; /* gallery & video post formats */
+	width: 100%;
+}
+
+.author.sidebar .author-info {
+	max-width: 1040px;
+	padding: 30px 376px 10px 60px;
+}
+
+.single .author-info {
+	padding: 50px 0 0;
+}
+
+.author-avatar .avatar {
+	float: left;
+	margin: 0 30px 30px 0;
+}
+
+.single-format-status .author-description {
+	color: #f7f5e7;
+}
+
+.author-description .author-title {
+	clear: none;
+	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0 0 8px;
+}
+
+.author-link {
+	color: #ca3c08;
+	margin-left: 2px;
+}
+
+.author.archive .author-link {
+	display: none;
+}
+
+
+/**
+ * 5.9 Archives
+ * ----------------------------------------------------------------------------
+ */
+
+.archive-header {
+	background-color: #e8e5ce;
+}
+
+.archive-title,
+.archive-meta {
+	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0 auto;
+	max-width: 1040px;
+	padding: 30px 0;
+	width: 100%;
+}
+
+.archive-meta {
+	font-size: 16px;
+	font-style: normal;
+	font-weight: normal;
+	margin-top: -15px;
+	padding: 0 0 11px;
+}
+
+.sidebar .archive-meta {
+	padding-right: 316px;
+}
+
+
+/**
+ * 5.10 Search Results/No posts
+ * ----------------------------------------------------------------------------
+ */
+
+.page-header {
+	background-color: #e8e5ce;
+}
+
+.page-title {
+	font: 300 italic 30px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0 auto;
+	max-width: 1040px;
+	padding: 30px 0;
+	width: 100%;
+}
+
+.page-content {
+	margin: 0 auto;
+	max-width: 604px;
+	padding: 40px 0;
+	width: 100%;
+}
+
+.sidebar .page-content {
+	margin: 0 auto;
+	max-width: 1040px;
+	padding: 40px 376px 40px 60px;
+}
+
+
+/**
+ * 5.11 404
+ * ----------------------------------------------------------------------------
+ */
+
+.error404 .page-header {
+	background-color: #fff;
+}
+
+.error404 .page-title {
+	line-height: 0.6;
+	margin: 0;
+	padding: 300px;
+	position: relative;
+	text-align: center;
+	width: auto;
+}
+
+.error404 .page-title:before {
+	color: #e8e5ce;
+	content: "\f423";
+	font-size: 964px;
+	line-height: 0.6;
+	overflow: hidden;
+	position: absolute;
+	left: 7px;
+	top: 28px;
+}
+
+.error404 .page-wrapper {
+	background-color: #e8e5ce;
+}
+
+.error404 .page-header,
+.error404 .page-content {
+	margin: 0 auto;
+	max-width: 1040px;
+	padding-bottom: 40px;
+	width: 100%;
+}
+
+
+/**
+ * 5.12 Comments
+ * ----------------------------------------------------------------------------
+ */
+
+.comments-title,
+.comment-list,
+.comment-reply-title,
+.must-log-in,
+.comment-respond .comment-form,
+.comment-respond iframe {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+	max-width: 604px;
+	width: 100%;
+}
+
+.sidebar .comments-title,
+.sidebar .comment-list,
+.sidebar .must-log-in,
+.sidebar .comment-reply-title,
+.sidebar .comment-navigation,
+.sidebar .comment-respond .comment-form {
+	max-width: 1040px;
+	padding-left: 60px;
+	padding-right: 376px;
+}
+
+.comments-title {
+	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
+}
+
+.comment-list,
+.comment-list .children {
+	list-style-type: none;
+	padding: 0;
+}
+
+.comment-list .children {
+	margin-left: 20px;
+}
+
+.comment-list > li:after,
+.comment-list .children > li:before {
+	background: url(images/dotted-line.png) repeat left top;
+	background-size: 4px 4px;
+	content: "";
+	display: block;
+	height: 1px;
+	width: 100%;
+}
+
+.comment-list > li:last-child:after {
+	display: none;
+}
+
+.comment-body {
+	padding: 24px 0;
+	position: relative;
+}
+
+.comment-author {
+	float: left;
+	max-width: 74px;
+}
+
+.comment-author .avatar {
+	display: block;
+	margin-bottom: 10px;
+}
+
+.comment-author .fn {
+	word-wrap: break-word;
+}
+
+.comment-author .fn,
+.comment-author .url,
+.comment-reply-link,
+.comment-reply-login {
+	color: #bc360a;
+	font-size: 14px;
+	font-style: normal;
+	font-weight: normal;
+}
+
+.says {
+	display: none;
+}
+
+.no-avatars .comment-author {
+	margin: 0 0 5px;
+	max-width: 100%;
+	position: relative;
+}
+
+.no-avatars .comment-metadata,
+.no-avatars .comment-content,
+.no-avatars .comment-list .reply {
+	width: 100%;
+}
+
+.bypostauthor > .comment-body .fn:before {
+	content: "\f408";
+	vertical-align: text-top;
+}
+
+.comment-list .edit-link {
+	margin-left: 20px;
+}
+
+.comment-metadata,
+.comment-awaiting-moderation,
+.comment-content,
+.comment-list .reply {
+	float: right;
+	width: 79%;
+	width: -webkit-calc(100% - 124px);
+	width:         calc(100% - 124px);
+	word-wrap: break-word;
+}
+
+.comment-meta,
+.comment-meta a {
+	color: #a2a2a2;
+	font-size: 13px;
+}
+
+.comment-meta a:hover {
+	color: #ea9629;
+}
+
+.comment-metadata {
+	margin-bottom: 20px;
+}
+
+.ping-meta {
+	color: #a2a2a2;
+	font-size: 13px;
+	line-height: 2;
+}
+
+.comment-awaiting-moderation {
+	color: #a2a2a2;
+}
+
+.comment-awaiting-moderation:before {
+	content: "\f414";
+	margin-right: 5px;
+	position: relative;
+	top: -2px;
+}
+
+.comment-reply-link:before,
+.comment-reply-login:before {
+	content: "\f412";
+	margin-right: 3px;
+}
+
+/* Comment form */
+.comment-respond {
+	background-color: #f7f5e7;
+	padding: 30px 0;
+}
+
+.comment .comment-respond {
+	margin-bottom: 20px;
+	padding: 20px;
+}
+
+.comment-reply-title {
+	font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
+}
+
+.comment-reply-title small a {
+	color: #131310;
+	display: inline-block;
+	float: right;
+	height: 16px;
+	overflow: hidden;
+	width: 16px;
+}
+
+.comment-reply-title small a:hover {
+	color: #ed331c;
+	text-decoration: none;
+}
+
+.comment-reply-title small a:before {
+	content: "\f406";
+	vertical-align: top;
+}
+
+.sidebar .comment-list .comment-reply-title,
+.sidebar .comment-list .comment-respond .comment-form {
+	padding: 0;
+}
+
+.comment-form .comment-notes {
+	margin-bottom: 15px;
+}
+
+.comment-form .comment-form-author,
+.comment-form .comment-form-email,
+.comment-form .comment-form-url {
+	margin-bottom: 8px;
+}
+
+.comment-form [for="author"],
+.comment-form [for="email"],
+.comment-form [for="url"],
+.comment-form [for="comment"] {
+	float: left;
+	padding: 5px 0;
+	width: 120px;
+}
+
+.comment-form .required {
+	color: #ed331c;
+}
+
+.comment-form input[type="text"],
+.comment-form input[type="email"],
+.comment-form input[type="url"] {
+	max-width: 270px;
+	width: 60%;
+}
+
+.comment-form textarea {
+	width: 100%;
+}
+
+.comment-form #wp-comment-cookies-consent {
+	margin: 0 10px 0 0;
+}
+
+.form-allowed-tags,
+.form-allowed-tags code {
+	color: #686758;
+	font-size: 12px;
+}
+
+.form-allowed-tags code {
+	font-size: 10px;
+	margin-left: 3px;
+}
+
+.comment-list .pingback,
+.comment-list .trackback {
+	padding-top: 24px;
+}
+
+.comment-navigation {
+	font-size: 20px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 0 auto;
+	max-width: 604px;
+	padding: 20px 0 30px;
+	width: 100%;
+}
+
+.no-comments {
+	background-color: #f7f5e7;
+	font-size: 20px;
+	font-style: italic;
+	font-weight: 300;
+	margin: 0;
+	padding: 40px 0;
+	text-align: center;
+}
+
+.sidebar .no-comments {
+	padding-left: 60px;
+	padding-right: 376px;
+}
+
+
+/**
+ * 5.13 Multisite
+ * ----------------------------------------------------------------------------
+ */
+
+.site-main .mu_register {
+	margin: 0 auto;
+	max-width: 604px;
+	width: 100%;
+}
+
+.mu_alert {
+	margin-top: 25px;
+}
+
+.site-main .mu_register input[type="submit"],
+.site-main .mu_register #blog_title,
+.site-main .mu_register #user_email,
+.site-main .mu_register #blogname,
+.site-main .mu_register #user_name {
+	font-size: inherit;
+	width: 270px;
+}
+
+.site-main .mu_register input[type="submit"] {
+	width: auto;
+}
+
+
+/**
+ * 6.0 Sidebar
+ * ----------------------------------------------------------------------------
+ */
+
+.site-main .widget-area {
+	float: right;
+	width: 300px;
+}
+
+
+/**
+ * 6.1 Widgets
+ * ----------------------------------------------------------------------------
+ */
+
+.widget {
+	background-color: rgba(247, 245, 231, 0.7);
+	font-size: 14px;
+	-webkit-hyphens: auto;
+	-moz-hyphens:    auto;
+	-ms-hyphens:     auto;
+	hyphens:         auto;
+	margin: 0 0 24px;
+	padding: 20px;
+	word-wrap: break-word;
+}
+
+.widget .widget-title {
+	font: 300 italic 20px "Source Sans Pro", Helvetica, sans-serif;
+	margin: 0 0 10px;
+}
+
+.widget ul,
+.widget ol {
+	list-style-type: none;
+	margin: 0;
+	padding: 0;
+}
+
+.widget li {
+	padding: 5px 0;
+}
+
+.widget .children li:last-child {
+	padding-bottom: 0;
+}
+
+.widget li > ul,
+.widget li > ol {
+	margin-left: 20px;
+}
+
+.widget a {
+	color: #bc360a;
+}
+
+.widget a:hover {
+	color: #ea9629;
+}
+
+/* Search widget */
+.search-form .search-submit {
+	display: none;
+}
+
+/* RSS Widget */
+.widget_rss .rss-date {
+	display: block;
+}
+
+.widget_rss .rss-date,
+.widget_rss li > cite {
+	color: #a2a2a2;
+}
+
+/* Calendar Widget */
+.widget_calendar table,
+.widget_calendar td {
+	border: 0;
+	border-collapse: separate;
+	border-spacing: 1px;
+}
+
+.widget_calendar caption {
+	font-size: 14px;
+	margin: 0;
+}
+
+.widget_calendar th,
+.widget_calendar td {
+	padding: 0;
+	text-align: center;
+}
+
+.widget_calendar a {
+	display: block;
+}
+
+.widget_calendar a:hover {
+	background-color: rgba(0, 0, 0, 0.15);
+}
+
+.widget_calendar tbody td {
+	background-color: rgba(255, 255, 255, 0.5);
+}
+
+.site-footer .widget_calendar tbody td {
+	background-color: rgba(255, 255, 255, 0.05);
+}
+
+.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
+	background-color: transparent;
+}
+
+.wp-calendar-table {
+	margin-bottom: 0;
+}
+
+.wp-calendar-nav {
+	display: table;
+	line-height: 2;
+	margin-bottom: 20px;
+	width: 100%;
+}
+
+.wp-calendar-nav span {
+	display: table-cell;
+	text-align: center;
+}
+
+.wp-calendar-nav-prev,
+.wp-calendar-nav-next {
+	width: 40%;
+}
+
+/* Text widget */
+.widget_text ul,
+.widget_text ol {
+	padding-left: 20px;
+	margin-bottom: 16px;
+}
+
+.widget_text li:last-child {
+	padding-bottom: 0;
+}
+
+.widget_text li > ul,
+.widget_text li > ol {
+	margin-bottom: 0;
+}
+
+.widget_text ul {
+	list-style: square;
+}
+
+.widget_text ol {
+	list-style: decimal;
+}
+
+/* Tag Cloud widget */
+.tagcloud ul {
+	list-style-type: none;
+}
+
+.tagcloud ul li {
+	display: inline-block;
+	padding: 0;
+}
+
+/* Gallery Widget */
+.widget .gallery-columns-1 .gallery-item {
+	max-width: 100%;
+}
+
+.widget .gallery-columns-2 .gallery-item {
+	max-width: 49%;
+	max-width: -webkit-calc(50% - 4px);
+	max-width:         calc(50% - 4px);
+}
+
+.widget .gallery-columns-3 .gallery-item {
+	max-width: 22%;
+	max-width: -webkit-calc(33% - 4px);
+	max-width:         calc(33% - 4px);
+}
+
+/**
+ * 7.0 Footer
+ * ----------------------------------------------------------------------------
+ */
+
+.site-footer {
+	background-color: #e8e5ce;
+	color: #686758;
+	font-size: 14px;
+	text-align: center;
+}
+
+.site-footer .widget-area,
+.sidebar .site-footer {
+	text-align: left;
+}
+
+.site-footer a {
+	color: #686758;
+}
+
+.site-footer .sidebar-container {
+	background-color: #220e10;
+	padding: 20px 0;
+}
+
+.site-footer .widget-area {
+	margin: 0 auto;
+	max-width: 1040px;
+	width: 100%;
+}
+
+.sidebar .site-footer .widget-area {
+	max-width: 724px;
+	position: relative;
+	left: -158px;
+}
+
+.site-footer .widget {
+	background: transparent;
+	color: #fff;
+	float: left;
+	margin-right: 20px;
+	width: 245px;
+}
+
+.sidebar .site-footer .widget {
+	width: 228px;
+}
+
+.sidebar .site-footer .widget:nth-of-type(4),
+.sidebar .site-footer .widget:nth-of-type(3) {
+	margin-right: 0;
+}
+
+.site-footer .widget a {
+	color: #e6402a;
+}
+
+.site-footer .widget-title,
+.site-footer .widget-title a,
+.site-footer .wp-caption-text {
+	color: #fff;
+}
+
+.site-info {
+	margin: 0 auto;
+	max-width: 1040px;
+	padding: 30px 0;
+	width: 100%;
+}
+
+#wpstats {
+	display: block;
+	margin: -10px auto 0;
+}
+
+.site-footer span[role=separator] {
+	padding: 0 0.25em 0 0.5em;
+}
+
+.site-footer span[role=separator]::before {
+	content: '\002f';
+}
+
+/**
+ * 8.0 Media Queries
+ * ----------------------------------------------------------------------------
+ */
+
+/* Does the same thing as <meta name="viewport" content="width=device-width">,
+ * but in the future W3C standard way. -ms- prefix is required for IE10+ to
+ * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
+ * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
+ */
+@-ms-viewport {
+	width: device-width;
+}
+@viewport {
+	width: device-width;
+}
+
+@media (max-width: 1599px) {
+	.site {
+		border: 0;
+	}
+}
+
+@media (max-width: 1069px) {
+	.sidebar img.alignleft,
+	.sidebar .wp-caption.alignleft {
+		margin-left: 0;
+	}
+
+	.sidebar img.alignright,
+	.sidebar .wp-caption.alignright {
+		margin-right: 0;
+	}
+
+	.error404 .page-header {
+		margin-left: auto;
+		max-width: 604px;
+		width: 100%;
+	}
+
+	.archive-header,
+	.search .page-header,
+	.archive .page-header,
+	.blog .page-header,
+	.error404 .page-content,
+	.search .page-content,
+	.archive .page-content,
+	.attachment .entry-header,
+	.attachment .entry-content,
+	.post-navigation .nav-links,
+	.sidebar .site-info,
+	.site-footer .widget-area {
+		padding-left: 20px;
+		padding-right: 20px;
+	}
+
+	.error404 .page-title {
+		font-size: 24px;
+		padding: 180px;
+	}
+
+	.error404 .page-title:before {
+		font-size: 554px;
+	}
+
+	.attachment .image-navigation {
+		max-width: 724px;
+	}
+
+	.image-navigation .nav-previous,
+	.image-navigation .nav-next {
+		position: static;
+	}
+
+	.site-main .widget-area {
+		margin-right: 60px;
+	}
+}
+
+@media (max-width: 999px) {
+	.sidebar .entry-header,
+	.sidebar .entry-content,
+	.sidebar .entry-summary,
+	.sidebar .entry-meta,
+	.sidebar .comment-list,
+	.sidebar .comment-reply-title,
+	.sidebar .comment-navigation,
+	.sidebar .comment-respond .comment-form,
+	.sidebar .featured-gallery,
+	.sidebar .post-navigation .nav-links,
+	.author.sidebar .author-info {
+		max-width: 604px;
+		padding-left: 0;
+		padding-right: 0;
+	}
+
+	.sidebar .site-info,
+	.search.sidebar .page-content,
+	.blog.sidebar .page-content,
+	.attachment .entry-header,
+	.sidebar .comments-title {
+		max-width: 604px;
+	}
+
+	.sidebar .archive-meta,
+	.attachment .entry-header,
+	.search.sidebar .page-content,
+	.blog.sidebar .page-content,
+	.sidebar .site-info,
+	.sidebar .comments-title,
+	.sidebar .no-comments {
+		padding-left: 0;
+		padding-right: 0;
+	}
+
+	.attachment .entry-meta {
+		float: left;
+		text-align: left;
+		width: 100%;
+	}
+
+	.attachment .entry-content {
+		max-width: 100%;
+		padding: 40px 0;
+	}
+
+	.format-status .entry-content {
+		padding-top: 40px;
+	}
+
+	.format-status .entry-meta {
+		padding-bottom: 40px;
+	}
+
+	.sidebar .format-status .entry-content,
+	.sidebar .format-status .entry-meta {
+		padding-left: 35px;
+	}
+
+	.sidebar .format-status .entry-content:before,
+	.sidebar .format-status .entry-meta:before {
+		left: 10px;
+	}
+
+	.sidebar .format-status .entry-content p:first-child:before {
+		left: 4px;
+	}
+
+	.sidebar .paging-navigation .nav-links {
+		padding: 0 60px;
+	}
+
+	.site-main .sidebar-container {
+		height: auto;
+		margin: 0 auto;
+		max-width: 604px;
+		position: relative;
+		top: 20px;
+	}
+
+	.site-main .widget-area {
+		float: none;
+		margin: 0;
+		width: 100%;
+	}
+
+	.sidebar .site-footer .widget-area {
+		max-width: 100%;
+		left: 0;
+	}
+}
+
+/* Collapse oversized image and pulled images after iPad breakpoint. */
+@media (max-width: 767px) {
+	.site-header .home-link {
+		min-height: 0;
+	}
+	.site-title {
+		font-size: 36px;
+		padding: 8px 0 10px;
+	}
+	.entry-content img.alignleft,
+	.entry-content .wp-caption.alignleft {
+		margin-left: 0;
+	}
+
+	.entry-content img.alignright,
+	.entry-content .wp-caption.alignright {
+		margin-right: 0;
+	}
+
+	.attachment .image-navigation,
+	.attachment .entry-attachment .attachment {
+		max-width: 604px;
+		padding: 0;
+		width: 100%;
+	}
+
+	.gallery-caption {
+		display: none;
+	}
+}
+
+@media (max-width: 643px) {
+	.site-title {
+		font-size: 30px;
+	}
+
+	#content .entry-header,
+	#content .entry-content,
+	#content .entry-summary,
+	#content footer.entry-meta,
+	#content .featured-gallery,
+	.search.sidebar .page-content,
+	.blog.sidebar .page-content,
+	.sidebar .post-navigation .nav-links,
+	.paging-navigation .nav-links,
+	#content .author-info,
+	.comments-area .comments-title,
+	.comments-area .comment-list,
+	.comments-area .comment-navigation,
+	.comment-respond,
+	.sidebar .site-info,
+	.sidebar .paging-navigation .nav-links {
+		padding-left: 20px;
+		padding-right: 20px;
+	}
+
+	#content .format-status .entry-content,
+	#content .format-status .entry-met {
+		padding-left: 35px;
+	}
+
+	/* Small menu */
+	.menu-toggle {
+		cursor: pointer;
+		display: inline-block;
+		font: bold 16px/1.3 "Source Sans Pro", Helvetica, sans-serif;
+		margin: 0;
+	}
+
+	.menu-toggle,
+	.menu-toggle:hover,
+	.menu-toggle:focus,
+	.menu-toggle:active {
+		background: none;
+		border: none;
+		color: #141412;
+		padding: 12px 0 12px 20px;
+	}
+
+	.menu-toggle:focus {
+		outline: thin dotted;
+	}
+
+	.menu-toggle:after {
+		content: "\f502";
+		font-size: 12px;
+		padding-left: 8px;
+		vertical-align: -4px;
+	}
+
+	.toggled-on .menu-toggle:after {
+		content: "\f500";
+		vertical-align: 2px;
+	}
+
+	.toggled-on .nav-menu,
+	.toggled-on .nav-menu > ul {
+		display: block;
+		margin-left: 0;
+		padding: 0;
+		width: 100%;
+	}
+
+	.toggled-on li,
+	.toggled-on .children {
+		display: block;
+	}
+
+	.toggled-on .nav-menu li > ul {
+		background-color: transparent;
+		display: block;
+		float: none;
+		margin-left: 20px;
+		position: relative;
+		left: auto;
+		top: auto;
+	}
+
+	.toggled-on .nav-menu li > ul a {
+		color: #141412;
+		width: auto;
+	}
+
+	.toggled-on .nav-menu li:hover > a,
+	.toggled-on .nav-menu .children a {
+		background-color: transparent;
+		color: #141412;
+	}
+
+	.toggled-on .nav-menu > li a:hover,
+	.toggled-on .nav-menu > ul a:hover {
+		background-color: #db572f;
+		color: #fff;
+	}
+
+	.toggled-on .nav-menu > li a:focus,
+	.toggled-on .nav-menu > ul a:focus {
+		background-color: #220e10;
+		color: #fff;
+	}
+
+	ul.nav-menu,
+	div.nav-menu > ul {
+		display: none;
+	}
+
+	#content .featured-gallery {
+		padding-left: 24px;
+	}
+
+	.gallery-columns-1 .gallery-item {
+		margin-right: 0;
+		width: 100%;
+	}
+
+	.entry-title,
+	.format-chat .entry-title,
+	.format-image .entry-title,
+	.format-gallery .entry-title,
+	.format-video .entry-title {
+		font-size: 22px;
+		font-weight: bold;
+	}
+
+	.format-quote blockquote,
+	.format-status .entry-content {
+		font-size: 18px;
+	}
+
+	.format-quote blockquote small,
+	.format-quote blockquote cite {
+		font-size: 13px;
+	}
+
+	.error404 .page-title {
+		padding: 40px 0 0;
+	}
+
+	.error404 .page-title:before {
+		content: normal;
+	}
+
+	.comment-author {
+		margin-right: 30px;
+	}
+
+	.comment-author .avatar {
+		height: auto;
+		max-width: 100%;
+	}
+
+	.comment-metadata,
+	.comment-content,
+	.comment-list .reply {
+		width: 70%;
+		width: -webkit-calc(100% - 104px);
+		width:         calc(100% - 104px);
+	}
+
+	.comment-form input[type="text"],
+	.comment-form input[type="email"],
+	.comment-form input[type="url"] {
+		width: -webkit-calc(100% - 120px);
+		width:         calc(100% - 120px);
+	}
+
+	.comment-form textarea {
+		height: 80px; /* Smaller field for mobile. */
+	}
+
+	/* Audio */
+	.format-audio .entry-content:before {
+		display: none;
+	}
+
+	.format-audio .audio-content {
+		background-image: none;
+		float: none;
+		padding-left: 0;
+		width: auto;
+	}
+}
+
+/* Mobile devices */
+@media (max-width: 359px) {
+	.site-title {
+		font-weight: normal;
+	}
+	.site-description {
+	    clip: rect(1px, 1px, 1px, 1px);
+	    position: absolute;
+	}
+	.gallery {
+		margin-left: 0;
+	}
+
+	.gallery .gallery-item,
+	.gallery-columns-2.gallery-size-thumbnail .gallery-item {
+		max-width: none;
+		width: 49%;
+		width: -webkit-calc(50% - 4px);
+		width:         calc(50% - 4px);
+	}
+
+	.gallery-columns-1.gallery-size-medium,
+	.gallery-columns-1.gallery-size-thumbnail,
+	.gallery-columns-2.gallery-size-thumbnail,
+	.gallery-columns-3.gallery-size-thumbnail {
+		display: block;
+	}
+
+	.gallery-columns-1 .gallery-item,
+	.gallery-columns-1.gallery-size-medium .gallery-item,
+	.gallery-columns-1.gallery-size-thumbnail .gallery-item {
+		text-align: center;
+		width: 98%;
+		width: -webkit-calc(100% - 4px);
+		width:         calc(100% - 4px);
+	}
+
+	.gallery-columns-3 .gallery-item:nth-of-type(3n),
+	.gallery-columns-5 .gallery-item:nth-of-type(5n),
+	.gallery-columns-7 .gallery-item:nth-of-type(7n),
+	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
+		margin-right: 4px;
+	}
+
+	.gallery br {
+		display: none;
+	}
+
+	.gallery .gallery-item:nth-of-type(even) {
+		margin-right: 0;
+	}
+
+	/* Comments */
+	.comment-author {
+		margin: 0 0 5px;
+		max-width: 100%;
+	}
+
+	.comment-author .avatar {
+		display: inline;
+		margin: 0 5px 0 0;
+		max-width: 20px;
+	}
+
+	.comment-metadata,
+	.comment-content,
+	.comment-list .reply {
+		width: 100%;
+	}
+}
+
+
+/**
+ * 9.0 Print
+ * ----------------------------------------------------------------------------
+ */
+
+/* Retina-specific styles. */
+@media print,
+	(-o-min-device-pixel-ratio: 5/4),
+	(-webkit-min-device-pixel-ratio: 1.25),
+	(min-resolution: 120dpi) {
+
+	.site-header .search-field {
+		background-image: url(images/search-icon-2x.png);
+	}
+
+	.format-audio .audio-content,
+	.format-status .entry-content:before,
+	.format-status .entry-meta:before,
+	.comment-list > li:after,
+	.comment-list .children > li:before {
+		background-image: url(images/dotted-line-2x.png);
+	}
+}
+
+@media print {
+	body {
+		background: none !important;
+		color: #000;
+		font-size: 10pt;
+	}
+
+	footer a[rel="bookmark"]:link:after,
+	footer a[rel="bookmark"]:visited:after {
+		content: " [" attr(href) "] "; /* Show URLs */
+	}
+
+	.site {
+		max-width: 98%;
+	}
+
+	.site-header {
+		background-image: none !important;
+	}
+
+	.site-header .home-link {
+		max-width: none;
+		min-height: 0;
+	}
+
+	.site-title {
+		color: #000;
+		font-size: 21pt;
+	}
+
+	.site-description {
+		font-size: 10pt;
+	}
+
+	.author-avatar,
+	.site-footer,
+	.comment-respond,
+	.comments-area .comment-edit-link,
+	.comments-area .reply,
+	.comments-link,
+	.entry-meta .edit-link,
+	.page-links,
+	.site-content nav,
+	.widget-area,
+	.main-navigation,
+	.navbar,
+	.more-link {
+		display: none;
+	}
+
+	.entry-header,
+	.entry-content,
+	.entry-summary,
+	.entry-meta {
+		margin: 0;
+		width: 100%;
+	}
+
+	.page-title,
+	.entry-title {
+		font-size: 21pt;
+	}
+
+	.entry-meta,
+	.entry-meta a {
+		color: #444;
+		font-size: 10pt;
+	}
+
+	.entry-content img.alignleft,
+	.entry-content .wp-caption.alignleft {
+		margin-left: 0;
+	}
+
+	.entry-content img.alignright,
+	.entry-content .wp-caption.alignright {
+		margin-right: 0;
+	}
+
+	.format-image .entry-content .size-full {
+		margin: 0;
+	}
+
+	/* Remove colors from post formats */
+	.hentry {
+		background-color: #fff;
+	}
+
+	/* Comments */
+	.comments-area > li.comment {
+		background: none;
+		position: relative;
+		width: auto;
+	}
+
+	.comment-metadata {
+		float: none;
+	}
+
+	.comment-author .fn,
+	.comment-reply-link,
+	.comment-reply-login {
+		color: #333;
+	}
+}
diff --git a/wp-content/themes/twentythirteen/tag.php b/wp-content/themes/twentythirteen/tag.php
index e5749fa6caba949d17aac7c6a708069fc8d59fb7..0bfceea5472ac682846d625161193a2365304ca8 100644
--- a/wp-content/themes/twentythirteen/tag.php
+++ b/wp-content/themes/twentythirteen/tag.php
@@ -1,46 +1,51 @@
-<?php
-/**
- * The template for displaying Tag pages
- *
- * Used to display archive-type pages for posts in a tag.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-			<header class="archive-header">
-				<h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) ); ?></h1>
-
-				<?php if ( tag_description() ) : // Show an optional tag description ?>
-				<div class="archive-meta"><?php echo tag_description(); ?></div>
-				<?php endif; ?>
-			</header><!-- .archive-header -->
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying Tag pages
+ *
+ * Used to display archive-type pages for posts in a tag.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+			<header class="archive-header">
+				<h1 class="archive-title">
+				<?php
+				/* translators: Tag title. */
+				printf( __( 'Tag Archives: %s', 'twentythirteen' ), single_tag_title( '', false ) );
+				?>
+				</h1>
+
+				<?php if ( tag_description() ) : // Show an optional tag description. ?>
+				<div class="archive-meta"><?php echo tag_description(); ?></div>
+				<?php endif; ?>
+			</header><!-- .archive-header -->
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
diff --git a/wp-content/themes/twentythirteen/taxonomy-post_format.php b/wp-content/themes/twentythirteen/taxonomy-post_format.php
index 67a58f0f09fe07593e3aa6443d92899483e0d108..f1272f43221c4f39c9db182dfe460836388a31dd 100644
--- a/wp-content/themes/twentythirteen/taxonomy-post_format.php
+++ b/wp-content/themes/twentythirteen/taxonomy-post_format.php
@@ -1,44 +1,49 @@
-<?php
-/**
- * The template for displaying Post Format pages
- *
- * Used to display archive-type pages for posts with a post format.
- * If you'd like to further customize these Post Format views, you may create a
- * new template file for each specific one.
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package WordPress
- * @subpackage Twenty_Thirteen
- * @since Twenty Thirteen 1.0
- */
-
-get_header(); ?>
-
-	<div id="primary" class="content-area">
-		<div id="content" class="site-content" role="main">
-
-		<?php if ( have_posts() ) : ?>
-			<header class="archive-header">
-				<h1 class="archive-title"><?php printf( __( '%s Archives', 'twentythirteen' ), '<span>' . esc_html( get_post_format_string( get_post_format() ) ) . '</span>' ); ?></h1>
-			</header><!-- .archive-header -->
-
-			<?php /* The loop */ ?>
-			<?php
-			while ( have_posts() ) :
-				the_post();
-				?>
-				<?php get_template_part( 'content', get_post_format() ); ?>
-			<?php endwhile; ?>
-
-			<?php twentythirteen_paging_nav(); ?>
-
-		<?php else : ?>
-			<?php get_template_part( 'content', 'none' ); ?>
-		<?php endif; ?>
-
-		</div><!-- #content -->
-	</div><!-- #primary -->
-
-<?php get_sidebar(); ?>
-<?php get_footer(); ?>
+<?php
+/**
+ * The template for displaying Post Format pages
+ *
+ * Used to display archive-type pages for posts with a post format.
+ * If you'd like to further customize these Post Format views, you may create a
+ * new template file for each specific one.
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+
+get_header(); ?>
+
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+
+		<?php if ( have_posts() ) : ?>
+			<header class="archive-header">
+				<h1 class="archive-title">
+				<?php
+				/* translators: %s: Post format name. */
+				printf( __( '%s Archives', 'twentythirteen' ), '<span>' . esc_html( get_post_format_string( get_post_format() ) ) . '</span>' );
+				?>
+				</h1>
+			</header><!-- .archive-header -->
+
+			<?php
+			// Start the loop.
+			while ( have_posts() ) :
+				the_post();
+				?>
+				<?php get_template_part( 'content', get_post_format() ); ?>
+			<?php endwhile; ?>
+
+			<?php twentythirteen_paging_nav(); ?>
+
+		<?php else : ?>
+			<?php get_template_part( 'content', 'none' ); ?>
+		<?php endif; ?>
+
+		</div><!-- #content -->
+	</div><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>