diff --git a/wp-content/themes/path/404.php b/wp-content/themes/path/404.php
new file mode 100644
index 0000000000000000000000000000000000000000..10998e6faabbc9443b567c9c0c34b138ac1ec4c4
--- /dev/null
+++ b/wp-content/themes/path/404.php
@@ -0,0 +1,60 @@
+<?php
+/**
+ * 404 Template
+ *
+ * 404 template is used when an invalid url is visited.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+@header( 'HTTP/1.1 404 Not found', true, 404 );
+
+get_header(); // Loads the header.php template. ?>
+
+<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<article id="post-0" class="<?php hybrid_entry_class(); ?>">
+			
+				<header class="entry-header">
+					<h1 class="error-404-title entry-title"><?php _e( 'What happened!?', 'path' ); ?></h1>
+				</header><!-- .entry-header -->
+				
+				<div class="entry-content">
+				
+					<p>
+						<?php printf( __( "You tried going to %s, which doesn't exist. You can try navigate or search.", 'path' ), '<code>' . home_url( esc_url( $_SERVER['REQUEST_URI'] ) ) . '</code>' ); ?>
+					</p>
+			
+					<?php get_search_form(); // Loads the searchform.php template. ?>
+					
+					<p>
+						<?php _e( "Or here are the latest posts, hope it helps.", 'path' ); ?>
+					</p>
+
+					<ul>
+						<?php wp_get_archives( array( 'limit' => 20, 'type' => 'postbypost' ) ); ?>
+					</ul>
+			
+				</div><!-- .entry-content -->
+
+			</article><!-- .hentry -->
+
+		</div><!-- .hfeed -->
+
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+
+	</div><!-- #content -->
+
+<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/admin/functions-admin.php b/wp-content/themes/path/admin/functions-admin.php
new file mode 100644
index 0000000000000000000000000000000000000000..7d7bdfaffdbd90d7bd02636f85c8b9151ddd7a79
--- /dev/null
+++ b/wp-content/themes/path/admin/functions-admin.php
@@ -0,0 +1,147 @@
+<?php
+/*
+ * Theme Settings
+ * 
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+add_action( 'admin_menu', 'path_theme_admin_setup' );
+
+function path_theme_admin_setup() {
+    
+	global $theme_settings_page;
+	
+	/* Get the theme settings page name. */
+	$theme_settings_page = 'appearance_page_theme-settings';
+
+	/* Get the theme prefix. */
+	$prefix = hybrid_get_prefix();
+
+	/* Create a settings meta box only on the theme settings page. */
+	add_action( 'load-appearance_page_theme-settings', 'path_theme_settings_meta_boxes' );
+
+	/* Add a filter to validate/sanitize your settings. */
+	add_filter( "sanitize_option_{$prefix}_theme_settings", 'path_theme_validate_settings' );
+
+}
+
+/* Adds custom meta boxes to the theme settings page. */
+function path_theme_settings_meta_boxes() {
+
+	/* Add a custom meta box. */
+	add_meta_box(
+		'path-theme-meta-box-logo',			// Name/ID
+		__( 'Logo Upload', 'path' ),		// Label
+		'path_theme_meta_box_logo',			// Callback function
+		'appearance_page_theme-settings',	// Page to load on, leave as is
+		'normal',							// Which meta box holder?
+		'high'								// High/low within the meta box holder
+	);
+	
+	/* Add a custom meta box. */
+	add_meta_box(
+		'path-theme-meta-box-background',	// Name/ID
+		__( 'Background', 'path' ),			// Label
+		'path_theme_meta_box_background',	// Callback function
+		'appearance_page_theme-settings',	// Page to load on, leave as is
+		'normal',							// Which meta box holder?
+		'high'								// High/low within the meta box holder
+	);
+	
+	/* Add a custom meta box. */
+	add_meta_box(
+		'path-theme-meta-box-layout',		// Name/ID
+		__( 'Layout', 'path' ),				// Label
+		'path_theme_meta_box_layout',		// Callback function
+		'appearance_page_theme-settings',	// Page to load on, leave as is
+		'normal',							// Which meta box holder?
+		'high'								// High/low within the meta box holder
+	);	
+
+	/* Add additional add_meta_box() calls here. */
+}
+
+/* Function for displaying the logo meta box. */
+function path_theme_meta_box_logo() { ?>
+
+	<table class="form-table">
+
+		<!-- Logo -->
+		<tr>
+			<th>
+				<label for="<?php echo hybrid_settings_field_id( 'path_custom_logo' ); ?>"><?php _e( 'Custom logo:', 'path' ); ?></label>
+			</th>
+			<td>
+				<p><?php printf( __( 'Want to replace or remove default logo? <a href="%s">Go to Appearance &gt;&gt; Header</a>. ', 'path' ), admin_url( 'themes.php?page=custom-header' ) ); ?></p>
+			</td>
+		</tr>
+
+		<!-- End custom form elements. -->
+	</table><!-- .form-table --><?php
+	
+}
+
+/* Function for displaying the background meta box. */
+function path_theme_meta_box_background() { ?>
+
+	<table class="form-table">
+
+		<!-- Background -->
+		<tr>
+			<th>
+				<label for="<?php echo hybrid_settings_field_id( 'path_custom_background' ); ?>"><?php _e( 'Custom background:', 'path' ); ?></label>
+			</th>
+			<td>
+				<p><?php printf( __( 'Want to replace or remove default background? <a href="%s">Go to Appearance &gt;&gt; Background</a>. ', 'path' ), admin_url( 'themes.php?page=custom-background' ) ); ?></p>
+			</td>
+		</tr>
+
+		<!-- End custom form elements. -->
+	</table><!-- .form-table --><?php
+	
+}
+
+/* Function for displaying the layout meta box. */
+function path_theme_meta_box_layout() {
+
+	/* Get theme layouts. */
+	$path_supported_layouts = get_theme_support( 'theme-layouts' );
+	$path_layouts = $path_supported_layouts[0]; // Array of all layouts without the 'layout-' prefix. ?>
+
+	<table class="form-table">
+		
+		<!-- Global Layout -->
+		<tr>
+			<th>
+			    <label for="<?php echo esc_attr( hybrid_settings_field_id( 'path_global_layout' ) ); ?>"><?php _e( 'Global Layout:', 'path' ); ?></label>
+			</th>
+			<td>
+			    <select id="<?php echo esc_attr( hybrid_settings_field_id( 'path_global_layout' ) ); ?>" name="<?php echo esc_attr( hybrid_settings_field_name( 'path_global_layout' ) ); ?>">
+					<option value="layout-default" <?php selected( hybrid_get_setting( 'path_global_layout' ), 'layout-default' ); ?>> <?php echo esc_html( theme_layouts_get_string( 'default' ) ); ?> </option>
+					<?php
+					foreach ( $path_layouts as $path_layout ) { ?>
+						<option value="<?php echo esc_attr( "layout-{$path_layout}" ); ?>" <?php selected( hybrid_get_setting( 'path_global_layout' ), "layout-{$path_layout}" ); ?>> <?php echo esc_html( theme_layouts_get_string( $path_layout ) ); ?> </option>
+					<?php } ?>
+			    </select>
+			    <p><span class="description"><?php _e( 'Set the layout for the entire site. The default layout is 2 columns with content on the left. You can overwrite this value in individual post or page. Note! Three column layouts will only work if you use Primary and Secondary Widget areas and browser window is wide enough.', 'path' ); ?></span></p>
+			</td>
+		</tr>	
+		
+		<!-- End custom form elements. -->
+	</table><!-- .form-table -->		
+	
+<?php }		
+
+/* Validate theme settings. */
+function path_theme_validate_settings( $input ) {
+
+	$input['path_global_layout'] = wp_filter_nohtml_kses( $input['path_global_layout'] );
+
+    /* Return the array of theme settings. */
+    return $input;
+	
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/attachment-image.php b/wp-content/themes/path/attachment-image.php
new file mode 100644
index 0000000000000000000000000000000000000000..72fd756c02d0ca72026a803cf5e1b3d513f78836
--- /dev/null
+++ b/wp-content/themes/path/attachment-image.php
@@ -0,0 +1,89 @@
+<?php
+/**
+ * Attachment Template
+ *
+ * This is the default image attachment template.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+
+			<?php if ( have_posts() ) : ?>
+
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+					
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<header class="entry-header">	
+							<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+						</header><!-- .entry-header -->
+						
+						<div class="entry-content">
+						
+							<?php echo wp_get_attachment_image( get_the_ID(), 'full', false, array( 'class' => 'aligncenter' ) ); ?>
+							<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'path' ) ); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+							
+						</div><!-- .entry-content -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Published on [entry-published] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+					
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+					
+					<div class="attachment-meta">
+					
+						<?php $gallery = do_shortcode( sprintf( '[gallery id="%1$s" exclude="%2$s" columns="8"]', $post->post_parent, get_the_ID() ) ); ?>
+						
+						<?php if ( !empty( $gallery ) ) { ?>
+							<div class="image-gallery">
+								<h3><?php _e( 'Gallery', 'path' ); ?></h3>
+								<?php echo $gallery; ?>
+							</div>
+						<?php } ?>
+						
+					</div><!-- .attachment-meta -->
+						
+					<?php get_sidebar( 'after-singular' ); // Loads the sidebar-after-singular.php template. ?>
+
+					<?php do_atomic( 'after_singular' ); // path_after_singular ?>
+
+					<?php comments_template( '/comments.php', true ); // Loads the comments.php template. ?>
+
+				<?php endwhile; ?>
+
+			<?php endif; ?>
+
+		</div><!-- .hfeed -->
+
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+		
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/changelog.txt b/wp-content/themes/path/changelog.txt
new file mode 100644
index 0000000000000000000000000000000000000000..436ccd926d07c23a5a1b4d43037e2b8fbfe210b0
--- /dev/null
+++ b/wp-content/themes/path/changelog.txt
@@ -0,0 +1,37 @@
+23.10.2012 - version 0.1.4
+
+* Updated Hybrid Core to version 1.4.3.
+
+* Most viewed widget added.
+
+* Customize support for 1 column layout.
+
+* Gravity Form CSS HTML5 input types added.
+
+* Blockquote height: 100% removed. It was for IE7 and I have dropped suport for that.
+
+5.9.2012 - version 0.1.3
+
+* Oh what a rookie mistake. .gitmodules file removed.
+
+2.9.2012 - version 0.1.2
+
+* Hybrid Core updated to 1.4.2.
+
+* Added Polish translations.
+
+* Slider image padding taken off from left and right.
+
+* Dequeue Pullquote Shortcode plugin styles and add them in style.css.
+
+31.7.2012 - version 0.1.1
+
+* Better code in theme customize and settings page when choosing global layout.
+
+* Arrows fixed back to normal. They were replaced by ?-mark when compressing style.css. 
+
+* @link: http://stackoverflow.com/questions/2701192/ascii-character-for-up-down-triangle-arrow-to-display-in-html
+
+18.6.2012 - version 0.1
+
+* Everything is brand new.
\ No newline at end of file
diff --git a/wp-content/themes/path/comment.php b/wp-content/themes/path/comment.php
new file mode 100644
index 0000000000000000000000000000000000000000..9037bc69fa27b7dd45ad144251f9eaca57af9f14
--- /dev/null
+++ b/wp-content/themes/path/comment.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Comment Template
+ *
+ * The comment template displays an individual comment. This can be overwritten by templates specific
+ * to the comment type (comment.php, comment-{$comment_type}.php, comment-pingback.php, 
+ * comment-trackback.php) in a child theme.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+	global $post, $comment;
+?>
+
+	<li id="comment-<?php comment_ID(); ?>" class="<?php hybrid_comment_class(); ?>">
+
+		<?php do_atomic( 'before_comment' ); // path_before_comment ?>
+
+		<div class="comment-wrap">
+
+			<?php do_atomic( 'open_comment' ); // path_open_comment ?>
+
+			<?php echo hybrid_avatar(); ?>
+
+			<?php echo apply_atomic_shortcode( 'comment_meta', '<div class="comment-meta">[comment-author] [comment-published] [comment-permalink before="| "] [comment-edit-link before="| "] [comment-reply-link before="| "]</div>' ); ?>
+
+			<div class="comment-content comment-text">
+				<?php if ( '0' == $comment->comment_approved ) : ?>
+					<?php echo apply_atomic_shortcode( 'comment_moderation', '<p class="alert moderation">' . __( 'Your comment is awaiting moderation.', 'path' ) . '</p>' ); ?>
+				<?php endif; ?>
+
+				<?php comment_text( $comment->comment_ID ); ?>
+			</div><!-- .comment-content .comment-text -->
+
+			<?php do_atomic( 'close_comment' ); // path_close_comment ?>
+
+		</div><!-- .comment-wrap -->
+
+		<?php do_atomic( 'after_comment' ); // path_after_comment ?>
+
+	<?php /* No closing </li> is needed.  WordPress will know where to add it. */ ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/comments.php b/wp-content/themes/path/comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..483522d0ce293d2747bb297201873b626acf8305
--- /dev/null
+++ b/wp-content/themes/path/comments.php
@@ -0,0 +1,66 @@
+<?php
+/**
+ * Comments Template
+ *
+ * Lists comments and calls the comment form.  Individual comments have their own templates.  The 
+ * hierarchy for these templates is $comment_type.php, comment.php.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+/* If a post password is required or no comments are given and comments/pings are closed, return. */
+if ( post_password_required() || ( !have_comments() && !comments_open() && !pings_open() ) )
+	return;
+?>
+
+<div id="comments-template">
+
+	<div class="comments-wrap">
+
+		<div id="comments">
+
+			<?php if ( have_comments() ) : ?>
+
+				<h3 id="comments-number" class="comments-header"><?php comments_number( __( 'No Responses', 'path' ), __( 'One Response', 'path' ), __( '% Responses', 'path' ) ); ?></h3>
+
+				<?php if ( get_option( 'page_comments' ) ) : ?>
+					<div class="comments-nav">
+						<?php previous_comments_link(); ?>
+						<span class="page-numbers"><?php printf( __( 'Page %1$s of %2$s', 'path' ), ( get_query_var( 'cpage' ) ? absint( get_query_var( 'cpage' ) ) : 1 ), get_comment_pages_count() ); ?></span>
+						<?php next_comments_link(); ?>
+					</div><!-- .comments-nav -->
+				<?php endif; ?>
+
+				<?php do_atomic( 'before_comment_list' );// path_before_comment_list ?>
+
+				<ol class="comment-list">
+					<?php wp_list_comments( hybrid_list_comments_args() ); ?>
+				</ol><!-- .comment-list -->
+
+				<?php do_atomic( 'after_comment_list' ); // path_after_comment_list ?>
+
+			<?php endif; ?>
+
+			<?php if ( pings_open() && !comments_open() ) : ?>
+
+				<p class="comments-closed pings-open">
+					<?php printf( __( 'Comments are closed, but <a href="%s" title="Trackback URL for this post">trackbacks</a> and pingbacks are open.', 'path' ), esc_url( get_trackback_url() ) ); ?>
+				</p><!-- .comments-closed .pings-open -->
+
+			<?php elseif ( !comments_open() ) : ?>
+
+				<p class="comments-closed">
+					<?php _e( 'Comments are closed.', 'path' ); ?>
+				</p><!-- .comments-closed -->
+
+			<?php endif; ?>
+
+		</div><!-- #comments -->
+
+		<?php comment_form(); // Loads the comment form. ?>
+
+	</div><!-- .comments-wrap -->
+
+</div><!-- #comments-template -->
\ No newline at end of file
diff --git a/wp-content/themes/path/content-aside.php b/wp-content/themes/path/content-aside.php
new file mode 100644
index 0000000000000000000000000000000000000000..42947176941f1a294b0888a9cae0c8259cf40c4a
--- /dev/null
+++ b/wp-content/themes/path/content-aside.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Aside Content Template
+ *
+ * Template used for 'aside' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+	
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-audio.php b/wp-content/themes/path/content-audio.php
new file mode 100644
index 0000000000000000000000000000000000000000..eddcc3040ad400baa3e69894387b29df45e3f3c6
--- /dev/null
+++ b/wp-content/themes/path/content-audio.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Audio Content Template
+ *
+ * Template used for 'audio' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+			
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+		
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+			
+	<?php } else { ?>
+
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-gallery.php b/wp-content/themes/path/content-gallery.php
new file mode 100644
index 0000000000000000000000000000000000000000..2aa733ce9c102a6624e084cd42b8a2d558731470
--- /dev/null
+++ b/wp-content/themes/path/content-gallery.php
@@ -0,0 +1,57 @@
+<?php
+/**
+ * Gallery Content Template
+ *
+ * Template used for 'gallery' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">	
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+	
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<header class="entry-header">	
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+		</header><!-- .entry-header -->
+		
+		<?php echo do_shortcode( '[gallery numberposts="3" orderby="rand"]' ); ?>
+
+		<div class="entry-summary">
+			<?php the_excerpt(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-summary -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-image.php b/wp-content/themes/path/content-image.php
new file mode 100644
index 0000000000000000000000000000000000000000..b1ced1f956de246f9c3740cffadfab96ba69bb41
--- /dev/null
+++ b/wp-content/themes/path/content-image.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Image Content Template
+ *
+ * Template used for 'image' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+		
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">	
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-link.php b/wp-content/themes/path/content-link.php
new file mode 100644
index 0000000000000000000000000000000000000000..970ed0ed491c7339ea294109c0deee2d3da8785b
--- /dev/null
+++ b/wp-content/themes/path/content-link.php
@@ -0,0 +1,63 @@
+<?php
+/**
+ * Link Content Template
+ *
+ * Template used for 'link' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+		
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+			
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<?php if ( get_the_title() ) { ?>
+
+			<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-thumbnail' ) ); ?>
+
+			<header class="entry-header">
+				<h2 class="entry-title"><a href="<?php echo esc_url( path_url_grabber() ); ?>" title="<?php the_title_attribute(); ?>"><?php printf( '%s <span class="meta-nav">&rarr;</span>', the_title( '', '', false ) ); ?></a></h2>
+			</header><!-- .entry-header -->
+			
+		<?php } else { ?>
+
+			<div class="entry-content">
+				<?php the_content(); ?>
+				<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+			</div><!-- .entry-content -->
+		
+		<?php } ?>
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-page.php b/wp-content/themes/path/content-page.php
new file mode 100644
index 0000000000000000000000000000000000000000..f3b738fd8559a64c5c3e0277e8b12fceaffc3f09
--- /dev/null
+++ b/wp-content/themes/path/content-page.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * Page Content Template
+ *
+ * Template used for 'page' post type.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+		</header><!-- .entry-header -->
+
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">[entry-edit-link]</div>' ); ?>
+		</footer><!-- .entry-footer -->
+			
+	<?php } else { ?>
+
+		<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-thumbnail' ) ); ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+		</header><!-- .entry-header -->
+		
+		<div class="entry-summary">
+			<?php the_excerpt(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-summary -->
+
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-quote.php b/wp-content/themes/path/content-quote.php
new file mode 100644
index 0000000000000000000000000000000000000000..56689b07cae26932da86bed22a09432c3a910222
--- /dev/null
+++ b/wp-content/themes/path/content-quote.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Quote Content Template
+ *
+ * Template used for 'quote' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php if ( is_singular() ) 
+				echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-edit-link before="| "]<br />[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' );
+			else
+				echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' );
+			?>
+		</footer><!-- .entry-footer -->
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-status.php b/wp-content/themes/path/content-status.php
new file mode 100644
index 0000000000000000000000000000000000000000..bd1523c06c889ff56116e819e3ea6b920dead3b6
--- /dev/null
+++ b/wp-content/themes/path/content-status.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Status Content Template
+ *
+ * Template used for 'status' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php echo get_avatar( get_the_author_meta( 'email' ) ); ?></a>
+
+	<div class="entry-content">
+		<?php the_content(); ?>
+		<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+	</div><!-- .entry-content -->
+
+	<footer class="entry-footer">
+		<?php if ( is_singular() ) 
+			echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] updated on [entry-published] [entry-edit-link before="| "]<br />[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' );
+		else
+			echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] updated on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' );
+		?>
+	</footer><!-- .entry-footer -->
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content-video.php b/wp-content/themes/path/content-video.php
new file mode 100644
index 0000000000000000000000000000000000000000..2eda58aadd77bc8dd1e350cf92b7e7f9476507ae
--- /dev/null
+++ b/wp-content/themes/path/content-video.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Video Content Template
+ *
+ * Template used for 'video' post format.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[post-format-link] published on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+			
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">	
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<div class="entry-content">
+			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'path' ) ); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+		
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[post-format-link] published on [entry-published] [entry-permalink before="| "] [entry-comments-link before="| "] [entry-edit-link before="| "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/content.php b/wp-content/themes/path/content.php
new file mode 100644
index 0000000000000000000000000000000000000000..ac46f8c053c6f74475183cd711dea9c5a056e262
--- /dev/null
+++ b/wp-content/themes/path/content.php
@@ -0,0 +1,58 @@
+<?php
+/**
+ * Content Template
+ *
+ * Template used to show post content when a more specific template cannot be found.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+do_atomic( 'before_entry' ); // path_before_entry ?>
+
+<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+	<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+	<?php if ( is_singular() ) { ?>
+	
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+		
+		<div class="entry-content">
+			<?php the_content(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-content -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } else { ?>
+
+		<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) ); ?>
+	
+		<header class="entry-header">
+			<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+			<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+		</header><!-- .entry-header -->
+		
+		<div class="entry-summary">
+			<?php the_excerpt(); ?>
+			<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+		</div><!-- .entry-summary -->
+
+		<footer class="entry-footer">
+			<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( '[entry-terms taxonomy="category" before="Posted in "] [entry-terms before="| Tagged "]', 'path' ) . '</div>' ); ?>
+		</footer><!-- .entry-footer -->
+		
+	<?php } ?>
+
+	<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+</article><!-- .hentry -->
+
+<?php do_atomic( 'after_entry' ); // path_after_entry ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/css/customize/path-customizer.css b/wp-content/themes/path/css/customize/path-customizer.css
new file mode 100644
index 0000000000000000000000000000000000000000..4fc74da00df420417c6874f657659a01e1f7ec53
--- /dev/null
+++ b/wp-content/themes/path/css/customize/path-customizer.css
@@ -0,0 +1,5 @@
+/* One column. */
+.layout-1c #sidebar-primary,
+.layout-1c #sidebar-secondary{
+	display:none;
+}
\ No newline at end of file
diff --git a/wp-content/themes/path/css/editor-style.css b/wp-content/themes/path/css/editor-style.css
new file mode 100644
index 0000000000000000000000000000000000000000..e5f74b6847c13bb6615ce7636d4a6b7781c6eadc
--- /dev/null
+++ b/wp-content/themes/path/css/editor-style.css
@@ -0,0 +1,186 @@
+html .mceContentBody {
+	color: #666;
+	font: normal normal normal 1em/1.5em Georgia, Palatino, "Palatino Linotype", "Book Antiqua", serif;
+	padding: 0 2%;
+}
+a,
+a:visited {
+	color: #ca4842;
+	text-decoration: none;
+}
+a:focus,
+a:active,
+a:hover {
+	color: #b7322c;
+	text-decoration: underline;
+}
+img,
+object,
+embed {
+	max-width: 100%;
+	height: auto;
+}
+img {
+	-moz-box-sizing: border-box; 
+	-webkit-box-sizing: border-box; 
+	box-sizing: border-box;
+	border: 1px solid #e9edf1;
+	padding: 4px;
+}
+/* Headers */
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	font-family: 'Oswald', Georgia, sans-serif;
+    font-style: normal;
+    font-weight: normal;
+	margin-top: 0;
+}
+h1 {
+	font-size: 1.75em; /* 28px / 16px = 1.75  */
+	line-height: 1.1;
+}
+h2 {
+	font-size:1.5em;
+	line-height: 1.2;
+}
+h3 { 
+	font-size:1.17em;
+}
+h4 {
+	font-size: 1.0625em; /* 17px / 16px = 1.0625 */
+}
+h5 {
+	font-size: 1em;
+}
+h6 {
+	font-size: 0.9375em; /* 15px / 16px = 0.9375 */
+}
+ul {
+	list-style-type: circle;
+}
+.alignleft,
+.left {
+	float: left;
+	margin: 1em 1.25em 0.5em 0;
+}
+.alignright,
+.right {
+	float: right;
+	margin: 1em 0 0.5em 1.25em;
+}
+.aligncenter,
+.center {
+	display: block;
+	margin: 1em auto;
+}
+blockquote {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	border-left: 0.375em solid #70a0b2;
+	color: #666;
+	font-style: italic;
+	margin: 1em 0;
+	padding: 1% 2%;
+}
+blockquote blockquote {
+	padding: 0.5% 2%;
+}
+.pullquote {
+    border-bottom: 1px solid #666666;
+    border-top: 1px solid #666666;
+    color: #666666;
+    float: right;
+    font-size: 1.125em; /* 18 px / 16 px = 1.125. */
+    font-style: italic;
+    line-height: 1.66666667em; /* 30 px / 18 px = 1.66666667 */
+    margin: 0.555555556em 0 0.555555556em 1.11111111;
+    padding: 0.555555556em;
+    text-align: center;
+    width: 200px;
+}
+code {
+	background: #f7f7f7;
+	color: #555;
+	padding: 0 0.1875em;
+}
+pre {
+	background: #f7f7f7;
+	border: 1px solid #e5e5e5;
+	color: #555;
+	font-size: .9375em;
+	padding: 3%;
+}
+pre code {
+	padding: 0;
+}
+/* Acronyms and abbreviations */
+acronym,
+abbr {
+	border-bottom: 1px dotted #999;
+}
+
+/* Tables */
+table {
+	background: #fff;
+	margin: 0 0 1em 0;
+	width: 100%;
+}
+th {
+	background: #70a0b2;
+	border-top: 1px solid #f2f2f2;
+	border-bottom: 1px solid #f2f2f2;
+	border-right: 1px solid #f2f2f2;
+	color: #fff;
+	padding: .5em 2%;
+	text-align: left;
+}
+td,
+tbody th {
+	border-bottom: 1px solid #f2f2f2;
+	border-left: 1px solid #f2f2f2;
+	border-right: 1px solid #f2f2f2;
+	font-size: .9375em;
+	padding: .5em 2%;
+}
+tr:hover td {
+	background: #e9edf1;
+}
+tr:hover th {
+	background: #e9edf1;
+	color: #666;
+}
+thead th,
+tfoot th,
+thead tr:hover th,
+tfoot tr:hover th {
+	background: #e9edf1;
+	color: #666;
+}
+hr {
+	background: #e9edf1;
+	height: 1px;
+}
+/* Captions */
+.wp-caption {
+	max-width: 100%;
+	overflow: visible;
+	padding: 0;
+}
+.wp-caption img {
+	margin: 0;
+	width: 100%;
+}
+.wp-caption-text {
+	background: #e9edf1;
+	border-bottom: 1px solid #e5e5e5;
+	color: #555;
+	font: normal normal normal 0.875em/1.6 "Helvetica Neue", Helvetica, sans-serif;
+	margin: -0.357142857em 0 0 0; /* 5px / 14px = 0.357142857 */
+	max-width: 100%;
+	padding: 0.571428571em 0.714285714em;
+	text-align: center;
+}
\ No newline at end of file
diff --git a/wp-content/themes/path/css/flexslider/flexslider.css b/wp-content/themes/path/css/flexslider/flexslider.css
new file mode 100644
index 0000000000000000000000000000000000000000..bee12d5186b2060c9caa2ce833c6d66085dd0031
--- /dev/null
+++ b/wp-content/themes/path/css/flexslider/flexslider.css
@@ -0,0 +1,250 @@
+/*
+ * jQuery FlexSlider v2.0
+ * http://www.woothemes.com/flexslider/
+ *
+ * Copyright 2012 WooThemes
+ * Free to use under the GPLv2 license.
+ * http://www.gnu.org/licenses/gpl-2.0.html
+ *
+ * Contributing author: Tyler Smith (@mbmufffin)
+ */
+
+ 
+/* Browser Resets */
+.flex-container a:active,
+.flexslider a:active,
+.flex-container a:focus,
+.flexslider a:focus  {
+	outline: none;
+}
+.slides,
+.flex-control-nav,
+.flex-direction-nav {
+	margin: 0;
+	padding: 0;
+	list-style: none;
+} 
+
+/* =FlexSlider Necessary Styles
+-------------------------------------------------------------- */
+.flexslider {
+	margin: 0;
+	padding: 0;
+}
+.flexslider .slides > li {
+	display: none;
+	/* -webkit-backface-visibility: hidden;  Hide the slides before the JS is loaded. Avoids image jumping. */
+}
+.flexslider .slides img {
+	width: 100%;
+	display: block;
+}
+.flex-pauseplay span {
+	text-transform: capitalize;
+}
+
+/* Clearfix for the .slides element */
+.slides:after {
+	content: ".";
+	display: block;
+	clear: both;
+	visibility: hidden;
+	line-height: 0;
+	height: 0;
+} 
+html[xmlns] .slides {
+	display: block;
+} 
+* html .slides {
+	height: 1%;
+}
+
+/* No JavaScript Fallback */
+/* If you are not using another script, such as Modernizr, make sure you
+ * include js that eliminates this class on page load */
+.no-js .slides > li:first-child {
+	display: block;
+}
+
+
+/* =FlexSlider Default Theme
+-------------------------------------------------------------- */
+.flexslider {
+	position: relative;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	-o-border-radius: 4px;
+	border-radius: 4px;
+	zoom: 1;
+}
+.flex-viewport {
+	max-height: 2000px;
+	-webkit-transition: all 1s ease;
+	-moz-transition: all 1s ease;
+	transition: all 1s ease;
+}
+.loading .flex-viewport {
+	max-height: 300px;
+}
+.flexslider .slides {
+	zoom: 1;
+}
+.carousel li {
+	margin-right: 5px;
+}
+
+
+/* =My slider styles 
+-------------------------------------------------------------- */
+
+.page-template-path-slider #main .wrap,
+.home #main .wrap,
+.blog #main .wrap {
+	margin-bottom: 1em;
+}
+#slider-content.flexslider {
+	margin: 0 0 1em;
+}
+#slider-content .hentry {
+	border-bottom: none;
+	padding-bottom: 0;
+}
+#slider-content .slider-images {
+	padding: 1em 0;
+}
+#slider-content img {
+    border: none;
+}
+
+/* Control Nav */
+.flex-control-nav {
+	width: 100%;
+	position: absolute;
+	bottom: -1em; 
+	text-align: center;
+}
+.flex-control-nav li {
+	display: inline-block;
+	margin: 0 6px;
+	zoom: 1;
+	*display: inline;
+}
+.flex-control-paging li a {
+	background: url(images/bg_direction_nav.png) no-repeat 0 -90px;
+	cursor: pointer;
+	display: block;
+	text-indent: -9999px;
+	width: 11px;
+	height: 11px;
+	-webkit-transition: all 0s ease-out;
+    -moz-transition: all 0s ease-out;
+    -ms-transition: all 0s ease-out;
+    -o-transition: all 0s ease-out;
+    transition: all 0s ease-out;
+}
+.flex-control-paging li a:hover,
+.flex-control-paging li a.flex-active {
+	background-position: 0 -101px;
+}
+
+/* Direction Nav. */
+.flex-direction-nav a {
+	background: url(images/bg_direction_nav.png) no-repeat 0 0;
+	cursor: pointer;
+	display: block;
+	margin: -20px 0 0;
+	position: absolute;
+	top: 22%;
+	text-indent: -9999px;
+	opacity: 1;
+	-webkit-transition: all .3s ease;
+	width: 40px;
+	height: 40px;
+}
+.flex-direction-nav .flex-next {
+	background-position: 0 -50px;
+	right: 0.5em
+}
+.flex-direction-nav .flex-prev {
+	left: 0.5em;
+}
+.flexslider:hover .flex-next {
+	opacity: 1; 
+	right: 0.5em;
+}
+.flexslider:hover .flex-prev {
+	opacity: 1;
+	left: 0.5em;
+}
+.flex-direction-nav .disabled {
+	opacity: .3!important;
+	filter:alpha(opacity=30);
+	cursor: default;
+}
+
+@media only screen and (min-width: 30em) {
+
+.flex-direction-nav a {
+	top: 29%;
+}
+
+}
+
+@media only screen and (min-width: 40em) {
+
+.flex-direction-nav a {
+	top: 35%;
+}
+
+}
+
+@media only screen and (min-width: 49em) {
+
+/* Direction Nav. */
+.flex-direction-nav a {
+	top: 50%;
+}
+.flex-direction-nav .flex-prev {
+	opacity: 0;
+}
+.flex-direction-nav .flex-next {
+	opacity: 0;
+}
+.flex-direction-nav .flex-next {
+	right: -2em;
+}
+.flex-direction-nav .flex-prev {
+	left: -2em;
+}
+
+.page-template-path-slider #main .wrap,
+.home #main .wrap,
+.blog #main .wrap {
+	margin-bottom: 2em;
+}
+
+#slider-content .slider-images {
+	float: left;
+	width: 46%;
+}
+#slider-content img {
+    padding: 4px 0;
+}
+#slider-content .slider-title {
+	float: right;
+	padding: 1em 0;
+	width: 50%;
+}
+	
+}
+
+@media only screen and (min-width: 60em) {
+
+#slider-content .slider-images {
+	width: 64%;
+}
+#slider-content .slider-title {
+	width: 32%;
+}
+
+}
\ No newline at end of file
diff --git a/wp-content/themes/path/css/flexslider/images/bg_direction_nav.png b/wp-content/themes/path/css/flexslider/images/bg_direction_nav.png
new file mode 100644
index 0000000000000000000000000000000000000000..7aae36f991f322f84dd3da57fcc87fbc320da966
Binary files /dev/null and b/wp-content/themes/path/css/flexslider/images/bg_direction_nav.png differ
diff --git a/wp-content/themes/path/docs/licence.txt b/wp-content/themes/path/docs/licence.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7e14f3854fa4209e6aebfaf8c2b9f414b3b75b85
--- /dev/null
+++ b/wp-content/themes/path/docs/licence.txt
@@ -0,0 +1,339 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
\ No newline at end of file
diff --git a/wp-content/themes/path/docs/readme.html b/wp-content/themes/path/docs/readme.html
new file mode 100644
index 0000000000000000000000000000000000000000..f08a6c18c236ecec08577ce747f2f51b4f6e2b00
--- /dev/null
+++ b/wp-content/themes/path/docs/readme.html
@@ -0,0 +1,341 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+<title>A guide to the Path theme</title>
+
+<style type="text/css">body{width:750px;margin:36px auto 60px auto;font:16px/25px Georgia,Times,'Times New Roman',serif}a:link,a:visited{color:#2f6eb9;text-decoration:none}a:hover,a:active{text-decoration:underline}h1,h2,h3,h4,h5,h6{margin:40px 0 30px 0;color:#000;font-weight:bold;font-family:Arial,sans-serif}h1{margin-top:80px;font-size:2.2em}code{padding:0 3px;background:#eee}pre code{padding:0}pre{padding:9px;background:#eee;border:1px solid #ccc}ul{list-style:square}p.first{font-size:21px}p.second{font-size:15px}ul.space li{margin-bottom:10px}.section{overflow:hidden}.columns-2{float:left;width:350px;margin:0 0 21px 25px}.columns-3{float:left;width:230px;margin:0 0 21px 20px}</style>
+
+</head>
+<body>
+
+<h1>Path WordPress theme</h1>
+
+<p class="first"><em>Path</em> is a parent theme for WordPress.  </p>
+
+<p class="second">This theme is a parent theme.  <strong>All modification</strong> should be made via a child theme.</p>
+
+<h2>Features</h2>
+
+<p><em>Path</em> is built on <a href="http://themehybrid.com/hybrid-core" title="Hybrid Core theme framework">Hybrid Core</a> framework. I can't thank enough <a href="http://justintadlock.com" title="Justin Tadlock">Justin Tadlock</a> who has created it. This theme rolemodel is <a href="http://themehybrid.com/themes/my-life" title="My Life">My Life</a> theme, so check out all the <a href="http://themehybrid.com/themes" title="Hybrid Themes">Hybrid Themes</a>.</p>
+
+<ul>
+	<li>Per-post layouts which means that you can choose one, two or three column layout. Content on the left, right or center.</li>
+	<li>Post setting that allows you to add a custom stylesheet for individual posts.</li>
+	<li>A smart breadcrumb system.</li>
+	<li>Built-in pagination.</li>
+	<li>Post thumbnails that work with WordPress featured image functionality and provide extra features.</li>
+	<li>Multiple sidebars areas: Primary, Secondary, Subsidiary, Before Content and After Singular.</li>
+	<li>Dynamic body, post, and comment <acronym title="Cascading Style Sheets">CSS</acronym> classes.</li>
+	<li>Fully internationalized, so you can translate the theme in any language. You should place your translations files to child theme <code>languages</code> folder.</li>
+	<li>Built-in WordPress menu system. There are three menus in the theme: Primary, Secondary and Subsidiary.</li>
+	<li>Context-aware action and filter hooks.</li>
+	<li>Some of the most-used filter hooks are shortcode-ready and have accompanying shortcodes.</li>
+	<li>Theme settings page (Appearance &raquo;&raquo; Theme Settings) that allows you to add footer text and set global layout.</li>
+	<li>Set logo under Appearance &raquo;&raquo; Header.</li>
+	<li>Set background under Appearance &raquo;&raquo; Background.</li>
+	<li>Ability to create custom templates for any post type in multiple ways.</li>
+	<li>Highly-configurable widgets that give you full control over their display.</li>
+	<li>Widget areas are content-aware, meaning that they only appear if they contain active widgets.</li>
+	<li>Support for Post Formats.</li>
+	<li>Theme was designed with <a href="http://www.lukew.com/ff/entry.asp?933" title="Mobile First">Mobile First</a> attitude. It uses so called footer menus for "mobile" devices, <a href="https://github.com/scottjehl/Respond" title="Respond.js">Respond.js</a> for legacy browsers and <a href="http://fitvidsjs.com/" title="Fit Vids">Fit Vids</a> for videos.</li>
+</ul>
+
+<h2>Child themes</h2>
+
+<p><em>Path</em> is a parent theme, so create a child theme for any customizations.</p>
+
+<ul>
+	<li>Create a theme folder in your <code>/wp-content/themes</code> directory called <code>path-child</code>.</li>
+	<li>After that create a <code>style.css</code> file in <code>/wp-content/themes/path-child</code> folder.</li>
+	<li>At the top of your <code>style.css</code> file, add the below information.</li>
+</ul>
+
+<pre><code>/**
+ * Theme Name: Path Child
+ * Theme URI: http://link-to-your-site.com
+ * Description: Describe your child theme.
+ * Version: 0.1
+ * Author: Your Name
+ * Author URI: http://link-to-your-site.com
+ * Tags: Some, Tags
+ * Template: path
+ */</code></pre>
+
+<p>After that you might want to import all the styles from parent theme.</p>
+
+<pre><code>@import url( '../path/style.css' );
+
+/* Custom code goes below here. */</code></pre>
+
+<p>This is officially-supported way of modifying themes in WordPress.</p>
+
+<p><strong>Note!</strong>
+If you want to use media queries in child theme and support them in browsers like IE7 and IE8,
+you should copy and paste css rules from parent theme <code>style.css</code> to child theme <code>style.css</code> and remove line <code>@import url( '../path/style.css' );</code>
+</p>
+<p>
+Remember to change all the url like this.<br />
+<code>background: url(../path/images/menu-plus.png) no-repeat 0 0;</code>
+</p>
+
+<h2>Supported plugins</h2>
+
+<p><strong>Co-Authors Plus</strong></p>
+<p>Theme is designed for multi-author blogging or magazine style websites. Theme filters byline so that all authors are displayed if <a href="http://wordpress.org/extend/plugins/co-authors-plus/" title="Co-Authors Plus">Co-Authors Plus</a> is installed. And theme also adds author metabox under every article, displaying all authors. You can also add Twitter username in user profile.</p>
+
+<p><strong>Smart Archives Reloaded</strong></p>
+<p>If <a href="http://wordpress.org/extend/plugins/smart-archives-reloaded/" title="Smart Archives Reloaded">Smart Archives Reloaded</a> is installed and active, it automatically do its magic in <em>Archives</em> page template.</p> 
+
+<p><strong>Social Path</strong></p>
+
+<p>If <a href="http://wordpress.org/extend/plugins/social-path/" title="Social Path">Social Path</a> is installed and active, you can share your posts on Twitter, Google+ and Facebook. Plugin adds these buttons after singular post.</p>
+
+<p><strong>Gravity Forms</strong></p>
+<p>Path includes base CSS for <a href="http://www.gravityforms.com/" title="Gravity Forms">Gravity Forms</a> plugin. CSS can be found in the middle of the <code>style.css</code>.</p>
+
+<h2>Theme Settings (Appearance &raquo;&raquo; Theme Settings)</h2>
+
+<p><strong>Set logo</strong></p>
+
+<p>Set logo under Appearance &raquo;&raquo; Header. Suggested logo size is 300 x 99 (in pixels). Image size is flexible so you can try different image size. Theme is using Header images only for logo, not header images. Of course you can remove default logo and Blog name will be displayed.</p>
+
+<p><strong>Set background</strong></p>
+
+<p>Set background under Appearance &raquo;&raquo; Background.</p>
+
+<p><strong>Change default layout</strong></p>
+
+<p>
+Path theme has two column layout by default, content on the left and sidebar on the right. You can change this default layout under Appearance &raquo;&raquo; Theme Settings. You can overwrite this in post
+editor by choosing layout for that certain post:
+</p>
+<ul>
+<li>Default</li>
+<li>One Column</li>
+<li>Two Columns, Left (theme default)</li>
+<li>Two Columns, Right</li>
+<li>Three Columns, Left</li>
+<li>Three Columns, Right</li>
+<li>Three Columns, Center</li>
+</ul>
+
+<p><strong>Footer text</strong></p>
+
+<p>You can change Footer text in Footer Settings metabox.</p>
+
+<p><strong>Theme customize</strong></p>
+
+<p>You can also customize theme in live preview using WordPress customize. Check it out under <strong>Appearance &raquo;&raquo; Customize</strong>. It's pretty cool.</p>
+
+<h2>Page Templates</h2>
+
+<p>There are several page templates in this theme. They are located in <code>page-templates</code> folder. If you need to overwrite page templates in a child theme, create subfolder <code>page-templates</code> in child theme and copy certain page template in that folder and start modifying.</p>
+
+<ul>
+	<li>Archives (archives.php): this page template automatically work with <a href="http://wordpress.org/extend/plugins/smart-archives-reloaded/" title="Smart Archives Reloaded ">Smart Archives Reloaded</a> Plugin. If it's not active, you're still covered with some basic archive stuff.</li>
+	<li>Authors (authors.php): displays all the authors who have capability to publish or edit posts or pages.</li>
+	<li>Most Popular (most-popular.php): displays most read articles in all time.</li>
+	<li>Most Popular by comment (most-popular-by-comments.php): displays most commented articles in all time.</li>
+	<li>Most Popular by month (most-popular-by-month.php): displays most read articles in current month and year.</li>
+	<li>Most Popular by year (most-popular-by-year.php): displays most read articles in current year.</li>
+	<li>Most Popular last 30 days (most-popular-last-30-days-php): displays most read articles in last 30 days.</li>
+	<li>Slider (path-slider.php): Displays Sticky Posts in a slider and some more articles after that. So remember to <strong>use some Sticky Posts to see slider</strong> activated. Theme is using FlexSlider.</li>
+	<li>Tag Cloud (tag-cloud.php): Displays Tag Cloud.</li>
+</ul>
+
+<h2>Slider</h2>
+
+<p>Path uses <a href="https://github.com/woothemes/FlexSlider/" title="FlexSlider">FlexSlider</a> in <em>Slider</em> page template and in home page. Only sticky posts are shown in Slider, so if you want to see it in action you need to use some sticky posts. Recommended image size is 660 x 300 (in pixels). It's safe to use WordPress featured image as slider image but it's not necessary if you have attached images in posts. It graps the first one automatically. <code>get_the_image</code> extension is used to do all the magic.</p>
+
+<h2>Action Hooks reference</h2>
+<p>
+With action hooks you can add your custom code in a certain points in the theme. If you open <code>header.php</code> for example you'll
+see this line of code: 
+</p>
+
+<pre><code>&lt;?php do_atomic( 'open_body' ); // path_open_body ?&gt;</code></pre>
+
+<p>
+It means that you can add your code in that spot  without modifying <code>header.php</code> file. 
+You do it using child theme <code>functions.php</code>. Add this inside setup function.
+</p>
+
+<pre><code>add_action( "{$prefix}_open_body", 'my_open_body_code' );</code></pre>
+
+<p>And this after setup function.</p>
+
+<pre><code>
+function my_open_body_code() {
+
+	echo 'My code';
+
+}
+</code></pre>
+
+<p>Here are all the hooks used in Path theme.</p>
+
+<ul>
+<li><strong>header.php</strong>
+	<ul>
+	<li>path_open_body</li>
+	<li>path_before_header</li>
+	<li>path_open_header</li>
+	<li>path_header</li>
+	<li>path_close_header</li>
+	<li>path_after_header</li>
+	<li>path_before_main</li>
+	<li>path_open_main</li>
+	</ul>
+</li>
+<li><strong>menu-primary.php</strong>
+	<ul>
+	<li>path_before_menu_primary</li>
+	<li>path_open_menu_primary</li>
+	<li>path_close_menu_primary</li>
+	<li>path_after_menu_primary</li>
+	</ul>
+</li>
+<li><strong>menu-primary-mobile.php</strong>
+	<ul>
+	<li>path_before_menu_primary_mobile</li>
+	<li>path_open_menu_primary_mobile</li>
+	<li>path_close_menu_primary_mobile</li>
+	<li>path_after_menu_primary_mobile</li>
+	</ul>
+</li>
+<li><strong>menu-secondary.php</strong>
+	<ul>
+	<li>path_before_menu_secondary</li>
+	<li>path_open_menu_secondary</li>
+	<li>path_close_menu_secondary</li>
+	<li>path_after_menu_secondary</li>
+	</ul>
+</li>
+<li><strong>menu-secondary-mobile.php</strong>
+	<ul>
+	<li>path_before_menu_secondary_mobile</li>
+	<li>path_open_menu_secondary_mobile</li>
+	<li>path_close_menu_secondary_mobile</li>
+	<li>path_after_menu_secondary_mobile</li>
+	</ul>
+</li>
+<li><strong>sidebar-before-content.php</strong>
+	<ul>
+	<li>path_before_sidebar_before_content</li>
+	<li>path_open_sidebar_before_content</li>
+	<li>path_close_sidebar_before_content</li>
+	<li>path_after_sidebar_before_content</li>
+	</ul>
+</li>
+<li><strong>404.php</strong>, <strong>attachment-image.php</strong>, <strong>content-*.php</strong>, <strong>index.php</strong>, <strong>search.php</strong>, <strong>taxonomy-post_format-video.php</strong>
+	<ul>
+	<li>path_before_content</li>
+	<li>path_open_content</li>
+	<li>path_before_entry (not in 404.php)</li>
+	<li>path_open_entry (not in 404.php)</li>
+	<li>path_close_entry(not in 404.php)</li>
+	<li>path_after_entry(not in 404.php)</li>
+	<li>path_after_singular (not in 404.php, search.php and taxonomy-post_format-video.php)</li>
+	<li>path_close_content</li>
+	<li>path_after_content</li>
+	</ul>
+</li>
+<li><strong>comment.php</strong>
+	<ul>
+	<li>path_before_comment</li>
+	<li>path_open_comment</li>
+	<li>path_close_comment</li>
+	<li>path_after_comment</li>
+	</ul>
+</li>
+<li><strong>comments.php</strong>
+	<ul>
+	<li>path_before_comment_list</li>
+	<li>path_after_comment_list</li>
+	</ul>
+</li>
+<li><strong>sidebar-primary.php</strong>
+	<ul>
+	<li>path_before_sidebar_primary</li>
+	<li>path_open_sidebar_primary</li>
+	<li>path_close_sidebar_primary</li>
+	<li>path_after_sidebar_primary</li>
+	</ul>
+</li>
+<li><strong>sidebar-secondary.php</strong>
+	<ul>
+	<li>path_before_sidebar_secondary</li>
+	<li>path_open_sidebar_secondary</li>
+	<li>path_close_sidebar_secondary</li>
+	<li>path_after_sidebar_secondary</li>
+	</ul>
+</li>
+<li><strong>sidebar-after-singular.php</strong>
+	<ul>
+	<li>path_before_sidebar_after_singular</li>
+	<li>path_open_sidebar_after_singular</li>
+	<li>path_close_sidebar_after_singular</li>
+	<li>path_after_sidebar_after_singular</li>
+	</ul>
+</li>
+<li><strong>footer.php</strong>
+	<ul>
+	<li>path_close_main</li>
+	<li>path_after_main</li>
+	<li>path_before_footer</li>
+	<li>path_open_footer</li>
+	<li>path_footer</li>
+	<li>path_close_footer</li>
+	<li>path_after_footer</li>
+	<li>path_close_body</li>
+	</ul>
+</li>
+<li><strong>sidebar-subsidiary.php</strong>
+	<ul>
+	<li>path_before_sidebar_subsidiary</li>
+	<li>path_open_sidebar_subsidiary</li>
+	<li>path_close_sidebar_subsidiary</li>
+	<li>path_after_sidebar_subsidiary</li>
+	</ul>
+</li>
+<li><strong>menu-subsidiary.php</strong>
+	<ul>
+	<li>path_before_menu_subsidiary</li>
+	<li>path_open_menu_subsidiary</li>
+	<li>path_close_menu_subsidiary</li>
+	<li>path_after_menu_subsidiary</li>
+	</ul>
+</li>
+</ul>
+
+
+<h2>Theme support</h2>
+
+<p>Support for the <em>Path</em> theme is not offered on the WordPress support forums.  There is a community called <a href="http://themehybrid.com" title="Theme Hybrid">Theme Hybrid</a> where support is offered for this theme.  You are encouraged to sign up to the site to use its support forums and become a part of the community.</p>
+
+<h2>Credits</h2>
+
+<p>Path is build on <a href="http://themehybrid.com/hybrid-core" title="Hybrid Core">Hybrid Core</a> framework by <a href="http://justintadlock.com/" title="Justin Tadlock">Justin Tadlock</a>.</p>
+
+<p>Theme uses</p>
+
+<ul>
+	<li><a href="http://www.google.com/webfonts#ChoosePlace:select" title="Google Font">Google Font Abel</a>, which is licensed under <a href="http://scripts.sil.org/OFL" title="OFL">OFL</a>.</li>
+	<li><a href="https://github.com/woothemes/FlexSlider/" title="Flexslider">FlexSlider</a>, which is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" title="GPLv2">GPLv2</a> license.</li>
+	<li><a href="http://fitvidsjs.com" title="FitVids">FitVids</a>, which is licensed under <a href="http://sam.zoy.org/wtfpl/" title="WTFPL">WTFPL</a>.</li>
+	<li><a href="https://github.com/scottjehl/Respond" title="Respond.js">Respond.js</a>, which is licensed under <a href="http://www.opensource.org/licenses/mit-license.php" title="MIT">MIT</a>.</li>
+	<li><a href="http://code.google.com/p/html5shiv/" title="html5shiv">html5shiv</a>, which is licensed under <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" title="GPLv2">GPLv2</a> license.</li>
+</ul>
+
+
+<h2>Copyright &amp; license</h2>
+
+<p><em>Path</em> is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" title="GNU GPL">GNU General Public License</a>, version 2 (<acronym title="GNU General Public License">GPL</acronym>).</p>
+
+<p>This theme is copyrighted to <a href="http://foxnet.fi" title="Sami Keijonen">Sami Keijonen</a>.</p>
+
+<p>2012 &copy; Sami Keijonen.  All rights reserved.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/wp-content/themes/path/footer.php b/wp-content/themes/path/footer.php
new file mode 100644
index 0000000000000000000000000000000000000000..d51dcfaec7bd88ae3e9988415b525e04a02cef20
--- /dev/null
+++ b/wp-content/themes/path/footer.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * Footer Template
+ *
+ * The footer template is generally used on every page of your site. Nearly all other
+ * templates call it somewhere near the bottom of the file. It is used mostly as a closing
+ * wrapper, which is opened with the header.php file. It also executes key functions needed
+ * by the theme, child themes, and plugins.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+				<?php get_sidebar( 'primary' ); // Loads the sidebar-primary.php template. ?>
+
+				<?php get_sidebar( 'secondary' ); // Loads the sidebar-secondary.php template. ?>
+
+				<?php do_atomic( 'close_main' ); // path_close_main ?>
+
+			</div><!-- .wrap -->
+			
+			<?php get_sidebar( 'subsidiary' ); // Loads the sidebar-subsidiary.php template. ?>
+			
+			<?php get_template_part( 'menu', 'primary-mobile' ); // Loads the menu-primary-mobile.php template. ?>
+		
+			<?php get_template_part( 'menu', 'secondary-mobile' ); // Loads the menu-secondary-mobile.php template. ?>
+
+		</div><!-- #main -->
+
+		<?php do_atomic( 'after_main' ); // path_after_main ?>
+
+		<?php do_atomic( 'before_footer' ); // path_before_footer ?>
+
+		<footer id="footer">
+
+			<?php do_atomic( 'open_footer' ); // path_open_footer ?>
+
+			<div class="wrap">
+
+				<div class="footer-content">
+					<?php hybrid_footer_content(); ?>
+				</div>
+
+				<?php do_atomic( 'footer' ); // path_footer ?>
+
+			</div><!-- .wrap -->
+
+			<?php do_atomic( 'close_footer' ); // path_close_footer ?>
+
+		</footer><!-- #footer -->
+
+		<?php do_atomic( 'after_footer' ); // path_after_footer ?>
+
+		<?php get_template_part( 'menu', 'subsidiary' ); // Loads the menu-subsidiary.php template. ?>
+
+	</div><!-- #container -->
+
+	<?php do_atomic( 'close_body' ); // path_close_body ?>
+
+	<?php wp_footer(); // wp_footer ?>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/wp-content/themes/path/functions.php b/wp-content/themes/path/functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..77ab9b951510fa89c6bc689ff0176ff85137028e
--- /dev/null
+++ b/wp-content/themes/path/functions.php
@@ -0,0 +1,664 @@
+<?php
+/**
+ * The functions.php file is used to initialize everything in the theme. It controls how the theme is loaded and 
+ * sets up the supported features, default actions, and default filters. If making customizations, users 
+ * should create a child theme and make changes to its functions.php file (not this one).
+ *
+ * @package Path
+ * @subpackage Functions
+ * @version 0.1.0
+ * @author Sami Keijonen <sami.keijonen@foxnet.fi>
+ * @copyright Copyright (c) 2012, Sami Keijonen
+ * @link http://foxnet.fi
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+ 
+/* Load Hybrid Core theme framework. */
+require_once( trailingslashit( get_template_directory() ) . 'library/hybrid.php' );
+new Hybrid();
+
+/* Theme setup function using 'after_setup_theme' hook. */
+add_action( 'after_setup_theme', 'path_theme_setup' );
+
+/**
+ * Theme setup function.  This function adds support for theme features and defines the default theme
+ * actions and filters.
+ *
+ * @since 0.1.0
+ */
+function path_theme_setup() {
+
+	/* Get action/filter hook prefix. */
+	$prefix = hybrid_get_prefix();
+	
+	/* Add theme settings. */
+	if ( is_admin() )
+	    require_once( trailingslashit ( get_template_directory() ) . 'admin/functions-admin.php' );
+
+	/* Add theme support for core framework features. */
+	add_theme_support( 'hybrid-core-menus', array( 'primary', 'secondary', 'subsidiary' ) );
+	add_theme_support( 'hybrid-core-sidebars', array( 'primary', 'secondary', 'after-singular', 'before-content', 'subsidiary' ) );
+	add_theme_support( 'hybrid-core-widgets' );
+	add_theme_support( 'hybrid-core-shortcodes' );
+	add_theme_support( 'hybrid-core-theme-settings', array( 'about', 'footer' ) );
+	add_theme_support( 'hybrid-core-drop-downs' );
+	add_theme_support( 'hybrid-core-seo' );
+	add_theme_support( 'hybrid-core-template-hierarchy' );
+	
+	/* Add theme support for framework extensions. */
+	add_theme_support( 'theme-layouts', array( '1c', '2c-l', '2c-r', '3c-l', '3c-r', '3c-c' ) );
+	add_theme_support( 'post-stylesheets' );
+	add_theme_support( 'dev-stylesheet' );
+	add_theme_support( 'loop-pagination' );
+	add_theme_support( 'get-the-image' );
+	add_theme_support( 'breadcrumb-trail' );
+	add_theme_support( 'entry-views' );
+	add_theme_support( 'cleaner-gallery' );
+	add_theme_support( 'cleaner-caption' );
+	
+	/* Add theme support for WordPress features. */
+	
+	/* Add content editor styles. */
+	add_editor_style( 'css/editor-style.css' );
+	
+	/* Add support for auto-feed links. */
+	add_theme_support( 'automatic-feed-links' );
+	
+	/* Add support for post formats. */
+	add_theme_support( 'post-formats', array( 'aside', 'audio', 'image', 'gallery', 'link', 'quote', 'status', 'video' ) );
+	
+	/* Add custom background feature. */
+	add_theme_support( 'custom-background', array(
+	// Background default color
+	'default-color' => 'e9edf1',
+	// Background image default
+	'default-image' => trailingslashit( get_template_directory_uri() ) . 'images/path_bg.png' 
+	) );
+	
+	/* Add support for flexible headers. This means logo in this theme, not header image. @link http://make.wordpress.org/themes/2012/04/06/updating-custom-backgrounds-and-custom-headers-for-wordpress-3-4/ */
+	$path_header_args = array(
+	'flex-height' => true,
+	'height' => 99,
+	'flex-width' => true,
+	'width' => 300,
+	'default-image' => trailingslashit( get_template_directory_uri() ) . 'images/logo.png',
+	'header-text' => false,
+	//'wp-head-callback' => 'path_head_logo_style',
+	);
+ 
+	add_theme_support( 'custom-header', $path_header_args );
+	
+	/* Set content width. */
+	hybrid_set_content_width( 600 );
+	
+	/* Add respond.js and  html5shiv.js for unsupported browsers. */
+	add_action( 'wp_head', 'path_respond_html5shiv' );
+	
+	/* Disable primary sidebar widgets when layout is one column. */
+	add_filter( 'sidebars_widgets', 'path_disable_sidebars' );
+	add_action( 'template_redirect', 'path_one_column' );
+	
+	/* Add custom image sizes. */
+	add_action( 'init', 'path_add_image_sizes' );
+	
+	/* Add <blockquote> around quote posts if user have forgotten about it. */
+	add_filter( 'the_content', 'path_quote_content' );
+	
+	/* Enqueue script. */
+	add_action( 'wp_enqueue_scripts', 'path_scripts' );
+	
+	/* Enqueue Google fonts */
+	add_action( 'wp_enqueue_scripts', 'path_google_fonts' );
+	
+	/* Filter footer settings. Add back to the top link. */
+	add_filter( "{$prefix}_default_theme_settings", 'path_default_footer_settings' );
+	
+	/* Add after comments note for good mannners. */
+	add_action( 'comment_form_before', 'path_comment_note' );
+	
+	/* Change [...] to ... Read more. */
+	add_filter( 'excerpt_more', 'path_excerpt_more' );
+	
+	/* Modify excerpt lenght in front page template. */
+	add_filter( 'excerpt_length', 'path_excerpt_length', 999 );
+	
+	/* Exclude sticky posts from home page. */
+	add_action( 'pre_get_posts', 'path_exclude_sticky' );
+	
+	/* Create twitter contact method. */
+	add_filter( 'user_contactmethods', 'path_twitter_method' );
+	
+	/* Add an author box after singular posts. */
+	add_action( "{$prefix}_singular-post_after_singular", 'path_author_box', 11 );
+	
+	/* Filter byline. Use Coauthors list if exist. */
+	add_filter( "{$prefix}_byline", 'path_byline' );
+	
+	/* Filter most viewed widget byline. Use Coauthors list if exist. */
+	add_filter( "{$prefix}_byline-most-viewed-widget", 'path_byline_widget' );
+	
+	/* Add social media buttons after singular post entry. Facebook like, twitter tweet and google+. This uses Social Path Plugin. */
+	add_action( "{$prefix}_singular-post_after_singular", 'path_add_social_media' );
+	
+	/* Set global layout. */
+	add_filter( 'get_theme_layout', 'path_theme_layout' );
+	
+	/* Add Customize link to Appearance menu in admin. */
+	add_action ( 'admin_menu', 'path_admin_customize' );
+	
+	/* Add layout option in Customize. */
+	add_action( 'customize_register', 'path_customize_register' );
+	
+	/* Add js to customize. */
+	add_action( 'customize_preview_init', 'path_customize_preview_js' );
+
+	/* Add css to customize. */
+	add_action( 'wp_enqueue_scripts', 'path_customize_preview_css' );
+	
+	/* Register additional widgets. */
+	add_action( 'widgets_init', 'path_register_widgets' );
+	
+}
+
+/**
+ * Function for help to unsupported browsers understand mediaqueries and html5.
+ * @link: https://github.com/scottjehl/Respond
+ * @link: http://code.google.com/p/html5shiv/
+ * @since 0.1.0
+ */
+function path_respond_html5shiv() {
+	?>
+	
+	<!-- Enables media queries and html5 in some unsupported browsers. -->
+	<!--[if (lt IE 9) & (!IEMobile)]>
+	<script type="text/javascript" src="<?php echo trailingslashit( get_template_directory_uri() ); ?>js/respond/respond.min.js"></script>
+	<script type="text/javascript" src="<?php echo trailingslashit( get_template_directory_uri() ); ?>js/html5shiv/html5shiv.js"></script>
+	<![endif]-->
+	
+	<?php
+}
+
+/**
+ * Function for deciding which pages should have a one-column layout.
+ *
+ * @since 0.1.0
+ */
+function path_one_column() {
+
+	if ( ! ( is_active_sidebar( 'primary' ) || is_active_sidebar( 'secondary' ) )  || ( is_attachment() && 'layout-default' == theme_layouts_get_layout() ) )
+		add_filter( 'get_theme_layout', 'path_theme_layout_one_column' );
+
+}
+
+/**
+ * Filters 'get_theme_layout' by returning 'layout-1c'.
+ *
+ * @since 0.1.0
+ * @param string $layout The layout of the current page.
+ * @return string
+ */
+function path_theme_layout_one_column( $layout ) {
+	return 'layout-1c';
+}
+
+/**
+ * Disables sidebars if viewing a one-column page.
+ *
+ * @since 0.1.0
+ * @param array $sidebars_widgets A multidimensional array of sidebars and widgets.
+ * @return array $sidebars_widgets
+ */
+function path_disable_sidebars( $sidebars_widgets ) {
+	global $wp_query, $wp_customize;
+
+	if ( current_theme_supports( 'theme-layouts' ) && !is_admin() ) {
+		if ( ! isset( $wp_customize ) ) {
+			if ( 'layout-1c' == theme_layouts_get_layout() ) {
+				$sidebars_widgets['primary'] = false;
+				$sidebars_widgets['secondary'] = false;
+			}
+		}
+	}
+
+	return $sidebars_widgets;
+}
+
+/**
+ * Adds custom image sizes for thumbnail images. 
+ *
+ * @since 0.1.0
+ */
+function path_add_image_sizes() {
+
+	add_image_size( 'path-thumbnail', 300, 170, true );
+	add_image_size( 'path-smaller-thumbnail', 80, 80, true );
+	add_image_size( 'path-slider-thumbnail', 660, 300, true );
+	
+}
+
+/**
+ * Wraps the output of the quote post format content in a <blockquote> element if the user hasn't added a 
+ * <blockquote> in the post editor.
+ *
+ * @since 0.1.0
+ * @param string $content The post content.
+ * @return string $content
+ */
+function path_quote_content( $content ) {
+
+	if ( has_post_format( 'quote' ) ) {
+		preg_match( '/<blockquote.*?>/', $content, $matches );
+
+		if ( empty( $matches ) )
+			$content = "<blockquote>{$content}</blockquote>";
+	}
+
+	return $content;
+}
+
+/**
+ * Path uses FitVids for responsive videos and FlexSlider for Slider.
+ * @link http://fitvidsjs.com/
+ * @link https://github.com/woothemes/FlexSlider/
+ * @since 0.1.0
+ */
+function path_scripts() {
+
+	$sticky = get_option( 'sticky_posts' );
+	
+	if ( !is_admin() ) {
+		
+		/* Enqueue FitVids */
+		wp_enqueue_script( 'path-fitvids', trailingslashit( get_template_directory_uri() ) . 'js/fitvids/jquery.fitvids.js', array( 'jquery' ), '20120625', true );
+		wp_enqueue_script( 'path-fitvids-settings', trailingslashit( get_template_directory_uri() ) . 'js/fitvids/fitvids.js', array( 'path-fitvids' ), '20120625', true );
+		
+		/* Enqueue FlexSlider js only when it is used. */
+		if ( ! empty( $sticky ) && !is_paged() && ( is_home() || is_page_template( 'page-templates/path-slider.php' ) ) ) {
+			wp_enqueue_script( 'path-flexslider', trailingslashit( get_template_directory_uri() ) . 'js/flexslider/jquery.flexslider-min.js', array( 'jquery' ), '20120703', true );
+			wp_enqueue_script( 'path-flexslider-settings', trailingslashit( get_template_directory_uri() ) . 'js/flexslider/settings.flexslider.js', array( 'path-flexslider' ), '20120703', true );
+		}
+		
+		/* Enqueue FlexSlider css only when it is used. */
+		if ( ! empty( $sticky ) && !is_paged() && ( is_home() || is_page_template( 'page-templates/path-slider.php' ) ) )
+			wp_enqueue_style( 'path-flexslider-stylesheet', trailingslashit( get_template_directory_uri() ) . 'css/flexslider/flexslider.css', false, 1.0, 'screen' );
+		
+		/* Dequeue Pullquote Shortcode plugin styles and add them in style.css. */
+		wp_dequeue_style( 'pullquote-shortcode' );
+		
+	}
+}
+
+/**
+ * Enqueue Google fonts.
+ *
+ * @since 0.1.0
+ */
+function path_google_fonts() {
+	
+	wp_enqueue_style( 'font-oswald', 'http://fonts.googleapis.com/css?family=Oswald:400,300,700', false, 1.0, 'screen' );
+	
+}
+
+/**
+ * Grabs the first URL from the post content of the current post.  This is meant to be used with the link post 
+ * format to easily find the link for the post. 
+ *
+ * @since 0.1.0
+ * @return string The link if found.  Otherwise, the permalink to the post.
+ *
+ * @note This is a modified version of the twentyeleven_url_grabber() function in the TwentyEleven theme. And this modified version is from MyLife (themehybrid.com) theme.
+ * @author wordpressdotorg
+ * @copyright Copyright (c) 2011, wordpressdotorg
+ * @link http://wordpress.org/extend/themes/twentyeleven
+ * @license http://wordpress.org/about/license
+ */
+function path_url_grabber() {
+	if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) )
+		return get_permalink( get_the_ID() );
+
+	return esc_url_raw( $matches[1] );
+}
+
+/**
+ * Filter Hybrid footer settings. Add back to top link.
+ * @since 0.1.0
+ */
+function path_default_footer_settings( $settings ) {
+    
+    $settings['footer_insert'] = '<p class="copyright">' . __( 'Copyright &#169; [the-year] [site-link].', 'path' ) . '</p>' . "\n\n" . '<p class="credit">' . __( 'Powered by [wp-link] and [theme-link].', 'path' ) . __( ' <a class="top" href="#container">Back to Top</a>', 'path' ) . '</p>';
+    
+    return $settings;
+}
+
+/**
+ * Comment note for good manners.
+ * @since 0.1.0
+ */
+function path_comment_note() { ?>
+
+	<p class="comment-text comment-note"><?php _e( 'Please comment with your real name using good manners.', 'path' ); ?></p>
+
+<?php
+}
+
+/**
+ * Change [...] to ... Read more.
+ * @since 0.1.0
+ */
+function path_excerpt_more() {
+
+	return '...<span class="path-read-more"><a class="more-link" href="' . get_permalink() . '" title="' . the_title_attribute('echo=0') . '">  ' . __( 'Read more &rarr;', 'path' ) . ' </a></span>';
+	 
+}
+
+/**
+ * Change excerpt length in slider template and home page. 
+ * @since 0.1.0
+ */
+function path_excerpt_length( $length ) {
+
+	/* if is sticky posts. */
+	if ( is_sticky() && is_home() || is_page_template( 'page-templates/path-slider.php' ) )
+		return 30;
+	else
+		return 60;
+	
+}
+
+/**
+ * Exclude sticky posts from home page. Sticky posts are in a slider.
+ * @since 0.1.0
+ */
+function path_exclude_sticky( $query ) {
+	
+	/* Exclude if is home and is main query. */
+	if ( is_home() && $query->is_main_query() )
+		$query->set( 'post__not_in', get_option( 'sticky_posts' ) );
+	
+}
+
+/**
+ * Adds twitter on the edit user screen.
+ * @since 0.1.0
+ */
+function path_twitter_method( $meta ) {
+
+	$meta['twitter'] = __( 'Twitter Username', 'path' );
+	return $meta;
+	
+}
+
+/**
+ * Adds an author box at the end of single posts.
+ * @note if Co Author Plus plugin is found, use multiple Co Authors loop. Else use normal info.
+ * @since 0.1.0
+ */
+function path_author_box() { ?>
+
+	<div class="author-profile vcard">
+	
+		<?php
+		/* If Co-Authors Plus Plugin is activated, use it. Else use normal author box. */
+		if( function_exists( 'coauthors_posts_links' ) ) {
+			
+			$i = new CoAuthorsIterator();
+			print $i->count() == 1 ? '<h4>' . __( 'Author of the article', 'path' ) . '</h4> ' : '<h4>' . __( 'Authors of the article', 'path' ) . '</h4> ';
+			
+			$i->iterate(); ?>
+			
+			<div class="author-co-profile">
+			
+				<?php
+				the_author_posts_link();
+				echo get_avatar( get_the_author_meta( 'user_email' ), '96' );
+				?>
+			
+				<p class="author-description author-bio">
+					<?php the_author_meta( 'description' ); ?>
+				</p>
+			
+				<?php if ( get_the_author_meta( 'twitter' ) ) { ?>
+					<p class="twitter <?php if ( $i->count() > 1 ) echo 'multi-author'; ?>">
+						<?php printf( __( 'Follow %1$s %2$s &#64;%3$s on Twitter.', 'path' ), '<a href="http://twitter.com/' . get_the_author_meta( 'twitter' ) . '"', 'title="' . get_the_author_meta( 'display_name' ) . '">', get_the_author_meta( 'twitter' ) . '</a>' ); ?>
+					</p>
+				<?php } // End check for twitter ?>
+				
+			</div>
+			
+			<?php while( $i->iterate() ) { ?>
+			
+			<div class="author-co-profile">
+			
+				<?php
+				the_author_posts_link();
+				echo get_avatar( get_the_author_meta( 'user_email' ), '96' );
+				?>
+				
+				<p class="author-description author-bio">
+					<?php the_author_meta( 'description' ); ?>
+				</p>
+				
+				<?php if ( get_the_author_meta( 'twitter' ) ) { ?>
+					<p class="twitter <?php if ( $i->count() > 2 ) echo 'multi-author'; ?>">
+						<?php printf( __( 'Follow %1$s %2$s &#64;%3$s on Twitter.', 'path' ), '<a href="http://twitter.com/' . get_the_author_meta( 'twitter' ) . '"', 'title="' . get_the_author_meta( 'display_name' ) . '">', get_the_author_meta( 'twitter' ) . '</a>' ); ?>
+					</p>
+				<?php } // End check for twitter ?>
+				
+			</div>
+			
+			<?php } // end while
+		}
+		else { ?>
+
+			<h4 class="author-name fn n"><?php echo do_shortcode( __( 'Article written by [entry-author]', 'path' ) ); ?></h4>
+
+			<?php echo get_avatar( get_the_author_meta( 'user_email' ), '96' ); ?>
+
+			<p class="author-description author-bio">
+				<?php the_author_meta( 'description' ); ?>
+			</p>
+
+			<?php if ( get_the_author_meta( 'twitter' ) ) { ?>
+				<p class="twitter">
+					<?php printf( __( 'Follow %1$s %2$s &#64;%3$s on Twitter.', 'path' ), '<a href="http://twitter.com/' . get_the_author_meta( 'twitter' ) . '"', 'title="' . get_the_author_meta( 'display_name' ) . '">', get_the_author_meta( 'twitter' ) . '</a>' ); ?>
+				</p>
+			<?php } // End check for twitter
+			
+		} // End else ?>
+		
+	</div>
+		
+	<?php
+}
+
+/**
+ * Filter byline. If Co author plus plugin exists, use coauthors_posts_links()-function in byline. Else use basic stuff.
+ * @since 0.1.0
+ */
+function path_byline( $byline ) {
+	
+	if( function_exists( 'coauthors_posts_links' ) ) {
+	
+		$byline = '<div class="byline">';
+		$byline.= coauthors_posts_links( $between = ', ', $betweenLast = ' ' . __( 'and', 'path' ) . ' ', $before = null, $after = null, $echo = false );
+		$byline.=  __( ' [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' );
+		$byline.= '</div>';
+		
+	}
+	
+	return $byline;
+	
+}
+
+/**
+ * Filter byline in most viewed widget. If Co author plus plugin exists, use coauthors_posts_links()-function in byline. Else use basic stuff.
+ * @since 0.1.4
+ */
+function path_byline_widget( $byline ) {
+	
+	if( function_exists( 'coauthors_posts_links' ) ) {
+	
+		$byline = '<div class="byline">';
+		$byline.= coauthors_posts_links( $between = ', ', $betweenLast = ' ' . __( 'and', 'path' ) . ' ', $before = null, $after = null, $echo = false );
+		$byline.=  __( ' [entry-published]', 'path' );
+		$byline.= '</div>';
+		
+	}
+	
+	return $byline;
+	
+}
+
+/**
+ * Add social media buttons after singular post entry. Facebook like, twitter tweet and google+. This uses Social Path Plugin.
+ *
+ * @since 0.1.0
+ */
+function path_add_social_media() {
+
+	if ( function_exists( 'social_path_media' ) )
+		social_path_media();
+	
+}
+
+/**
+ * Filter global layout, which is defined under Appearance >> Theme Settings.
+ * @since 0.1.0
+ */
+function path_theme_layout( $layout ) {
+
+	/* Get global layout. */
+	$path_global_layout = hybrid_get_setting( 'path_global_layout' );
+	
+	if ( !$path_global_layout )
+		return $layout;
+
+	if ( 'layout-default' == $layout )
+		$layout = $path_global_layout;
+
+	return $layout;
+	
+}
+
+/**
+ * Add the Customize link to the admin menu.
+ * @link: http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/
+ * @since 0.1.0
+ */
+function path_admin_customize() {
+
+	add_theme_page( __( 'Customize', 'path' ), __( 'Customize', 'path' ), 'edit_theme_options', 'customize.php' );
+	
+}
+
+/**
+ * Add layout option in theme Customize.
+ * @link: http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/
+ * @since 0.1.0
+ */
+function path_customize_register( $wp_customize ) {
+	
+	/* Get blogname and blogdescription settings. */
+	
+	// if header image is not set
+	if ( ! get_header_image() ) {
+		$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
+	}
+	$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
+	
+	// Layout section
+	$wp_customize->add_section( 'path_customize_layout', array(
+		'title'			=> __( 'Layout', 'path' ),
+		'priority'		=> 20,
+	) );
+	
+	// Layout setting
+	$wp_customize->add_setting( 'path_theme_settings[path_global_layout]', array(
+		'type'				=> 'option',
+		'default'			=> 'layout-default',
+		'capability'		=> 'edit_theme_options',
+		'sanitize_callback'	=> 'sanitize_key',
+		'transport'			=> 'postMessage',
+	) );
+	
+	/* Get theme layouts. */
+	$path_supported_layouts = get_theme_support( 'theme-layouts' );
+	$path_layouts = $path_supported_layouts[0]; // Array of all layouts without the 'layout-' prefix.
+	
+	/* Add layout-default to $path_layout_choices. */
+	$path_layout_choices['layout-default'] = theme_layouts_get_string( 'default' );
+	
+	/* Then add rest of what user had added in add_theme_support( 'theme-layouts' ). */
+	foreach ( $path_layouts as $path_layout ) {
+		$path_layout_choices["layout-{$path_layout}"] = theme_layouts_get_string( $path_layout );
+	}
+	
+	// Layout control
+	$wp_customize->add_control( 'path_theme_settings[path_global_layout]', array(
+		'label'			=>	__( 'Global Layout:', 'path' ),
+		'section'		=> 'path_customize_layout',
+		'settings'		=> 'path_theme_settings[path_global_layout]',
+		'type'			=> 'radio',
+		'choices'		=> $path_layout_choices,
+	) );
+	
+}
+
+/**
+ * This make Theme Customizer live preview reload changes asynchronously.
+ * Used with blogname, blogdescription and global layout.
+ * @note: credit goes to TwentyEleven theme.
+ * @since 0.1.0
+ */
+function path_customize_preview_js() {
+
+	wp_enqueue_script( 'path-customizer', trailingslashit( get_template_directory_uri() ) . 'js/customize/path-customizer.js', array( 'customize-preview' ), '20120731', true );
+	
+}
+
+/**
+ * Gets posts from last 30 days.
+ * @link http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters
+ * @since 0.1.0
+ */
+function path_filter_where( $where = '' ) {
+
+	if ( is_page_template( 'page-templates/most-popular-last-30-days.php' ) ) {	
+		$where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
+		return $where;
+	}
+	
+}
+
+/**
+ * This make Theme Customizer live preview work with 1 column layout.
+ * Used with Primary and Secondary sidebars.
+ * 
+ * @since 0.1.4
+ */
+function path_customize_preview_css() {
+	global $wp_customize;
+
+	if ( isset( $wp_customize ) ) {
+	
+		wp_enqueue_style( 'path-customizer-stylesheet', trailingslashit( get_template_directory_uri() ) . 'css/customize/path-customizer.css', false, 20121015, 'screen' );
+
+	}
+}
+
+/**
+ * Loads extra widget files and registers the widgets.
+ * 
+ * @since 0.1.4
+ * @access public
+ * @return void
+ */
+function path_register_widgets() {
+
+	/* Load and register the most-viewed posts widget. */
+	require_once( trailingslashit( THEME_DIR ) . 'includes/widget-most-viewed.php' );
+	register_widget( 'Path_Widget_Most_Viewed' );
+
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/header.php b/wp-content/themes/path/header.php
new file mode 100644
index 0000000000000000000000000000000000000000..b42cdb74262eceb346c57a16c6ef462ec31431dd
--- /dev/null
+++ b/wp-content/themes/path/header.php
@@ -0,0 +1,90 @@
+<?php
+/**
+ * Header Template
+ *
+ * The header template is generally used on every page of your site. Nearly all other templates call it 
+ * somewhere near the top of the file. It is used mostly as an opening wrapper, which is closed with the 
+ * footer.php file. It also executes key functions needed by the theme, child themes, and plugins.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+<!DOCTYPE html>
+<html <?php language_attributes(); ?>>
+
+<head>
+<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
+<title><?php hybrid_document_title(); ?></title>
+
+<!-- Mobile viewport optimized -->
+<meta name="viewport" content="width=device-width,initial-scale=1" />
+
+<!-- My styles -->
+<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="all" />
+
+<link rel="profile" href="http://gmpg.org/xfn/11" />
+<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
+
+<?php wp_head(); // wp_head ?>
+
+</head>
+
+<body class="<?php hybrid_body_class(); ?>">
+
+	<?php do_atomic( 'open_body' ); // path_open_body ?>
+
+	<div id="container">
+
+		<?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?>
+
+		<?php do_atomic( 'before_header' ); // path_before_header ?>
+
+		<header id="header">
+
+			<?php do_atomic( 'open_header' ); // path_open_header ?>
+
+			<div class="wrap">
+
+				<hgroup id="branding">
+				
+					<?php if ( get_header_image() ) { /* if header image is set use it as logo. */ ?>
+						
+						<h1 id="site-title"><a href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"><img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" /></a></h1>
+					
+					<?php } else { ?>
+					
+						<h1 id="site-title"><a href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
+					
+					<?php }  ?>
+					
+					<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
+					
+				</hgroup><!-- #branding -->
+
+				<?php do_atomic( 'header' ); // path_header ?>
+
+			</div><!-- .wrap -->
+
+			<?php do_atomic( 'close_header' ); // path_close_header ?>
+
+		</header><!-- #header -->
+
+		<?php do_atomic( 'after_header' ); // path_after_header ?>
+
+		<?php get_template_part( 'menu', 'secondary' ); // Loads the menu-secondary.php template. ?>
+		
+		<?php do_atomic( 'before_main' ); // path_before_main ?>
+
+		<div id="main">
+		
+		<?php if ( ( is_home() || is_page_template( 'page-templates/path-slider.php' ) ) && !is_paged() ) get_template_part( 'sticky-slider' ); // Loads the sticky-slider.php template. ?>
+		
+		<?php get_sidebar( 'before-content' ); // Loads the sidebar-before-content.php template. ?>
+
+			<div class="wrap">
+
+			<?php do_atomic( 'open_main' ); // path_open_main ?>
+
+			<?php if ( current_theme_supports( 'breadcrumb-trail' ) ) breadcrumb_trail( array( 'container' => 'nav', 'before' => __( 'You are here:', 'path' ), 'separator'  => __( '&#8764;', 'path' ) ) ); ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/images/logo.png b/wp-content/themes/path/images/logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c933a0647d929516f07e763e0187898bbf64e0e
Binary files /dev/null and b/wp-content/themes/path/images/logo.png differ
diff --git a/wp-content/themes/path/images/menu-plus.png b/wp-content/themes/path/images/menu-plus.png
new file mode 100644
index 0000000000000000000000000000000000000000..10ae66ea50b697abe571e4b3c577cba8ca199103
Binary files /dev/null and b/wp-content/themes/path/images/menu-plus.png differ
diff --git a/wp-content/themes/path/images/path_bg.png b/wp-content/themes/path/images/path_bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..d595c38b14d6b9daa16e7b3b1b8dd23610432dab
Binary files /dev/null and b/wp-content/themes/path/images/path_bg.png differ
diff --git a/wp-content/themes/path/images/path_default_slider_image.png b/wp-content/themes/path/images/path_default_slider_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..49ccc52facaf4d8dc612a16ec5de75b171449463
Binary files /dev/null and b/wp-content/themes/path/images/path_default_slider_image.png differ
diff --git a/wp-content/themes/path/includes/widget-most-viewed.php b/wp-content/themes/path/includes/widget-most-viewed.php
new file mode 100644
index 0000000000000000000000000000000000000000..0bfbdbe01a3fd7f174e408d341525f8d305e5a67
--- /dev/null
+++ b/wp-content/themes/path/includes/widget-most-viewed.php
@@ -0,0 +1,260 @@
+<?php
+/**
+ * Most viewed posts widget.
+ *
+ * @package Path
+ * @subpackage Includes
+ * @since 0.1.4
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @author Sami Keijonen <sami.keijonen@foxnet.fi>
+ * @copyright Copyright (c) 2012, Justin Tadlock
+ * @link: http://themeforest.net/item/unique-customizable-wordpress-magazine-theme/3004185?ref=greenshady
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Most viewed posts widget.
+ *
+ * @since 0.1.4
+ */
+class Path_Widget_Most_Viewed extends WP_Widget {
+
+	/**
+	 * Set up the widget's path name, ID, class, description, and other options.
+	 *
+	 * @since 0.1.4
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'most-viewed',
+			'description' => __( 'Display top viewed posts.', 'path' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 250,
+			'height' => 350,
+			'id_base' => 'most-viewed'
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget( 'most-viewed', __( 'Most Viewed', 'path' ), $widget_options, $control_options );
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.1.4
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Arguments for the query. */
+		$args = array(
+			'orderby' => 'meta_value_num',
+			'order' => 'DESC',
+			'post_type' => ( isset( $instance['post_type'] ) ? $instance['post_type'] : 'post' ),
+			'posts_per_page' => ( isset( $instance['posts_per_page'] ) ? intval( $instance['posts_per_page'] ) : 10 ),
+			'post_status' => array( 'publish', 'inherit' ),
+			'ignore_sticky_posts' => true,
+			'meta_key' => 'Views'
+		);
+
+		/* Only add arguments if they're set. */
+		if ( !empty( $instance['day'] ) )
+			$args['day'] = absint( $instance['day'] );
+		if ( !empty( $instance['monthnum'] ) )
+			$args['monthnum'] = absint( $instance['monthnum'] );
+		if ( !empty( $instance['year'] ) )
+			$args['year'] = absint( $instance['year'] );
+
+		/* Open the before widget HTML. */
+		echo $before_widget;
+
+		/* Output the widget title. */
+		if ( $instance['title'] )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Query the popular posts. */
+		$loop = new WP_Query( $args );
+
+		if ( $loop->have_posts() ) {
+		
+			/* If thumbnail or byline or excerpt is set show article html. */
+			if ( $instance['show_thumbnail'] || $instance['show_byline'] || $instance['show_excerpt'] ) {
+						
+				while ( $loop->have_posts() ) {
+					$loop->the_post();
+				
+				?>
+					
+				<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+				
+					<?php 
+					if ( $instance['show_thumbnail'] ) {
+						if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-smaller-thumbnail' ) );
+					}
+					?>
+					
+					<header class="entry-header">
+						<?php the_title( '<a class="post-link" href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '">', '</a> ' ); ?>
+						<span class="views-number">
+						<?php echo '(' . entry_views_get() . ')'; ?>
+						<span>
+					</header><!-- .entry-header -->
+		
+					<div class="entry-summary">
+						<?php if ( $instance['show_excerpt'] ) the_excerpt(); ?>
+						<?php if ( $instance['show_byline'] ) echo apply_atomic_shortcode( 'byline-most-viewed-widget', '<div class="byline">' . __( '[entry-author] [entry-published]', 'path' ) . '</div>' ); ?>
+					</div><!-- .entry-summary -->
+					
+				</article><!-- .hentry -->
+		
+			<?php } // End while
+			
+			} // End if
+			
+			/* Else show list of titles. */
+			else {
+
+			echo '<ul class="xoxo most-viewed">';
+
+			while ( $loop->have_posts() ) {
+				$loop->the_post();
+
+				/* Create a list item, add the post title (w/link) and view count (w/link). */
+				echo '<li>';
+				//if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-smaller-thumbnail' ) );
+				the_title( '<a class="post-link" href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '">', '</a> ' );
+				echo '<span class="views-number">';
+				echo '(' . entry_views_get() . ')';
+				echo '<span>';
+				echo '</li>';
+			
+			} // End while
+
+			echo '</ul>';
+			
+			} // End else
+		}
+
+		/* Close the after widget HTML. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.1.4
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		/* Set the instance to the new instance. */
+		$instance = $new_instance;
+
+		/* Sanitize input elements. */
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['year'] = strip_tags( $new_instance['year'] );
+		$instance['posts_per_page'] = intval( $new_instance['posts_per_page'] );
+		$instance['show_thumbnail'] = strip_tags( $new_instance['show_thumbnail'] );
+		$instance['show_byline'] = strip_tags( $new_instance['show_byline'] );
+		$instance['show_excerpt'] = strip_tags( $new_instance['show_excerpt'] );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.1.4
+	 */
+	function form( $instance ) {
+
+		/* Set up the defaults. */
+		$defaults = array(
+			'title' => __( 'Most Viewed', 'path' ),
+			'post_type' => 'post',
+			'posts_per_page' => 10,
+			'year' => '',
+			'monthnum' => '',
+			'day' => '',
+			'show_thumbnail' => 0,
+			'show_byline' => 0,
+			'show_excerpt' => 0,
+		);
+
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		$months = array( '', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 );
+		$days = array( '', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 );
+		$post_types = get_post_types( array( 'public' => true ), 'objects' );
+		?>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'path' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" />
+		</p>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'post_type' ); ?>"><?php _e( 'Post Type:', 'path' ); ?></label>
+			<select class="widefat" id="<?php echo $this->get_field_id( 'post_type' ); ?>" name="<?php echo $this->get_field_name( 'post_type' ); ?>">
+				<?php foreach ( $post_types as $type ) {
+					if ( post_type_supports( $type->name, 'views' ) || post_type_supports( $type->name, 'trackbacks' ) ) { ?>
+						<option value="<?php echo esc_attr( $type->name ); ?>" <?php selected( $instance['post_type'], $type->name ); ?>><?php echo esc_html( $type->labels->singular_name ); ?></option>
+					<?php }
+				} ?>
+			</select>
+		</p>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'posts_per_page' ); ?>"><?php _e( 'Limit:', 'path' ); ?></label>
+			<input style="float:right;width:66px;" type="text" class="widefat" id="<?php echo $this->get_field_id( 'posts_per_page' ); ?>" name="<?php echo $this->get_field_name( 'posts_per_page' ); ?>" value="<?php echo $instance['posts_per_page']; ?>" />
+		</p>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'year' ); ?>"><?php _e( 'Year:', 'path' ); ?></label>
+			<input style="float:right;width:66px;" type="text" class="widefat" id="<?php echo $this->get_field_id( 'year' ); ?>" name="<?php echo $this->get_field_name( 'year' ); ?>" value="<?php echo $instance['year']; ?>" />
+		</p>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'monthnum' ); ?>"><?php _e( 'Month:', 'path' ); ?></label> 
+			<select style="float:right;max-width:66px;" class="widefat" id="<?php echo $this->get_field_id( 'monthnum' ); ?>" name="<?php echo $this->get_field_name( 'monthnum' ); ?>">
+				<?php foreach ( $months as $month ) { ?>
+					<option value="<?php echo esc_attr( $month ); ?>" <?php selected( $instance['monthnum'], $month ); ?>><?php echo $month; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'day' ); ?>"><?php _e( 'Day:', 'path' ); ?></label> 
+			<select style="float:right;max-width:66px;" class="widefat" id="<?php echo $this->get_field_id( 'day' ); ?>" name="<?php echo $this->get_field_name( 'day' ); ?>">
+				<?php foreach ( $days as $day ) { ?>
+					<option value="<?php echo esc_attr( $day ); ?>" <?php selected( $instance['day'], $day ); ?>><?php echo $day; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		
+		<p>
+			<input type="checkbox" value="1" <?php checked( '1', $instance['show_thumbnail'] ); ?> id="<?php echo $this->get_field_id( 'show_thumbnail' ); ?>" name="<?php echo $this->get_field_name( 'show_thumbnail' ); ?>" />
+			<label for="<?php echo $this->get_field_id( 'show_thumbnail' ); ?>"><?php _e( 'Display Thumbnail?' , 'path' ); ?></label> 
+		</p>
+		
+		<p>
+			<input type="checkbox" value="1" <?php checked( '1', $instance['show_byline'] ); ?> id="<?php echo $this->get_field_id( 'show_byline' ); ?>" name="<?php echo $this->get_field_name( 'show_byline' ); ?>" />
+			<label for="<?php echo $this->get_field_id( 'show_byline' ); ?>"><?php _e( 'Display Byline?' , 'path' ); ?></label> 
+		</p>
+		
+		<p>
+			<input type="checkbox" value="1" <?php checked( '1', $instance['show_excerpt'] ); ?> id="<?php echo $this->get_field_id( 'show_excerpt' ); ?>" name="<?php echo $this->get_field_name( 'show_excerpt' ); ?>" />
+			<label for="<?php echo $this->get_field_id( 'show_excerpt' ); ?>"><?php _e( 'Display Excerpt?' , 'path' ); ?></label> 
+		</p>
+
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/index.php b/wp-content/themes/path/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..380f76c143c22d25a7240e5c646f8417cb9d406d
--- /dev/null
+++ b/wp-content/themes/path/index.php
@@ -0,0 +1,59 @@
+<?php
+/**
+ * Index Template
+ *
+ * This is the default template.  It is used when a more specific template can't be found to display
+ * posts. It is unlikely that this template will ever be used, but there may be rare cases.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+
+			<?php if ( have_posts() ) : ?>
+
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php get_template_part( 'content', ( post_type_supports( get_post_type(), 'post-formats' ) ? get_post_format() : get_post_type() ) ); ?>
+
+					<?php if ( is_singular() ) { ?>
+					
+						<?php do_atomic( 'after_singular' ); // path_after_singular ?>
+					
+						<?php get_sidebar( 'after-singular' ); // Loads the sidebar-after-singular.php template. ?>
+
+						<?php comments_template( '/comments.php', true ); // Loads the comments.php template. ?>
+
+					<?php } ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+
+		</div><!-- .hfeed -->
+
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/js/customize/path-customizer.js b/wp-content/themes/path/js/customize/path-customizer.js
new file mode 100644
index 0000000000000000000000000000000000000000..c8ccd6ab7af0539e79b895d88830cf31e8fa680d
--- /dev/null
+++ b/wp-content/themes/path/js/customize/path-customizer.js
@@ -0,0 +1,19 @@
+( function( $ ){
+	wp.customize( 'blogname', function( value ) {
+		value.bind( function( to ) {
+			$( '#site-title a' ).html( to );
+		} );
+	} );
+	wp.customize( 'blogdescription', function( value ) {
+		value.bind( function( to ) {
+			$( '#site-description' ).html( to );
+		} );
+	} );
+	wp.customize( 'path_theme_settings[path_global_layout]', function( value ) {
+		value.bind( function( to ) {
+			var classes = $( 'body' ).attr( 'class' ).replace( /layout-[a-zA-Z0-9_-]*/g, '' ); // replace class with prefix layout- to ''
+			$( 'body' ).attr( 'class', classes ).addClass( to ); // add new class
+		} );
+	} );
+
+} )( jQuery );
diff --git a/wp-content/themes/path/js/fitvids/fitvids.js b/wp-content/themes/path/js/fitvids/fitvids.js
new file mode 100644
index 0000000000000000000000000000000000000000..04f61249a66151518894a485230e2df0c15503ad
--- /dev/null
+++ b/wp-content/themes/path/js/fitvids/fitvids.js
@@ -0,0 +1,4 @@
+// Basic FitVids
+jQuery(document).ready(function() {
+    		jQuery('#content').fitVids();
+    	});
\ No newline at end of file
diff --git a/wp-content/themes/path/js/fitvids/jquery.fitvids.js b/wp-content/themes/path/js/fitvids/jquery.fitvids.js
new file mode 100644
index 0000000000000000000000000000000000000000..4914dd7ee1c32957f76611503a1fe20ea3fa6544
--- /dev/null
+++ b/wp-content/themes/path/js/fitvids/jquery.fitvids.js
@@ -0,0 +1,77 @@
+/*global jQuery */
+/*! 
+* FitVids 1.0
+*
+* Copyright 2011, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
+* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
+* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
+*
+* Date: Thu Sept 01 18:00:00 2011 -0500
+*/
+
+(function( $ ){
+
+  $.fn.fitVids = function( options ) {
+    var settings = {
+      customSelector: null
+    }
+    
+    var div = document.createElement('div'),
+        ref = document.getElementsByTagName('base')[0] || document.getElementsByTagName('script')[0];
+        
+  	div.className = 'fit-vids-style';
+    div.innerHTML = '&shy;<style>         \
+      .fluid-width-video-wrapper {        \
+         width: 100%;                     \
+         position: relative;              \
+         padding: 0;                      \
+      }                                   \
+                                          \
+      .fluid-width-video-wrapper iframe,  \
+      .fluid-width-video-wrapper object,  \
+      .fluid-width-video-wrapper embed {  \
+         position: absolute;              \
+         top: 0;                          \
+         left: 0;                         \
+         width: 100%;                     \
+         height: 100%;                    \
+      }                                   \
+    </style>';
+                      
+    ref.parentNode.insertBefore(div,ref);
+    
+    if ( options ) { 
+      $.extend( settings, options );
+    }
+    
+    return this.each(function(){
+      var selectors = [
+        "iframe[src*='player.vimeo.com']", 
+        "iframe[src*='www.youtube.com']",  
+        "iframe[src*='www.kickstarter.com']", 
+        "object", 
+        "embed"
+      ];
+      
+      if (settings.customSelector) {
+        selectors.push(settings.customSelector);
+      }
+      
+      var $allVideos = $(this).find(selectors.join(','));
+
+      $allVideos.each(function(){
+        var $this = $(this);
+        if (this.tagName.toLowerCase() == 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; } 
+        var height = this.tagName.toLowerCase() == 'object' ? $this.attr('height') : $this.height(),
+            aspectRatio = height / $this.width();
+		if(!$this.attr('id')){
+			var videoID = 'fitvid' + Math.floor(Math.random()*999999);
+			$this.attr('id', videoID);
+		}
+        $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
+        $this.removeAttr('height').removeAttr('width');
+      });
+    });
+  
+  }
+})( jQuery );
\ No newline at end of file
diff --git a/wp-content/themes/path/js/flexslider/jquery.flexslider-min.js b/wp-content/themes/path/js/flexslider/jquery.flexslider-min.js
new file mode 100644
index 0000000000000000000000000000000000000000..817806233d64b7300e699297d76483d962466fcb
--- /dev/null
+++ b/wp-content/themes/path/js/flexslider/jquery.flexslider-min.js
@@ -0,0 +1,37 @@
+/*
+ * jQuery FlexSlider v2.0
+ * Copyright 2012 WooThemes
+ * Contributing Author: Tyler Smith
+ */
+; (function(d){d.flexslider=function(i,k){var a=d(i),c=d.extend({},d.flexslider.defaults,k),e=c.namespace,p="ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch,s=p?"touchend":"click",l="vertical"===c.direction,m=c.reverse,h=0<c.itemWidth,q="fade"===c.animation,r=""!==c.asNavFor,g={};d.data(i,"flexslider",a);g={init:function(){a.animating=!1;a.currentSlide=c.startAt;a.animatingTo=a.currentSlide;a.atEnd=0===a.currentSlide||a.currentSlide===a.last;a.containerSelector=c.selector.substr(0,
+ c.selector.search(" "));a.slides=d(c.selector,a);a.container=d(a.containerSelector,a);a.count=a.slides.length;a.syncExists=0<d(c.sync).length;"slide"===c.animation&&(c.animation="swing");a.prop=l?"top":"marginLeft";a.args={};a.manualPause=!1;var b=a,f;if(f=!c.video)if(f=!q)if(f=c.useCSS)a:{f=document.createElement("div");var n=["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"],e;for(e in n)if(void 0!==f.style[n[e]]){a.pfx=n[e].replace("Perspective","").toLowerCase();
+ a.prop="-"+a.pfx+"-transform";f=!0;break a}f=!1}b.transitions=f;""!==c.controlsContainer&&(a.controlsContainer=0<d(c.controlsContainer).length&&d(c.controlsContainer));""!==c.manualControls&&(a.manualControls=0<d(c.manualControls).length&&d(c.manualControls));c.randomize&&(a.slides.sort(function(){return Math.round(Math.random())-0.5}),a.container.empty().append(a.slides));a.doMath();r&&g.asNav.setup();a.setup("init");c.controlNav&&g.controlNav.setup();c.directionNav&&g.directionNav.setup();c.keyboard&&
+ (1===d(a.containerSelector).length||c.multipleKeyboard)&&d(document).bind("keyup",function(b){b=b.keyCode;if(!a.animating&&(b===39||b===37)){b=b===39?a.getTarget("next"):b===37?a.getTarget("prev"):false;a.flexAnimate(b,c.pauseOnAction)}});c.mousewheel&&a.bind("mousewheel",function(b,f){b.preventDefault();var d=f<0?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(d,c.pauseOnAction)});c.pausePlay&&g.pausePlay.setup();c.slideshow&&(c.pauseOnHover&&a.hover(function(){a.pause()},function(){a.manualPause||
+ a.play()}),0<c.initDelay?setTimeout(a.play,c.initDelay):a.play());p&&c.touch&&g.touch();(!q||q&&c.smoothHeight)&&d(window).bind("resize focus",g.resize);setTimeout(function(){c.start(a)},200)},asNav:{setup:function(){a.asNav=!0;a.animatingTo=Math.floor(a.currentSlide/a.move);a.currentItem=a.currentSlide;a.slides.removeClass(e+"active-slide").eq(a.currentItem).addClass(e+"active-slide");a.slides.click(function(b){b.preventDefault();var b=d(this),f=b.index();!d(c.asNavFor).data("flexslider").animating&&
+ !b.hasClass("active")&&(a.direction=a.currentItem<f?"next":"prev",a.flexAnimate(f,c.pauseOnAction,!1,!0,!0))})}},controlNav:{setup:function(){a.manualControls?g.controlNav.setupManual():g.controlNav.setupPaging()},setupPaging:function(){var b=1,f;a.controlNavScaffold=d('<ol class="'+e+"control-nav "+e+("thumbnails"===c.controlNav?"control-thumbs":"control-paging")+'"></ol>');if(1<a.pagingCount)for(var n=0;n<a.pagingCount;n++)f="thumbnails"===c.controlNav?'<img src="'+a.slides.eq(n).attr("data-thumb")+
+ '"/>':"<a>"+b+"</a>",a.controlNavScaffold.append("<li>"+f+"</li>"),b++;a.controlsContainer?d(a.controlsContainer).append(a.controlNavScaffold):a.append(a.controlNavScaffold);g.controlNav.set();g.controlNav.active();a.controlNavScaffold.delegate("a, img",s,function(b){b.preventDefault();var b=d(this),f=a.controlNav.index(b);b.hasClass(e+"active")||(a.direction=f>a.currentSlide?"next":"prev",a.flexAnimate(f,c.pauseOnAction))});p&&a.controlNavScaffold.delegate("a","click touchstart",function(a){a.preventDefault()})},
+ setupManual:function(){a.controlNav=a.manualControls;g.controlNav.active();a.controlNav.live(s,function(b){b.preventDefault();var b=d(this),f=a.controlNav.index(b);b.hasClass(e+"active")||(f>a.currentSlide?a.direction="next":a.direction="prev",a.flexAnimate(f,c.pauseOnAction))});p&&a.controlNav.live("click touchstart",function(a){a.preventDefault()})},set:function(){a.controlNav=d("."+e+"control-nav li "+("thumbnails"===c.controlNav?"img":"a"),a.controlsContainer?a.controlsContainer:a)},active:function(){a.controlNav.removeClass(e+
+ "active").eq(a.animatingTo).addClass(e+"active")},update:function(b,c){1<a.pagingCount&&"add"===b?a.controlNavScaffold.append(d("<li><a>"+a.count+"</a></li>")):1===a.pagingCount?a.controlNavScaffold.find("li").remove():a.controlNav.eq(c).closest("li").remove();g.controlNav.set();1<a.pagingCount&&a.pagingCount!==a.controlNav.length?a.update(c,b):g.controlNav.active()}},directionNav:{setup:function(){var b=d('<ul class="'+e+'direction-nav"><li><a class="'+e+'prev" href="#">'+c.prevText+'</a></li><li><a class="'+
+ e+'next" href="#">'+c.nextText+"</a></li></ul>");a.controlsContainer?(d(a.controlsContainer).append(b),a.directionNav=d("."+e+"direction-nav li a",a.controlsContainer)):(a.append(b),a.directionNav=d("."+e+"direction-nav li a",a));g.directionNav.update();a.directionNav.bind(s,function(b){b.preventDefault();b=d(this).hasClass(e+"next")?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(b,c.pauseOnAction)});p&&a.directionNav.bind("click touchstart",function(a){a.preventDefault()})},update:function(){var b=
+ e+"disabled";1===a.pagingCount?a.directionNav.addClass(b):c.animationLoop?a.directionNav.removeClass(b):0===a.animatingTo?a.directionNav.removeClass(b).filter("."+e+"prev").addClass(b):a.animatingTo===a.last?a.directionNav.removeClass(b).filter("."+e+"next").addClass(b):a.directionNav.removeClass(b)}},pausePlay:{setup:function(){var b=d('<div class="'+e+'pauseplay"><a></a></div>');a.controlsContainer?(a.controlsContainer.append(b),a.pausePlay=d("."+e+"pauseplay a",a.controlsContainer)):(a.append(b),
+ a.pausePlay=d("."+e+"pauseplay a",a));g.pausePlay.update(c.slideshow?e+"pause":e+"play");a.pausePlay.bind(s,function(b){b.preventDefault();if(d(this).hasClass(e+"pause")){a.pause();a.manualPause=true}else{a.play();a.manualPause=false}});p&&a.pausePlay.bind("click touchstart",function(a){a.preventDefault()})},update:function(b){"play"===b?a.pausePlay.removeClass(e+"pause").addClass(e+"play").text(c.playText):a.pausePlay.removeClass(e+"play").addClass(e+"pause").text(c.pauseText)}},touch:function(){function b(b){j=
+ l?d-b.touches[0].pageY:d-b.touches[0].pageX;p=l?Math.abs(j)<Math.abs(b.touches[0].pageX-e):Math.abs(j)<Math.abs(b.touches[0].pageY-e);if(!p||500<Number(new Date)-k)b.preventDefault(),!q&&a.transitions&&(c.animationLoop||(j/=0===a.currentSlide&&0>j||a.currentSlide===a.last&&0<j?Math.abs(j)/o+2:1),a.setProps(g+j,"setTouch"))}function f(){if(a.animatingTo===a.currentSlide&&!p&&null!==j){var h=m?-j:j,l=0<h?a.getTarget("next"):a.getTarget("prev");a.canAdvance(l)&&(550>Number(new Date)-k&&20<Math.abs(h)||
+ Math.abs(h)>o/2)?a.flexAnimate(l,c.pauseOnAction):a.flexAnimate(a.currentSlide,c.pauseOnAction,!0)}i.removeEventListener("touchmove",b,!1);i.removeEventListener("touchend",f,!1);g=j=e=d=null}var d,e,g,o,j,k,p=!1;i.addEventListener("touchstart",function(j){a.animating?j.preventDefault():1===j.touches.length&&(a.pause(),o=l?a.h:a.w,k=Number(new Date),g=h&&m&&a.animatingTo===a.last?0:h&&m?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:h&&a.currentSlide===a.last?a.limit:h?(a.itemW+c.itemMargin)*
+ a.move*a.currentSlide:m?(a.last-a.currentSlide+a.cloneOffset)*o:(a.currentSlide+a.cloneOffset)*o,d=l?j.touches[0].pageY:j.touches[0].pageX,e=l?j.touches[0].pageX:j.touches[0].pageY,i.addEventListener("touchmove",b,!1),i.addEventListener("touchend",f,!1))},!1)},resize:function(){!a.animating&&a.is(":visible")&&(h||a.doMath(),q?g.smoothHeight():h?(a.slides.width(a.computedW),a.update(a.pagingCount),a.setProps()):l?(a.viewport.height(a.h),a.setProps(a.h,"setTotal")):(c.smoothHeight&&g.smoothHeight(),
+ a.newSlides.width(a.computedW),a.setProps(a.computedW,"setTotal")))},smoothHeight:function(b){if(!l||q){var c=q?a:a.viewport;b?c.animate({height:a.slides.eq(a.animatingTo).height()},b):c.height(a.slides.eq(a.animatingTo).height())}},sync:function(b){var f=d(c.sync).data("flexslider"),e=a.animatingTo;switch(b){case "animate":f.flexAnimate(e,c.pauseOnAction,!1,!0);break;case "play":!f.playing&&!f.asNav&&f.play();break;case "pause":f.pause()}}};a.flexAnimate=function(b,f,n,i,k){if(!a.animating&&(a.canAdvance(b)||
+ n)&&a.is(":visible")){if(r&&i)if(n=d(c.asNavFor).data("flexslider"),a.atEnd=0===b||b===a.count-1,n.flexAnimate(b,!0,!1,!0,k),a.direction=a.currentItem<b?"next":"prev",n.direction=a.direction,Math.ceil((b+1)/a.visible)-1!==a.currentSlide&&0!==b)a.currentItem=b,a.slides.removeClass(e+"active-slide").eq(b).addClass(e+"active-slide"),b=Math.floor(b/a.visible);else return a.currentItem=b,a.slides.removeClass(e+"active-slide").eq(b).addClass(e+"active-slide"),!1;a.animating=!0;a.animatingTo=b;c.before(a);
+ f&&a.pause();a.syncExists&&!k&&g.sync("animate");c.controlNav&&g.controlNav.active();h||a.slides.removeClass(e+"active-slide").eq(b).addClass(e+"active-slide");a.atEnd=0===b||b===a.last;c.directionNav&&g.directionNav.update();b===a.last&&(c.end(a),c.animationLoop||a.pause());if(q)a.slides.eq(a.currentSlide).fadeOut(c.animationSpeed,c.easing),a.slides.eq(b).fadeIn(c.animationSpeed,c.easing,a.wrapup);else{var o=l?a.slides.filter(":first").height():a.computedW;h?(b=c.itemWidth>a.w?2*c.itemMargin:c.itemMargin,
+ b=(a.itemW+b)*a.move*a.animatingTo,b=b>a.limit&&1!==a.visible?a.limit:b):b=0===a.currentSlide&&b===a.count-1&&c.animationLoop&&"next"!==a.direction?m?(a.count+a.cloneOffset)*o:0:a.currentSlide===a.last&&0===b&&c.animationLoop&&"prev"!==a.direction?m?0:(a.count+1)*o:m?(a.count-1-b+a.cloneOffset)*o:(b+a.cloneOffset)*o;a.setProps(b,"",c.animationSpeed);if(a.transitions){if(!c.animationLoop||!a.atEnd)a.animating=!1,a.currentSlide=a.animatingTo;a.container.unbind("webkitTransitionEnd transitionend");a.container.bind("webkitTransitionEnd transitionend",
+ function(){a.wrapup(o)})}else a.container.animate(a.args,c.animationSpeed,c.easing,function(){a.wrapup(o)})}c.smoothHeight&&g.smoothHeight(c.animationSpeed)}};a.wrapup=function(b){!q&&!h&&(0===a.currentSlide&&a.animatingTo===a.last&&c.animationLoop?a.setProps(b,"jumpEnd"):a.currentSlide===a.last&&(0===a.animatingTo&&c.animationLoop)&&a.setProps(b,"jumpStart"));a.animating=!1;a.currentSlide=a.animatingTo;c.after(a)};a.animateSlides=function(){a.animating||a.flexAnimate(a.getTarget("next"))};a.pause=
+ function(){clearInterval(a.animatedSlides);a.playing=!1;c.pausePlay&&g.pausePlay.update("play");a.syncExists&&g.sync("pause")};a.play=function(){a.animatedSlides=setInterval(a.animateSlides,c.slideshowSpeed);a.playing=!0;c.pausePlay&&g.pausePlay.update("pause");a.syncExists&&g.sync("play")};a.canAdvance=function(b){var f=r?a.pagingCount-1:a.last;return r&&0===a.currentItem&&b===a.pagingCount-1&&"next"!==a.direction?!1:b===a.currentSlide&&!r?!1:c.animationLoop?!0:a.atEnd&&0===a.currentSlide&&b===f&&
+ "next"!==a.direction?!1:a.atEnd&&a.currentSlide===f&&0===b&&"next"===a.direction?!1:!0};a.getTarget=function(b){a.direction=b;return"next"===b?a.currentSlide===a.last?0:a.currentSlide+1:0===a.currentSlide?a.last:a.currentSlide-1};a.setProps=function(b,f,d){var e,g=b?b:(a.itemW+c.itemMargin)*a.move*a.animatingTo;e=-1*function(){if(h)return"setTouch"===f?b:m&&a.animatingTo===a.last?0:m?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:a.animatingTo===a.last?a.limit:g;switch(f){case "setTotal":return m?
+ (a.count-1-a.currentSlide+a.cloneOffset)*b:(a.currentSlide+a.cloneOffset)*b;case "setTouch":return b;case "jumpEnd":return m?b:a.count*b;case "jumpStart":return m?a.count*b:b;default:return b}}()+"px";a.transitions&&(e=l?"translate3d(0,"+e+",0)":"translate3d("+e+",0,0)",d=void 0!==d?d/1E3+"s":"0s",a.container.css("-"+a.pfx+"-transition-duration",d));a.args[a.prop]=e;(a.transitions||void 0===d)&&a.container.css(a.args)};a.setup=function(b){if(q)a.slides.css({width:"100%","float":"left",marginRight:"-100%",
+ position:"relative"}),"init"===b&&a.slides.eq(a.currentSlide).fadeIn(c.animationSpeed,c.easing),c.smoothHeight&&g.smoothHeight();else{var f,n;"init"===b&&(a.viewport=d('<div class="'+e+'viewport"></div>').css({overflow:"hidden",position:"relative"}).appendTo(a).append(a.container),a.cloneCount=0,a.cloneOffset=0,m&&(n=d.makeArray(a.slides).reverse(),a.slides=d(n),a.container.empty().append(a.slides)));c.animationLoop&&!h&&(a.cloneCount=2,a.cloneOffset=1,"init"!==b&&a.container.find(".clone").remove(),
+ a.container.append(a.slides.first().clone().addClass("clone")).prepend(a.slides.last().clone().addClass("clone")));a.newSlides=d(c.selector,a);f=m?a.count-1-a.currentSlide+a.cloneOffset:a.currentSlide+a.cloneOffset;l&&!h?(a.container.height(200*(a.count+a.cloneCount)+"%").css("position","absolute").width("100%"),setTimeout(function(){a.newSlides.css({display:"block"});a.doMath();a.viewport.height(a.h);a.setProps(f*a.h,"init")},"init"===b?100:0)):(a.container.width(200*(a.count+a.cloneCount)+"%"),
+ a.setProps(f*a.computedW,"init"),setTimeout(function(){a.doMath();a.newSlides.css({width:a.computedW,"float":"left",display:"block"});c.smoothHeight&&g.smoothHeight()},"init"===b?100:0))}h||a.slides.removeClass(e+"active-slide").eq(a.currentSlide).addClass(e+"active-slide")};a.doMath=function(){var b=a.slides.first(),f=c.itemMargin,d=c.minItems,e=c.maxItems;a.w=a.width();a.h=b.height();a.boxPadding=b.outerWidth()-b.width();h?(a.itemT=c.itemWidth+f,a.minW=d?d*a.itemT:a.w,a.maxW=e?e*a.itemT:a.w,a.itemW=
+ a.minW>a.w?(a.w-f*d)/d:a.maxW<a.w?(a.w-f*e)/e:c.itemWidth>a.w?a.w:c.itemWidth,a.visible=Math.floor(a.w/(a.itemW+f)),a.move=0<c.move&&c.move<a.visible?c.move:a.visible,a.pagingCount=Math.ceil((a.count-a.visible)/a.move+1),a.last=a.pagingCount-1,a.limit=1===a.pagingCount?0:c.itemWidth>a.w?(a.itemW+2*f)*a.count-a.w-f:(a.itemW+f)*a.count-a.w-f):(a.itemW=a.w,a.pagingCount=a.count,a.last=a.count-1);a.computedW=a.itemW-a.boxPadding};a.update=function(b,d){a.doMath();h||(b<a.currentSlide?a.currentSlide+=
+ 1:b<=a.currentSlide&&0!==b&&(a.currentSlide-=1),a.animatingTo=a.currentSlide);if(c.controlNav&&!a.manualControls)if("add"===d&&!h||a.pagingCount>a.controlNav.length)g.controlNav.update("add");else if("remove"===d&&!h||a.pagingCount<a.controlNav.length)h&&a.currentSlide>a.last&&(a.currentSlide-=1,a.animatingTo-=1),g.controlNav.update("remove",a.last);c.directionNav&&g.directionNav.update()};a.addSlide=function(b,f){var e=d(b);a.count+=1;a.last=a.count-1;l&&m?void 0!==f?a.slides.eq(a.count-f).after(e):
+ a.container.prepend(e):void 0!==f?a.slides.eq(f).before(e):a.container.append(e);a.update(f,"add");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.added(a)};a.removeSlide=function(b){var e=isNaN(b)?a.slides.index(d(b)):b;a.count-=1;a.last=a.count-1;isNaN(b)?d(b,a.slides).remove():l&&m?a.slides.eq(a.last).remove():a.slides.eq(b).remove();a.doMath();a.update(e,"remove");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.removed(a)};g.init()};d.flexslider.defaults={namespace:"flex-",selector:".slides > li",
+ animation:"fade",easing:"swing",direction:"horizontal",reverse:!1,animationLoop:!0,smoothHeight:!1,startAt:0,slideshow:!0,slideshowSpeed:7E3,animationSpeed:600,initDelay:0,randomize:!1,pauseOnAction:!0,pauseOnHover:!1,useCSS:!0,touch:!0,video:!1,controlNav:!0,directionNav:!0,prevText:"Previous",nextText:"Next",keyboard:!0,multipleKeyboard:!1,mousewheel:!1,pausePlay:!1,pauseText:"Pause",playText:"Play",controlsContainer:"",manualControls:"",sync:"",asNavFor:"",itemWidth:0,itemMargin:0,minItems:0,maxItems:0,
+ move:0,start:function(){},before:function(){},after:function(){},end:function(){},added:function(){},removed:function(){}};d.fn.flexslider=function(i){void 0===i&&(i={});if("object"===typeof i)return this.each(function(){var a=d(this),c=a.find(i.selector?i.selector:".slides > li");1===c.length?(c.fadeIn(400),i.start&&i.start(a)):void 0===a.data("flexslider")&&new d.flexslider(this,i)});var k=d(this).data("flexslider");switch(i){case "play":k.play();break;case "pause":k.pause();break;case "next":k.flexAnimate(k.getTarget("next"),
+ !0);break;case "prev":case "previous":k.flexAnimate(k.getTarget("prev"),!0);break;default:"number"===typeof i&&k.flexAnimate(i,!0)}}})(jQuery);
\ No newline at end of file
diff --git a/wp-content/themes/path/js/flexslider/settings.flexslider.js b/wp-content/themes/path/js/flexslider/settings.flexslider.js
new file mode 100644
index 0000000000000000000000000000000000000000..82dafe8c311cf8dbea34d581e4bea7cbd7de33bd
--- /dev/null
+++ b/wp-content/themes/path/js/flexslider/settings.flexslider.js
@@ -0,0 +1,6 @@
+// Flexslider
+jQuery(window).load(function() {
+    jQuery('.flexslider').flexslider({
+		slideshow: true
+	});
+});
\ No newline at end of file
diff --git a/wp-content/themes/path/js/html5shiv/html5shiv.js b/wp-content/themes/path/js/html5shiv/html5shiv.js
new file mode 100644
index 0000000000000000000000000000000000000000..d2f67c7c09b118968ee549998f7b044f0de90425
--- /dev/null
+++ b/wp-content/themes/path/js/html5shiv/html5shiv.js
@@ -0,0 +1,5 @@
+(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,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}</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|button|code|div|fieldset|form|h1|h2|h3|h4|h5|h6|i|iframe|img|input|label|li|link|ol|option|p|param|q|script|select|span|strong|style|table|tbody|td|textarea|tfoot|th|thead|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 figcaption figure footer header hgroup mark meter nav output progress section summary time video",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);
diff --git a/wp-content/themes/path/js/respond/respond.min.js b/wp-content/themes/path/js/respond/respond.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..21437ba0b0b657291028a8bbfd99a9a33abe6d6a
--- /dev/null
+++ b/wp-content/themes/path/js/respond/respond.min.js
@@ -0,0 +1,6 @@
+/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
+/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
+window.matchMedia=window.matchMedia||(function(e,f){var c,a=e.documentElement,b=a.firstElementChild||a.firstChild,d=e.createElement("body"),g=e.createElement("div");g.id="mq-test-1";g.style.cssText="position:absolute;top:-100em";d.style.background="none";d.appendChild(g);return function(h){g.innerHTML='&shy;<style media="'+h+'"> #mq-test-1 { width: 42px; }</style>';a.insertBefore(d,b);c=g.offsetWidth==42;a.removeChild(d);return{matches:c,media:h}}})(document);
+
+/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs  */
+(function(e){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=e.matchMedia&&e.matchMedia("only all").matches;if(respond.mediaQueriesSupported){return}var w=e.document,s=w.documentElement,i=[],k=[],q=[],o={},h=30,f=w.getElementsByTagName("head")[0]||s,g=w.getElementsByTagName("base")[0],b=f.getElementsByTagName("link"),d=[],a=function(){var D=b,y=D.length,B=0,A,z,C,x;for(;B<y;B++){A=D[B],z=A.href,C=A.media,x=A.rel&&A.rel.toLowerCase()==="stylesheet";if(!!z&&x&&!o[z]){if(A.styleSheet&&A.styleSheet.rawCssText){m(A.styleSheet.rawCssText,z,C);o[z]=true}else{if((!/^([a-zA-Z:]*\/\/)/.test(z)&&!g)||z.replace(RegExp.$1,"").split("/")[0]===e.location.host){d.push({href:z,media:C})}}}}u()},u=function(){if(d.length){var x=d.shift();n(x.href,function(y){m(y,x.href,x.media);o[x.href]=true;u()})}},m=function(I,x,z){var G=I.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),J=G&&G.length||0,x=x.substring(0,x.lastIndexOf("/")),y=function(K){return K.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+x+"$2$3")},A=!J&&z,D=0,C,E,F,B,H;if(x.length){x+="/"}if(A){J=1}for(;D<J;D++){C=0;if(A){E=z;k.push(y(I))}else{E=G[D].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1;k.push(RegExp.$2&&y(RegExp.$2))}B=E.split(",");H=B.length;for(;C<H;C++){F=B[C];i.push({media:F.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:k.length-1,hasquery:F.indexOf("(")>-1,minw:F.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:F.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}}j()},l,r,v=function(){var z,A=w.createElement("div"),x=w.body,y=false;A.style.cssText="position:absolute;font-size:1em;width:1em";if(!x){x=y=w.createElement("body");x.style.background="none"}x.appendChild(A);s.insertBefore(x,s.firstChild);z=A.offsetWidth;if(y){s.removeChild(x)}else{x.removeChild(A)}z=p=parseFloat(z);return z},p,j=function(I){var x="clientWidth",B=s[x],H=w.compatMode==="CSS1Compat"&&B||w.body[x]||B,D={},G=b[b.length-1],z=(new Date()).getTime();if(I&&l&&z-l<h){clearTimeout(r);r=setTimeout(j,h);return}else{l=z}for(var E in i){var K=i[E],C=K.minw,J=K.maxw,A=C===null,L=J===null,y="em";if(!!C){C=parseFloat(C)*(C.indexOf(y)>-1?(p||v()):1)}if(!!J){J=parseFloat(J)*(J.indexOf(y)>-1?(p||v()):1)}if(!K.hasquery||(!A||!L)&&(A||H>=C)&&(L||H<=J)){if(!D[K.media]){D[K.media]=[]}D[K.media].push(k[K.rules])}}for(var E in q){if(q[E]&&q[E].parentNode===f){f.removeChild(q[E])}}for(var E in D){var M=w.createElement("style"),F=D[E].join("\n");M.type="text/css";M.media=E;f.insertBefore(M,G.nextSibling);if(M.styleSheet){M.styleSheet.cssText=F}else{M.appendChild(w.createTextNode(F))}q.push(M)}},n=function(x,z){var y=c();if(!y){return}y.open("GET",x,true);y.onreadystatechange=function(){if(y.readyState!=4||y.status!=200&&y.status!=304){return}z(y.responseText)};if(y.readyState==4){return}y.send(null)},c=(function(){var x=false;try{x=new XMLHttpRequest()}catch(y){x=new ActiveXObject("Microsoft.XMLHTTP")}return function(){return x}})();a();respond.update=a;function t(){j(true)}if(e.addEventListener){e.addEventListener("resize",t,false)}else{if(e.attachEvent){e.attachEvent("onresize",t)}}})(this);
\ No newline at end of file
diff --git a/wp-content/themes/path/languages/hybrid-core-en_EN.mo b/wp-content/themes/path/languages/hybrid-core-en_EN.mo
new file mode 100644
index 0000000000000000000000000000000000000000..adc51d95cb542422dbbac2653b0eed0bfabde870
Binary files /dev/null and b/wp-content/themes/path/languages/hybrid-core-en_EN.mo differ
diff --git a/wp-content/themes/path/languages/hybrid-core-en_EN.po b/wp-content/themes/path/languages/hybrid-core-en_EN.po
new file mode 100644
index 0000000000000000000000000000000000000000..37a482840771f5e83934e76cbd7e7c4ede263b5e
--- /dev/null
+++ b/wp-content/themes/path/languages/hybrid-core-en_EN.po
@@ -0,0 +1,938 @@
+# Translation of Trunk in Finnish
+# This file is distributed under the same license as the Trunk package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Hybrid Core in english\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-08-29 22:26+0200\n"
+"PO-Revision-Date: 2012-08-29 22:27+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Foxnet <sami.keijonen@foxnet.fi>\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: GlotPress/0.1\n"
+"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_html__;esc_html_e;_n;"
+"_x;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: admin/meta-box-post-seo.php:37
+msgid "SEO"
+msgstr ""
+
+#: admin/meta-box-post-seo.php:70
+msgid "Document Title:"
+msgstr ""
+
+#: admin/meta-box-post-seo.php:76
+msgid "Meta Description:"
+msgstr ""
+
+#: admin/meta-box-post-seo.php:82
+msgid "Meta Keywords:"
+msgstr ""
+
+#: admin/meta-box-post-template.php:36
+msgid "Template"
+msgstr ""
+
+#: admin/meta-box-post-template.php:87
+msgid "No templates exist for this post type."
+msgstr ""
+
+#: admin/meta-box-theme-about.php:31 admin/meta-box-theme-about.php:36
+#, php-format
+msgid "About %s"
+msgstr ""
+
+#: admin/meta-box-theme-about.php:61
+msgid "Theme:"
+msgstr ""
+
+#: admin/meta-box-theme-about.php:69
+msgid "Version:"
+msgstr ""
+
+#: admin/meta-box-theme-about.php:77
+msgid "Author:"
+msgstr ""
+
+#: admin/meta-box-theme-about.php:85
+msgid "Description:"
+msgstr ""
+
+#: admin/meta-box-theme-footer.php:29
+msgid "Footer settings"
+msgstr ""
+
+#: admin/meta-box-theme-footer.php:52
+msgid ""
+"You can add custom <acronym title=\"Hypertext Markup Language\">HTML</"
+"acronym> and/or shortcodes, which will be automatically inserted into your "
+"theme."
+msgstr ""
+
+#: admin/theme-settings.php:47 admin/theme-settings.php:171
+#, php-format
+msgid "%s Theme Settings"
+msgstr ""
+
+#: admin/theme-settings.php:48
+msgid "Theme Settings"
+msgstr ""
+
+#: admin/theme-settings.php:172
+msgid "Customize"
+msgstr ""
+
+#: admin/theme-settings.php:198
+msgid "Update Settings"
+msgstr ""
+
+#: admin/theme-settings.php:255
+msgid "Documentation"
+msgstr ""
+
+#: admin/theme-settings.php:259
+msgid "Support"
+msgstr ""
+
+#: classes/widget-archives.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"archives."
+msgstr ""
+
+#: classes/widget-archives.php:44 classes/widget-archives.php:141
+#: functions/context.php:446
+msgid "Archives"
+msgstr ""
+
+#: classes/widget-archives.php:79
+msgid "Select Year"
+msgstr ""
+
+#: classes/widget-archives.php:82
+msgid "Select Month"
+msgstr ""
+
+#: classes/widget-archives.php:85
+msgid "Select Week"
+msgstr ""
+
+#: classes/widget-archives.php:88
+msgid "Select Day"
+msgstr ""
+
+#: classes/widget-archives.php:91
+msgid "Select Post"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Alphabetical"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Daily"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Monthly"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Post By Post"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Weekly"
+msgstr ""
+
+#: classes/widget-archives.php:154
+msgid "Yearly"
+msgstr ""
+
+#: classes/widget-archives.php:157
+msgid "Custom"
+msgstr ""
+
+#: classes/widget-archives.php:157
+msgid "HTML"
+msgstr ""
+
+#: classes/widget-archives.php:157
+msgid "Option"
+msgstr ""
+
+#: classes/widget-archives.php:162 classes/widget-authors.php:143
+#: classes/widget-bookmarks.php:187 classes/widget-calendar.php:108
+#: classes/widget-categories.php:170 classes/widget-nav-menu.php:133
+#: classes/widget-pages.php:157 classes/widget-search.php:143
+#: classes/widget-tags.php:181
+msgid "Title:"
+msgstr ""
+
+#: classes/widget-archives.php:198 classes/widget-authors.php:191
+msgid "Show post count?"
+msgstr ""
+
+#: classes/widget-authors.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"author lists."
+msgstr ""
+
+#: classes/widget-authors.php:44 classes/widget-authors.php:119
+msgid "Authors"
+msgstr ""
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Ascending"
+msgstr ""
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Descending"
+msgstr ""
+
+#: classes/widget-authors.php:137
+msgid "Display Name"
+msgstr ""
+
+#: classes/widget-authors.php:137 functions/comments.php:188
+msgid "Email"
+msgstr ""
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:179
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "ID"
+msgstr ""
+
+#: classes/widget-authors.php:137
+msgid "Nice Name"
+msgstr ""
+
+#: classes/widget-authors.php:137
+msgid "Post Count"
+msgstr ""
+
+#: classes/widget-authors.php:137
+msgid "Registered"
+msgstr ""
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:181
+msgid "URL"
+msgstr ""
+
+#: classes/widget-authors.php:137
+msgid "Login"
+msgstr ""
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+#: classes/widget-tags.php:172
+msgid "List"
+msgstr ""
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+msgid "None"
+msgstr ""
+
+#: classes/widget-authors.php:187
+msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym>?"
+msgstr ""
+
+#: classes/widget-authors.php:195
+msgid "Exclude admin?"
+msgstr ""
+
+#: classes/widget-authors.php:199
+msgid "Show full name?"
+msgstr ""
+
+#: classes/widget-authors.php:203 classes/widget-categories.php:273
+#: classes/widget-tags.php:292
+msgid "Hide empty?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"bookmarks (links)."
+msgstr ""
+
+#: classes/widget-bookmarks.php:44 classes/widget-bookmarks.php:85
+#: classes/widget-bookmarks.php:148
+msgid "Bookmarks"
+msgstr ""
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-tags.php:174
+msgid "Count"
+msgstr ""
+
+#: classes/widget-bookmarks.php:179 classes/widget-bookmarks.php:181
+#: classes/widget-categories.php:163 classes/widget-tags.php:174
+#: functions/comments.php:187
+msgid "Name"
+msgstr ""
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "Slug"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Description"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Length"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Notes"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Owner"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181 classes/widget-tags.php:173
+msgid "Random"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Rating"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Rel"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:164
+msgid "RSS"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Target"
+msgstr ""
+
+#: classes/widget-bookmarks.php:181
+msgid "Updated"
+msgstr ""
+
+#: classes/widget-bookmarks.php:289
+msgid "Categorize?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:293
+msgid "Show description?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:297
+msgid "Hide invisible?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:301
+msgid "Show rating?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:305
+msgid "Show updated?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:309
+msgid "Show images?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:313
+msgid "Show name?"
+msgstr ""
+
+#: classes/widget-bookmarks.php:317
+msgid "Show private?"
+msgstr ""
+
+#: classes/widget-calendar.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"calendar."
+msgstr ""
+
+#: classes/widget-calendar.php:44 classes/widget-calendar.php:99
+msgid "Calendar"
+msgstr ""
+
+#: classes/widget-calendar.php:113
+msgid "One-letter abbreviation?"
+msgstr ""
+
+#: classes/widget-categories.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"category links."
+msgstr ""
+
+#: classes/widget-categories.php:44 classes/widget-categories.php:133
+msgid "Categories"
+msgstr ""
+
+#: classes/widget-categories.php:163
+msgid "Term Group"
+msgstr ""
+
+#: classes/widget-categories.php:164
+msgid "Atom"
+msgstr ""
+
+#: classes/widget-categories.php:164
+msgid "RDF"
+msgstr ""
+
+#: classes/widget-categories.php:164
+msgid "RSS 2.0"
+msgstr ""
+
+#: classes/widget-categories.php:261 classes/widget-pages.php:256
+msgid "Hierarchical?"
+msgstr ""
+
+#: classes/widget-categories.php:265
+msgid "Use description?"
+msgstr ""
+
+#: classes/widget-categories.php:269
+msgid "Show count?"
+msgstr ""
+
+#: classes/widget-nav-menu.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"menus."
+msgstr ""
+
+#: classes/widget-nav-menu.php:44
+msgid "Navigation Menu"
+msgstr ""
+
+#: classes/widget-nav-menu.php:109
+msgid "Navigation"
+msgstr ""
+
+#: classes/widget-pages.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your page "
+"links."
+msgstr ""
+
+#: classes/widget-pages.php:44 classes/widget-pages.php:123
+msgid "Pages"
+msgstr ""
+
+#: classes/widget-pages.php:149
+msgid "Author"
+msgstr ""
+
+#: classes/widget-pages.php:149
+msgid "Date"
+msgstr ""
+
+#: classes/widget-pages.php:149
+msgid "Menu Order"
+msgstr ""
+
+#: classes/widget-pages.php:149 classes/widget-pages.php:150
+msgid "Modified"
+msgstr ""
+
+#: classes/widget-pages.php:149
+msgid "Title"
+msgstr ""
+
+#: classes/widget-pages.php:150
+msgid "Created"
+msgstr ""
+
+#: classes/widget-search.php:33
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"search form."
+msgstr ""
+
+#: classes/widget-search.php:45 classes/widget-search.php:131
+msgid "Search"
+msgstr ""
+
+#: classes/widget-search.php:147
+msgid "Search Label:"
+msgstr ""
+
+#: classes/widget-search.php:151
+msgid "Search Text:"
+msgstr ""
+
+#: classes/widget-search.php:158
+msgid "Search Submit:"
+msgstr ""
+
+#: classes/widget-search.php:163
+msgid "Use theme's <code>searchform.php</code>?"
+msgstr ""
+
+#: classes/widget-tags.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your tags."
+msgstr ""
+
+#: classes/widget-tags.php:44 classes/widget-tags.php:143
+msgid "Tags"
+msgstr ""
+
+#: classes/widget-tags.php:171
+msgid "View"
+msgstr ""
+
+#: classes/widget-tags.php:171 extensions/breadcrumb-trail.php:389
+#: extensions/breadcrumb-trail.php:422 extensions/breadcrumb-trail.php:437
+#: extensions/breadcrumb-trail.php:465 functions/shortcodes.php:204
+#: functions/shortcodes.php:443
+msgid "Edit"
+msgstr ""
+
+#: classes/widget-tags.php:172
+msgid "Flat"
+msgstr ""
+
+#: classes/widget-tags.php:288
+msgid "Pad counts?"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:44
+msgid "Browse:"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:47
+msgid "Home"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:301 functions/context.php:423
+msgid "g:i a"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:304
+#, php-format
+msgid "Minute %1$s"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:304 functions/context.php:426
+msgid "i"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:307 functions/context.php:429
+msgid "g a"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:318 extensions/breadcrumb-trail.php:324
+#: extensions/breadcrumb-trail.php:329 extensions/breadcrumb-trail.php:334
+#: extensions/breadcrumb-trail.php:521 functions/context.php:435
+#: functions/context.php:441 functions/core-seo.php:90
+#: functions/shortcodes.php:70
+msgid "Y"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:319 extensions/breadcrumb-trail.php:330
+#: extensions/breadcrumb-trail.php:525
+msgid "F"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:320 extensions/breadcrumb-trail.php:529
+msgid "d"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:325
+#, php-format
+msgid "Week %1$s"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:325 functions/context.php:435
+msgid "W"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:341 functions/context.php:452
+#, php-format
+msgid "Search results for &quot;%1$s&quot;"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:345 functions/context.php:456
+msgid "404 Not Found"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:414
+msgid "Split"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:418
+msgid "Merge"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:525 functions/core-seo.php:86
+msgid "F Y"
+msgstr ""
+
+#: extensions/breadcrumb-trail.php:529
+msgid "F j, Y"
+msgstr ""
+
+#: extensions/custom-field-series.php:86
+msgid "Articles in this series"
+msgstr ""
+
+#: extensions/custom-field-series.php:212
+msgid "Series"
+msgstr ""
+
+#: extensions/post-stylesheets.php:255
+msgid "Stylesheet"
+msgstr ""
+
+#: extensions/theme-layouts.php:295
+msgid "Default"
+msgstr ""
+
+#: extensions/theme-layouts.php:296
+msgid "One Column"
+msgstr ""
+
+#: extensions/theme-layouts.php:297
+msgid "Two Columns, Left"
+msgstr ""
+
+#: extensions/theme-layouts.php:298
+msgid "Two Columns, Right"
+msgstr ""
+
+#: extensions/theme-layouts.php:299
+msgid "Three Columns, Left"
+msgstr ""
+
+#: extensions/theme-layouts.php:300
+msgid "Three Columns, Right"
+msgstr ""
+
+#: extensions/theme-layouts.php:301
+msgid "Three Columns, Center"
+msgstr ""
+
+#: extensions/theme-layouts.php:377 extensions/theme-layouts.php:485
+msgid "Layout"
+msgstr ""
+
+#: extensions/theme-layouts.php:404
+msgid "Layout is a theme-specific structure for the single view of the post."
+msgstr ""
+
+#: functions/comments.php:182
+msgid "*"
+msgstr ""
+
+#: functions/comments.php:189
+msgid "Website"
+msgstr ""
+
+#: functions/comments.php:195
+msgid "Comment"
+msgstr ""
+
+#: functions/comments.php:196
+#, php-format
+msgid ""
+"You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a "
+"comment."
+msgstr ""
+
+#: functions/comments.php:197
+#, php-format
+msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
+msgstr ""
+
+#: functions/comments.php:197
+msgid "Log out of this account"
+msgstr ""
+
+#: functions/comments.php:197
+msgid "Log out &raquo;"
+msgstr ""
+
+#: functions/comments.php:202
+msgid "Leave a Reply"
+msgstr ""
+
+#: functions/comments.php:203
+#, php-format
+msgid "Leave a Reply to %s"
+msgstr ""
+
+#: functions/comments.php:204
+msgid "Click here to cancel reply."
+msgstr ""
+
+#: functions/comments.php:205
+msgid "Post Comment"
+msgstr ""
+
+#: functions/context.php:423 functions/context.php:429
+#: functions/context.php:432 functions/context.php:438
+#: functions/context.php:441
+#, php-format
+msgid "Archive for %1$s"
+msgstr ""
+
+#: functions/context.php:426
+#, php-format
+msgid "Archive for minute %1$s"
+msgstr ""
+
+#: functions/context.php:432
+msgid "F jS, Y"
+msgstr ""
+
+#: functions/context.php:435
+#, php-format
+msgid "Archive for week %1$s of %2$s"
+msgstr ""
+
+#: functions/context.php:460
+#, php-format
+msgid "%1$s Page %2$s"
+msgstr ""
+
+#: functions/core-seo.php:93
+#, php-format
+msgid "Copyright (c) %1$s"
+msgstr ""
+
+#: functions/core-seo.php:112 functions/shortcodes.php:218
+#: functions/shortcodes.php:373
+msgid "l, F jS, Y, g:i a"
+msgstr ""
+
+#: functions/customize.php:63 functions/customize.php:88
+msgid "Footer"
+msgstr ""
+
+#: functions/deprecated.php:572
+#, php-format
+msgid ""
+"<code>%1$s</code> &mdash; This function has been removed or replaced by "
+"another function."
+msgstr ""
+
+#: functions/menus.php:38
+msgctxt "nav menu location"
+msgid "Primary"
+msgstr ""
+
+#: functions/menus.php:42
+msgctxt "nav menu location"
+msgid "Secondary"
+msgstr ""
+
+#: functions/menus.php:46
+msgctxt "nav menu location"
+msgid "Subsidiary"
+msgstr ""
+
+#: functions/settings.php:76 functions/settings.php:80
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr ""
+
+#: functions/settings.php:76
+msgid "Powered by [wp-link], [theme-link], and [child-link]."
+msgstr ""
+
+#: functions/settings.php:80
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr ""
+
+#: functions/shortcodes.php:93
+msgid "State-of-the-art semantic personal publishing platform"
+msgstr ""
+
+#: functions/shortcodes.php:93
+msgid "WordPress"
+msgstr ""
+
+#: functions/shortcodes.php:106
+#, php-format
+msgid "%s WordPress Theme"
+msgstr ""
+
+#: functions/shortcodes.php:134
+msgid "Log out"
+msgstr ""
+
+#: functions/shortcodes.php:136
+msgid "Log in"
+msgstr ""
+
+#: functions/shortcodes.php:151
+#, php-format
+msgid "This page loaded in %1$s seconds with %2$s database queries."
+msgstr ""
+
+#: functions/shortcodes.php:204 functions/shortcodes.php:443
+#, php-format
+msgid "Edit %1$s"
+msgstr ""
+
+#: functions/shortcodes.php:234
+msgid "Leave a response"
+msgstr ""
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Response"
+msgstr ""
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Responses"
+msgstr ""
+
+#: functions/shortcodes.php:241 functions/shortcodes.php:243
+#: functions/shortcodes.php:245
+#, php-format
+msgid "Comment on %1$s"
+msgstr ""
+
+#: functions/shortcodes.php:305
+msgid "(Untitled)"
+msgstr ""
+
+#: functions/shortcodes.php:321
+msgid "Shortlink"
+msgstr ""
+
+#: functions/shortcodes.php:345 functions/shortcodes.php:422
+msgid "Permalink"
+msgstr ""
+
+#: functions/shortcodes.php:373
+#, php-format
+msgid "%1$s at %2$s"
+msgstr ""
+
+#: functions/shortcodes.php:422
+#, php-format
+msgid "Permalink to comment %1$s"
+msgstr ""
+
+#: functions/shortcodes.php:462
+msgid "Reply"
+msgstr ""
+
+#: functions/shortcodes.php:463
+msgid "Log in to reply."
+msgstr ""
+
+#: functions/sidebars.php:87
+msgctxt "sidebar"
+msgid "Primary"
+msgstr ""
+
+#: functions/sidebars.php:88
+msgid "The main (primary) widget area, most often used as a sidebar."
+msgstr ""
+
+#: functions/sidebars.php:91
+msgctxt "sidebar"
+msgid "Secondary"
+msgstr ""
+
+#: functions/sidebars.php:92
+msgid ""
+"The second most important widget area, most often used as a secondary "
+"sidebar."
+msgstr ""
+
+#: functions/sidebars.php:95
+msgctxt "sidebar"
+msgid "Subsidiary"
+msgstr ""
+
+#: functions/sidebars.php:96
+msgid "A widget area loaded in the footer of the site."
+msgstr ""
+
+#: functions/sidebars.php:99
+msgctxt "sidebar"
+msgid "Header"
+msgstr ""
+
+#: functions/sidebars.php:100
+msgid "Displayed within the site's header area."
+msgstr ""
+
+#: functions/sidebars.php:103
+msgctxt "sidebar"
+msgid "Before Content"
+msgstr ""
+
+#: functions/sidebars.php:104
+msgid "Loaded before the page's main content area."
+msgstr ""
+
+#: functions/sidebars.php:107
+msgctxt "sidebar"
+msgid "After Content"
+msgstr ""
+
+#: functions/sidebars.php:108
+msgid "Loaded after the page's main content area."
+msgstr ""
+
+#: functions/sidebars.php:111
+msgctxt "sidebar"
+msgid "After Singular"
+msgstr ""
+
+#: functions/sidebars.php:112
+msgid ""
+"Loaded on singular post (page, attachment, etc.) views before the comments "
+"area."
+msgstr ""
+
+#~ msgid "Title used for search engines and the browser title bar."
+#~ msgstr "Otsikko hakukoneille ja selaimen otsikolle."
+
+#~ msgid "Keywords"
+#~ msgstr "Avainsanat"
+
+#~ msgid "Meta keywords to represent the content of the single post."
+#~ msgstr "Meta avainsanat yksittäiselle artikkelille."
+
+#~ msgid "Meta description that describes the post."
+#~ msgstr "Metakuvaus, joka lyhyesti kertoo artikkelista."
+
+#~ msgid "Show last update?"
+#~ msgstr "Näytä viimeisin päivitys?"
+
+#~ msgid "Automatically add paragraphs"
+#~ msgstr "Lisää kappaleet automaattisesti"
+
+#~ msgid ""
+#~ "An advanced widget that gives you total control over the output of your "
+#~ "users."
+#~ msgstr "Vimpain, jolla hallitaan käyttäjiä."
+
+#~ msgid "Users"
+#~ msgstr "Käyttäjät"
+
+#~ msgid "Log into this account"
+#~ msgstr "Kirjaudu tähän tiliin"
diff --git a/wp-content/themes/path/languages/hybrid-core-fi.mo b/wp-content/themes/path/languages/hybrid-core-fi.mo
new file mode 100644
index 0000000000000000000000000000000000000000..707cbea6d9dc9605884d8a862ae5580612652a4e
Binary files /dev/null and b/wp-content/themes/path/languages/hybrid-core-fi.mo differ
diff --git a/wp-content/themes/path/languages/hybrid-core-fi.po b/wp-content/themes/path/languages/hybrid-core-fi.po
new file mode 100644
index 0000000000000000000000000000000000000000..c76246a2cbedbd5ac1479b08d0bfd56e1243dba4
--- /dev/null
+++ b/wp-content/themes/path/languages/hybrid-core-fi.po
@@ -0,0 +1,950 @@
+# Translation of Trunk in Finnish
+# This file is distributed under the same license as the Trunk package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Hybrid Core in Finnish\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-08-29 22:27+0200\n"
+"PO-Revision-Date: 2012-08-29 22:27+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Foxnet <sami.keijonen@foxnet.fi>\n"
+"Language: fi_FI\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: GlotPress/0.1\n"
+"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_html__;esc_html_e;_n;"
+"_x;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: admin/meta-box-post-seo.php:37
+msgid "SEO"
+msgstr "Hakukoneoptimointi (SEO)"
+
+#: admin/meta-box-post-seo.php:70
+msgid "Document Title:"
+msgstr "Dokumentin otsikko:"
+
+#: admin/meta-box-post-seo.php:76
+msgid "Meta Description:"
+msgstr "Meta kuvaus:"
+
+#: admin/meta-box-post-seo.php:82
+msgid "Meta Keywords:"
+msgstr "Meta avainsanat:"
+
+#: admin/meta-box-post-template.php:36
+msgid "Template"
+msgstr "Sivupohja"
+
+#: admin/meta-box-post-template.php:87
+msgid "No templates exist for this post type."
+msgstr "Tälle artikkelityypille ei löytynyt sivupohjaa."
+
+#: admin/meta-box-theme-about.php:31 admin/meta-box-theme-about.php:36
+#, php-format
+msgid "About %s"
+msgstr "Tiedot %s"
+
+#: admin/meta-box-theme-about.php:61
+msgid "Theme:"
+msgstr "Teema:"
+
+#: admin/meta-box-theme-about.php:69
+msgid "Version:"
+msgstr "Versio:"
+
+#: admin/meta-box-theme-about.php:77
+msgid "Author:"
+msgstr "Tekijä:"
+
+#: admin/meta-box-theme-about.php:85
+msgid "Description:"
+msgstr "Kuvaus:"
+
+#: admin/meta-box-theme-footer.php:29
+msgid "Footer settings"
+msgstr "Alapalkin asetukset"
+
+#: admin/meta-box-theme-footer.php:52
+msgid ""
+"You can add custom <acronym title=\"Hypertext Markup Language\">HTML</"
+"acronym> and/or shortcodes, which will be automatically inserted into your "
+"theme."
+msgstr ""
+"Voit lisätä omaa <acronym title=\"Hypertext Markup Language\">HTML-koodia</"
+"acronym> ja/tai lyhytkoodeja, jotka lisätään automaattisesti teemaan."
+
+#: admin/theme-settings.php:47 admin/theme-settings.php:171
+#, php-format
+msgid "%s Theme Settings"
+msgstr "%s Teeman asetukset"
+
+#: admin/theme-settings.php:48
+msgid "Theme Settings"
+msgstr "Teeman asetukset"
+
+#: admin/theme-settings.php:172
+msgid "Customize"
+msgstr "Muokkaa"
+
+#: admin/theme-settings.php:198
+msgid "Update Settings"
+msgstr "Päivitä asetukset"
+
+#: admin/theme-settings.php:255
+msgid "Documentation"
+msgstr "Dokumentaatio"
+
+#: admin/theme-settings.php:259
+msgid "Support"
+msgstr "Tuki"
+
+#: classes/widget-archives.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"archives."
+msgstr "Vimpain, jolla hallitaan arkistoja."
+
+#: classes/widget-archives.php:44 classes/widget-archives.php:141
+#: functions/context.php:446
+msgid "Archives"
+msgstr "Arkistot"
+
+#: classes/widget-archives.php:79
+msgid "Select Year"
+msgstr "Valitse vuosi"
+
+#: classes/widget-archives.php:82
+msgid "Select Month"
+msgstr "Valitse kuukausi"
+
+#: classes/widget-archives.php:85
+msgid "Select Week"
+msgstr "Valitse viikko"
+
+#: classes/widget-archives.php:88
+msgid "Select Day"
+msgstr "Valitse päivä"
+
+#: classes/widget-archives.php:91
+msgid "Select Post"
+msgstr "Valitse artikkeli"
+
+#: classes/widget-archives.php:154
+msgid "Alphabetical"
+msgstr "Aakkosellinen"
+
+#: classes/widget-archives.php:154
+msgid "Daily"
+msgstr "Päivittäiset"
+
+#: classes/widget-archives.php:154
+msgid "Monthly"
+msgstr "Kuukausittainen"
+
+#: classes/widget-archives.php:154
+msgid "Post By Post"
+msgstr "Artikkeli artikkelilta"
+
+#: classes/widget-archives.php:154
+msgid "Weekly"
+msgstr "Viikottainen"
+
+#: classes/widget-archives.php:154
+msgid "Yearly"
+msgstr "Vuosittainen"
+
+#: classes/widget-archives.php:157
+msgid "Custom"
+msgstr "Kustomoitu"
+
+#: classes/widget-archives.php:157
+msgid "HTML"
+msgstr "HTML"
+
+#: classes/widget-archives.php:157
+msgid "Option"
+msgstr "Valinta"
+
+#: classes/widget-archives.php:162 classes/widget-authors.php:143
+#: classes/widget-bookmarks.php:187 classes/widget-calendar.php:108
+#: classes/widget-categories.php:170 classes/widget-nav-menu.php:133
+#: classes/widget-pages.php:157 classes/widget-search.php:143
+#: classes/widget-tags.php:181
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: classes/widget-archives.php:198 classes/widget-authors.php:191
+msgid "Show post count?"
+msgstr "Näytä artikkeleiden lukumäärä?"
+
+#: classes/widget-authors.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"author lists."
+msgstr "Vimpain, jolla hallitaan käyttäjälistaa."
+
+#: classes/widget-authors.php:44 classes/widget-authors.php:119
+msgid "Authors"
+msgstr "Tekijät"
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Ascending"
+msgstr "Nouseva"
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Descending"
+msgstr "Laskeva"
+
+#: classes/widget-authors.php:137
+msgid "Display Name"
+msgstr "Näytettävä nimi"
+
+#: classes/widget-authors.php:137 functions/comments.php:188
+msgid "Email"
+msgstr "Email"
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:179
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "ID"
+msgstr "ID"
+
+#: classes/widget-authors.php:137
+msgid "Nice Name"
+msgstr "Kutsumanimi"
+
+#: classes/widget-authors.php:137
+msgid "Post Count"
+msgstr "Artikkeleiden lukumäärä"
+
+#: classes/widget-authors.php:137
+msgid "Registered"
+msgstr "Rekisteröitynyt"
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:181
+msgid "URL"
+msgstr "URL"
+
+#: classes/widget-authors.php:137
+msgid "Login"
+msgstr "Kirjaudu sisään"
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+#: classes/widget-tags.php:172
+msgid "List"
+msgstr "Lista"
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+msgid "None"
+msgstr "Ei yhtään"
+
+#: classes/widget-authors.php:187
+msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym>?"
+msgstr "<acronym title=\"Hypertext Markup Language\">HTML</acronym>?"
+
+#: classes/widget-authors.php:195
+msgid "Exclude admin?"
+msgstr "Poislukien admin?"
+
+#: classes/widget-authors.php:199
+msgid "Show full name?"
+msgstr "Näytä koko nimi?"
+
+#: classes/widget-authors.php:203 classes/widget-categories.php:273
+#: classes/widget-tags.php:292
+msgid "Hide empty?"
+msgstr "Piilota tyhjät?"
+
+#: classes/widget-bookmarks.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"bookmarks (links)."
+msgstr "Vimpain, jolla hallitaan linkkejä."
+
+#: classes/widget-bookmarks.php:44 classes/widget-bookmarks.php:85
+#: classes/widget-bookmarks.php:148
+msgid "Bookmarks"
+msgstr "Linkit"
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-tags.php:174
+msgid "Count"
+msgstr "Lukumäärä"
+
+#: classes/widget-bookmarks.php:179 classes/widget-bookmarks.php:181
+#: classes/widget-categories.php:163 classes/widget-tags.php:174
+#: functions/comments.php:187
+msgid "Name"
+msgstr "Nimi"
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "Slug"
+msgstr "Polkutunnus"
+
+#: classes/widget-bookmarks.php:181
+msgid "Description"
+msgstr "Kuvaus"
+
+#: classes/widget-bookmarks.php:181
+msgid "Length"
+msgstr "Pituus"
+
+#: classes/widget-bookmarks.php:181
+msgid "Notes"
+msgstr "Muistiinpanot"
+
+#: classes/widget-bookmarks.php:181
+msgid "Owner"
+msgstr "Omistaja"
+
+#: classes/widget-bookmarks.php:181 classes/widget-tags.php:173
+msgid "Random"
+msgstr "Satunnainen"
+
+#: classes/widget-bookmarks.php:181
+msgid "Rating"
+msgstr "Arvostelu"
+
+#: classes/widget-bookmarks.php:181
+msgid "Rel"
+msgstr "Rel"
+
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:164
+msgid "RSS"
+msgstr "RSS"
+
+#: classes/widget-bookmarks.php:181
+msgid "Target"
+msgstr "Kohde"
+
+#: classes/widget-bookmarks.php:181
+msgid "Updated"
+msgstr "Päivitetty"
+
+#: classes/widget-bookmarks.php:289
+msgid "Categorize?"
+msgstr "Kategorisoi?"
+
+#: classes/widget-bookmarks.php:293
+msgid "Show description?"
+msgstr "Näytä kuvaus?"
+
+#: classes/widget-bookmarks.php:297
+msgid "Hide invisible?"
+msgstr "Piilota näkymätön?"
+
+#: classes/widget-bookmarks.php:301
+msgid "Show rating?"
+msgstr "Näytä luokitus?"
+
+#: classes/widget-bookmarks.php:305
+msgid "Show updated?"
+msgstr "Näytä päivitys?"
+
+#: classes/widget-bookmarks.php:309
+msgid "Show images?"
+msgstr "Näytä kuvat?"
+
+#: classes/widget-bookmarks.php:313
+msgid "Show name?"
+msgstr "Näytä nimi?"
+
+#: classes/widget-bookmarks.php:317
+msgid "Show private?"
+msgstr "Näytä yksityiset?"
+
+#: classes/widget-calendar.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"calendar."
+msgstr "Vimpain, jolla hallitaan kalenteria."
+
+#: classes/widget-calendar.php:44 classes/widget-calendar.php:99
+msgid "Calendar"
+msgstr "Kalenteri"
+
+#: classes/widget-calendar.php:113
+msgid "One-letter abbreviation?"
+msgstr "Yksikirjaiminen lyhenne?"
+
+#: classes/widget-categories.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"category links."
+msgstr "Vimpain, jolla hallitaan kategorialinkkejä."
+
+#: classes/widget-categories.php:44 classes/widget-categories.php:133
+msgid "Categories"
+msgstr "Kategoriat"
+
+#: classes/widget-categories.php:163
+msgid "Term Group"
+msgstr "Termien ryhmä"
+
+#: classes/widget-categories.php:164
+msgid "Atom"
+msgstr "Atom"
+
+#: classes/widget-categories.php:164
+msgid "RDF"
+msgstr "RDF"
+
+#: classes/widget-categories.php:164
+msgid "RSS 2.0"
+msgstr "RSS 2.0"
+
+#: classes/widget-categories.php:261 classes/widget-pages.php:256
+msgid "Hierarchical?"
+msgstr "Hierarkinen?"
+
+#: classes/widget-categories.php:265
+msgid "Use description?"
+msgstr "Käytä kuvausta?"
+
+#: classes/widget-categories.php:269
+msgid "Show count?"
+msgstr "Näytä lukumäärä?"
+
+#: classes/widget-nav-menu.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"menus."
+msgstr "Vimpain, jolla hallitaan menuvalikkoja."
+
+#: classes/widget-nav-menu.php:44
+msgid "Navigation Menu"
+msgstr "Navigaatiomenu"
+
+#: classes/widget-nav-menu.php:109
+msgid "Navigation"
+msgstr "Navigaatio"
+
+#: classes/widget-pages.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your page "
+"links."
+msgstr "Vimpain, jolla hallitaan sivujen linkkejä."
+
+#: classes/widget-pages.php:44 classes/widget-pages.php:123
+msgid "Pages"
+msgstr "Sivut"
+
+#: classes/widget-pages.php:149
+msgid "Author"
+msgstr "Tekijä"
+
+#: classes/widget-pages.php:149
+msgid "Date"
+msgstr "Päivä"
+
+#: classes/widget-pages.php:149
+msgid "Menu Order"
+msgstr "Menun järjestys"
+
+#: classes/widget-pages.php:149 classes/widget-pages.php:150
+msgid "Modified"
+msgstr "Muokattu"
+
+#: classes/widget-pages.php:149
+msgid "Title"
+msgstr "Otsikko"
+
+#: classes/widget-pages.php:150
+msgid "Created"
+msgstr "Luotu"
+
+#: classes/widget-search.php:33
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"search form."
+msgstr "Vimpain, jolla hallitaan hakulomaketta."
+
+#: classes/widget-search.php:45 classes/widget-search.php:131
+msgid "Search"
+msgstr "Etsi"
+
+#: classes/widget-search.php:147
+msgid "Search Label:"
+msgstr "Etsi nimike:"
+
+#: classes/widget-search.php:151
+msgid "Search Text:"
+msgstr "Etsi teksti:"
+
+#: classes/widget-search.php:158
+msgid "Search Submit:"
+msgstr "Etsi lähetä:"
+
+#: classes/widget-search.php:163
+msgid "Use theme's <code>searchform.php</code>?"
+msgstr "Käytä teeman <code>searchform.php</code> tiedostoa?"
+
+#: classes/widget-tags.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your tags."
+msgstr "Vimpain, jolla hallitaan avainsanoja."
+
+#: classes/widget-tags.php:44 classes/widget-tags.php:143
+msgid "Tags"
+msgstr "Avainsanat"
+
+#: classes/widget-tags.php:171
+msgid "View"
+msgstr "Näkymä"
+
+#: classes/widget-tags.php:171 extensions/breadcrumb-trail.php:389
+#: extensions/breadcrumb-trail.php:422 extensions/breadcrumb-trail.php:437
+#: extensions/breadcrumb-trail.php:465 functions/shortcodes.php:204
+#: functions/shortcodes.php:443
+msgid "Edit"
+msgstr "Editoi"
+
+#: classes/widget-tags.php:172
+msgid "Flat"
+msgstr "Tyhjä"
+
+#: classes/widget-tags.php:288
+msgid "Pad counts?"
+msgstr "Pad lukumäärä?"
+
+#: extensions/breadcrumb-trail.php:44
+msgid "Browse:"
+msgstr "Navigointi:"
+
+#: extensions/breadcrumb-trail.php:47
+msgid "Home"
+msgstr "Etusivu"
+
+#: extensions/breadcrumb-trail.php:301 functions/context.php:423
+msgid "g:i a"
+msgstr "G:i"
+
+#: extensions/breadcrumb-trail.php:304
+#, php-format
+msgid "Minute %1$s"
+msgstr "Minuutti %1$s"
+
+#: extensions/breadcrumb-trail.php:304 functions/context.php:426
+msgid "i"
+msgstr "i"
+
+#: extensions/breadcrumb-trail.php:307 functions/context.php:429
+msgid "g a"
+msgstr "g a"
+
+#: extensions/breadcrumb-trail.php:318 extensions/breadcrumb-trail.php:324
+#: extensions/breadcrumb-trail.php:329 extensions/breadcrumb-trail.php:334
+#: extensions/breadcrumb-trail.php:521 functions/context.php:435
+#: functions/context.php:441 functions/core-seo.php:90
+#: functions/shortcodes.php:70
+msgid "Y"
+msgstr "Y"
+
+#: extensions/breadcrumb-trail.php:319 extensions/breadcrumb-trail.php:330
+#: extensions/breadcrumb-trail.php:525
+msgid "F"
+msgstr "F"
+
+#: extensions/breadcrumb-trail.php:320 extensions/breadcrumb-trail.php:529
+msgid "d"
+msgstr "d"
+
+#: extensions/breadcrumb-trail.php:325
+#, php-format
+msgid "Week %1$s"
+msgstr "Viikko %1$s"
+
+#: extensions/breadcrumb-trail.php:325 functions/context.php:435
+msgid "W"
+msgstr "W"
+
+#: extensions/breadcrumb-trail.php:341 functions/context.php:452
+#, php-format
+msgid "Search results for &quot;%1$s&quot;"
+msgstr "Hakutulokset haulle: &quot;%1$s&quot;"
+
+#: extensions/breadcrumb-trail.php:345 functions/context.php:456
+msgid "404 Not Found"
+msgstr "404 Sivua ei löytynyt"
+
+#: extensions/breadcrumb-trail.php:414
+msgid "Split"
+msgstr "Jaa"
+
+#: extensions/breadcrumb-trail.php:418
+msgid "Merge"
+msgstr "Yhdistä"
+
+#: extensions/breadcrumb-trail.php:525 functions/core-seo.php:86
+msgid "F Y"
+msgstr "F Y"
+
+#: extensions/breadcrumb-trail.php:529
+msgid "F j, Y"
+msgstr "j.m.Y"
+
+#: extensions/custom-field-series.php:86
+msgid "Articles in this series"
+msgstr "Samaan aihepiiriin liittyvät artikkelit"
+
+#: extensions/custom-field-series.php:212
+msgid "Series"
+msgstr "Tähän liittyvät artikkelit"
+
+#: extensions/post-stylesheets.php:255
+msgid "Stylesheet"
+msgstr "Tyylitiedosto"
+
+#: extensions/theme-layouts.php:295
+msgid "Default"
+msgstr "Oletus"
+
+#: extensions/theme-layouts.php:296
+msgid "One Column"
+msgstr "Yksi sarake"
+
+#: extensions/theme-layouts.php:297
+msgid "Two Columns, Left"
+msgstr "Kaksi saraketta, sisältö vasemmalla"
+
+#: extensions/theme-layouts.php:298
+msgid "Two Columns, Right"
+msgstr "Kaksi saraketta, sisältö oikealla"
+
+#: extensions/theme-layouts.php:299
+msgid "Three Columns, Left"
+msgstr "Kolme saraketta, sisältö vasemmalla"
+
+#: extensions/theme-layouts.php:300
+msgid "Three Columns, Right"
+msgstr "Kolme  saraketta, sisältö oikealla"
+
+#: extensions/theme-layouts.php:301
+msgid "Three Columns, Center"
+msgstr "Kolme saraketta, sisältö keskellä"
+
+#: extensions/theme-layouts.php:377 extensions/theme-layouts.php:485
+msgid "Layout"
+msgstr "Ulkoasu"
+
+#: extensions/theme-layouts.php:404
+msgid "Layout is a theme-specific structure for the single view of the post."
+msgstr "Tällä voi vaihtaa yksittäisen sivun tai artikkelin ulkoasua."
+
+#: functions/comments.php:182
+msgid "*"
+msgstr "*"
+
+#: functions/comments.php:189
+msgid "Website"
+msgstr "Kotisivu"
+
+#: functions/comments.php:195
+msgid "Comment"
+msgstr "Kommentti"
+
+#: functions/comments.php:196
+#, php-format
+msgid ""
+"You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a "
+"comment."
+msgstr ""
+"Sinun pitää olla <a href=\"%1$s\" title=\"Log in\">kirjautuneena</a> "
+"kirjoittaaksesi kommentin."
+
+#: functions/comments.php:197
+#, php-format
+msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
+msgstr "Kirjautuneena nimellä <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
+
+#: functions/comments.php:197
+msgid "Log out of this account"
+msgstr "Kirjaudu ulos tästä tilistä"
+
+#: functions/comments.php:197
+msgid "Log out &raquo;"
+msgstr "Kirjaudu ulos &raquo;"
+
+#: functions/comments.php:202
+msgid "Leave a Reply"
+msgstr "Jätä kommentti"
+
+#: functions/comments.php:203
+#, php-format
+msgid "Leave a Reply to %s"
+msgstr "Jätä kommentti %s"
+
+#: functions/comments.php:204
+msgid "Click here to cancel reply."
+msgstr "Klikkaa tästä peruuttaaksesi vastauksen."
+
+#: functions/comments.php:205
+msgid "Post Comment"
+msgstr "Lähetä  kommentti"
+
+#: functions/context.php:423 functions/context.php:429
+#: functions/context.php:432 functions/context.php:438
+#: functions/context.php:441
+#, php-format
+msgid "Archive for %1$s"
+msgstr "Arkisto: %1$s"
+
+#: functions/context.php:426
+#, php-format
+msgid "Archive for minute %1$s"
+msgstr "Minuuttiarkisto %1$s"
+
+#: functions/context.php:432
+msgid "F jS, Y"
+msgstr "F jS, Y"
+
+#: functions/context.php:435
+#, php-format
+msgid "Archive for week %1$s of %2$s"
+msgstr "Viikkoarkisto %1$s of %2$s"
+
+#: functions/context.php:460
+#, php-format
+msgid "%1$s Page %2$s"
+msgstr "%1$s Sivu %2$s"
+
+#: functions/core-seo.php:93
+#, php-format
+msgid "Copyright (c) %1$s"
+msgstr "Copyright (c) %1$s"
+
+#: functions/core-seo.php:112 functions/shortcodes.php:218
+#: functions/shortcodes.php:373
+msgid "l, F jS, Y, g:i a"
+msgstr "l j.m.Y, G:i"
+
+#: functions/customize.php:63 functions/customize.php:88
+msgid "Footer"
+msgstr "Alapalkki"
+
+#: functions/deprecated.php:572
+#, php-format
+msgid ""
+"<code>%1$s</code> &mdash; This function has been removed or replaced by "
+"another function."
+msgstr ""
+"<code>%1$s</code> &mdash; Tämä funktio on poistettu tai korvattu toisella "
+"funktiolla."
+
+#: functions/menus.php:38
+msgctxt "nav menu location"
+msgid "Primary"
+msgstr "Päämenu"
+
+#: functions/menus.php:42
+msgctxt "nav menu location"
+msgid "Secondary"
+msgstr "Toinen menu"
+
+#: functions/menus.php:46
+msgctxt "nav menu location"
+msgid "Subsidiary"
+msgstr "Kolmas menu"
+
+#: functions/settings.php:76 functions/settings.php:80
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr "Copyright &#169; [the-year] [site-link]."
+
+#: functions/settings.php:76
+msgid "Powered by [wp-link], [theme-link], and [child-link]."
+msgstr "Alustana [wp-link], [theme-link] ja [child-link]."
+
+#: functions/settings.php:80
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr "Alustana [wp-link] ja [theme-link]."
+
+#: functions/shortcodes.php:93
+msgid "State-of-the-art semantic personal publishing platform"
+msgstr "Henkilökohtainen julkaisujärjestelmä"
+
+#: functions/shortcodes.php:93
+msgid "WordPress"
+msgstr "WordPress"
+
+#: functions/shortcodes.php:106
+#, php-format
+msgid "%s WordPress Theme"
+msgstr "%s WordPress teema"
+
+#: functions/shortcodes.php:134
+msgid "Log out"
+msgstr "Kirjaudu ulos"
+
+#: functions/shortcodes.php:136
+msgid "Log in"
+msgstr "Kirjaudu sisään"
+
+#: functions/shortcodes.php:151
+#, php-format
+msgid "This page loaded in %1$s seconds with %2$s database queries."
+msgstr ""
+"Sivu ladattiin %1$s sekunnissa, aikaa meni %2$s tietokannan kyselyihin."
+
+#: functions/shortcodes.php:204 functions/shortcodes.php:443
+#, php-format
+msgid "Edit %1$s"
+msgstr "Editoi %1$s"
+
+#: functions/shortcodes.php:234
+msgid "Leave a response"
+msgstr "Jätä kommentti"
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Response"
+msgstr "%1$s Kommentti"
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Responses"
+msgstr "%1$s Kommenttia"
+
+#: functions/shortcodes.php:241 functions/shortcodes.php:243
+#: functions/shortcodes.php:245
+#, php-format
+msgid "Comment on %1$s"
+msgstr "Kommentti %1$s"
+
+#: functions/shortcodes.php:305
+msgid "(Untitled)"
+msgstr "(Ei otsikkoa)"
+
+#: functions/shortcodes.php:321
+msgid "Shortlink"
+msgstr "Pikalinkki"
+
+#: functions/shortcodes.php:345 functions/shortcodes.php:422
+msgid "Permalink"
+msgstr "Pikalinkki"
+
+#: functions/shortcodes.php:373
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s / %2$s"
+
+#: functions/shortcodes.php:422
+#, php-format
+msgid "Permalink to comment %1$s"
+msgstr "Pikalinkki kommenttiin %1$s"
+
+#: functions/shortcodes.php:462
+msgid "Reply"
+msgstr "Vastaa"
+
+#: functions/shortcodes.php:463
+msgid "Log in to reply."
+msgstr "Kirjaudu sisään vastataksesi."
+
+#: functions/sidebars.php:87
+msgctxt "sidebar"
+msgid "Primary"
+msgstr "Päävimpain"
+
+#: functions/sidebars.php:88
+msgid "The main (primary) widget area, most often used as a sidebar."
+msgstr "Päävimpainalue, yleisesti käytetty sivupalkissa."
+
+#: functions/sidebars.php:91
+msgctxt "sidebar"
+msgid "Secondary"
+msgstr "Toinen vimpain"
+
+#: functions/sidebars.php:92
+msgid ""
+"The second most important widget area, most often used as a secondary "
+"sidebar."
+msgstr "Toiseksi tärkein vimpainalue, yleisesti käytetty sivupalkissa."
+
+#: functions/sidebars.php:95
+msgctxt "sidebar"
+msgid "Subsidiary"
+msgstr "Kolmas vimpain"
+
+#: functions/sidebars.php:96
+msgid "A widget area loaded in the footer of the site."
+msgstr "Vimpainalue, joka ladataan sivun alaplakkiin."
+
+#: functions/sidebars.php:99
+msgctxt "sidebar"
+msgid "Header"
+msgstr "Yläpalkin vimpain"
+
+#: functions/sidebars.php:100
+msgid "Displayed within the site's header area."
+msgstr "Näytetään sivun otsakkeessa."
+
+#: functions/sidebars.php:103
+msgctxt "sidebar"
+msgid "Before Content"
+msgstr "Ennen sisältöä"
+
+#: functions/sidebars.php:104
+msgid "Loaded before the page's main content area."
+msgstr "Ladataan ennen sivun sisältöä."
+
+#: functions/sidebars.php:107
+msgctxt "sidebar"
+msgid "After Content"
+msgstr "Sisällön jälkeen"
+
+#: functions/sidebars.php:108
+msgid "Loaded after the page's main content area."
+msgstr "Ladataan sivun sisällön jälkeen."
+
+#: functions/sidebars.php:111
+msgctxt "sidebar"
+msgid "After Singular"
+msgstr "Yksittäisen artikkelin jälkeen"
+
+#: functions/sidebars.php:112
+msgid ""
+"Loaded on singular post (page, attachment, etc.) views before the comments "
+"area."
+msgstr ""
+"Ladataan yksittäisen sivun (artikkelin, kuvasivun jne.) jälkeen ennen "
+"kommenttialuetta."
+
+#~ msgid "Submit"
+#~ msgstr "Lähetä"
+
+#~ msgid "Title used for search engines and the browser title bar."
+#~ msgstr "Otsikko hakukoneille ja selaimen otsikolle."
+
+#~ msgid "Keywords"
+#~ msgstr "Avainsanat"
+
+#~ msgid "Meta keywords to represent the content of the single post."
+#~ msgstr "Meta avainsanat yksittäiselle artikkelille."
+
+#~ msgid "Meta description that describes the post."
+#~ msgstr "Metakuvaus, joka lyhyesti kertoo artikkelista."
+
+#~ msgid "Show last update?"
+#~ msgstr "Näytä viimeisin päivitys?"
+
+#~ msgid "Automatically add paragraphs"
+#~ msgstr "Lisää kappaleet automaattisesti"
+
+#~ msgid ""
+#~ "An advanced widget that gives you total control over the output of your "
+#~ "users."
+#~ msgstr "Vimpain, jolla hallitaan käyttäjiä."
+
+#~ msgid "Users"
+#~ msgstr "Käyttäjät"
+
+#~ msgid "Log into this account"
+#~ msgstr "Kirjaudu tähän tiliin"
diff --git a/wp-content/themes/path/languages/hybrid-core-pl_PL.mo b/wp-content/themes/path/languages/hybrid-core-pl_PL.mo
new file mode 100644
index 0000000000000000000000000000000000000000..f66183ec0f2db208199573b32efed21c0c7f8e90
Binary files /dev/null and b/wp-content/themes/path/languages/hybrid-core-pl_PL.mo differ
diff --git a/wp-content/themes/path/languages/hybrid-core-pl_PL.po b/wp-content/themes/path/languages/hybrid-core-pl_PL.po
new file mode 100644
index 0000000000000000000000000000000000000000..d36ba7d9cf3ef3280a7facbffd85c89e5499c84e
--- /dev/null
+++ b/wp-content/themes/path/languages/hybrid-core-pl_PL.po
@@ -0,0 +1,964 @@
+# Translation of Trunk in Finnish
+# This file is distributed under the same license as the Trunk package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Hybrid Core in english\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-08-29 22:27+0200\n"
+"PO-Revision-Date: 2012-08-29 22:27+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Foxnet <sami.keijonen@foxnet.fi>\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: GlotPress/0.1\n"
+"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_html__;esc_html_e;_n;"
+"_x;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: admin/meta-box-post-seo.php:37
+msgid "SEO"
+msgstr "SEO"
+
+#: admin/meta-box-post-seo.php:70
+msgid "Document Title:"
+msgstr "Nazwa dokumentu:"
+
+#: admin/meta-box-post-seo.php:76
+msgid "Meta Description:"
+msgstr "Meta Description:"
+
+#: admin/meta-box-post-seo.php:82
+msgid "Meta Keywords:"
+msgstr "Meta Keywords:"
+
+#: admin/meta-box-post-template.php:36
+msgid "Template"
+msgstr "Szablon"
+
+#: admin/meta-box-post-template.php:87
+msgid "No templates exist for this post type."
+msgstr "Brak szablonów dla tego typu wpisu."
+
+#: admin/meta-box-theme-about.php:31 admin/meta-box-theme-about.php:36
+#, php-format
+msgid "About %s"
+msgstr "O %s"
+
+#: admin/meta-box-theme-about.php:61
+msgid "Theme:"
+msgstr "Motyw:"
+
+#: admin/meta-box-theme-about.php:69
+msgid "Version:"
+msgstr "Wersja:"
+
+#: admin/meta-box-theme-about.php:77
+msgid "Author:"
+msgstr "Autor:"
+
+#: admin/meta-box-theme-about.php:85
+msgid "Description:"
+msgstr "Opis:"
+
+#: admin/meta-box-theme-footer.php:29
+msgid "Footer settings"
+msgstr "Ustawienia stopki"
+
+#: admin/meta-box-theme-footer.php:52
+msgid ""
+"You can add custom <acronym title=\"Hypertext Markup Language\">HTML</"
+"acronym> and/or shortcodes, which will be automatically inserted into your "
+"theme."
+msgstr ""
+"Możesz dodać własny kod <acronym title=\"Hypertext Markup Language\">HTML</"
+"acronym> i/lub shortcodes, które zostaną automatycznie dopisane do szablonu."
+
+#: admin/theme-settings.php:47 admin/theme-settings.php:171
+#, php-format
+msgid "%s Theme Settings"
+msgstr "%s ustawienia motywu"
+
+#: admin/theme-settings.php:48
+msgid "Theme Settings"
+msgstr "Ustawienia motywu"
+
+#: admin/theme-settings.php:172
+msgid "Customize"
+msgstr "Dostosuj"
+
+#: admin/theme-settings.php:198
+msgid "Update Settings"
+msgstr "Zapisz ustawienia"
+
+#: admin/theme-settings.php:255
+msgid "Documentation"
+msgstr "Dokumentacja"
+
+#: admin/theme-settings.php:259
+msgid "Support"
+msgstr "Wsparcie"
+
+#: classes/widget-archives.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"archives."
+msgstr ""
+"Zaawansowane archiwum wpisów z Twojej witryny pozwalające na całkowitą "
+"kontrolę nad wyświetlaniem."
+
+#: classes/widget-archives.php:44 classes/widget-archives.php:141
+#: functions/context.php:446
+msgid "Archives"
+msgstr "Archiwa"
+
+#: classes/widget-archives.php:79
+msgid "Select Year"
+msgstr "Wybierz rok"
+
+#: classes/widget-archives.php:82
+msgid "Select Month"
+msgstr "Wybierz miesiąc"
+
+#: classes/widget-archives.php:85
+msgid "Select Week"
+msgstr "Wybierz tydzień"
+
+#: classes/widget-archives.php:88
+msgid "Select Day"
+msgstr "Wybierz dzień"
+
+#: classes/widget-archives.php:91
+msgid "Select Post"
+msgstr "Wybierz wpis"
+
+#: classes/widget-archives.php:154
+msgid "Alphabetical"
+msgstr "Alfabetycznie"
+
+#: classes/widget-archives.php:154
+msgid "Daily"
+msgstr "Wg dni"
+
+#: classes/widget-archives.php:154
+msgid "Monthly"
+msgstr "Wg miesięcy"
+
+#: classes/widget-archives.php:154
+msgid "Post By Post"
+msgstr "Wpis za wpisem"
+
+#: classes/widget-archives.php:154
+msgid "Weekly"
+msgstr "Wg tygodni"
+
+#: classes/widget-archives.php:154
+msgid "Yearly"
+msgstr "Wg roku"
+
+#: classes/widget-archives.php:157
+msgid "Custom"
+msgstr "Własny"
+
+#: classes/widget-archives.php:157
+msgid "HTML"
+msgstr "HTML"
+
+#: classes/widget-archives.php:157
+msgid "Option"
+msgstr "Opcja"
+
+#: classes/widget-archives.php:162 classes/widget-authors.php:143
+#: classes/widget-bookmarks.php:187 classes/widget-calendar.php:108
+#: classes/widget-categories.php:170 classes/widget-nav-menu.php:133
+#: classes/widget-pages.php:157 classes/widget-search.php:143
+#: classes/widget-tags.php:181
+msgid "Title:"
+msgstr "Nazwa:"
+
+#: classes/widget-archives.php:198 classes/widget-authors.php:191
+msgid "Show post count?"
+msgstr "Pokazuj liczbę wpisów?"
+
+#: classes/widget-authors.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"author lists."
+msgstr ""
+"Zaawansowany widget pozwalający na pełną kontrolę wyświetlania listy autorów."
+
+#: classes/widget-authors.php:44 classes/widget-authors.php:119
+msgid "Authors"
+msgstr "Autorzy"
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Ascending"
+msgstr "Rosnąco"
+
+#: classes/widget-authors.php:136 classes/widget-bookmarks.php:178
+#: classes/widget-bookmarks.php:180 classes/widget-categories.php:162
+#: classes/widget-pages.php:148 classes/widget-tags.php:173
+msgid "Descending"
+msgstr "Malejąco"
+
+#: classes/widget-authors.php:137
+msgid "Display Name"
+msgstr "Nazwa"
+
+#: classes/widget-authors.php:137 functions/comments.php:188
+msgid "Email"
+msgstr "E-mail"
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:179
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "ID"
+msgstr "ID"
+
+#: classes/widget-authors.php:137
+msgid "Nice Name"
+msgstr "Nice Name"
+
+#: classes/widget-authors.php:137
+msgid "Post Count"
+msgstr "Liczba wpisów"
+
+#: classes/widget-authors.php:137
+msgid "Registered"
+msgstr "Zarejestrowanie"
+
+#: classes/widget-authors.php:137 classes/widget-bookmarks.php:181
+msgid "URL"
+msgstr "URL"
+
+#: classes/widget-authors.php:137
+msgid "Login"
+msgstr "Login"
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+#: classes/widget-tags.php:172
+msgid "List"
+msgstr "Lista"
+
+#: classes/widget-authors.php:169 classes/widget-categories.php:161
+msgid "None"
+msgstr "Brak"
+
+#: classes/widget-authors.php:187
+msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym>?"
+msgstr "<acronym title=\"Hypertext Markup Language\">HTML</acronym>?"
+
+#: classes/widget-authors.php:195
+msgid "Exclude admin?"
+msgstr "Pomijać admina?"
+
+#: classes/widget-authors.php:199
+msgid "Show full name?"
+msgstr "Wyświetlać pełną nazwę?"
+
+#: classes/widget-authors.php:203 classes/widget-categories.php:273
+#: classes/widget-tags.php:292
+msgid "Hide empty?"
+msgstr "Ukryć puste?"
+
+#: classes/widget-bookmarks.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"bookmarks (links)."
+msgstr ""
+"Zaawansowany widget pozwalający na pełnąkontrolę nad wyświetlaniem zakładek "
+"(odnośników)."
+
+#: classes/widget-bookmarks.php:44 classes/widget-bookmarks.php:85
+#: classes/widget-bookmarks.php:148
+msgid "Bookmarks"
+msgstr "Zakładki"
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-tags.php:174
+msgid "Count"
+msgstr "Licznik"
+
+#: classes/widget-bookmarks.php:179 classes/widget-bookmarks.php:181
+#: classes/widget-categories.php:163 classes/widget-tags.php:174
+#: functions/comments.php:187
+msgid "Name"
+msgstr "Nazwa"
+
+#: classes/widget-bookmarks.php:179 classes/widget-categories.php:163
+#: classes/widget-pages.php:149
+msgid "Slug"
+msgstr "Uproszczona nazwa"
+
+#: classes/widget-bookmarks.php:181
+msgid "Description"
+msgstr "Opis"
+
+#: classes/widget-bookmarks.php:181
+msgid "Length"
+msgstr "Długość"
+
+#: classes/widget-bookmarks.php:181
+msgid "Notes"
+msgstr "Uwagi"
+
+#: classes/widget-bookmarks.php:181
+msgid "Owner"
+msgstr "Właściciel"
+
+#: classes/widget-bookmarks.php:181 classes/widget-tags.php:173
+msgid "Random"
+msgstr "Losowo"
+
+#: classes/widget-bookmarks.php:181
+msgid "Rating"
+msgstr "Ocena"
+
+#: classes/widget-bookmarks.php:181
+msgid "Rel"
+msgstr "Rel"
+
+#: classes/widget-bookmarks.php:181 classes/widget-categories.php:164
+msgid "RSS"
+msgstr "RSS"
+
+#: classes/widget-bookmarks.php:181
+msgid "Target"
+msgstr "Cel"
+
+#: classes/widget-bookmarks.php:181
+msgid "Updated"
+msgstr "Data aktualizacji"
+
+#: classes/widget-bookmarks.php:289
+msgid "Categorize?"
+msgstr "Wg kategorii?"
+
+#: classes/widget-bookmarks.php:293
+msgid "Show description?"
+msgstr "Pokazuj opis?"
+
+#: classes/widget-bookmarks.php:297
+msgid "Hide invisible?"
+msgstr "Ukryj niewidoczne?"
+
+#: classes/widget-bookmarks.php:301
+msgid "Show rating?"
+msgstr "Pokazuj oceny?"
+
+#: classes/widget-bookmarks.php:305
+msgid "Show updated?"
+msgstr "Pokazuj aktualizację?"
+
+#: classes/widget-bookmarks.php:309
+msgid "Show images?"
+msgstr "Pokazuj obrazki?"
+
+#: classes/widget-bookmarks.php:313
+msgid "Show name?"
+msgstr "Pokazuj nazwę?"
+
+#: classes/widget-bookmarks.php:317
+msgid "Show private?"
+msgstr "Pokazuj prywatne?"
+
+#: classes/widget-calendar.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"calendar."
+msgstr "Zaawansowany widget pozwalający na pełną kontrolę nad kalendarzem."
+
+#: classes/widget-calendar.php:44 classes/widget-calendar.php:99
+msgid "Calendar"
+msgstr "Kalendarz"
+
+#: classes/widget-calendar.php:113
+msgid "One-letter abbreviation?"
+msgstr "Skrót jednoliterowy?"
+
+#: classes/widget-categories.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"category links."
+msgstr ""
+"Zaawansowany widget pozwlający na pełną kontrolę wyświetlania linków "
+"kategorii."
+
+#: classes/widget-categories.php:44 classes/widget-categories.php:133
+msgid "Categories"
+msgstr "Kategorie"
+
+#: classes/widget-categories.php:163
+msgid "Term Group"
+msgstr "Grupa"
+
+#: classes/widget-categories.php:164
+msgid "Atom"
+msgstr "Atom"
+
+#: classes/widget-categories.php:164
+msgid "RDF"
+msgstr "RDF"
+
+#: classes/widget-categories.php:164
+msgid "RSS 2.0"
+msgstr "RSS 2.0"
+
+#: classes/widget-categories.php:261 classes/widget-pages.php:256
+msgid "Hierarchical?"
+msgstr "Hierarchicznie?"
+
+#: classes/widget-categories.php:265
+msgid "Use description?"
+msgstr "Użyj opisu?"
+
+#: classes/widget-categories.php:269
+msgid "Show count?"
+msgstr "Pokazuj licznik?"
+
+#: classes/widget-nav-menu.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"menus."
+msgstr ""
+"Zaawansowany widget pozwalający na pełną kontrolę nad wyświetlaniem menu."
+
+#: classes/widget-nav-menu.php:44
+msgid "Navigation Menu"
+msgstr "Menu"
+
+#: classes/widget-nav-menu.php:109
+msgid "Navigation"
+msgstr "Nawigacja"
+
+#: classes/widget-pages.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your page "
+"links."
+msgstr ""
+"Zaawansowany widget pozwalający na pełną kontrolę wyświetlania linków do "
+"stron."
+
+#: classes/widget-pages.php:44 classes/widget-pages.php:123
+msgid "Pages"
+msgstr "Strony"
+
+#: classes/widget-pages.php:149
+msgid "Author"
+msgstr "Autor"
+
+#: classes/widget-pages.php:149
+msgid "Date"
+msgstr "Data"
+
+#: classes/widget-pages.php:149
+msgid "Menu Order"
+msgstr "Kolejność w menu"
+
+#: classes/widget-pages.php:149 classes/widget-pages.php:150
+msgid "Modified"
+msgstr "Data modyfikacji"
+
+#: classes/widget-pages.php:149
+msgid "Title"
+msgstr "Tytuł"
+
+#: classes/widget-pages.php:150
+msgid "Created"
+msgstr "Data utworzenia"
+
+#: classes/widget-search.php:33
+msgid ""
+"An advanced widget that gives you total control over the output of your "
+"search form."
+msgstr "Formularz szukania w serwisie"
+
+#: classes/widget-search.php:45 classes/widget-search.php:131
+msgid "Search"
+msgstr "Szukaj"
+
+#: classes/widget-search.php:147
+msgid "Search Label:"
+msgstr "Etykieta pola:"
+
+#: classes/widget-search.php:151
+msgid "Search Text:"
+msgstr "Tekst w polu:"
+
+#: classes/widget-search.php:158
+msgid "Search Submit:"
+msgstr "Tekst przycisku:"
+
+#: classes/widget-search.php:163
+msgid "Use theme's <code>searchform.php</code>?"
+msgstr "Użyć z motywu <code>searchform.php</code>?"
+
+#: classes/widget-tags.php:32
+msgid ""
+"An advanced widget that gives you total control over the output of your tags."
+msgstr ""
+"Zaawansowany widget pozwalający na pełną kontrolę nad wyświetlaniem tagów."
+
+#: classes/widget-tags.php:44 classes/widget-tags.php:143
+msgid "Tags"
+msgstr "Tagi"
+
+#: classes/widget-tags.php:171
+msgid "View"
+msgstr "Widok"
+
+#: classes/widget-tags.php:171 extensions/breadcrumb-trail.php:389
+#: extensions/breadcrumb-trail.php:422 extensions/breadcrumb-trail.php:437
+#: extensions/breadcrumb-trail.php:465 functions/shortcodes.php:204
+#: functions/shortcodes.php:443
+msgid "Edit"
+msgstr "Edytuj"
+
+#: classes/widget-tags.php:172
+msgid "Flat"
+msgstr "Poziomo"
+
+#: classes/widget-tags.php:288
+msgid "Pad counts?"
+msgstr "Liczyć podkategorie?"
+
+#: extensions/breadcrumb-trail.php:44
+msgid "Browse:"
+msgstr "Start:"
+
+#: extensions/breadcrumb-trail.php:47
+msgid "Home"
+msgstr "Start"
+
+#: extensions/breadcrumb-trail.php:301 functions/context.php:423
+msgid "g:i a"
+msgstr "g:i a"
+
+#: extensions/breadcrumb-trail.php:304
+#, php-format
+msgid "Minute %1$s"
+msgstr "Minuta %1$s"
+
+#: extensions/breadcrumb-trail.php:304 functions/context.php:426
+msgid "i"
+msgstr "i"
+
+#: extensions/breadcrumb-trail.php:307 functions/context.php:429
+msgid "g a"
+msgstr "g a"
+
+#: extensions/breadcrumb-trail.php:318 extensions/breadcrumb-trail.php:324
+#: extensions/breadcrumb-trail.php:329 extensions/breadcrumb-trail.php:334
+#: extensions/breadcrumb-trail.php:521 functions/context.php:435
+#: functions/context.php:441 functions/core-seo.php:90
+#: functions/shortcodes.php:70
+msgid "Y"
+msgstr "Y"
+
+#: extensions/breadcrumb-trail.php:319 extensions/breadcrumb-trail.php:330
+#: extensions/breadcrumb-trail.php:525
+msgid "F"
+msgstr "F"
+
+#: extensions/breadcrumb-trail.php:320 extensions/breadcrumb-trail.php:529
+msgid "d"
+msgstr "d"
+
+#: extensions/breadcrumb-trail.php:325
+#, php-format
+msgid "Week %1$s"
+msgstr "Tydzień %1$s"
+
+#: extensions/breadcrumb-trail.php:325 functions/context.php:435
+msgid "W"
+msgstr "W"
+
+#: extensions/breadcrumb-trail.php:341 functions/context.php:452
+#, php-format
+msgid "Search results for &quot;%1$s&quot;"
+msgstr "Wyniki wyszukiwania dla zapytania &quot;%1$s&quot;"
+
+#: extensions/breadcrumb-trail.php:345 functions/context.php:456
+msgid "404 Not Found"
+msgstr "404 Nie znaleziono"
+
+#: extensions/breadcrumb-trail.php:414
+msgid "Split"
+msgstr "Podziel"
+
+#: extensions/breadcrumb-trail.php:418
+msgid "Merge"
+msgstr "Połącz"
+
+#: extensions/breadcrumb-trail.php:525 functions/core-seo.php:86
+msgid "F Y"
+msgstr "F Y"
+
+#: extensions/breadcrumb-trail.php:529
+msgid "F j, Y"
+msgstr "F j, Y"
+
+#: extensions/custom-field-series.php:86
+msgid "Articles in this series"
+msgstr "Artykuły w serii"
+
+#: extensions/custom-field-series.php:212
+msgid "Series"
+msgstr "Serie"
+
+#: extensions/post-stylesheets.php:255
+msgid "Stylesheet"
+msgstr "Arkusz styli"
+
+#: extensions/theme-layouts.php:295
+msgid "Default"
+msgstr "Domyślny"
+
+#: extensions/theme-layouts.php:296
+msgid "One Column"
+msgstr "Jedna Kolumna"
+
+#: extensions/theme-layouts.php:297
+msgid "Two Columns, Left"
+msgstr "Dwie Kolumny, Lewa"
+
+#: extensions/theme-layouts.php:298
+msgid "Two Columns, Right"
+msgstr "Dwie Kolumny, Prawa"
+
+#: extensions/theme-layouts.php:299
+msgid "Three Columns, Left"
+msgstr "Trzy Kolumny, Lewa"
+
+#: extensions/theme-layouts.php:300
+msgid "Three Columns, Right"
+msgstr "Trzy Kolumny, Prawa"
+
+#: extensions/theme-layouts.php:301
+msgid "Three Columns, Center"
+msgstr "Trzy Kolumny, Środek"
+
+#: extensions/theme-layouts.php:377 extensions/theme-layouts.php:485
+msgid "Layout"
+msgstr "Układ"
+
+#: extensions/theme-layouts.php:404
+msgid "Layout is a theme-specific structure for the single view of the post."
+msgstr "Układ jest to specyficzna struktura dla jednego widoku postu."
+
+#: functions/comments.php:182
+msgid "*"
+msgstr "*"
+
+#: functions/comments.php:189
+msgid "Website"
+msgstr "Witryna internetowa"
+
+#: functions/comments.php:195
+msgid "Comment"
+msgstr "Treść komentarza"
+
+#: functions/comments.php:196
+#, php-format
+msgid ""
+"You must be <a href=\"%1$s\" title=\"Log in\">logged in</a> to post a "
+"comment."
+msgstr ""
+"Musisz się <a href=\"%1$s\" title=\"Log in\">zalogować</a>, aby móc napisać "
+"komentarz."
+
+#: functions/comments.php:197
+#, php-format
+msgid "Logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
+msgstr "Zalogowano się jako <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
+
+#: functions/comments.php:197
+msgid "Log out of this account"
+msgstr "Wyloguj się z tego konta"
+
+#: functions/comments.php:197
+msgid "Log out &raquo;"
+msgstr "Wyloguj się &raquo;"
+
+#: functions/comments.php:202
+msgid "Leave a Reply"
+msgstr "Dodaj komentarz"
+
+#: functions/comments.php:203
+#, php-format
+msgid "Leave a Reply to %s"
+msgstr "Odpowiedz na %s"
+
+#: functions/comments.php:204
+msgid "Click here to cancel reply."
+msgstr "Kliknij, aby anulować odpowiedź."
+
+#: functions/comments.php:205
+msgid "Post Comment"
+msgstr "Opublikuj komentarz"
+
+#: functions/context.php:423 functions/context.php:429
+#: functions/context.php:432 functions/context.php:438
+#: functions/context.php:441
+#, php-format
+msgid "Archive for %1$s"
+msgstr "Archiwum dla %1$s"
+
+#: functions/context.php:426
+#, php-format
+msgid "Archive for minute %1$s"
+msgstr "Archive for minute %1$s"
+
+#: functions/context.php:432
+msgid "F jS, Y"
+msgstr "j F Y"
+
+#: functions/context.php:435
+#, php-format
+msgid "Archive for week %1$s of %2$s"
+msgstr "Archiwum tygodnia %1$s z %2$s"
+
+#: functions/context.php:460
+#, php-format
+msgid "%1$s Page %2$s"
+msgstr "%1$s Strona %2$s"
+
+#: functions/core-seo.php:93
+#, php-format
+msgid "Copyright (c) %1$s"
+msgstr "Copyright (c) %1$s"
+
+#: functions/core-seo.php:112 functions/shortcodes.php:218
+#: functions/shortcodes.php:373
+msgid "l, F jS, Y, g:i a"
+msgstr "l, j F Y, G:i"
+
+#: functions/customize.php:63 functions/customize.php:88
+msgid "Footer"
+msgstr "Stopka"
+
+#: functions/deprecated.php:572
+#, php-format
+msgid ""
+"<code>%1$s</code> &mdash; This function has been removed or replaced by "
+"another function."
+msgstr ""
+"<code>%1$s</code> &mdash; Ta funkcja została usunięta lub zastąpiona przez "
+"inną funkcję."
+
+#: functions/menus.php:38
+msgctxt "nav menu location"
+msgid "Primary"
+msgstr "Podstawowy"
+
+#: functions/menus.php:42
+msgctxt "nav menu location"
+msgid "Secondary"
+msgstr "Drugi"
+
+#: functions/menus.php:46
+msgctxt "nav menu location"
+msgid "Subsidiary"
+msgstr "Pomocniczy"
+
+#: functions/settings.php:76 functions/settings.php:80
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr "Copyright &#169; [the-year] [site-link]."
+
+#: functions/settings.php:76
+msgid "Powered by [wp-link], [theme-link], and [child-link]."
+msgstr "Oparte na [wp-link], [theme-link], oraz [child-link]."
+
+#: functions/settings.php:80
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr "Oparte na [wp-link] i [theme-link]."
+
+#: functions/shortcodes.php:93
+msgid "State-of-the-art semantic personal publishing platform"
+msgstr "Nowoczesna, semantyczna, osobista platforma publikacyjna."
+
+#: functions/shortcodes.php:93
+msgid "WordPress"
+msgstr "WordPress"
+
+#: functions/shortcodes.php:106
+#, php-format
+msgid "%s WordPress Theme"
+msgstr "%s Motyw WordPress"
+
+#: functions/shortcodes.php:134
+msgid "Log out"
+msgstr "Wyloguj się"
+
+#: functions/shortcodes.php:136
+msgid "Log in"
+msgstr "Zaloguj się"
+
+#: functions/shortcodes.php:151
+#, php-format
+msgid "This page loaded in %1$s seconds with %2$s database queries."
+msgstr ""
+"Strona załadowała się w ciągu %1$s sekund, %2$s zapytań do bazy danych."
+
+#: functions/shortcodes.php:204 functions/shortcodes.php:443
+#, php-format
+msgid "Edit %1$s"
+msgstr "Edytuj %1$s"
+
+#: functions/shortcodes.php:234
+msgid "Leave a response"
+msgstr "Napisz odpowiedź"
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Response"
+msgstr "%1$s odpowiedź"
+
+#: functions/shortcodes.php:234
+#, php-format
+msgid "%1$s Responses"
+msgstr "%1$s odpowiedzi"
+
+#: functions/shortcodes.php:241 functions/shortcodes.php:243
+#: functions/shortcodes.php:245
+#, php-format
+msgid "Comment on %1$s"
+msgstr "Skomentuj %1$s"
+
+#: functions/shortcodes.php:305
+msgid "(Untitled)"
+msgstr "(Bez tytułu)"
+
+#: functions/shortcodes.php:321
+msgid "Shortlink"
+msgstr "Skrócony odnośnik"
+
+#: functions/shortcodes.php:345 functions/shortcodes.php:422
+msgid "Permalink"
+msgstr "Bezpośredni odnośnik"
+
+#: functions/shortcodes.php:373
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s z %2$s"
+
+#: functions/shortcodes.php:422
+#, php-format
+msgid "Permalink to comment %1$s"
+msgstr "Bezpośredni odnośnik do komentarza %1$s"
+
+#: functions/shortcodes.php:462
+msgid "Reply"
+msgstr "Odpowiedz"
+
+#: functions/shortcodes.php:463
+msgid "Log in to reply."
+msgstr "Zaloguj się, aby móc odpowiedzieć."
+
+#: functions/sidebars.php:87
+msgctxt "sidebar"
+msgid "Primary"
+msgstr "Podstawowy"
+
+#: functions/sidebars.php:88
+msgid "The main (primary) widget area, most often used as a sidebar."
+msgstr ""
+"Główny (pierwszy) obszar widgetów, najczęściej używany jako pasek boczny."
+
+#: functions/sidebars.php:91
+msgctxt "sidebar"
+msgid "Secondary"
+msgstr "Drugi"
+
+#: functions/sidebars.php:92
+msgid ""
+"The second most important widget area, most often used as a secondary "
+"sidebar."
+msgstr ""
+"Drugi najważniejszy obszar widgetów,najczęściej używany jako drugi pasek "
+"boczny."
+
+#: functions/sidebars.php:95
+msgctxt "sidebar"
+msgid "Subsidiary"
+msgstr "Pomocniczy"
+
+#: functions/sidebars.php:96
+msgid "A widget area loaded in the footer of the site."
+msgstr "Obszar widgetów ładowany w stopce strony."
+
+#: functions/sidebars.php:99
+msgctxt "sidebar"
+msgid "Header"
+msgstr "Nagłówek"
+
+#: functions/sidebars.php:100
+msgid "Displayed within the site's header area."
+msgstr "Wyświetlany w nagłówku witryny."
+
+#: functions/sidebars.php:103
+msgctxt "sidebar"
+msgid "Before Content"
+msgstr "Przed zawartością"
+
+#: functions/sidebars.php:104
+msgid "Loaded before the page's main content area."
+msgstr "Ładowany przed zawartością główną witryny."
+
+#: functions/sidebars.php:107
+msgctxt "sidebar"
+msgid "After Content"
+msgstr "Po zawartości"
+
+#: functions/sidebars.php:108
+msgid "Loaded after the page's main content area."
+msgstr "Ładowany po zawartości głównej witryny."
+
+#: functions/sidebars.php:111
+msgctxt "sidebar"
+msgid "After Singular"
+msgstr "Po pojedynczym wpisie"
+
+#: functions/sidebars.php:112
+msgid ""
+"Loaded on singular post (page, attachment, etc.) views before the comments "
+"area."
+msgstr ""
+"Ładowany dla wyświetlanago postu (strony, załącznika itp.) przed obdzarem "
+"komentarzy."
+
+#~ msgid "Submit"
+#~ msgstr "szukaj w serwisie..."
+
+#~ msgid "Title used for search engines and the browser title bar."
+#~ msgstr "Otsikko hakukoneille ja selaimen otsikolle."
+
+#~ msgid "Keywords"
+#~ msgstr "Avainsanat"
+
+#~ msgid "Meta keywords to represent the content of the single post."
+#~ msgstr "Meta avainsanat yksittäiselle artikkelille."
+
+#~ msgid "Meta description that describes the post."
+#~ msgstr "Metakuvaus, joka lyhyesti kertoo artikkelista."
+
+#~ msgid "Show last update?"
+#~ msgstr "Näytä viimeisin päivitys?"
+
+#~ msgid "Automatically add paragraphs"
+#~ msgstr "Lisää kappaleet automaattisesti"
+
+#~ msgid ""
+#~ "An advanced widget that gives you total control over the output of your "
+#~ "users."
+#~ msgstr "Vimpain, jolla hallitaan käyttäjiä."
+
+#~ msgid "Users"
+#~ msgstr "Käyttäjät"
+
+#~ msgid "Log into this account"
+#~ msgstr "Kirjaudu tähän tiliin"
diff --git a/wp-content/themes/path/languages/path-en_EN.mo b/wp-content/themes/path/languages/path-en_EN.mo
new file mode 100644
index 0000000000000000000000000000000000000000..5e2376e6bf2f89868d0abfeb8d8d4d88f9519aad
Binary files /dev/null and b/wp-content/themes/path/languages/path-en_EN.mo differ
diff --git a/wp-content/themes/path/languages/path-en_EN.po b/wp-content/themes/path/languages/path-en_EN.po
new file mode 100644
index 0000000000000000000000000000000000000000..0fcdf6152513b3b2ed1eeeffc26bacdb01b3a2bb
--- /dev/null
+++ b/wp-content/themes/path/languages/path-en_EN.po
@@ -0,0 +1,452 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Path\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-11-10 20:47+0200\n"
+"PO-Revision-Date: 2012-11-10 20:47+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Foxnet <sami.keijonen@foxnet.fi>\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;esc_attr__;esc_attr_e;"
+"esc_html__;esc_html_e;_n;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:27
+msgid "What happened!?"
+msgstr ""
+
+#: 404.php:33
+#, php-format
+msgid ""
+"You tried going to %s, which doesn't exist. You can try navigate or search."
+msgstr ""
+
+#: 404.php:39
+msgid "Or here are the latest posts, hope it helps."
+msgstr ""
+
+#: attachment-image.php:41 content-video.php:37 page-templates/archives.php:40
+#: page-templates/tag-cloud.php:40
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: attachment-image.php:42 content-aside.php:27 content-aside.php:38
+#: content-audio.php:27 content-audio.php:38 content-gallery.php:27
+#: content-gallery.php:44 content-image.php:27 content-image.php:38
+#: content-link.php:27 content-link.php:48 content-page.php:26
+#: content-page.php:43 content-quote.php:20 content-status.php:22
+#: content-video.php:27 content-video.php:38 content.php:27 content.php:45
+#: page-templates/archives.php:68
+#: page-templates/most-popular-by-comments.php:58
+#: page-templates/most-popular-by-month.php:61
+#: page-templates/most-popular-by-year.php:60
+#: page-templates/most-popular-last-30-days.php:62
+#: page-templates/most-popular.php:59 page-templates/path-slider.php:56
+#: page-templates/tag-cloud.php:46
+msgid "Pages:"
+msgstr ""
+
+#: attachment-image.php:47
+msgid "Published on [entry-published] [entry-edit-link before=\"| \"]"
+msgstr ""
+
+#: attachment-image.php:62
+msgid "Gallery"
+msgstr ""
+
+#: comment.php:31
+msgid "Your comment is awaiting moderation."
+msgstr ""
+
+#: comments.php:26
+msgid "No Responses"
+msgstr ""
+
+#: comments.php:26
+msgid "One Response"
+msgstr ""
+
+#: comments.php:26
+msgid "% Responses"
+msgstr ""
+
+#: comments.php:31
+#, php-format
+msgid "Page %1$s of %2$s"
+msgstr ""
+
+#: comments.php:49
+#, php-format
+msgid ""
+"Comments are closed, but <a href=\"%s\" title=\"Trackback URL for this post"
+"\">trackbacks</a> and pingbacks are open."
+msgstr ""
+
+#: comments.php:55
+msgid "Comments are closed."
+msgstr ""
+
+#: content-aside.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]"
+msgstr ""
+
+#: content-aside.php:31 content-audio.php:31 content-gallery.php:31
+#: content-image.php:31 content-link.php:31 content-video.php:31
+#: content.php:31
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"Tagged \"]"
+msgstr ""
+
+#: content-aside.php:42 content-audio.php:42 content-gallery.php:48
+#: content-image.php:42 content-link.php:54 content-quote.php:27
+#: content-video.php:42
+msgid ""
+"[post-format-link] published on [entry-published] [entry-permalink before="
+"\"| \"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+
+#: content-audio.php:22 content-gallery.php:22 content-image.php:22
+#: content-link.php:22 content-video.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-comments-link "
+"before=\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+
+#: content-quote.php:25
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] "
+"[entry-terms before=\"Tagged \"]"
+msgstr ""
+
+#: content-status.php:27
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-edit-link before=\"| "
+"\"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-"
+"terms before=\"Tagged \"]"
+msgstr ""
+
+#: content-status.php:29
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-permalink before=\"| "
+"\"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+
+#: content.php:22 content.php:40 sticky-slider.php:45
+#: page-templates/most-popular-by-comments.php:53
+#: page-templates/most-popular-by-month.php:56
+#: page-templates/most-popular-by-year.php:55
+#: page-templates/most-popular-last-30-days.php:57
+#: page-templates/most-popular.php:54 page-templates/path-slider.php:60
+#: page-templates/path-slider.php:110
+msgid ""
+"Published by [entry-author] on [entry-published] [entry-comments-link before="
+"\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+
+#: content.php:49
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"| Tagged \"]"
+msgstr ""
+
+#: functions.php:328
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr ""
+
+#: functions.php:328
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr ""
+
+#: functions.php:328
+msgid " <a class=\"top\" href=\"#container\">Back to Top</a>"
+msgstr ""
+
+#: functions.php:339
+msgid "Please comment with your real name using good manners."
+msgstr ""
+
+#: functions.php:350
+msgid "Read more &rarr;"
+msgstr ""
+
+#: functions.php:386
+msgid "Twitter Username"
+msgstr ""
+
+#: functions.php:405
+msgid "Author of the article"
+msgstr ""
+
+#: functions.php:405
+msgid "Authors of the article"
+msgstr ""
+
+#: functions.php:422 functions.php:443 functions.php:463
+#, php-format
+msgid "Follow %1$s %2$s &#64;%3$s on Twitter."
+msgstr ""
+
+#: functions.php:453
+msgid "Article written by [entry-author]"
+msgstr ""
+
+#: functions.php:483 functions.php:502
+msgid "and"
+msgstr ""
+
+#: functions.php:484
+msgid ""
+" [entry-published] [entry-comments-link before=\" | \"] [entry-edit-link "
+"before=\" | \"]"
+msgstr ""
+
+#: functions.php:503
+msgid " [entry-published]"
+msgstr ""
+
+#: functions.php:550
+msgid "Customize"
+msgstr ""
+
+#: functions.php:571 admin/functions-admin.php:56
+msgid "Layout"
+msgstr ""
+
+#: functions.php:598 admin/functions-admin.php:118
+msgid "Global Layout:"
+msgstr ""
+
+#: header.php:90
+msgid "You are here:"
+msgstr ""
+
+#: header.php:90
+msgid "&#8764;"
+msgstr ""
+
+#: loop-error.php:16
+msgid "Apologies, but no entries were found."
+msgstr ""
+
+#: loop-meta.php:86
+#, php-format
+msgid "You are browsing the search results for \"%s\""
+msgstr ""
+
+#: loop-meta.php:95
+msgid "Archives by date"
+msgstr ""
+
+#: loop-meta.php:99
+msgid "You are browsing the site archives by date."
+msgstr ""
+
+#: loop-meta.php:123
+msgid "Archives"
+msgstr ""
+
+#: loop-meta.php:127
+msgid "You are browsing the site archives."
+msgstr ""
+
+#: loop-meta.php:137
+msgid "Most popular"
+msgstr ""
+
+#: loop-meta.php:141
+msgid "You are browsing all time most viewed articles."
+msgstr ""
+
+#: loop-meta.php:151
+msgid "Most popular by year"
+msgstr ""
+
+#: loop-meta.php:155
+#, php-format
+msgid "You are browsing most viewed articles in the current year %d."
+msgstr ""
+
+#: loop-meta.php:165
+msgid "Most popular by month"
+msgstr ""
+
+#: loop-meta.php:169
+#, php-format
+msgid ""
+"You are browsing most viewed articles in current month (%1$s) and year "
+"(%2$s)."
+msgstr ""
+
+#: loop-meta.php:179
+msgid "Most popular by comments"
+msgstr ""
+
+#: loop-meta.php:183
+msgid "You are browsing most viewed articles by comments."
+msgstr ""
+
+#: loop-meta.php:193
+msgid "Most popular articles in the last 30 days"
+msgstr ""
+
+#: loop-meta.php:197
+msgid "You are browsing most viewed articles in the last 30 days."
+msgstr ""
+
+#: loop-nav.php:17
+msgid "<span class=\"meta-nav\">&larr;</span> Return to entry"
+msgstr ""
+
+#: loop-nav.php:23 loop-nav.php:27 loop-nav.php:29
+msgid "<span class=\"meta-nav\">&larr;</span> Previous"
+msgstr ""
+
+#: loop-nav.php:24 loop-nav.php:27 loop-nav.php:29
+msgid "Next <span class=\"meta-nav\">&rarr;</span>"
+msgstr ""
+
+#: menu-primary-mobile.php:24 menu-primary.php:20
+msgid "Primary Menu"
+msgstr ""
+
+#: menu-primary.php:20
+msgid "Primary Mobile Menu"
+msgstr ""
+
+#: menu-primary.php:22 searchform.php:16 searchform.php:17
+msgid "Search"
+msgstr ""
+
+#: menu-secondary-mobile.php:22 menu-secondary.php:20
+msgid "Secondary Menu"
+msgstr ""
+
+#: menu-secondary.php:20
+msgid "Secondary Mobile Menu"
+msgstr ""
+
+#: admin/functions-admin.php:36
+msgid "Logo Upload"
+msgstr ""
+
+#: admin/functions-admin.php:46
+msgid "Background"
+msgstr ""
+
+#: admin/functions-admin.php:74
+msgid "Custom logo:"
+msgstr ""
+
+#: admin/functions-admin.php:77
+#, php-format
+msgid ""
+"Want to replace or remove default logo? <a href=\"%s\">Go to Appearance &gt;"
+"&gt; Header</a>. "
+msgstr ""
+
+#: admin/functions-admin.php:94
+msgid "Custom background:"
+msgstr ""
+
+#: admin/functions-admin.php:97
+#, php-format
+msgid ""
+"Want to replace or remove default background? <a href=\"%s\">Go to "
+"Appearance &gt;&gt; Background</a>. "
+msgstr ""
+
+#: admin/functions-admin.php:128
+msgid ""
+"Set the layout for the entire site. The default layout is 2 columns with "
+"content on the left. You can overwrite this value in individual post or "
+"page. Note! Three column layouts will only work if you use Primary and "
+"Secondary Widget areas and browser window is wide enough."
+msgstr ""
+
+#: includes/widget-most-viewed.php:32
+msgid "Display top viewed posts."
+msgstr ""
+
+#: includes/widget-most-viewed.php:43 includes/widget-most-viewed.php:178
+msgid "Most Viewed"
+msgstr ""
+
+#: includes/widget-most-viewed.php:110
+msgid "[entry-author] [entry-published]"
+msgstr ""
+
+#: includes/widget-most-viewed.php:197
+msgid "Title:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:202
+msgid "Post Type:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:213
+msgid "Limit:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:218
+msgid "Year:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:223
+msgid "Month:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:232
+msgid "Day:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:242
+msgid "Display Thumbnail?"
+msgstr ""
+
+#: includes/widget-most-viewed.php:247
+msgid "Display Byline?"
+msgstr ""
+
+#: includes/widget-most-viewed.php:252
+msgid "Display Excerpt?"
+msgstr ""
+
+#: page-templates/archives.php:44
+#, php-format
+msgid "There are %1$s posts published."
+msgstr ""
+
+#: page-templates/archives.php:50
+msgid "Archives by category"
+msgstr ""
+
+#: page-templates/archives.php:54
+msgid "RSS"
+msgstr ""
+
+#: page-templates/archives.php:58
+msgid "Archives by month"
+msgstr ""
+
+#: page-templates/most-popular-by-comments.php:62
+#: page-templates/most-popular-by-month.php:65
+#: page-templates/most-popular-by-year.php:64
+#: page-templates/most-popular-last-30-days.php:66
+#: page-templates/most-popular.php:63
+msgid ""
+"Views [entry-views] [entry-terms taxonomy=\"category\" before=\"Posted in "
+"\"] [entry-terms before=\"Tagged \"]"
+msgstr ""
+
+#: page-templates/path-slider.php:85
+msgid "More Articles"
+msgstr ""
diff --git a/wp-content/themes/path/languages/path-fi.mo b/wp-content/themes/path/languages/path-fi.mo
new file mode 100644
index 0000000000000000000000000000000000000000..9d0fcd8cdee17fa470cba62da6225b17d90bad8c
Binary files /dev/null and b/wp-content/themes/path/languages/path-fi.mo differ
diff --git a/wp-content/themes/path/languages/path-fi.po b/wp-content/themes/path/languages/path-fi.po
new file mode 100644
index 0000000000000000000000000000000000000000..bc5b70c5c7238cb55d76873f432aa38094ccfd71
--- /dev/null
+++ b/wp-content/themes/path/languages/path-fi.po
@@ -0,0 +1,512 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Path\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-11-10 20:47+0200\n"
+"PO-Revision-Date: 2012-11-10 20:49+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Foxnet <sami.keijonen@foxnet.fi>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;esc_attr__;esc_attr_e;"
+"esc_html__;esc_html_e;_n;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:27
+msgid "What happened!?"
+msgstr "Mitä tapahtui?"
+
+#: 404.php:33
+#, php-format
+msgid ""
+"You tried going to %s, which doesn't exist. You can try navigate or search."
+msgstr ""
+"Yritit vissiin mennä osoitteeseen %s, mutta et onnistunut. Kokeile navigoida "
+"tai etsiä."
+
+#: 404.php:39
+msgid "Or here are the latest posts, hope it helps."
+msgstr "Tai jos uusimmista artikkeleista löytyy etsimäsi."
+
+#: attachment-image.php:41 content-video.php:37 page-templates/archives.php:40
+#: page-templates/tag-cloud.php:40
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Lue lisää <span class=\"meta-nav\">&rarr;</span>"
+
+#: attachment-image.php:42 content-aside.php:27 content-aside.php:38
+#: content-audio.php:27 content-audio.php:38 content-gallery.php:27
+#: content-gallery.php:44 content-image.php:27 content-image.php:38
+#: content-link.php:27 content-link.php:48 content-page.php:26
+#: content-page.php:43 content-quote.php:20 content-status.php:22
+#: content-video.php:27 content-video.php:38 content.php:27 content.php:45
+#: page-templates/archives.php:68
+#: page-templates/most-popular-by-comments.php:58
+#: page-templates/most-popular-by-month.php:61
+#: page-templates/most-popular-by-year.php:60
+#: page-templates/most-popular-last-30-days.php:62
+#: page-templates/most-popular.php:59 page-templates/path-slider.php:56
+#: page-templates/tag-cloud.php:46
+msgid "Pages:"
+msgstr "Sivut:"
+
+#: attachment-image.php:47
+msgid "Published on [entry-published] [entry-edit-link before=\"| \"]"
+msgstr "Julkaistu [entry-published] [entry-edit-link before=\"| \"]"
+
+#: attachment-image.php:62
+msgid "Gallery"
+msgstr "Kuvagalleria"
+
+#: comment.php:31
+msgid "Your comment is awaiting moderation."
+msgstr "Kommenttisi odottaa moderointia."
+
+#: comments.php:26
+msgid "No Responses"
+msgstr "Ei kommentteja"
+
+#: comments.php:26
+msgid "One Response"
+msgstr "Yksi kommentti"
+
+#: comments.php:26
+msgid "% Responses"
+msgstr "% Kommenttia"
+
+#: comments.php:31
+#, php-format
+msgid "Page %1$s of %2$s"
+msgstr "Sivu %1$s / %2$s"
+
+#: comments.php:49
+#, php-format
+msgid ""
+"Comments are closed, but <a href=\"%s\" title=\"Trackback URL for this post"
+"\">trackbacks</a> and pingbacks are open."
+msgstr ""
+"Kommentointi on suljettu, mutta <a href=\"%s\" title=\"Trackback URL for "
+"this post\">paluuviitteet</a> ja päivitysilmoitukset ovat sallittuja."
+
+#: comments.php:55
+msgid "Comments are closed."
+msgstr "Kommentointi on suljettu."
+
+#: content-aside.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]"
+msgstr ""
+"[post-format-link] julkaistu [entry-published] [entry-edit-link before=\"| "
+"\"]"
+
+#: content-aside.php:31 content-audio.php:31 content-gallery.php:31
+#: content-image.php:31 content-link.php:31 content-video.php:31
+#: content.php:31
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"Tagged \"]"
+msgstr ""
+"[entry-terms taxonomy=\"category\" before=\"Artikkeli kategoriassa \"] "
+"[entry-terms before=\"Avainsanat \"]"
+
+#: content-aside.php:42 content-audio.php:42 content-gallery.php:48
+#: content-image.php:42 content-link.php:54 content-quote.php:27
+#: content-video.php:42
+msgid ""
+"[post-format-link] published on [entry-published] [entry-permalink before="
+"\"| \"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+"[post-format-link] julkaistu [entry-published] [entry-permalink before=\"| "
+"\"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+
+#: content-audio.php:22 content-gallery.php:22 content-image.php:22
+#: content-link.php:22 content-video.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-comments-link "
+"before=\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+"[post-format-link] julkaistu [entry-published] [entry-comments-link before="
+"\" | \"] [entry-edit-link before=\" | \"]"
+
+#: content-quote.php:25
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] "
+"[entry-terms before=\"Tagged \"]"
+msgstr ""
+"[post-format-link] julkaistu [entry-published] [entry-edit-link before=\"| "
+"\"]<br />[entry-terms taxonomy=\"category\" before=\"Artikkeli kategoriassa "
+"\"] [entry-terms before=\"Avainsanat \"]"
+
+#: content-status.php:27
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-edit-link before=\"| "
+"\"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-"
+"terms before=\"Tagged \"]"
+msgstr ""
+"[post-format-link] päivitetty [entry-published] [entry-edit-link before=\"| "
+"\"]<br />[entry-terms taxonomy=\"category\" before=\"Artikkeli kategoriassa "
+"\"] [entry-terms before=\"Avainsanat \"]"
+
+#: content-status.php:29
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-permalink before=\"| "
+"\"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+"[post-format-link] päivitetty [entry-published] [entry-permalink before=\"| "
+"\"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+
+#: content.php:22 content.php:40 sticky-slider.php:45
+#: page-templates/most-popular-by-comments.php:53
+#: page-templates/most-popular-by-month.php:56
+#: page-templates/most-popular-by-year.php:55
+#: page-templates/most-popular-last-30-days.php:57
+#: page-templates/most-popular.php:54 page-templates/path-slider.php:60
+#: page-templates/path-slider.php:110
+msgid ""
+"Published by [entry-author] on [entry-published] [entry-comments-link before="
+"\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+"[entry-author]  [entry-published] [entry-comments-link before=\" | \"] "
+"[entry-edit-link before=\" | \"]"
+
+#: content.php:49
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"| Tagged \"]"
+msgstr ""
+"[entry-terms taxonomy=\"category\" before=\"Artikkeli kategoriassa \"] "
+"[entry-terms before=\"| Avainsanat \"]"
+
+#: functions.php:328
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr "Copyright &#169; [the-year] [site-link]."
+
+#: functions.php:328
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr "Alustana [wp-link] ja [theme-link]."
+
+#: functions.php:328
+msgid " <a class=\"top\" href=\"#container\">Back to Top</a>"
+msgstr " <a class=\"top\" href=\"#container\">Takaisin ylös</a>"
+
+#: functions.php:339
+msgid "Please comment with your real name using good manners."
+msgstr "Ole hyvä ja kommentoi omalla nimellä hyvien tapojen mukaisesti."
+
+#: functions.php:350
+msgid "Read more &rarr;"
+msgstr "Lue lisää &rarr;"
+
+#: functions.php:386
+msgid "Twitter Username"
+msgstr "Twitter käyttäjänimi"
+
+#: functions.php:405
+msgid "Author of the article"
+msgstr "Artikkelin kirjoittaja"
+
+#: functions.php:405
+msgid "Authors of the article"
+msgstr "Artikkelin kirjoittajat"
+
+#: functions.php:422 functions.php:443 functions.php:463
+#, php-format
+msgid "Follow %1$s %2$s &#64;%3$s on Twitter."
+msgstr "Seuraa %1$s %2$s &#64;%3$s Twitterissä."
+
+#: functions.php:453
+msgid "Article written by [entry-author]"
+msgstr "Artikkelin kirjoittaja [entry-author]"
+
+#: functions.php:483 functions.php:502
+msgid "and"
+msgstr "ja"
+
+#: functions.php:484
+msgid ""
+" [entry-published] [entry-comments-link before=\" | \"] [entry-edit-link "
+"before=\" | \"]"
+msgstr ""
+" [entry-published] [entry-comments-link before=\" | \"] [entry-edit-link "
+"before=\" | \"]"
+
+#: functions.php:503
+msgid " [entry-published]"
+msgstr " [entry-published]"
+
+#: functions.php:550
+msgid "Customize"
+msgstr "Kustomoi"
+
+#: functions.php:571 admin/functions-admin.php:56
+msgid "Layout"
+msgstr "Ulkoasu"
+
+#: functions.php:598 admin/functions-admin.php:118
+msgid "Global Layout:"
+msgstr "Sivuston ulkoasu:"
+
+#: header.php:90
+msgid "You are here:"
+msgstr "Olet täällä:"
+
+#: header.php:90
+msgid "&#8764;"
+msgstr "&#8764;"
+
+#: loop-error.php:16
+msgid "Apologies, but no entries were found."
+msgstr "Pahoittelut mutta yhtään artikkelia tai sivua ei löytynyt."
+
+#: loop-meta.php:86
+#, php-format
+msgid "You are browsing the search results for \"%s\""
+msgstr "Hakutulokset haulla  \"%s\""
+
+#: loop-meta.php:95
+msgid "Archives by date"
+msgstr "Arkisto ajan mukaan"
+
+#: loop-meta.php:99
+msgid "You are browsing the site archives by date."
+msgstr "Selaat päiväkohtaista arkistoa."
+
+#: loop-meta.php:123
+msgid "Archives"
+msgstr "Arkisto"
+
+#: loop-meta.php:127
+msgid "You are browsing the site archives."
+msgstr "Selaat arkistoa."
+
+#: loop-meta.php:137
+msgid "Most popular"
+msgstr "Luetuimmat"
+
+#: loop-meta.php:141
+msgid "You are browsing all time most viewed articles."
+msgstr "Luetuimmat artikkelit."
+
+#: loop-meta.php:151
+msgid "Most popular by year"
+msgstr "Luetuimmat artikkelit tänä vuonna"
+
+#: loop-meta.php:155
+#, php-format
+msgid "You are browsing most viewed articles in the current year %d."
+msgstr "Luetuimmat artikkelit vuonna %d."
+
+#: loop-meta.php:165
+msgid "Most popular by month"
+msgstr "Kuukauden luetuimmat"
+
+#: loop-meta.php:169
+#, php-format
+msgid ""
+"You are browsing most viewed articles in current month (%1$s) and year "
+"(%2$s)."
+msgstr "Luetuimmat artikkelit tässä kuussa (%1$s) ja tänä vuonna (%2$s)."
+
+#: loop-meta.php:179
+msgid "Most popular by comments"
+msgstr "Kommentoiduimmat"
+
+#: loop-meta.php:183
+msgid "You are browsing most viewed articles by comments."
+msgstr "Kommentoiduimmat artikkelit."
+
+#: loop-meta.php:193
+msgid "Most popular articles in the last 30 days"
+msgstr "Luetuimmat artikkelit viimeisen 30 päivän ajalta"
+
+#: loop-meta.php:197
+msgid "You are browsing most viewed articles in the last 30 days."
+msgstr "Luetuimmat artikkelit viimeisen 30 päivän ajalta."
+
+#: loop-nav.php:17
+msgid "<span class=\"meta-nav\">&larr;</span> Return to entry"
+msgstr "<span class=\"meta-nav\">&larr;</span> Palaa takaisin"
+
+#: loop-nav.php:23 loop-nav.php:27 loop-nav.php:29
+msgid "<span class=\"meta-nav\">&larr;</span> Previous"
+msgstr "<span class=\"meta-nav\">&larr;</span> Edellinen"
+
+#: loop-nav.php:24 loop-nav.php:27 loop-nav.php:29
+msgid "Next <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Seuraava <span class=\"meta-nav\">&rarr;</span>"
+
+#: menu-primary-mobile.php:24 menu-primary.php:20
+msgid "Primary Menu"
+msgstr "Päävalikko"
+
+#: menu-primary.php:20
+msgid "Primary Mobile Menu"
+msgstr "Päävalikko"
+
+#: menu-primary.php:22 searchform.php:16 searchform.php:17
+msgid "Search"
+msgstr "Etsi"
+
+#: menu-secondary-mobile.php:22 menu-secondary.php:20
+msgid "Secondary Menu"
+msgstr "Toinen valikko"
+
+#: menu-secondary.php:20
+msgid "Secondary Mobile Menu"
+msgstr "Toinen valikko"
+
+#: admin/functions-admin.php:36
+msgid "Logo Upload"
+msgstr "Logon lataaminen"
+
+#: admin/functions-admin.php:46
+msgid "Background"
+msgstr "Taustakuva"
+
+#: admin/functions-admin.php:74
+msgid "Custom logo:"
+msgstr "Logo:"
+
+#: admin/functions-admin.php:77
+#, php-format
+msgid ""
+"Want to replace or remove default logo? <a href=\"%s\">Go to Appearance &gt;"
+"&gt; Header</a>. "
+msgstr ""
+"Haluatko vaihtaa tai poistaa oletuslogon? <a href=\"%s\">Mene kohtaan "
+"ulkoasu &gt;&gt; Otsake</a>. "
+
+#: admin/functions-admin.php:94
+msgid "Custom background:"
+msgstr "Taustakuva:"
+
+#: admin/functions-admin.php:97
+#, php-format
+msgid ""
+"Want to replace or remove default background? <a href=\"%s\">Go to "
+"Appearance &gt;&gt; Background</a>. "
+msgstr ""
+"Haluatko vaihtaa tai poistaa alkuperäisen taustankuvan? <a href=\"%s\">Mene "
+"kohtaan Ulkoasu &gt;&gt; Tausta</a>. "
+
+#: admin/functions-admin.php:128
+msgid ""
+"Set the layout for the entire site. The default layout is 2 columns with "
+"content on the left. You can overwrite this value in individual post or "
+"page. Note! Three column layouts will only work if you use Primary and "
+"Secondary Widget areas and browser window is wide enough."
+msgstr ""
+"Aseta sivuston ulkoasu. Oletus on kaksi saraketta, missä sisältö on "
+"vasemmalla. Yksittäisen artikkelin kohdalla voit muuttaa tätä asetusta. "
+"Huom! Kolmen sarakkeen ulkoasu toimii vain, jos käytössä on sekä ensi -että "
+"toissijainen vimpainalue ja näytön resoluutio on riittävän leveä."
+
+#: includes/widget-most-viewed.php:32
+msgid "Display top viewed posts."
+msgstr "Näytä luetuimmat artikkelit."
+
+#: includes/widget-most-viewed.php:43 includes/widget-most-viewed.php:178
+msgid "Most Viewed"
+msgstr "Luetuimmat"
+
+#: includes/widget-most-viewed.php:110
+msgid "[entry-author] [entry-published]"
+msgstr "[entry-author] [entry-published]"
+
+#: includes/widget-most-viewed.php:197
+msgid "Title:"
+msgstr "Otsikko:"
+
+#: includes/widget-most-viewed.php:202
+msgid "Post Type:"
+msgstr "Artikkelityyppi:"
+
+#: includes/widget-most-viewed.php:213
+msgid "Limit:"
+msgstr "Lukumäärä:"
+
+#: includes/widget-most-viewed.php:218
+msgid "Year:"
+msgstr "Vuosi:"
+
+#: includes/widget-most-viewed.php:223
+msgid "Month:"
+msgstr "Kuukausi:"
+
+#: includes/widget-most-viewed.php:232
+msgid "Day:"
+msgstr "Päivä:"
+
+#: includes/widget-most-viewed.php:242
+msgid "Display Thumbnail?"
+msgstr "Näytä artikkelikuva?"
+
+#: includes/widget-most-viewed.php:247
+msgid "Display Byline?"
+msgstr "Näytä byline?"
+
+#: includes/widget-most-viewed.php:252
+msgid "Display Excerpt?"
+msgstr "Näytä ote?"
+
+#: page-templates/archives.php:44
+#, php-format
+msgid "There are %1$s posts published."
+msgstr "Tähän mennessä on julkaistu %1$s artikkelia."
+
+#: page-templates/archives.php:50
+msgid "Archives by category"
+msgstr "Kategoria-arkisto"
+
+#: page-templates/archives.php:54
+msgid "RSS"
+msgstr "RSS"
+
+#: page-templates/archives.php:58
+msgid "Archives by month"
+msgstr "Kuukausittainen arkisto"
+
+#: page-templates/most-popular-by-comments.php:62
+#: page-templates/most-popular-by-month.php:65
+#: page-templates/most-popular-by-year.php:64
+#: page-templates/most-popular-last-30-days.php:66
+#: page-templates/most-popular.php:63
+msgid ""
+"Views [entry-views] [entry-terms taxonomy=\"category\" before=\"Posted in "
+"\"] [entry-terms before=\"Tagged \"]"
+msgstr ""
+"Luettu [entry-views] [entry-terms taxonomy=\"category\" before=\"Artikkeli "
+"kategoriassa \"] [entry-terms before=\"Avainsanat \"]"
+
+#: page-templates/path-slider.php:85
+msgid "More Articles"
+msgstr "Lisää artikkeleita"
+
+#~ msgid "Next &rarr;"
+#~ msgstr "Seuraava &rarr;"
+
+#~ msgid "Default"
+#~ msgstr "Oletus"
+
+#~ msgid "One Column"
+#~ msgstr "Yksi sarake"
+
+#~ msgid "Two Columns, Left"
+#~ msgstr "Kaksi saraketta, sisältö vasemmalla"
+
+#~ msgid "Two Columns, Right"
+#~ msgstr "Kaksi saraketta, sisältö oikealla"
+
+#~ msgid "Three Columns, Left"
+#~ msgstr "Kolme saraketta, sisältö vasemmalla"
+
+#~ msgid "Three Columns, Right"
+#~ msgstr "Kolme saraketta, sisältö oikealla"
+
+#~ msgid "Three Columns, Center"
+#~ msgstr "Kolme saraketta, sisältö keskellä"
diff --git a/wp-content/themes/path/languages/path-pl_PL.mo b/wp-content/themes/path/languages/path-pl_PL.mo
new file mode 100644
index 0000000000000000000000000000000000000000..8a4c2d8d5c6af8d78fd2e5fdc2e7e7e3f7326cda
Binary files /dev/null and b/wp-content/themes/path/languages/path-pl_PL.mo differ
diff --git a/wp-content/themes/path/languages/path-pl_PL.po b/wp-content/themes/path/languages/path-pl_PL.po
new file mode 100644
index 0000000000000000000000000000000000000000..8c7af4d66206cd9614c9d66f02109346a1371fac
--- /dev/null
+++ b/wp-content/themes/path/languages/path-pl_PL.po
@@ -0,0 +1,492 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Path PL\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-11-10 20:50+0200\n"
+"PO-Revision-Date: 2012-11-10 20:50+0200\n"
+"Last-Translator: Sami Keijonen <sami.keijonen@foxnet.fi>\n"
+"Language-Team: Persoft.pl <powrozek@persoft.pl>\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x;esc_attr__;esc_attr_e;"
+"esc_html__;esc_html_e;_n;_x:1,2c\n"
+"X-Poedit-Basepath: ../\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:27
+msgid "What happened!?"
+msgstr "Co się stało!?"
+
+#: 404.php:33
+#, php-format
+msgid ""
+"You tried going to %s, which doesn't exist. You can try navigate or search."
+msgstr "Próbowano znaleźć %s, ale nie istnieje. Spróbuj ponownie."
+
+#: 404.php:39
+msgid "Or here are the latest posts, hope it helps."
+msgstr "Lub zobacz poniżej ostatnie wpisy, mam nadzieję, że pomogą."
+
+#: attachment-image.php:41 content-video.php:37 page-templates/archives.php:40
+#: page-templates/tag-cloud.php:40
+msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Czytaj dalej <span class=\"meta-nav\">&rarr;</span>"
+
+#: attachment-image.php:42 content-aside.php:27 content-aside.php:38
+#: content-audio.php:27 content-audio.php:38 content-gallery.php:27
+#: content-gallery.php:44 content-image.php:27 content-image.php:38
+#: content-link.php:27 content-link.php:48 content-page.php:26
+#: content-page.php:43 content-quote.php:20 content-status.php:22
+#: content-video.php:27 content-video.php:38 content.php:27 content.php:45
+#: page-templates/archives.php:68
+#: page-templates/most-popular-by-comments.php:58
+#: page-templates/most-popular-by-month.php:61
+#: page-templates/most-popular-by-year.php:60
+#: page-templates/most-popular-last-30-days.php:62
+#: page-templates/most-popular.php:59 page-templates/path-slider.php:56
+#: page-templates/tag-cloud.php:46
+msgid "Pages:"
+msgstr "Strony:"
+
+#: attachment-image.php:47
+msgid "Published on [entry-published] [entry-edit-link before=\"| \"]"
+msgstr "Opublikowano [entry-published] [entry-edit-link before=\"| \"]"
+
+#: attachment-image.php:62
+msgid "Gallery"
+msgstr "Galeria"
+
+#: comment.php:31
+msgid "Your comment is awaiting moderation."
+msgstr "Twój komentarz oczekuje na moderację."
+
+#: comments.php:26
+msgid "No Responses"
+msgstr "Brak odpowiedzi"
+
+#: comments.php:26
+msgid "One Response"
+msgstr "Jedna odpowiedź"
+
+#: comments.php:26
+msgid "% Responses"
+msgstr "% odpowiedzi"
+
+#: comments.php:31
+#, php-format
+msgid "Page %1$s of %2$s"
+msgstr "Strona %1$s z %2$s"
+
+#: comments.php:49
+#, php-format
+msgid ""
+"Comments are closed, but <a href=\"%s\" title=\"Trackback URL for this post"
+"\">trackbacks</a> and pingbacks are open."
+msgstr ""
+"Możliwość komentowania jest wyłączona, ale <a href=\"%s\" title=\"Trackback "
+"URL for this post\">trackbacki</a> i pingbacki są włączone."
+
+#: comments.php:55
+msgid "Comments are closed."
+msgstr "Możliwość komentowania jest wyłączona."
+
+#: content-aside.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]"
+msgstr ""
+"[post-format-link] opublikowano [entry-published] [entry-edit-link before="
+"\"| \"]"
+
+#: content-aside.php:31 content-audio.php:31 content-gallery.php:31
+#: content-image.php:31 content-link.php:31 content-video.php:31
+#: content.php:31
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"Tagged \"]"
+msgstr ""
+"[entry-terms taxonomy=\"category\" before=\"Kategorie: \"] [entry-terms "
+"before=\"Tagi: \"]"
+
+#: content-aside.php:42 content-audio.php:42 content-gallery.php:48
+#: content-image.php:42 content-link.php:54 content-quote.php:27
+#: content-video.php:42
+msgid ""
+"[post-format-link] published on [entry-published] [entry-permalink before="
+"\"| \"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+"[post-format-link] opublikowano [entry-published] [entry-permalink before="
+"\"| \"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+
+#: content-audio.php:22 content-gallery.php:22 content-image.php:22
+#: content-link.php:22 content-video.php:22
+msgid ""
+"[post-format-link] published on [entry-published] [entry-comments-link "
+"before=\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+"[post-format-link] opublikowano [entry-published] [entry-comments-link "
+"before=\" | \"] [entry-edit-link before=\" | \"]"
+
+#: content-quote.php:25
+msgid ""
+"[post-format-link] published on [entry-published] [entry-edit-link before="
+"\"| \"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] "
+"[entry-terms before=\"Tagged \"]"
+msgstr ""
+"[post-format-link] opublikowano [entry-published] [entry-edit-link before="
+"\"| \"]<br />[entry-terms taxonomy=\"category\" before=\"Kategorie \"] "
+"[entry-terms before=\"Tagi \"]"
+
+#: content-status.php:27
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-edit-link before=\"| "
+"\"]<br />[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-"
+"terms before=\"Tagged \"]"
+msgstr ""
+"[post-format-link] aktualizowano [entry-published] [entry-edit-link before="
+"\"| \"]<br />[entry-terms taxonomy=\"category\" before=\"Kategorie \"] "
+"[entry-terms before=\"Tagi \"]"
+
+#: content-status.php:29
+msgid ""
+"[post-format-link] updated on [entry-published] [entry-permalink before=\"| "
+"\"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+msgstr ""
+"[post-format-link] aktualizowano [entry-published] [entry-permalink before="
+"\"| \"] [entry-comments-link before=\"| \"] [entry-edit-link before=\"| \"]"
+
+#: content.php:22 content.php:40 sticky-slider.php:45
+#: page-templates/most-popular-by-comments.php:53
+#: page-templates/most-popular-by-month.php:56
+#: page-templates/most-popular-by-year.php:55
+#: page-templates/most-popular-last-30-days.php:57
+#: page-templates/most-popular.php:54 page-templates/path-slider.php:60
+#: page-templates/path-slider.php:110
+msgid ""
+"Published by [entry-author] on [entry-published] [entry-comments-link before="
+"\" | \"] [entry-edit-link before=\" | \"]"
+msgstr ""
+"[entry-author] [entry-published] [entry-comments-link before=\" | \"] [entry-"
+"edit-link before=\" | \"]"
+
+#: content.php:49
+msgid ""
+"[entry-terms taxonomy=\"category\" before=\"Posted in \"] [entry-terms "
+"before=\"| Tagged \"]"
+msgstr ""
+"[entry-terms taxonomy=\"category\" before=\"Kategorie: \"] [entry-terms "
+"before=\"| Tagi: \"]"
+
+#: functions.php:328
+msgid "Copyright &#169; [the-year] [site-link]."
+msgstr "Copyright &#169; [the-year] [site-link]."
+
+#: functions.php:328
+msgid "Powered by [wp-link] and [theme-link]."
+msgstr "Oparte na [wp-link] oraz [theme-link]."
+
+#: functions.php:328
+msgid " <a class=\"top\" href=\"#container\">Back to Top</a>"
+msgstr " <a class=\"top\" href=\"#container\">Do góry</a>"
+
+#: functions.php:339
+msgid "Please comment with your real name using good manners."
+msgstr "Prosimy o komentarz z Twoim prawdziwym imieniem i nazwiskiem."
+
+#: functions.php:350
+msgid "Read more &rarr;"
+msgstr "Więcej &rarr;"
+
+#: functions.php:386
+msgid "Twitter Username"
+msgstr "Użytkownik Twitter"
+
+#: functions.php:405
+msgid "Author of the article"
+msgstr "Autor artykułu"
+
+#: functions.php:405
+msgid "Authors of the article"
+msgstr "Autorzy artykułu"
+
+#: functions.php:422 functions.php:443 functions.php:463
+#, php-format
+msgid "Follow %1$s %2$s &#64;%3$s on Twitter."
+msgstr "Śledź %1$s %2$s &#64;%3$s na Twitterze."
+
+#: functions.php:453
+msgid "Article written by [entry-author]"
+msgstr "Artykuł napisany przez [entry-author]"
+
+#: functions.php:483 functions.php:502
+msgid "and"
+msgstr "i"
+
+#: functions.php:484
+msgid ""
+" [entry-published] [entry-comments-link before=\" | \"] [entry-edit-link "
+"before=\" | \"]"
+msgstr ""
+" [entry-published] [entry-comments-link before=\" | \"] [entry-edit-link "
+"before=\" | \"]"
+
+#: functions.php:503
+msgid " [entry-published]"
+msgstr ""
+
+#: functions.php:550
+msgid "Customize"
+msgstr "Dostosuj"
+
+#: functions.php:571 admin/functions-admin.php:56
+msgid "Layout"
+msgstr "Układ"
+
+#: functions.php:598 admin/functions-admin.php:118
+msgid "Global Layout:"
+msgstr "Główny układ:"
+
+#: header.php:90
+msgid "You are here:"
+msgstr "Jesteś tutaj:"
+
+#: header.php:90
+msgid "&#8764;"
+msgstr "&#8764;"
+
+#: loop-error.php:16
+msgid "Apologies, but no entries were found."
+msgstr ""
+"Nie znaleziono żadnych stron i artykułów w podanym zakresie wyszukiwania."
+
+#: loop-meta.php:86
+#, php-format
+msgid "You are browsing the search results for \"%s\""
+msgstr "Przeglądasz wyniki wyszukiwania dla zapytania \"%s\""
+
+#: loop-meta.php:95
+msgid "Archives by date"
+msgstr "Archiwum wg daty"
+
+#: loop-meta.php:99
+msgid "You are browsing the site archives by date."
+msgstr "Przeglądasz archiwum wg daty"
+
+#: loop-meta.php:123
+msgid "Archives"
+msgstr "Archiwum"
+
+#: loop-meta.php:127
+msgid "You are browsing the site archives."
+msgstr "Przeglądasz archiwum"
+
+#: loop-meta.php:137
+msgid "Most popular"
+msgstr "Najbardziej popularne"
+
+#: loop-meta.php:141
+msgid "You are browsing all time most viewed articles."
+msgstr "Przeglądasz najczęściej oglądane artykuły."
+
+#: loop-meta.php:151
+msgid "Most popular by year"
+msgstr "Najpopularniejsze w roku"
+
+#: loop-meta.php:155
+#, php-format
+msgid "You are browsing most viewed articles in the current year %d."
+msgstr "Przeglądasz najczęściej oglądane artykuły w bieżącym roku %d."
+
+#: loop-meta.php:165
+msgid "Most popular by month"
+msgstr "Najpopularniejsze w miesiącu"
+
+#: loop-meta.php:169
+#, php-format
+msgid ""
+"You are browsing most viewed articles in current month (%1$s) and year "
+"(%2$s)."
+msgstr ""
+"Przeglądasz najczęściej oglądane artykuły w bieżącym miesiącu (%1$s) i roku "
+"(%2$s)."
+
+#: loop-meta.php:179
+msgid "Most popular by comments"
+msgstr "Najczęściej komentowane"
+
+#: loop-meta.php:183
+msgid "You are browsing most viewed articles by comments."
+msgstr "Przeglądasz najczęściej komentowane artykuły."
+
+#: loop-meta.php:193
+msgid "Most popular articles in the last 30 days"
+msgstr "Najpopularniejsze artykuły w ciągu ostatnich 30 dni"
+
+#: loop-meta.php:197
+msgid "You are browsing most viewed articles in the last 30 days."
+msgstr "Przeglądasz najczęściej oglądane artykuły w ostatnich 30 dniach."
+
+#: loop-nav.php:17
+msgid "<span class=\"meta-nav\">&larr;</span> Return to entry"
+msgstr "<span class=\"meta-nav\">&larr;</span> Wróć do wpisu"
+
+#: loop-nav.php:23 loop-nav.php:27 loop-nav.php:29
+msgid "<span class=\"meta-nav\">&larr;</span> Previous"
+msgstr "<span class=\"meta-nav\">&larr;</span> Poprzedni"
+
+#: loop-nav.php:24 loop-nav.php:27 loop-nav.php:29
+msgid "Next <span class=\"meta-nav\">&rarr;</span>"
+msgstr "Następny <span class=\"meta-nav\">&rarr;</span>"
+
+#: menu-primary-mobile.php:24 menu-primary.php:20
+msgid "Primary Menu"
+msgstr "Główne menu"
+
+#: menu-primary.php:20
+msgid "Primary Mobile Menu"
+msgstr "Główne mobilne menu"
+
+#: menu-primary.php:22 searchform.php:16 searchform.php:17
+msgid "Search"
+msgstr "Szukaj"
+
+#: menu-secondary-mobile.php:22 menu-secondary.php:20
+msgid "Secondary Menu"
+msgstr "Drugie menu"
+
+#: menu-secondary.php:20
+msgid "Secondary Mobile Menu"
+msgstr "Drugie mobilne menu"
+
+#: admin/functions-admin.php:36
+msgid "Logo Upload"
+msgstr "Wgraj logo"
+
+#: admin/functions-admin.php:46
+msgid "Background"
+msgstr "Tło"
+
+#: admin/functions-admin.php:74
+msgid "Custom logo:"
+msgstr "Własne logo:"
+
+#: admin/functions-admin.php:77
+#, php-format
+msgid ""
+"Want to replace or remove default logo? <a href=\"%s\">Go to Appearance &gt;"
+"&gt; Header</a>. "
+msgstr ""
+"Chcesz zamienić lub usunąć domyślne logo? <a href=\"%s\">Idź do Ustawienia "
+"&gt;&gt; Nagłówek</a>. "
+
+#: admin/functions-admin.php:94
+msgid "Custom background:"
+msgstr "Własne tło:"
+
+#: admin/functions-admin.php:97
+#, php-format
+msgid ""
+"Want to replace or remove default background? <a href=\"%s\">Go to "
+"Appearance &gt;&gt; Background</a>. "
+msgstr ""
+"Chcesz zmienić lub usunąć domyślne tło? <a href=\"%s\">Idź do Ustawienia &gt;"
+"&gt; Tło</a>. "
+
+#: admin/functions-admin.php:128
+msgid ""
+"Set the layout for the entire site. The default layout is 2 columns with "
+"content on the left. You can overwrite this value in individual post or "
+"page. Note! Three column layouts will only work if you use Primary and "
+"Secondary Widget areas and browser window is wide enough."
+msgstr ""
+"Ustaw układ dla całej witryny.Domyślny układ to 2 kolumny z zawartością po "
+"lewej stronie. Można nadpisać tę wartość w każdym poście lub stronie. Uwaga! "
+"Układ trzech kolumn będzie działać tylko jeśli używasz podstawowego i "
+"dodatkowego obszary Widget i okno przeglądarki jest wystarczająco szerokie."
+
+#: includes/widget-most-viewed.php:32
+msgid "Display top viewed posts."
+msgstr ""
+
+#: includes/widget-most-viewed.php:43 includes/widget-most-viewed.php:178
+msgid "Most Viewed"
+msgstr ""
+
+#: includes/widget-most-viewed.php:110
+msgid "[entry-author] [entry-published]"
+msgstr ""
+
+#: includes/widget-most-viewed.php:197
+msgid "Title:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:202
+msgid "Post Type:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:213
+msgid "Limit:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:218
+msgid "Year:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:223
+msgid "Month:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:232
+msgid "Day:"
+msgstr ""
+
+#: includes/widget-most-viewed.php:242
+msgid "Display Thumbnail?"
+msgstr ""
+
+#: includes/widget-most-viewed.php:247
+msgid "Display Byline?"
+msgstr ""
+
+#: includes/widget-most-viewed.php:252
+msgid "Display Excerpt?"
+msgstr ""
+
+#: page-templates/archives.php:44
+#, php-format
+msgid "There are %1$s posts published."
+msgstr "Opublikowano %1$s postów."
+
+#: page-templates/archives.php:50
+msgid "Archives by category"
+msgstr "Archiwum wg kategorii"
+
+#: page-templates/archives.php:54
+msgid "RSS"
+msgstr "RSS"
+
+#: page-templates/archives.php:58
+msgid "Archives by month"
+msgstr "Archiwum wg miesięcy"
+
+#: page-templates/most-popular-by-comments.php:62
+#: page-templates/most-popular-by-month.php:65
+#: page-templates/most-popular-by-year.php:64
+#: page-templates/most-popular-last-30-days.php:66
+#: page-templates/most-popular.php:63
+msgid ""
+"Views [entry-views] [entry-terms taxonomy=\"category\" before=\"Posted in "
+"\"] [entry-terms before=\"Tagged \"]"
+msgstr ""
+"Wyświetleń [entry-views] [entry-terms taxonomy=\"category\" before="
+"\"Kategorie \"] [entry-terms before=\"Tagi \"]"
+
+#: page-templates/path-slider.php:85
+msgid "More Articles"
+msgstr "Więcej artykułów"
+
+#~ msgid "Next &rarr;"
+#~ msgstr "Następny &rarr;"
diff --git a/wp-content/themes/path/library/admin/admin.php b/wp-content/themes/path/library/admin/admin.php
new file mode 100644
index 0000000000000000000000000000000000000000..ba84ae235fa7547e0566d53c1ffaecedfdde458d
--- /dev/null
+++ b/wp-content/themes/path/library/admin/admin.php
@@ -0,0 +1,129 @@
+<?php
+/**
+ * Theme administration functions used with other components of the framework admin.  This file is for 
+ * setting up any basic features and holding additional admin helper functions.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add the admin setup function to the 'admin_menu' hook. */
+add_action( 'admin_menu', 'hybrid_admin_setup' );
+
+/**
+ * Sets up the adminstration functionality for the framework and themes.
+ *
+ * @since 1.3.0
+ * @return void
+ */
+function hybrid_admin_setup() {
+
+	/* Load the post meta boxes on the new post and edit post screens. */
+	add_action( 'load-post.php', 'hybrid_admin_load_post_meta_boxes' );
+	add_action( 'load-post-new.php', 'hybrid_admin_load_post_meta_boxes' );
+
+	/* Registers admin stylesheets for the framework. */
+	add_action( 'admin_enqueue_scripts', 'hybrid_admin_register_styles', 1 );
+
+	/* Loads admin stylesheets for the framework. */
+	add_action( 'admin_enqueue_scripts', 'hybrid_admin_enqueue_styles' );
+}
+
+/**
+ * Loads the core post meta box files on the 'load-post.php' action hook.  Each meta box file is only loaded if 
+ * the theme declares support for the feature.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_admin_load_post_meta_boxes() {
+
+	/* Load the SEO post meta box. */
+	require_if_theme_supports( 'hybrid-core-seo', trailingslashit( HYBRID_ADMIN ) . 'meta-box-post-seo.php' );
+
+	/* Load the post template meta box. */
+	require_if_theme_supports( 'hybrid-core-template-hierarchy', trailingslashit( HYBRID_ADMIN ) . 'meta-box-post-template.php' );
+}
+
+/**
+ * Registers the framework's 'admin.css' stylesheet file.  The function does not load the stylesheet.  It merely
+ * registers it with WordPress.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_admin_register_styles() {
+	wp_register_style( 'hybrid-core-admin', trailingslashit( HYBRID_CSS ) . 'admin.css', false, '20110512', 'screen' );
+}
+
+/**
+ * Loads the admin.css stylesheet for admin-related features.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_admin_enqueue_styles( $hook_suffix ) {
+
+	/* Load admin styles if on the widgets screen and the current theme supports 'hybrid-core-widgets'. */
+	if ( current_theme_supports( 'hybrid-core-widgets' ) && 'widgets.php' == $hook_suffix )
+		wp_enqueue_style( 'hybrid-core-admin' );
+}
+
+/**
+ * Function for getting an array of available custom templates with a specific header. Ideally, this function 
+ * would be used to grab custom singular post (any post type) templates.  It is a recreation of the WordPress
+ * page templates function because it doesn't allow for other types of templates.
+ *
+ * @since 0.7.0
+ * @param string $post_type The name of the post type to get templates for.
+ * @return array $post_templates The array of templates.
+ */
+function hybrid_get_post_templates( $post_type = 'post' ) {
+
+	/* Set up an empty post templates array. */
+	$post_templates = array();
+
+	/* Get the post type object. */
+	$post_type_object = get_post_type_object( $post_type );
+
+	/* Get the theme (parent theme if using a child theme) object. */
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+
+	/* Get the theme PHP files one level deep. */
+	$files = (array) $theme->get_files( 'php', 1 );
+
+	/* If a child theme is active, get its files and merge with the parent theme files. */
+	if ( is_child_theme() ) {
+		$child = wp_get_theme( get_stylesheet(), get_theme_root( get_stylesheet_directory() ) );
+		$child_files = (array) $child->get_files( 'php', 1 );
+		$files = array_merge( $files, $child_files );
+	}
+
+	/* Loop through each of the PHP files and check if they are post templates. */
+	foreach ( $files as $file => $path ) {
+
+		/* Get file data based on the post type singular name (e.g., "Post Template", "Book Template", etc.). */
+		$headers = get_file_data(
+			$path,
+			array( 
+				"{$post_type_object->name} Template" => "{$post_type_object->name} Template",
+			)
+		);
+
+		/* Continue loop if the header is empty. */
+		if ( empty( $headers["{$post_type_object->name} Template"] ) )
+			continue;
+
+		/* Add the PHP filename and template name to the array. */
+		$post_templates[ $file ] = $headers["{$post_type_object->name} Template"];
+	}
+
+	/* Return array of post templates. */
+	return array_flip( $post_templates );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/admin/meta-box-post-seo.php b/wp-content/themes/path/library/admin/meta-box-post-seo.php
new file mode 100644
index 0000000000000000000000000000000000000000..8fd510c1408922df266a407f0270da7046b343e2
--- /dev/null
+++ b/wp-content/themes/path/library/admin/meta-box-post-seo.php
@@ -0,0 +1,128 @@
+<?php
+/**
+ * Adds the SEO meta box to the post editing screen for public post types.  This feature allows the post author 
+ * to set a custom title, description, and keywords for the post, which will be viewed on the singular post page.  
+ * To use this feature, the theme must support the 'hybrid-core-seo' feature.  The functions in this file create
+ * the SEO meta box and save the settings chosen by the user when the post is saved.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add the post SEO meta box on the 'add_meta_boxes' hook. */
+add_action( 'add_meta_boxes', 'hybrid_meta_box_post_add_seo', 10, 2 );
+add_action( 'add_meta_boxes', 'hybrid_meta_box_post_remove_seo', 10, 2 );
+
+/* Save the post SEO meta box data on the 'save_post' hook. */
+add_action( 'save_post', 'hybrid_meta_box_post_save_seo', 10, 2 );
+
+/**
+ * Adds the post SEO meta box for all public post types.
+ *
+ * @since 1.2.0
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post being edited.
+ * @return void
+ */
+function hybrid_meta_box_post_add_seo( $post_type, $post ) {
+
+	$post_type_object = get_post_type_object( $post_type );
+
+	/* Only add meta box if current user can edit, add, or delete meta for the post. */
+	if ( ( true === $post_type_object->public ) && ( current_user_can( 'edit_post_meta', $post->ID ) || current_user_can( 'add_post_meta', $post->ID ) || current_user_can( 'delete_post_meta', $post->ID ) ) )
+		add_meta_box( 'hybrid-core-post-seo', __( 'SEO', 'hybrid-core' ), 'hybrid_meta_box_post_display_seo', $post_type, 'normal', 'high' );
+}
+
+/**
+ * Remove the meta box from some post types.
+ *
+ * @since 1.3.0
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post being edited.
+ * @return void
+ */ 
+function hybrid_meta_box_post_remove_seo( $post_type, $post ) {
+
+	/* Removes post stylesheets support of the bbPress 'topic' post type. */
+	if ( function_exists( 'bbp_get_topic_post_type' ) && bbp_get_topic_post_type() == $post_type )
+		remove_meta_box( 'hybrid-core-post-seo', bbp_get_topic_post_type(), 'normal' );
+
+	/* Removes post stylesheets support of the bbPress 'reply' post type. */
+	elseif ( function_exists( 'bbp_get_reply_post_type' ) && bbp_get_reply_post_type() == $post_type )
+		remove_meta_box( 'hybrid-core-post-seo', bbp_get_reply_post_type(), 'normal' );
+}
+
+/**
+ * Displays the post SEO meta box.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_meta_box_post_display_seo( $object, $box ) {
+
+	wp_nonce_field( basename( __FILE__ ), 'hybrid-core-post-seo' ); ?>
+
+	<p>
+		<label for="hybrid-document-title"><?php _e( 'Document Title:', 'hybrid-core' ); ?></label>
+		<br />
+		<input type="text" name="hybrid-document-title" id="hybrid-document-title" value="<?php echo esc_attr( get_post_meta( $object->ID, 'Title', true ) ); ?>" size="30" tabindex="30" style="width: 99%;" />
+	</p>
+
+	<p>
+		<label for="hybrid-meta-description"><?php _e( 'Meta Description:', 'hybrid-core' ); ?></label>
+		<br />
+		<textarea name="hybrid-meta-description" id="hybrid-meta-description" cols="60" rows="2" tabindex="30" style="width: 99%;"><?php echo esc_textarea( get_post_meta( $object->ID, 'Description', true ) ); ?></textarea>
+	</p>
+
+	<p>
+		<label for="hybrid-meta-keywords"><?php _e( 'Meta Keywords:', 'hybrid-core' ); ?></label>
+		<br />
+		<input type="text" name="hybrid-meta-keywords" id="hybrid-meta-keywords" value="<?php echo esc_attr( get_post_meta( $object->ID, 'Keywords', true ) ); ?>" size="30" tabindex="30" style="width: 99%;" />
+	</p>
+<?php }
+
+/**
+ * Saves the post SEO meta box settings as post metadata.
+ *
+ * @since 1.2.0
+ * @param int $post_id The ID of the current post being saved.
+ * @param int $post The post object currently being saved.
+ */
+function hybrid_meta_box_post_save_seo( $post_id, $post ) {
+
+	$prefix = hybrid_get_prefix();
+
+	/* Verify the nonce before proceeding. */
+	if ( !isset( $_POST['hybrid-core-post-seo'] ) || !wp_verify_nonce( $_POST['hybrid-core-post-seo'], basename( __FILE__ ) ) )
+		return $post_id;
+
+	$meta = array(
+		'Title' => 	$_POST['hybrid-document-title'],
+		'Description' => 	$_POST['hybrid-meta-description'],
+		'Keywords' => 	$_POST['hybrid-meta-keywords']
+	);
+
+	foreach ( $meta as $meta_key => $new_meta_value ) {
+
+		/* Get the meta value of the custom field key. */
+		$meta_value = get_post_meta( $post_id, $meta_key, true );
+
+		/* If there is no new meta value but an old value exists, delete it. */
+		if ( current_user_can( 'delete_post_meta', $post_id, $meta_key ) && '' == $new_meta_value && $meta_value )
+			delete_post_meta( $post_id, $meta_key, $meta_value );
+
+		/* If a new meta value was added and there was no previous value, add it. */
+		elseif ( current_user_can( 'add_post_meta', $post_id, $meta_key ) && $new_meta_value && '' == $meta_value )
+			add_post_meta( $post_id, $meta_key, $new_meta_value, true );
+
+		/* If the new meta value does not match the old value, update it. */
+		elseif ( current_user_can( 'edit_post_meta', $post_id, $meta_key ) && $new_meta_value && $new_meta_value != $meta_value )
+			update_post_meta( $post_id, $meta_key, $new_meta_value );
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/admin/meta-box-post-template.php b/wp-content/themes/path/library/admin/meta-box-post-template.php
new file mode 100644
index 0000000000000000000000000000000000000000..bcbdbcfd638c0ea2c726148bfefe8a3f68cd9fc2
--- /dev/null
+++ b/wp-content/themes/path/library/admin/meta-box-post-template.php
@@ -0,0 +1,133 @@
+<?php
+/**
+ * Adds the template meta box to the post editing screen for public post types.  This feature allows users and 
+ * devs to create custom templates for any post type, not just pages as default in WordPress core.  The 
+ * functions in this file create the template meta box and save the template chosen by the user when the 
+ * post is saved.  This file is only used if the theme supports the 'hybrid-core-template-hierarchy' feature.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add the post template meta box on the 'add_meta_boxes' hook. */
+add_action( 'add_meta_boxes', 'hybrid_meta_box_post_add_template', 10, 2 );
+add_action( 'add_meta_boxes', 'hybrid_meta_box_post_remove_template', 10, 2 );
+
+/* Save the post template meta box data on the 'save_post' hook. */
+add_action( 'save_post', 'hybrid_meta_box_post_save_template', 10, 2 );
+
+/**
+ * Adds the post template meta box for all public post types, excluding the 'page' post type since WordPress 
+ * core already handles page templates.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_meta_box_post_add_template( $post_type, $post ) {
+
+	$post_type_object = get_post_type_object( $post_type );
+
+	/* Only add meta box if current user can edit, add, or delete meta for the post. */
+	if ( ( true === $post_type_object->public ) && ( current_user_can( 'edit_post_meta', $post->ID ) || current_user_can( 'add_post_meta', $post->ID ) || current_user_can( 'delete_post_meta', $post->ID ) ) )
+		add_meta_box( 'hybrid-core-post-template', __( 'Template', 'hybrid-core' ), 'hybrid_meta_box_post_display_template', $post_type, 'side', 'default' );
+}
+
+/**
+ * Remove the meta box from some post types.
+ *
+ * @since 1.3.0
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post being edited.
+ * @return void
+ */ 
+function hybrid_meta_box_post_remove_template( $post_type, $post ) {
+
+	/* Removes meta box from pages since this is a built-in WordPress feature. */
+	if ( 'page' == $post_type )
+		remove_meta_box( 'hybrid-core-post-template', 'page', 'side' );
+
+	/* Removes meta box from the bbPress 'topic' post type. */
+	elseif ( function_exists( 'bbp_get_topic_post_type' ) && bbp_get_topic_post_type() == $post_type )
+		remove_meta_box( 'hybrid-core-post-template', bbp_get_topic_post_type(), 'side' );
+
+	/* Removes meta box from the bbPress 'reply' post type. */
+	elseif ( function_exists( 'bbp_get_reply_post_type' ) && bbp_get_reply_post_type() == $post_type )
+		remove_meta_box( 'hybrid-core-post-template', bbp_get_reply_post_type(), 'side' );
+}
+
+/**
+ * Displays the post template meta box.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_meta_box_post_display_template( $object, $box ) {
+
+	/* Get the post type object. */
+	$post_type_object = get_post_type_object( $object->post_type );
+
+	/* Get a list of available custom templates for the post type. */
+	$templates = hybrid_get_post_templates( $object->post_type );
+
+	wp_nonce_field( basename( __FILE__ ), 'hybrid-core-post-meta-box-template' ); ?>
+
+	<p>
+		<?php if ( 0 != count( $templates ) ) { ?>
+			<select name="hybrid-post-template" id="hybrid-post-template" class="widefat">
+				<option value=""></option>
+				<?php foreach ( $templates as $label => $template ) { ?>
+					<option value="<?php echo esc_attr( $template ); ?>" <?php selected( esc_attr( get_post_meta( $object->ID, "_wp_{$post_type_object->name}_template", true ) ), esc_attr( $template ) ); ?>><?php echo esc_html( $label ); ?></option>
+				<?php } ?>
+			</select>
+		<?php } else { ?>
+			<?php _e( 'No templates exist for this post type.', 'hybrid-core' ); ?>
+		<?php } ?>
+	</p>
+<?php
+}
+
+/**
+ * Saves the post template meta box settings as post metadata.
+ *
+ * @since 1.2.0
+ * @param int $post_id The ID of the current post being saved.
+ * @param int $post The post object currently being saved.
+ * @return void|int
+ */
+function hybrid_meta_box_post_save_template( $post_id, $post ) {
+
+	/* Verify the nonce before proceeding. */
+	if ( !isset( $_POST['hybrid-core-post-meta-box-template'] ) || !wp_verify_nonce( $_POST['hybrid-core-post-meta-box-template'], basename( __FILE__ ) ) )
+		return $post_id;
+
+	/* Return here if the template is not set. There's a chance it won't be if the post type doesn't have any templates. */
+	if ( !isset( $_POST['hybrid-post-template'] ) )
+		return $post_id;
+
+	/* Get the posted meta value. */
+	$new_meta_value = $_POST['hybrid-post-template'];
+
+	/* Set the $meta_key variable based off the post type name. */
+	$meta_key = "_wp_{$post->post_type}_template";
+
+	/* Get the meta value of the meta key. */
+	$meta_value = get_post_meta( $post_id, $meta_key, true );
+
+	/* If there is no new meta value but an old value exists, delete it. */
+	if ( current_user_can( 'delete_post_meta', $post_id ) && '' == $new_meta_value && $meta_value )
+		delete_post_meta( $post_id, $meta_key, $meta_value );
+
+	/* If a new meta value was added and there was no previous value, add it. */
+	elseif ( current_user_can( 'add_post_meta', $post_id, $meta_key ) && $new_meta_value && '' == $meta_value )
+		add_post_meta( $post_id, $meta_key, $new_meta_value, true );
+
+	/* If the new meta value does not match the old value, update it. */
+	elseif ( current_user_can( 'edit_post_meta', $post_id ) && $new_meta_value && $new_meta_value != $meta_value )
+		update_post_meta( $post_id, $meta_key, $new_meta_value );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/admin/meta-box-theme-about.php b/wp-content/themes/path/library/admin/meta-box-theme-about.php
new file mode 100644
index 0000000000000000000000000000000000000000..43d4eec478b789e1f687355a7ba62dcc0b18783f
--- /dev/null
+++ b/wp-content/themes/path/library/admin/meta-box-theme-about.php
@@ -0,0 +1,94 @@
+<?php
+/**
+ * Creates a meta box for the theme settings page, which displays information about the theme.  If a child 
+ * theme is in use, an additional meta box will be added with its information.  To use this feature, the theme 
+ * must support the 'about' argument for 'hybrid-core-theme-settings' feature.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Create the about theme meta box on the 'add_meta_boxes' hook. */
+add_action( 'add_meta_boxes', 'hybrid_meta_box_theme_add_about' );
+
+/**
+ * Adds the core about theme meta box to the theme settings page.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_meta_box_theme_add_about() {
+
+	/* Get theme information. */
+	$prefix = hybrid_get_prefix();
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+
+	/* Adds the About box for the parent theme. */
+	add_meta_box( 'hybrid-core-about-theme', sprintf( __( 'About %s', 'hybrid-core' ), $theme->get( 'Name' ) ), 'hybrid_meta_box_theme_display_about', hybrid_get_settings_page_name(), 'side', 'high' );
+
+	/* If the user is using a child theme, add an About box for it. */
+	if ( is_child_theme() ) {
+		$child = wp_get_theme( get_stylesheet(), get_theme_root( get_stylesheet_directory() ) );
+		add_meta_box( 'hybrid-core-about-child', sprintf( __( 'About %s', 'hybrid-core' ), $child->get( 'Name' ) ), 'hybrid_meta_box_theme_display_about', hybrid_get_settings_page_name(), 'side', 'high' );
+	}
+}
+
+/**
+ * Creates an information meta box with no settings about the theme. The meta box will display
+ * information about both the parent theme and child theme. If a child theme is active, this function
+ * will be called a second time.
+ *
+ * @since 1.2.0
+ * @param object $object Variable passed through the do_meta_boxes() call.
+ * @param array $box Specific information about the meta box being loaded.
+ * @return void
+ */
+function hybrid_meta_box_theme_display_about( $object, $box ) {
+
+	/* Get theme information. */
+	$prefix = hybrid_get_prefix();
+
+	/* Grab theme information for the parent/child theme. */
+	$theme = ( 'hybrid-core-about-child' == $box['id'] ) ? wp_get_theme( get_stylesheet(), get_theme_root( get_stylesheet_directory() ) ) : wp_get_theme( get_template(), get_theme_root( get_template_directory() ) ); ?>
+
+	<table class="form-table">
+		<tr>
+			<th>
+				<?php _e( 'Theme:', 'hybrid-core' ); ?>
+			</th>
+			<td>
+				<a href="<?php echo esc_url( $theme->get( 'ThemeURI' ) ); ?>" title="<?php echo esc_attr( $theme->get( 'Name' ) ); ?>"><?php echo $theme->get( 'Name' ); ?></a>
+			</td>
+		</tr>
+		<tr>
+			<th>
+				<?php _e( 'Version:', 'hybrid-core' ); ?>
+			</th>
+			<td>
+				<?php echo $theme->get( 'Version' ); ?>
+			</td>
+		</tr>
+		<tr>
+			<th>
+				<?php _e( 'Author:', 'hybrid-core' ); ?>
+			</th>
+			<td>
+				<a href="<?php echo esc_url( $theme->get( 'AuthorURI' ) ); ?>" title="<?php echo esc_attr( $theme->get( 'Author' ) ); ?>"><?php echo $theme->get( 'Author' ); ?></a>
+			</td>
+		</tr>
+		<tr>
+			<th>
+				<?php _e( 'Description:', 'hybrid-core' ); ?>
+			</th>
+			<td>
+				<?php echo $theme->get( 'Description' ); ?>
+			</td>
+		</tr>
+	</table><!-- .form-table --><?php
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/admin/meta-box-theme-footer.php b/wp-content/themes/path/library/admin/meta-box-theme-footer.php
new file mode 100644
index 0000000000000000000000000000000000000000..7a838514d4e780c710ecabb148d2889a4cfb4bca
--- /dev/null
+++ b/wp-content/themes/path/library/admin/meta-box-theme-footer.php
@@ -0,0 +1,74 @@
+<?php
+/**
+ * Creates a meta box for the theme settings page, which holds a textarea for custom footer text within 
+ * the theme.  To use this feature, the theme must support the 'footer' argument for the 
+ * 'hybrid-core-theme-settings' feature.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Create the footer meta box on the 'add_meta_boxes' hook. */
+add_action( 'add_meta_boxes', 'hybrid_meta_box_theme_add_footer' );
+
+/* Sanitize the footer settings before adding them to the database. */
+add_filter( 'sanitize_option_' . hybrid_get_prefix() . '_theme_settings', 'hybrid_meta_box_theme_save_footer' );
+
+/**
+ * Adds the core theme footer meta box to the theme settings page in the admin.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_meta_box_theme_add_footer() {
+
+	add_meta_box( 'hybrid-core-footer', __( 'Footer settings', 'hybrid-core' ), 'hybrid_meta_box_theme_display_footer', hybrid_get_settings_page_name(), 'normal', 'high' );
+}
+
+/**
+ * Creates a meta box that allows users to customize their footer.
+ *
+ * @since 1.2.0
+ * @uses wp_editor() Creates an instance of the WordPress text/content editor.
+ * @return void
+ */
+function hybrid_meta_box_theme_display_footer() {
+
+	/* Add a textarea using the wp_editor() function to make it easier on users to add custom content. */
+	wp_editor(
+		esc_textarea( hybrid_get_setting( 'footer_insert' ) ),	// Editor content.
+		hybrid_settings_field_id( 'footer_insert' ),		// Editor ID.
+		array(
+			'tinymce' => 		false, // Don't use TinyMCE in a meta box.
+			'textarea_name' => 	hybrid_settings_field_name( 'footer_insert' )
+		)
+	); ?>
+
+	<p>
+		<span class="description"><?php _e( 'You can add custom <acronym title="Hypertext Markup Language">HTML</acronym> and/or shortcodes, which will be automatically inserted into your theme.', 'hybrid-core' ); ?></span>
+	</p>
+
+<?php }
+
+/**
+ * Saves the footer meta box settings by filtering the "sanitize_option_{$prefix}_theme_settings" hook.
+ *
+ * @since 1.2.0
+ * @param array $settings Array of theme settings passed by the Settings API for validation.
+ * @return array $settings
+ */
+function hybrid_meta_box_theme_save_footer( $settings ) {
+
+	/* Make sure we kill evil scripts from users without the 'unfiltered_html' cap. */
+	if ( isset( $settings['footer_insert'] ) && !current_user_can( 'unfiltered_html' ) )
+		$settings['footer_insert'] = stripslashes( wp_filter_post_kses( addslashes( $settings['footer_insert'] ) ) );
+
+	/* Return the theme settings. */
+	return $settings;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/admin/theme-settings.php b/wp-content/themes/path/library/admin/theme-settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..1c7da90268b25124e9954557deca62ccbade8ff7
--- /dev/null
+++ b/wp-content/themes/path/library/admin/theme-settings.php
@@ -0,0 +1,319 @@
+<?php
+/**
+ * Handles the display and functionality of the theme settings page. This provides the needed hooks and
+ * meta box calls for developers to create any number of theme settings needed. This file is only loaded if 
+ * the theme supports the 'hybrid-core-theme-settings' feature.
+ *
+ * Provides the ability for developers to add custom meta boxes to the theme settings page by using the 
+ * add_meta_box() function.  Developers should register their meta boxes on the 'add_meta_boxes' hook 
+ * and register the meta box for 'appearance_page_theme-settings'.  To validate/sanitize data from 
+ * custom settings, devs should use the 'sanitize_option_{$prefix}_theme_settings' filter hook.
+ *
+ * @package HybridCore
+ * @subpackage Admin
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Hook the settings page function to 'admin_menu'. */
+add_action( 'admin_menu', 'hybrid_settings_page_init' );
+
+/**
+ * Initializes all the theme settings page functionality. This function is used to create the theme settings 
+ * page, then use that as a launchpad for specific actions that need to be tied to the settings page.
+ *
+ * @since 0.7.0
+ * @global string $hybrid The global theme object.
+ * @return void
+ */
+function hybrid_settings_page_init() {
+	global $hybrid;
+
+	/* Get theme information. */
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+	$prefix = hybrid_get_prefix();
+
+	/* Register theme settings. */
+	register_setting(
+		"{$prefix}_theme_settings",		// Options group.
+		"{$prefix}_theme_settings",		// Database option.
+		'hybrid_save_theme_settings'	// Validation callback function.
+	);
+
+	/* Create the theme settings page. */
+	$hybrid->settings_page = add_theme_page(
+		sprintf( esc_html__( '%s Theme Settings', 'hybrid-core' ), $theme->get( 'Name' ) ),	// Settings page name.
+		esc_html__( 'Theme Settings', 'hybrid-core' ),				// Menu item name.
+		hybrid_settings_page_capability(),					// Required capability.
+		'theme-settings',							// Screen name.
+		'hybrid_settings_page'						// Callback function.
+	);
+
+	/* Check if the settings page is being shown before running any functions for it. */
+	if ( !empty( $hybrid->settings_page ) ) {
+
+		/* Filter the settings page capability so that it recognizes the 'edit_theme_options' cap. */
+		add_filter( "option_page_capability_{$prefix}_theme_settings", 'hybrid_settings_page_capability' );
+
+		/* Add help tabs to the theme settings page. */
+		add_action( "load-{$hybrid->settings_page}", 'hybrid_settings_page_help' );
+
+		/* Load the theme settings meta boxes. */
+		add_action( "load-{$hybrid->settings_page}", 'hybrid_load_settings_page_meta_boxes' );
+
+		/* Create a hook for adding meta boxes. */
+		add_action( "load-{$hybrid->settings_page}", 'hybrid_settings_page_add_meta_boxes' );
+
+		/* Load the JavaScript and stylesheets needed for the theme settings screen. */
+		add_action( 'admin_enqueue_scripts', 'hybrid_settings_page_enqueue_scripts' );
+		add_action( 'admin_enqueue_scripts', 'hybrid_settings_page_enqueue_styles' );
+		add_action( "admin_footer-{$hybrid->settings_page}", 'hybrid_settings_page_load_scripts' );
+	}
+}
+
+/**
+ * Returns the required capability for viewing and saving theme settings.
+ *
+ * @since 1.2.0
+ * @return string
+ */
+function hybrid_settings_page_capability() {
+	return apply_filters( hybrid_get_prefix() . '_settings_capability', 'edit_theme_options' );
+}
+
+/**
+ * Returns the theme settings page name/hook as a string.
+ *
+ * @since 1.2.0
+ * @return string
+ */
+function hybrid_get_settings_page_name() {
+	global $hybrid;
+
+	return ( isset( $hybrid->settings_page ) ? $hybrid->settings_page : 'appearance_page_theme-settings' );
+}
+
+/**
+ * Provides a hook for adding meta boxes as seen on the post screen in the WordPress admin.  This addition 
+ * is needed because normal plugin/theme pages don't have this hook by default.  The other goal of this 
+ * function is to provide a way for themes to load and execute meta box code only on the theme settings 
+ * page in the admin.  This way, they're not needlessly loading extra files.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_settings_page_add_meta_boxes() {
+
+	do_action( 'add_meta_boxes', hybrid_get_settings_page_name() );
+}
+
+/**
+ * Loads the meta boxes packaged with the framework on the theme settings page.  These meta boxes are 
+ * merely loaded with this function.  Meta boxes are only loaded if the feature is supported by the theme.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_load_settings_page_meta_boxes() {
+
+	/* Get theme-supported meta boxes for the settings page. */
+	$supports = get_theme_support( 'hybrid-core-theme-settings' );
+
+	/* If there are any supported meta boxes, load them. */
+	if ( is_array( $supports[0] ) ) {
+
+		/* Load the 'About' meta box if it is supported. */
+		if ( in_array( 'about', $supports[0] ) )
+			require_once( trailingslashit( HYBRID_ADMIN ) . 'meta-box-theme-about.php' );
+
+		/* Load the 'Footer' meta box if it is supported. */
+		if ( in_array( 'footer', $supports[0] ) )
+			require_once( trailingslashit( HYBRID_ADMIN ) . 'meta-box-theme-footer.php' );
+	}
+}
+
+/**
+ * Validation/Sanitization callback function for theme settings.  This just returns the data passed to it.  Theme
+ * developers should validate/sanitize their theme settings on the "sanitize_option_{$prefix}_theme_settings" 
+ * hook.  This function merely exists for backwards compatibility.
+ *
+ * @since 0.7.0
+ * @param array $settings An array of the theme settings passed by the Settings API for validation.
+ * @return array $settings The array of theme settings.
+ */
+function hybrid_save_theme_settings( $settings ) {
+
+	/* @deprecated 1.0.0. Developers should filter "sanitize_option_{$prefix}_theme_settings" instead. */
+	return apply_filters( hybrid_get_prefix() . '_validate_theme_settings', $settings );
+}
+
+/**
+ * Displays the theme settings page and calls do_meta_boxes() to allow additional settings
+ * meta boxes to be added to the page.
+ *
+ * @since 0.7.0
+ * @return void
+ */
+function hybrid_settings_page() {
+
+	/* Get the theme information. */
+	$prefix = hybrid_get_prefix();
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+
+	do_action( "{$prefix}_before_settings_page" ); ?>
+
+	<div class="wrap">
+
+		<?php screen_icon(); ?>
+		<h2>
+			<?php printf( __( '%s Theme Settings', 'hybrid-core' ), $theme->get( 'Name' ) ); ?>
+			<a href="<?php echo admin_url( 'customize.php' ); ?>" class="add-new-h2"><?php esc_html_e( 'Customize', 'hybrid-core' ); ?></a>
+		</h2>
+		<?php settings_errors(); ?>
+
+		<?php do_action( "{$prefix}_open_settings_page" ); ?>
+
+		<div class="hybrid-core-settings-wrap">
+
+			<form method="post" action="options.php">
+
+				<?php settings_fields( "{$prefix}_theme_settings" ); ?>
+				<?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
+				<?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
+
+				<div class="metabox-holder">
+					<div class="post-box-container column-1 normal">
+						<?php do_meta_boxes( hybrid_get_settings_page_name(), 'normal', null ); ?>
+					</div>
+					<div class="post-box-container column-2 side">
+						<?php do_meta_boxes( hybrid_get_settings_page_name(), 'side', null ); ?>
+					</div>
+					<div class="post-box-container column-3 advanced">
+						<?php do_meta_boxes( hybrid_get_settings_page_name(), 'advanced', null ); ?>
+					</div>
+				</div>
+
+				<?php submit_button( esc_attr__( 'Update Settings', 'hybrid-core' ) ); ?>
+
+			</form>
+
+		</div><!-- .hybrid-core-settings-wrap -->
+
+		<?php do_action( "{$prefix}_close_settings_page" ); ?>
+
+	</div><!-- .wrap --><?php
+
+	do_action( "{$prefix}_after_settings_page" );
+}
+
+/**
+ * Creates a settings field id attribute for use on the theme settings page.  This is a helper function for use
+ * with the WordPress settings API.
+ *
+ * @since 1.0.0
+ * @return string
+ */
+function hybrid_settings_field_id( $setting ) {
+	return hybrid_get_prefix() . '_theme_settings-' . sanitize_html_class( $setting );
+}
+
+/**
+ * Creates a settings field name attribute for use on the theme settings page.  This is a helper function for 
+ * use with the WordPress settings API.
+ *
+ * @since 1.0.0
+ * @return string
+ */
+function hybrid_settings_field_name( $setting ) {
+	return hybrid_get_prefix() . "_theme_settings[{$setting}]";
+}
+
+/**
+ * Adds a help tab to the theme settings screen if the theme has provided a 'Documentation URI' and/or 
+ * 'Support URI'.  Theme developers can add custom help tabs using get_current_screen()->add_help_tab().
+ *
+ * @since 1.3.0
+ * @return void
+ */
+function hybrid_settings_page_help() {
+
+	/* Get the parent theme data. */
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+	$doc_uri = $theme->get( 'Documentation URI' );
+	$support_uri = $theme->get( 'Support URI' );
+
+	/* If the theme has provided a documentation or support URI, add them to the help text. */
+	if ( !empty( $doc_uri ) || !empty( $support_uri ) ) {
+
+		/* Open an unordered list for the help text. */
+		$help = '<ul>';
+
+		/* Add the Documentation URI. */
+		if ( !empty( $doc_uri ) )
+			$help .= '<li><a href="' . esc_url( $doc_uri ) . '">' . __( 'Documentation', 'hybrid-core' ) . '</a></li>';
+
+		/* Add the Support URI. */
+		if ( !empty( $support_uri ) )
+			$help .= '<li><a href="' . esc_url( $support_uri ) . '">' . __( 'Support', 'hybrid-core' ) . '</a></li>';
+
+		/* Close the unordered list for the help text. */
+		$help .= '</ul>';
+
+		/* Add a help tab with links for documentation and support. */
+		get_current_screen()->add_help_tab(
+			array(
+				'id' => 'default',
+				'title' => esc_attr( $theme->get( 'Name' ) ),
+				'content' => $help
+			)
+		);
+	}
+}
+
+/**
+ * Loads the required stylesheets for displaying the theme settings page in the WordPress admin.
+ *
+ * @since 1.2.0
+ * @return void
+ */
+function hybrid_settings_page_enqueue_styles( $hook_suffix ) {
+
+	/* Load admin stylesheet if on the theme settings screen. */
+	if ( $hook_suffix == hybrid_get_settings_page_name() )
+		wp_enqueue_style( 'hybrid-core-admin' );
+}
+
+/**
+ * Loads the JavaScript files required for managing the meta boxes on the theme settings
+ * page, which allows users to arrange the boxes to their liking.
+ *
+ * @since 1.2.0
+ * @param string $hook_suffix The current page being viewed.
+ * @return void
+ */
+function hybrid_settings_page_enqueue_scripts( $hook_suffix ) {
+
+	if ( $hook_suffix == hybrid_get_settings_page_name() )
+		wp_enqueue_script( 'postbox' );
+}
+
+/**
+ * Loads the JavaScript required for toggling the meta boxes on the theme settings page.
+ *
+ * @since 0.7.0
+ * @return void
+ */
+function hybrid_settings_page_load_scripts() { ?>
+	<script type="text/javascript">
+		//<![CDATA[
+		jQuery(document).ready( function($) {
+			$('.if-js-closed').removeClass('if-js-closed').addClass('closed');
+			postboxes.add_postbox_toggles( '<?php echo hybrid_get_settings_page_name(); ?>' );
+		});
+		//]]>
+	</script><?php
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/customize-control-textarea.php b/wp-content/themes/path/library/classes/customize-control-textarea.php
new file mode 100644
index 0000000000000000000000000000000000000000..bd136514b303067860ea1fe0023be0f2192d0aaf
--- /dev/null
+++ b/wp-content/themes/path/library/classes/customize-control-textarea.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * The textarea customize control extends the WP_Customize_Control class.  This class allows 
+ * developers to create textarea settings within the WordPress theme customizer.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Textarea customize control class.
+ *
+ * @since 1.4.0
+ */
+class Hybrid_Customize_Control_Textarea extends WP_Customize_Control {
+
+	/**
+	 * The type of customize control being rendered.
+	 *
+	 * @since 1.4.0
+	 */
+	public $type = 'textarea';
+
+	/**
+	 * Displays the textarea on the customize screen.
+	 *
+	 * @since 1.4.0
+	 */
+	public function render_content() { ?>
+		<label>
+			<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
+			<div class="customize-control-content">
+				<textarea class="widefat" cols="45" rows="5" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
+			</div>
+		</label>
+	<?php }
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-archives.php b/wp-content/themes/path/library/classes/widget-archives.php
new file mode 100644
index 0000000000000000000000000000000000000000..4c59866d373581ef1e28af983c5266722cdc1f38
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-archives.php
@@ -0,0 +1,206 @@
+<?php
+/**
+ * The Archives widget replaces the default WordPress Archives widget. This version gives total
+ * control over the output to the user by allowing the input of all the arguments typically seen
+ * in the wp_get_archives() function.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Archives widget class.
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Archives extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'archives',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your archives.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 525,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-archives',			// $this->id_base
+			__( 'Archives', 'hybrid-core' ),	// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_get_archives() to the $instance array. */
+		$args = $instance;
+
+		/* Overwrite the $echo argument and set it to false. */
+		$args['echo'] = false;
+
+		/* Output the theme's $before_widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Get the archives list. */
+		$archives = str_replace( array( "\r", "\n", "\t" ), '', wp_get_archives( $args ) );
+
+		/* If the archives should be shown in a <select> drop-down. */
+		if ( 'option' == $args['format'] ) {
+
+			/* Create a title for the drop-down based on the archive type. */
+			if ( 'yearly' == $args['type'] )
+				$option_title = esc_html__( 'Select Year', 'hybrid-core' );
+
+			elseif ( 'monthly' == $args['type'] )
+				$option_title = esc_html__( 'Select Month', 'hybrid-core' );
+
+			elseif ( 'weekly' == $args['type'] )
+				$option_title = esc_html__( 'Select Week', 'hybrid-core' );
+
+			elseif ( 'daily' == $args['type'] )
+				$option_title = esc_html__( 'Select Day', 'hybrid-core' );
+
+			elseif ( 'postbypost' == $args['type'] || 'alpha' == $args['type'] )
+				$option_title = esc_html__( 'Select Post', 'hybrid-core' );
+
+			/* Output the <select> element and each <option>. */
+			echo '<p><select name="archive-dropdown" onchange=\'document.location.href=this.options[this.selectedIndex].value;\'>';
+				echo '<option value="">' . $option_title . '</option>';
+				echo $archives;
+			echo '</select></p>';
+		}
+
+		/* If the format should be an unordered list. */
+		elseif ( 'html' == $args['format'] ) {
+			echo '<ul class="xoxo archives">' . $archives . '</ul><!-- .xoxo .archives -->';
+		}
+
+		/* All other formats. */
+		else {
+			echo $archives;
+		}
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['before'] = strip_tags( $new_instance['before'] );
+		$instance['after'] = strip_tags( $new_instance['after'] );
+		$instance['limit'] = strip_tags( $new_instance['limit'] );
+		$instance['show_post_count'] = ( isset( $new_instance['show_post_count'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Archives', 'hybrid-core' ),
+			'limit' => 10,
+			'type' => 'monthly',
+			'format' => 'html',
+			'before' => '',
+			'after' => '',
+			'show_post_count' => false
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		/* Create an array of archive types. */
+		$type = array( 'alpha' => esc_attr__( 'Alphabetical', 'hybrid-core' ), 'daily' => esc_attr__( 'Daily', 'hybrid-core' ), 'monthly' => esc_attr__( 'Monthly', 'hybrid-core' ),'postbypost' => esc_attr__( 'Post By Post', 'hybrid-core' ), 'weekly' => esc_attr__( 'Weekly', 'hybrid-core' ), 'yearly' => esc_attr__( 'Yearly', 'hybrid-core' ) );
+
+		/* Create an array of archive formats. */
+		$format = array( 'custom' => esc_attr__( 'Custom', 'hybrid-core' ), 'html' => esc_attr__( 'HTML', 'hybrid-core' ), 'option' => esc_attr__( 'Option', 'hybrid-core' ) );
+		?>
+
+		<div class="hybrid-widget-controls columns-2">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'limit' ); ?>"><code>limit</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo esc_attr( $instance['limit'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'type' ); ?>"><code>type</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'type' ); ?>" name="<?php echo $this->get_field_name( 'type' ); ?>">
+				<?php foreach ( $type as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['type'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'format' ); ?>"><code>format</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'format' ); ?>" name="<?php echo $this->get_field_name( 'format' ); ?>">
+				<?php foreach ( $format as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['format'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-2 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'before' ); ?>"><code>before</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'before' ); ?>" name="<?php echo $this->get_field_name( 'before' ); ?>" value="<?php echo esc_attr( $instance['before'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'after' ); ?>"><code>after</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'after' ); ?>" name="<?php echo $this->get_field_name( 'after' ); ?>" value="<?php echo esc_attr( $instance['after'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_post_count' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_post_count'], true ); ?> id="<?php echo $this->get_field_id( 'show_post_count' ); ?>" name="<?php echo $this->get_field_name( 'show_post_count' ); ?>" /> <?php _e( 'Show post count?', 'hybrid-core' ); ?> <code>show_post_count</code></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-authors.php b/wp-content/themes/path/library/classes/widget-authors.php
new file mode 100644
index 0000000000000000000000000000000000000000..4929e290e988b6148962a51c49a0355f66998f6a
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-authors.php
@@ -0,0 +1,211 @@
+<?php
+/**
+ * The authors widget was created to give users the ability to list the authors of their blog because
+ * there was no equivalent WordPress widget that offered the functionality. This widget allows full
+ * control over its output by giving access to the parameters of wp_list_authors().
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Authors Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Authors extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'authors',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your author lists.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 525,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-authors',			// $this->id_base
+			__( 'Authors', 'hybrid-core' ),	// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_list_authors() to the $instance array. */
+		$args = $instance;
+
+		/* Overwrite the $echo argument and set it to false. */
+		$args['echo'] = false;
+
+		/* Output the theme's $before_widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Get the authors list. */
+		$authors = str_replace( array( "\r", "\n", "\t" ), '', wp_list_authors( $args ) );
+
+		/* If 'list' is the style and the output should be HTML, wrap the authors in a <ul>. */
+		if ( 'list' == $args['style'] && $args['html'] )
+			$authors = '<ul class="xoxo authors">' . $authors . '</ul><!-- .xoxo .authors -->';
+
+		/* Display the authors list. */
+		echo $authors;
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['feed'] = strip_tags( $new_instance['feed'] );
+		$instance['order'] = strip_tags( $new_instance['order'] );
+		$instance['orderby'] = strip_tags( $new_instance['orderby'] );
+		$instance['number'] = strip_tags( $new_instance['number'] );
+
+		$instance['html'] = ( isset( $new_instance['html'] ) ? 1 : 0 );
+		$instance['optioncount'] = ( isset( $new_instance['optioncount'] ) ? 1 : 0 );
+		$instance['exclude_admin'] = ( isset( $new_instance['exclude_admin'] ) ? 1 : 0 );
+		$instance['show_fullname'] = ( isset( $new_instance['show_fullname'] ) ? 1 : 0 );
+		$instance['hide_empty'] = ( isset( $new_instance['hide_empty'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Authors', 'hybrid-core' ),
+			'order' => 'ASC',
+			'orderby' => 'display_name',
+			'number' => '',
+			'optioncount' => false,
+			'exclude_admin' => false,
+			'show_fullname' => true,
+			'hide_empty' => true,
+			'style' => 'list',
+			'html' => true,
+			'feed' => '',
+			'feed_image' => ''
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		$order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ) );
+		$orderby = array( 'display_name' => esc_attr__( 'Display Name', 'hybrid-core' ), 'email' => esc_attr__( 'Email', 'hybrid-core' ), 'ID' => esc_attr__( 'ID', 'hybrid-core' ), 'nicename' => esc_attr__( 'Nice Name', 'hybrid-core' ), 'post_count' => esc_attr__( 'Post Count', 'hybrid-core' ), 'registered' => esc_attr__( 'Registered', 'hybrid-core' ), 'url' => esc_attr__( 'URL', 'hybrid-core' ), 'user_login' => esc_attr__( 'Login', 'hybrid-core' ) );
+
+		?>
+
+		<div class="hybrid-widget-controls columns-2">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'order' ); ?>"><code>order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'order' ); ?>" name="<?php echo $this->get_field_name( 'order' ); ?>">
+				<?php foreach ( $order as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['order'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><code>orderby</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'orderby' ); ?>" name="<?php echo $this->get_field_name( 'orderby' ); ?>">
+				<?php foreach ( $orderby as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['orderby'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><code>number</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo esc_attr( $instance['number'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'style' ); ?>"><code>style</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'style' ); ?>" name="<?php echo $this->get_field_name( 'style' ); ?>">
+				<?php foreach ( array( 'list' => esc_attr__( 'List', 'hybrid-core'), 'none' => esc_attr__( 'None', 'hybrid-core' ) ) as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['style'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-2 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'feed' ); ?>"><code>feed</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'feed' ); ?>" name="<?php echo $this->get_field_name( 'feed' ); ?>" value="<?php echo esc_attr( $instance['feed'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'feed_image' ); ?>"><code>feed_image</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'feed_image' ); ?>" name="<?php echo $this->get_field_name( 'feed_image' ); ?>" value="<?php echo esc_attr( $instance['feed_image'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'html' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['html'], true ); ?> id="<?php echo $this->get_field_id( 'html' ); ?>" name="<?php echo $this->get_field_name( 'html' ); ?>" /> <?php _e( '<acronym title="Hypertext Markup Language">HTML</acronym>?', 'hybrid-core' ); ?> <code>html</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'optioncount' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['optioncount'], true ); ?> id="<?php echo $this->get_field_id( 'optioncount' ); ?>" name="<?php echo $this->get_field_name( 'optioncount' ); ?>" /> <?php _e( 'Show post count?', 'hybrid-core' ); ?> <code>optioncount</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude_admin' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['exclude_admin'], true ); ?> id="<?php echo $this->get_field_id( 'exclude_admin' ); ?>" name="<?php echo $this->get_field_name( 'exclude_admin' ); ?>" /> <?php _e( 'Exclude admin?', 'hybrid-core' ); ?> <code>exclude_admin</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_fullname' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_fullname'], true ); ?> id="<?php echo $this->get_field_id( 'show_fullname' ); ?>" name="<?php echo $this->get_field_name( 'show_fullname' ); ?>" /> <?php _e( 'Show full name?', 'hybrid-core' ); ?> <code>show_fullname</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hide_empty' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hide_empty'], true ); ?> id="<?php echo $this->get_field_id( 'hide_empty' ); ?>" name="<?php echo $this->get_field_name( 'hide_empty' ); ?>" /> <?php _e( 'Hide empty?', 'hybrid-core' ); ?> <code>hide_empty</code></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-bookmarks.php b/wp-content/themes/path/library/classes/widget-bookmarks.php
new file mode 100644
index 0000000000000000000000000000000000000000..d3789ddb78ec8e1ecc5a2acd312c66cc0789a557
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-bookmarks.php
@@ -0,0 +1,326 @@
+<?php
+/**
+ * The Bookmarks widget replaces the default WordPress Links widget. This version gives total
+ * control over the output to the user by allowing the input of all the arguments typically seen
+ * in the wp_list_bookmarks() function.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Bookmarks Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Bookmarks extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'bookmarks',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your bookmarks (links).', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 800,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-bookmarks',		// $this->id_base
+			__( 'Bookmarks', 'hybrid-core' ),	// $this->name	
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set up the $before_widget ID for multiple widgets created by the bookmarks widget. */
+		if ( !empty( $instance['categorize'] ) )
+			$before_widget = preg_replace( '/id="[^"]*"/','id="%id"', $before_widget );
+
+		/* Add a class to $before_widget if one is set. */
+		if ( !empty( $instance['class'] ) )
+			$before_widget = str_replace( 'class="', 'class="' . esc_attr( $instance['class'] ) . ' ', $before_widget );
+
+		/* Set the $args for wp_list_bookmarks() to the $instance array. */
+		$args = $instance;
+
+		/* wp_list_bookmarks() hasn't been updated in WP to use wp_parse_id_list(), so we have to pass strings for includes/excludes. */
+		if ( !empty( $args['category'] ) && is_array( $args['category'] ) )
+			$args['category'] = join( ', ', $args['category'] );
+
+		if ( !empty( $args['exclude_category'] ) && is_array( $args['exclude_category'] ) )
+			$args['exclude_category'] = join( ', ', $args['exclude_category'] );
+
+		if ( !empty( $args['include'] ) && is_array( $args['include'] ) )
+			$args['include'] = join( ',', $args['include'] );
+
+		if ( !empty( $args['exclude'] ) && is_array( $args['exclude'] ) )
+			$args['exclude'] = join( ',', $args['exclude'] );
+
+		/* If no limit is given, set it to -1. */
+		$args['limit'] = empty( $args['limit'] ) ? -1 : $args['limit'];
+
+		/* Some arguments must be set to the sidebar arguments to be output correctly. */
+		$args['title_li'] = apply_filters( 'widget_title', ( empty( $args['title_li'] ) ? __( 'Bookmarks', 'hybrid-core' ) : $args['title_li'] ), $instance, $this->id_base );
+		$args['title_before'] = $before_title;
+		$args['title_after'] = $after_title;
+		$args['category_before'] = $before_widget;
+		$args['category_after'] = $after_widget;
+		$args['category_name'] = '';
+		$args['echo'] = false;
+
+		/* Output the bookmarks widget. */
+		$bookmarks = str_replace( array( "\r", "\n", "\t" ), '', wp_list_bookmarks( $args ) );
+
+		/* If no title is given and the bookmarks aren't categorized, add a wrapper <ul>. */
+		if ( empty( $args['title_li'] ) && false === $args['categorize'] )
+			$bookmarks = '<ul class="xoxo bookmarks">' . $bookmarks . '</ul>';
+
+		/* Output the bookmarks. */
+		echo $bookmarks;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		/* Set the instance to the new instance. */
+		$instance = $new_instance;
+
+		$instance['title_li'] = strip_tags( $new_instance['title_li'] );
+		$instance['limit'] = strip_tags( $new_instance['limit'] );
+		$instance['class'] = strip_tags( $new_instance['class'] );
+		$instance['search'] = strip_tags( $new_instance['search'] );
+		$instance['category_order'] = $new_instance['category_order'];
+		$instance['category_orderby'] = $new_instance['category_orderby'];
+		$instance['orderby'] = $new_instance['orderby'];
+		$instance['order'] = $new_instance['order'];
+		$instance['between'] = $new_instance['between'];
+		$instance['link_before'] = $new_instance['link_before'];
+		$instance['link_after'] = $new_instance['link_after'];
+
+		$instance['categorize'] = ( isset( $new_instance['categorize'] ) ? 1 : 0 );
+		$instance['hide_invisible'] = ( isset( $new_instance['hide_invisible'] ) ? 1 : 0 );
+		$instance['show_private'] = ( isset( $new_instance['show_private'] ) ? 1 : 0 );
+		$instance['show_rating'] = ( isset( $new_instance['show_rating'] ) ? 1 : 0 );
+		$instance['show_updated'] = ( isset( $new_instance['show_updated'] ) ? 1 : 0 );
+		$instance['show_images'] = ( isset( $new_instance['show_images'] ) ? 1 : 0 );
+		$instance['show_name'] = ( isset( $new_instance['show_name'] ) ? 1 : 0 );
+		$instance['show_description'] = ( isset( $new_instance['show_description'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title_li' => esc_attr__( 'Bookmarks', 'hybrid-core' ),
+			'categorize' => true,
+			'category_order' => 'ASC',
+			'category_orderby' => 'name',
+			'category' => array(),
+			'exclude_category' => array(),
+			'limit' => -1,
+			'order' => 'ASC',
+			'orderby' => 'name',
+			'include' => array(),
+			'exclude' => array(),
+			'search' => '',
+			'hide_invisible' => true,
+			'show_description' => false,
+			'show_images' => false,
+			'show_rating' => false,
+			'show_updated' => false,
+			'show_private' => false,
+			'show_name' => false,
+			'class' => 'linkcat',
+			'link_before' => '<span>',
+			'link_after' => '</span>',
+			'between' => '<br />',
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		$terms = get_terms( 'link_category' );
+		$bookmarks = get_bookmarks( array( 'hide_invisible' => false ) );
+		$category_order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ) );
+		$category_orderby = array( 'count' => esc_attr__( 'Count', 'hybrid-core' ), 'ID' => esc_attr__( 'ID', 'hybrid-core' ), 'name' => esc_attr__( 'Name', 'hybrid-core' ), 'slug' => esc_attr__( 'Slug', 'hybrid-core' ) );
+		$order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ) );
+		$orderby = array( 'id' => esc_attr__( 'ID', 'hybrid-core' ), 'description' => esc_attr__( 'Description',  'hybrid-core' ), 'length' => esc_attr__( 'Length',  'hybrid-core' ), 'name' => esc_attr__( 'Name',  'hybrid-core' ), 'notes' => esc_attr__( 'Notes',  'hybrid-core' ), 'owner' => esc_attr__( 'Owner',  'hybrid-core' ), 'rand' => esc_attr__( 'Random',  'hybrid-core' ), 'rating' => esc_attr__( 'Rating',  'hybrid-core' ), 'rel' => esc_attr__( 'Rel',  'hybrid-core' ), 'rss' => esc_attr__( 'RSS',  'hybrid-core' ), 'target' => esc_attr__( 'Target',  'hybrid-core' ), 'updated' => esc_attr__( 'Updated',  'hybrid-core' ), 'url' => esc_attr__( 'URL',  'hybrid-core' ) );
+
+		?>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title_li' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title_li' ); ?>" name="<?php echo $this->get_field_name( 'title_li' ); ?>" value="<?php echo esc_attr( $instance['title_li'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'category_order' ); ?>"><code>category_order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'category_order' ); ?>" name="<?php echo $this->get_field_name( 'category_order' ); ?>">
+				<?php foreach ( $category_order as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['category_order'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'category_orderby' ); ?>"><code>category_orderby</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'category_orderby' ); ?>" name="<?php echo $this->get_field_name( 'category_orderby' ); ?>">
+				<?php foreach ( $category_orderby as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['category_orderby'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'category' ); ?>"><code>category</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'category' ); ?>" name="<?php echo $this->get_field_name( 'category' ); ?>[]" size="4" multiple="multiple">
+				<?php foreach ( $terms as $term ) { ?>
+					<option value="<?php echo esc_attr( $term->term_id ); ?>" <?php echo ( in_array( $term->term_id, (array) $instance['category'] ) ? 'selected="selected"' : '' ); ?>><?php echo esc_html( $term->name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude_category' ); ?>"><code>exclude_category</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'exclude_category' ); ?>" name="<?php echo $this->get_field_name( 'exclude_category' ); ?>[]" size="4" multiple="multiple">
+				<?php foreach ( $terms as $term ) { ?>
+					<option value="<?php echo esc_attr( $term->term_id ); ?>" <?php echo ( in_array( $term->term_id, (array) $instance['exclude_category'] ) ? 'selected="selected"' : '' ); ?>><?php echo esc_html( $term->name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'class' ); ?>"><code>class</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'class' ); ?>" name="<?php echo $this->get_field_name( 'class' ); ?>" value="<?php echo esc_attr( $instance['class'] ); ?>" />
+		</p>
+
+		</div>
+
+		<div class="hybrid-widget-controls columns-3">
+
+		<p>
+			<label for="<?php echo $this->get_field_id( 'limit' ); ?>"><code>limit</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo esc_attr( $instance['limit'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'order' ); ?>"><code>order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'order' ); ?>" name="<?php echo $this->get_field_name( 'order' ); ?>">
+				<?php foreach ( $order as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['order'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><code>orderby</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'orderby' ); ?>" name="<?php echo $this->get_field_name( 'orderby' ); ?>">
+				<?php foreach ( $orderby as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['orderby'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'include' ); ?>"><code>include</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'include' ); ?>" name="<?php echo $this->get_field_name( 'include' ); ?>[]" size="4" multiple="multiple">
+				<?php foreach ( $bookmarks as $bookmark ) { ?>
+					<option value="<?php echo esc_attr( $bookmark->link_id ); ?>" <?php echo ( in_array( $bookmark->link_id, (array) $instance['include'] ) ? 'selected="selected"' : '' ); ?>><?php echo esc_html( $bookmark->link_name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude' ); ?>"><code>exclude</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'exclude' ); ?>" name="<?php echo $this->get_field_name( 'exclude' ); ?>[]" size="4" multiple="multiple">
+				<?php foreach ( $bookmarks as $bookmark ) { ?>
+					<option value="<?php echo esc_attr( $bookmark->link_id ); ?>" <?php echo ( in_array( $bookmark->link_id, (array) $instance['exclude'] ) ? 'selected="selected"' : '' ); ?>><?php echo esc_html( $bookmark->link_name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search' ); ?>"><code>search</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'search' ); ?>" name="<?php echo $this->get_field_name( 'search' ); ?>" value="<?php echo esc_attr( $instance['search'] ); ?>" />
+		</p>
+
+		</div>
+
+		<div class="hybrid-widget-controls columns-3 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'between' ); ?>"><code>between</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'between' ); ?>" name="<?php echo $this->get_field_name( 'between' ); ?>" value="<?php echo esc_attr( $instance['between'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_before' ); ?>"><code>link_before</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_before' ); ?>" name="<?php echo $this->get_field_name( 'link_before' ); ?>" value="<?php echo esc_attr( $instance['link_before'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_after' ); ?>"><code>link_after</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_after' ); ?>" name="<?php echo $this->get_field_name( 'link_after' ); ?>" value="<?php echo esc_attr( $instance['link_after'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'categorize' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['categorize'], true ); ?> id="<?php echo $this->get_field_id( 'categorize' ); ?>" name="<?php echo $this->get_field_name( 'categorize' ); ?>" /> <?php _e( 'Categorize?', 'hybrid-core' ); ?> <code>categorize</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_description' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_description'], true ); ?> id="<?php echo $this->get_field_id( 'show_description' ); ?>" name="<?php echo $this->get_field_name( 'show_description' ); ?>" /> <?php _e( 'Show description?', 'hybrid-core' ); ?> <code>show_description</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hide_invisible' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hide_invisible'], true ); ?> id="<?php echo $this->get_field_id( 'hide_invisible' ); ?>" name="<?php echo $this->get_field_name( 'hide_invisible' ); ?>" /> <?php _e( 'Hide invisible?', 'hybrid-core' ); ?> <code>hide_invisible</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_rating' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_rating'], true ); ?> id="<?php echo $this->get_field_id( 'show_rating' ); ?>" name="<?php echo $this->get_field_name( 'show_rating' ); ?>" /> <?php _e( 'Show rating?', 'hybrid-core' ); ?> <code>show_rating</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_updated' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_updated'], true ); ?> id="<?php echo $this->get_field_id( 'show_updated' ); ?>" name="<?php echo $this->get_field_name( 'show_updated' ); ?>" /> <?php _e( 'Show updated?', 'hybrid-core' ); ?> <code>show_updated</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_images' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_images'], true ); ?> id="<?php echo $this->get_field_id( 'show_images' ); ?>" name="<?php echo $this->get_field_name( 'show_images' ); ?>" /> <?php _e( 'Show images?', 'hybrid-core' ); ?> <code>show_images</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_name' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_name'], true ); ?> id="<?php echo $this->get_field_id( 'show_name' ); ?>" name="<?php echo $this->get_field_name( 'show_name' ); ?>" /> <?php _e( 'Show name?', 'hybrid-core' ); ?> <code>show_name</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_private' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_private'], true ); ?> id="<?php echo $this->get_field_id( 'show_private' ); ?>" name="<?php echo $this->get_field_name( 'show_private' ); ?>" /> <?php _e( 'Show private?', 'hybrid-core' ); ?> <code>show_private</code></label>
+		</p>
+
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-calendar.php b/wp-content/themes/path/library/classes/widget-calendar.php
new file mode 100644
index 0000000000000000000000000000000000000000..b5adfe4a5090b30efc1eb8cf25b85dae1cce7354
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-calendar.php
@@ -0,0 +1,120 @@
+<?php
+/**
+ * The calendar widget was created to give users the ability to show a post calendar for their blog 
+ * using all the available options given in the get_calendar() function. It replaces the default WordPress
+ * calendar widget.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Calendar Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Calendar extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'calendar',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your calendar.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 200,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-calendar',			// $this->id_base
+			__( 'Calendar', 'hybrid-core' ),	// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Get the $initial argument. */
+		$initial = !empty( $instance['initial'] ) ? true : false;
+
+		/* Output the theme's widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Display the calendar. */
+		echo '<div class="calendar-wrap">';
+			echo str_replace( array( "\r", "\n", "\t" ), '', get_calendar( $initial, false ) );
+		echo '</div><!-- .calendar-wrap -->';
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['initial'] = ( isset( $new_instance['initial'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Calendar', 'hybrid-core' ),
+			'initial' => false
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults ); ?>
+
+		<div class="hybrid-widget-controls columns-1">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<input class="checkbox" type="checkbox" <?php checked( $instance['initial'], true ); ?> id="<?php echo $this->get_field_id( 'initial' ); ?>" name="<?php echo $this->get_field_name( 'initial' ); ?>" /> 
+			<label for="<?php echo $this->get_field_id( 'initial' ); ?>"><?php _e( 'One-letter abbreviation?', 'hybrid-core' ); ?> <code>initial</code></label>
+		</p>
+		</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-categories.php b/wp-content/themes/path/library/classes/widget-categories.php
new file mode 100644
index 0000000000000000000000000000000000000000..8f367468d93ba31387992db1bf3853f7cefb18b1
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-categories.php
@@ -0,0 +1,281 @@
+<?php
+/**
+ * The Categories widget replaces the default WordPress Categories widget. This version gives total
+ * control over the output to the user by allowing the input of all the arguments typically seen
+ * in the wp_list_categories() function.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Categories Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Categories extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'categories',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your category links.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 800,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-categories',		// $this->id_base
+			__( 'Categories', 'hybrid-core' ),	// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_list_categories() to the $instance array. */
+		$args = $instance;
+
+		/* Set the $title_li and $echo arguments to false. */
+		$args['title_li'] = false;
+		$args['echo'] = false;
+
+		/* Output the theme's widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Get the categories list. */
+		$categories = str_replace( array( "\r", "\n", "\t" ), '', wp_list_categories( $args ) );
+
+		/* If 'list' is the user-selected style, wrap the categories in an unordered list. */
+		if ( 'list' == $args['style'] )
+			$categories = '<ul class="xoxo categories">' . $categories . '</ul><!-- .xoxo .categories -->';
+
+		/* Output the categories list. */
+		echo $categories;
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		/* Set the instance to the new instance. */
+		$instance = $new_instance;
+
+		/* If new taxonomy is chosen, reset includes and excludes. */
+		if ( $instance['taxonomy'] !== $old_instance['taxonomy'] && '' !== $old_instance['taxonomy'] ) {
+			$instance['include'] = array();
+			$instance['exclude'] = array();
+		}
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['taxonomy'] = $new_instance['taxonomy'];
+		$instance['depth'] = strip_tags( $new_instance['depth'] );
+		$instance['number'] = strip_tags( $new_instance['number'] );
+		$instance['child_of'] = strip_tags( $new_instance['child_of'] );
+		$instance['current_category'] = strip_tags( $new_instance['current_category'] );
+		$instance['feed'] = strip_tags( $new_instance['feed'] );
+		$instance['feed_image'] = esc_url( $new_instance['feed_image'] );
+		$instance['search'] = strip_tags( $new_instance['search'] );
+		$instance['include'] = preg_replace( '/[^0-9,]/', '', $new_instance['include'] );
+		$instance['exclude'] = preg_replace( '/[^0-9,]/', '', $new_instance['exclude'] );
+		$instance['exclude_tree'] = preg_replace( '/[^0-9,]/', '', $new_instance['exclude_tree'] );
+
+		$instance['hierarchical'] = ( isset( $new_instance['hierarchical'] ) ? 1 : 0 );
+		$instance['use_desc_for_title'] = ( isset( $new_instance['use_desc_for_title'] ) ? 1 : 0 );
+		$instance['show_count'] = ( isset( $new_instance['show_count'] ) ? 1 : 0 );
+		$instance['hide_empty'] = ( isset( $new_instance['hide_empty'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Categories', 'hybrid-core' ),
+			'taxonomy' => 'category',
+			'style' => 'list',
+			'include' => '',
+			'exclude' => '',
+			'exclude_tree' => '',
+			'child_of' => '',
+			'current_category' => '',
+			'search' => '',
+			'hierarchical' => true,
+			'hide_empty' => true,
+			'order' => 'ASC',
+			'orderby' => 'name',
+			'depth' => 0,
+			'number' => '',
+			'feed' => '',
+			'feed_type' => '',
+			'feed_image' => '',
+			'use_desc_for_title' => false,
+			'show_count' => false,
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		/* <select> element options. */
+		$taxonomies = get_taxonomies( array( 'show_tagcloud' => true ), 'objects' );
+		$terms = get_terms( $instance['taxonomy'] );
+		$style = array( 'list' => esc_attr__( 'List', 'hybrid-core' ), 'none' => esc_attr__( 'None', 'hybrid-core' ) );
+		$order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ) );
+		$orderby = array( 'count' => esc_attr__( 'Count', 'hybrid-core' ), 'ID' => esc_attr__( 'ID', 'hybrid-core' ), 'name' => esc_attr__( 'Name', 'hybrid-core' ), 'slug' => esc_attr__( 'Slug', 'hybrid-core' ), 'term_group' => esc_attr__( 'Term Group', 'hybrid-core' ) );
+		$feed_type = array( '' => '', 'atom' => esc_attr__( 'Atom', 'hybrid-core' ), 'rdf' => esc_attr__( 'RDF', 'hybrid-core' ), 'rss' => esc_attr__( 'RSS', 'hybrid-core' ), 'rss2' => esc_attr__( 'RSS 2.0', 'hybrid-core' ) );
+
+		?>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'taxonomy' ); ?>"><code>taxonomy</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>">
+				<?php foreach ( $taxonomies as $taxonomy ) { ?>
+					<option value="<?php echo esc_attr( $taxonomy->name ); ?>" <?php selected( $instance['taxonomy'], $taxonomy->name ); ?>><?php echo esc_html( $taxonomy->labels->singular_name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'style' ); ?>"><code>style</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'style' ); ?>" name="<?php echo $this->get_field_name( 'style' ); ?>">
+				<?php foreach ( $style as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['style'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'order' ); ?>"><code>order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'order' ); ?>" name="<?php echo $this->get_field_name( 'order' ); ?>">
+				<?php foreach ( $order as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['order'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><code>orderby</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'orderby' ); ?>" name="<?php echo $this->get_field_name( 'orderby' ); ?>">
+				<?php foreach ( $orderby as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['orderby'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'depth' ); ?>"><code>depth</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'depth' ); ?>" name="<?php echo $this->get_field_name( 'depth' ); ?>" value="<?php echo esc_attr( $instance['depth'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><code>number</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo esc_attr( $instance['number'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'include' ); ?>"><code>include</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'include' ); ?>" name="<?php echo $this->get_field_name( 'include' ); ?>" value="<?php echo esc_attr( $instance['include'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude' ); ?>"><code>exclude</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'exclude' ); ?>" name="<?php echo $this->get_field_name( 'exclude' ); ?>" value="<?php echo esc_attr( $instance['exclude'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude_tree' ); ?>"><code>exclude_tree</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'exclude_tree' ); ?>" name="<?php echo $this->get_field_name( 'exclude_tree' ); ?>" value="<?php echo esc_attr( $instance['exclude_tree'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'child_of' ); ?>"><code>child_of</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'child_of' ); ?>" name="<?php echo $this->get_field_name( 'child_of' ); ?>" value="<?php echo esc_attr( $instance['child_of'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'current_category' ); ?>"><code>current_category</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'current_category' ); ?>" name="<?php echo $this->get_field_name( 'current_category' ); ?>" value="<?php echo esc_attr( $instance['current_category'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search' ); ?>"><code>search</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'search' ); ?>" name="<?php echo $this->get_field_name( 'search' ); ?>" value="<?php echo esc_attr( $instance['search'] ); ?>" />
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'feed' ); ?>"><code>feed</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'feed' ); ?>" name="<?php echo $this->get_field_name( 'feed' ); ?>" value="<?php echo esc_attr( $instance['feed'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'feed_type' ); ?>"><code>feed_type</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'feed_type' ); ?>" name="<?php echo $this->get_field_name( 'feed_type' ); ?>">
+				<?php foreach ( $feed_type as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['feed_type'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'feed_image' ); ?>"><code>feed_image</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'feed_image' ); ?>" name="<?php echo $this->get_field_name( 'feed_image' ); ?>" value="<?php echo esc_attr( $instance['feed_image'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hierarchical' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hierarchical'], true ); ?> id="<?php echo $this->get_field_id( 'hierarchical' ); ?>" name="<?php echo $this->get_field_name( 'hierarchical' ); ?>" /> <?php _e( 'Hierarchical?', 'hybrid-core' ); ?> <code>hierarchical</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'use_desc_for_title' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['use_desc_for_title'], true ); ?> id="<?php echo $this->get_field_id( 'use_desc_for_title' ); ?>" name="<?php echo $this->get_field_name( 'use_desc_for_title' ); ?>" /> <?php _e( 'Use description?', 'hybrid-core' ); ?> <code>use_desc_for_title</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_count' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['show_count'], true ); ?> id="<?php echo $this->get_field_id( 'show_count' ); ?>" name="<?php echo $this->get_field_name( 'show_count' ); ?>" /> <?php _e( 'Show count?', 'hybrid-core' ); ?> <code>show_count</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hide_empty' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hide_empty'], true ); ?> id="<?php echo $this->get_field_id( 'hide_empty' ); ?>" name="<?php echo $this->get_field_name( 'hide_empty' ); ?>" /> <?php _e( 'Hide empty?', 'hybrid-core' ); ?> <code>hide_empty</code></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-nav-menu.php b/wp-content/themes/path/library/classes/widget-nav-menu.php
new file mode 100644
index 0000000000000000000000000000000000000000..0f4f79ef967e0f77dc31f1adae1e36ecae44eafd
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-nav-menu.php
@@ -0,0 +1,205 @@
+<?php
+/**
+ * The nav menu widget was created to give users the ability to show nav menus created from the 
+ * Menus screen, by the theme, or by plugins using the wp_nav_menu() function.  It replaces the default
+ * WordPress navigation menu class.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Nav Menu Widget Class
+ *
+ * @since 0.8.0
+ */
+class Hybrid_Widget_Nav_Menu extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'nav-menu',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your menus.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 525,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-nav-menu',				// $this->id_base
+			__( 'Navigation Menu', 'hybrid-core' ),	// $this->name
+			$widget_options,				// $this->widget_options
+			$control_options				// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.8.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_nav_menu() to the $instance array. */
+		$args = $instance;
+
+		/* Overwrite the $echo argument and set it to false. */
+		$args['echo'] = false;
+
+		/* Output the theme's widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Output the nav menu. */
+		echo str_replace( array( "\r", "\n", "\t" ), '', wp_nav_menu( $args ) );
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.8.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['depth'] = strip_tags( $new_instance['depth'] );
+		$instance['container_id'] = strip_tags( $new_instance['container_id'] );
+		$instance['container_class'] = strip_tags( $new_instance['container_class'] );
+		$instance['menu_id'] = strip_tags( $new_instance['menu_id'] );
+		$instance['menu_class'] = strip_tags( $new_instance['menu_class'] );
+		$instance['fallback_cb'] = strip_tags( $new_instance['fallback_cb'] );
+		$instance['walker'] = strip_tags( $new_instance['walker'] );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.8.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Navigation', 'hybrid-core' ),
+			'menu' => '',
+			'container' => 'div',
+			'container_id' => '',
+			'container_class' => '',
+			'menu_id' => '',
+			'menu_class' => 'nav-menu',
+			'depth' => 0,
+			'before' => '',
+			'after' => '',
+			'link_before' => '',
+			'link_after' => '',
+			'fallback_cb' => 'wp_page_menu',
+			'walker' => ''
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		$container = apply_filters( 'wp_nav_menu_container_allowedtags', array( 'div', 'nav' ) );
+		?>
+
+		<div class="hybrid-widget-controls columns-2">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'menu' ); ?>"><code>menu</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'menu' ); ?>" name="<?php echo $this->get_field_name( 'menu' ); ?>">
+				<?php foreach ( wp_get_nav_menus() as $menu ) { ?>
+					<option value="<?php echo esc_attr( $menu->term_id ); ?>" <?php selected( $instance['menu'], $menu->term_id ); ?>><?php echo esc_html( $menu->name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'container' ); ?>"><code>container</code></label> 
+			<select class="smallfat" id="<?php echo $this->get_field_id( 'container' ); ?>" name="<?php echo $this->get_field_name( 'container' ); ?>">
+				<?php foreach ( $container as $option ) { ?>
+					<option value="<?php echo esc_attr( $option ); ?>" <?php selected( $instance['container'], $option ); ?>><?php echo esc_html( $option ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'container_id' ); ?>"><code>container_id</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'container_id' ); ?>" name="<?php echo $this->get_field_name( 'container_id' ); ?>" value="<?php echo esc_attr( $instance['container_id'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'container_class' ); ?>"><code>container_class</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'container_class' ); ?>" name="<?php echo $this->get_field_name( 'container_class' ); ?>" value="<?php echo esc_attr( $instance['container_class'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'menu_id' ); ?>"><code>menu_id</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'menu_id' ); ?>" name="<?php echo $this->get_field_name( 'menu_id' ); ?>" value="<?php echo esc_attr( $instance['menu_id'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'menu_class' ); ?>"><code>menu_class</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'menu_class' ); ?>" name="<?php echo $this->get_field_name( 'menu_class' ); ?>" value="<?php echo esc_attr( $instance['menu_class'] ); ?>" />
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-2 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'depth' ); ?>"><code>depth</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'depth' ); ?>" name="<?php echo $this->get_field_name( 'depth' ); ?>" value="<?php echo esc_attr( $instance['depth'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'before' ); ?>"><code>before</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'before' ); ?>" name="<?php echo $this->get_field_name( 'before' ); ?>" value="<?php echo esc_attr( $instance['before'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'after' ); ?>"><code>after</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'after' ); ?>" name="<?php echo $this->get_field_name( 'after' ); ?>" value="<?php echo esc_attr( $instance['after'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_before' ); ?>"><code>link_before</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_before' ); ?>" name="<?php echo $this->get_field_name( 'link_before' ); ?>" value="<?php echo esc_attr( $instance['link_before'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_after' ); ?>"><code>link_after</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_after' ); ?>" name="<?php echo $this->get_field_name( 'link_after' ); ?>" value="<?php echo esc_attr( $instance['link_after'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'fallback_cb' ); ?>"><code>fallback_cb</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'fallback_cb' ); ?>" name="<?php echo $this->get_field_name( 'fallback_cb' ); ?>" value="<?php echo esc_attr( $instance['fallback_cb'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'walker' ); ?>"><code>walker</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'walker' ); ?>" name="<?php echo $this->get_field_name( 'walker' ); ?>" value="<?php echo esc_attr( $instance['walker'] ); ?>" />
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-pages.php b/wp-content/themes/path/library/classes/widget-pages.php
new file mode 100644
index 0000000000000000000000000000000000000000..9c0e62a49bb5e74ab6b189f0ca25ca649c3ad6fb
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-pages.php
@@ -0,0 +1,264 @@
+<?php
+/**
+ * The Pages widget replaces the default WordPress Pages widget. This version gives total
+ * control over the output to the user by allowing the input of all the arguments typically seen
+ * in the wp_list_pages() function.
+ *
+ * @package Hybrid
+ * @subpackage Widgets
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Pages Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Pages extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'pages',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your page links.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 800,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-pages',			// $this->id_base
+			__( 'Pages', 'hybrid-core'),		// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_list_pages() to the $instance array. */
+		$args = $instance;
+
+		/* Set the $title_li and $echo to false. */
+		$args['title_li'] = false;
+		$args['echo'] = false;
+
+		/* Open the output of the widget. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Output the page list. */
+		echo '<ul class="xoxo pages">' . str_replace( array( "\r", "\n", "\t" ), '', wp_list_pages( $args ) ) . '</ul>';
+
+		/* Close the output of the widget. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		/* Set the instance to the new instance. */
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['depth'] = strip_tags( $new_instance['depth'] );
+		$instance['child_of'] = strip_tags( $new_instance['child_of'] );
+		$instance['meta_key'] = strip_tags( $new_instance['meta_key'] );
+		$instance['meta_value'] = strip_tags( $new_instance['meta_value'] );
+		$instance['date_format'] = strip_tags( $new_instance['date_format'] );
+		$instance['number'] = strip_tags( $new_instance['number'] );
+		$instance['offset'] = strip_tags( $new_instance['offset'] );
+		$instance['include'] = preg_replace( '/[^0-9,]/', '', $new_instance['include'] );
+		$instance['exclude'] = preg_replace( '/[^0-9,]/', '', $new_instance['exclude'] );
+		$instance['exclude_tree'] = preg_replace( '/[^0-9,]/', '', $new_instance['exclude_tree'] );
+		$instance['authors'] = preg_replace( '/[^0-9,]/', '', $new_instance['authors'] );
+		$instance['post_type'] = $new_instance['post_type'];
+		$instance['sort_column'] = $new_instance['sort_column'];
+		$instance['sort_order'] = $new_instance['sort_order'];
+		$instance['show_date'] = $new_instance['show_date'];
+		$instance['link_before'] = $new_instance['link_before'];
+		$instance['link_after'] = $new_instance['link_after'];
+
+		$instance['hierarchical'] = ( isset( $new_instance['hierarchical'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Pages', 'hybrid-core'),
+			'post_type' => 'page',
+			'depth' => 0,
+			'number' => '',
+			'offset' => '',
+			'child_of' => '',
+			'include' => '',
+			'exclude' => '',
+			'exclude_tree' => '',
+			'meta_key' => '',
+			'meta_value' => '',
+			'authors' => '',
+			'link_before' => '',
+			'link_after' => '',
+			'show_date' => '',
+			'hierarchical' => true,
+			'sort_column' => 'post_title',
+			'sort_order' => 'ASC',
+			'date_format' => get_option( 'date_format' )
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		$post_types = get_post_types( array( 'public' => true, 'hierarchical' => true ), 'objects' );
+		$sort_order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ) );
+		$sort_column = array( 'post_author' => esc_attr__( 'Author', 'hybrid-core' ), 'post_date' => esc_attr__( 'Date', 'hybrid-core' ), 'ID' => esc_attr__( 'ID', 'hybrid-core' ), 'menu_order' => esc_attr__( 'Menu Order', 'hybrid-core' ), 'post_modified' => esc_attr__( 'Modified', 'hybrid-core' ), 'post_name' => esc_attr__( 'Slug', 'hybrid-core' ), 'post_title' => esc_attr__( 'Title', 'hybrid-core' ) );
+		$show_date = array( '' => '', 'created' => esc_attr__( 'Created', 'hybrid-core' ), 'modified' => esc_attr__( 'Modified', 'hybrid-core' ) );
+		$meta_key = array_merge( array( '' ), (array) get_meta_keys() );
+
+		?>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'post_type' ); ?>"><code>post_type</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'post_type' ); ?>" name="<?php echo $this->get_field_name( 'post_type' ); ?>">
+				<?php foreach ( $post_types as $post_type ) { ?>
+					<option value="<?php echo esc_attr( $post_type->name ); ?>" <?php selected( $instance['post_type'], $post_type->name ); ?>><?php echo esc_html( $post_type->labels->singular_name ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'sort_order' ); ?>"><code>sort_order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'sort_order' ); ?>" name="<?php echo $this->get_field_name( 'sort_order' ); ?>">
+				<?php foreach ( $sort_order as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['sort_order'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'sort_column' ); ?>"><code>sort_column</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'sort_column' ); ?>" name="<?php echo $this->get_field_name( 'sort_column' ); ?>">
+				<?php foreach ( $sort_column as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['sort_column'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'depth' ); ?>"><code>depth</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'depth' ); ?>" name="<?php echo $this->get_field_name( 'depth' ); ?>" value="<?php echo esc_attr( $instance['depth'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><code>number</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo esc_attr( $instance['number'] ); ?>" />
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'offset' ); ?>"><code>offset</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'offset' ); ?>" name="<?php echo $this->get_field_name( 'offset' ); ?>" value="<?php echo esc_attr( $instance['offset'] ); ?>"  />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'child_of' ); ?>"><code>child_of</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'child_of' ); ?>" name="<?php echo $this->get_field_name( 'child_of' ); ?>" value="<?php echo esc_attr( $instance['child_of'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'include' ); ?>"><code>include</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'include' ); ?>" name="<?php echo $this->get_field_name( 'include' ); ?>" value="<?php echo esc_attr( $instance['include'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude' ); ?>"><code>exclude</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'exclude' ); ?>" name="<?php echo $this->get_field_name( 'exclude' ); ?>" value="<?php echo esc_attr( $instance['exclude'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude_tree' ); ?>"><code>exclude_tree</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'exclude_tree' ); ?>" name="<?php echo $this->get_field_name( 'exclude_tree' ); ?>" value="<?php echo esc_attr( $instance['exclude_tree'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'meta_key' ); ?>"><code>meta_key</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'meta_key' ); ?>" name="<?php echo $this->get_field_name( 'meta_key' ); ?>">
+				<?php foreach ( $meta_key as $meta ) { ?>
+					<option value="<?php echo esc_attr( $meta ); ?>" <?php selected( $instance['meta_key'], $meta ); ?>><?php echo esc_html( $meta ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'meta_value' ); ?>"><code>meta_value</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'meta_value' ); ?>" name="<?php echo $this->get_field_name( 'meta_value' ); ?>" value="<?php echo esc_attr( $instance['meta_value'] ); ?>" />
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'authors' ); ?>"><code>authors</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'authors' ); ?>" name="<?php echo $this->get_field_name( 'authors' ); ?>" value="<?php echo esc_attr( $instance['authors'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_before' ); ?>"><code>link_before</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_before' ); ?>" name="<?php echo $this->get_field_name( 'link_before' ); ?>" value="<?php echo esc_attr( $instance['link_before'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link_after' ); ?>"><code>link_after</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'link_after' ); ?>" name="<?php echo $this->get_field_name( 'link_after' ); ?>" value="<?php echo esc_attr( $instance['link_after'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'show_date' ); ?>"><code>show_date</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>">
+				<?php foreach ( $show_date as $option_value => $option_label ) { ?>
+					<option value="<?php echo esc_attr( $option_value ); ?>" <?php selected( $instance['show_date'], $option_value ); ?>><?php echo esc_html( $option_label ); ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'date_format' ); ?>"><code>date_format</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'date_format' ); ?>" name="<?php echo $this->get_field_name( 'date_format' ); ?>" value="<?php echo esc_attr( $instance['date_format'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hierarchical' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hierarchical'], true ); ?> id="<?php echo $this->get_field_id( 'hierarchical' ); ?>" name="<?php echo $this->get_field_name( 'hierarchical' ); ?>" /> <?php _e( 'Hierarchical?', 'hybrid-core'); ?> <code>hierarchical</code></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-search.php b/wp-content/themes/path/library/classes/widget-search.php
new file mode 100644
index 0000000000000000000000000000000000000000..c422108b5148cda3bf828517953c491383718f5b
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-search.php
@@ -0,0 +1,171 @@
+<?php
+/**
+ * The Search widget replaces the default WordPress Search widget. This version gives total
+ * control over the output to the user by allowing the input of various arguments that typically
+ * represent a search form. It also gives the user the option of using the theme's search form
+ * through the use of the get_search_form() function.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Search Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Search extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'search',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your search form.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 525,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-search',			// $this->id_base
+			__( 'Search', 'hybrid-core' ),	// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Output the theme's $before_widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* If the user chose to use the theme's search form, load it. */
+		if ( !empty( $instance['theme_search'] ) ) {
+			get_search_form();
+		}
+
+		/* Else, create the form based on the user-selected arguments. */
+		else {
+
+			/* Set up some variables for the search form. */
+			if ( empty( $instance['search_text'] ) )
+				$instance['search_text'] = '';
+
+			$search_text = ( ( is_search() ) ? esc_attr( get_search_query() ) : esc_attr( $instance['search_text'] ) );
+
+			/* Open the form. */
+			$search = '<form method="get" class="search-form" id="search-form' . esc_attr( $this->id_base ) . '" action="' . home_url() . '/"><div>';
+
+			/* If a search label was set, add it. */
+			if ( !empty( $instance['search_label'] ) )
+				$search .= '<label for="search-text' . esc_attr( $this->id_base ) . '">' . $instance['search_label'] . '</label>';
+
+			/* Search form text input. */
+			$search .= '<input class="search-text" type="text" name="s" id="search-text' . esc_attr( $this->id_base ) . '" value="' . $search_text . '" onfocus="if(this.value==this.defaultValue)this.value=\'\';" onblur="if(this.value==\'\')this.value=this.defaultValue;" />';
+
+			/* Search form submit button. */
+			if ( $instance['search_submit'] )
+				$search .= '<input class="search-submit button" name="submit" type="submit" id="search-submit' . esc_attr( $this->id_base ). '" value="' . esc_attr( $instance['search_submit'] ) . '" />';
+
+			/* Close the form. */
+			$search .= '</div></form>';
+
+			/* Display the form. */
+			echo $search;
+		}
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['search_label'] = strip_tags( $new_instance['search_label'] );
+		$instance['search_text'] = strip_tags( $new_instance['search_text'] );
+		$instance['search_submit'] = strip_tags( $new_instance['search_submit'] );
+		$instance['theme_search'] = ( isset( $new_instance['theme_search'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Search', 'hybrid-core' ),
+			'theme_search' => false,
+			'search_label' => '',
+			'search_text' => '',
+			'search_submit' => ''
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults ); ?>
+
+		<div class="hybrid-widget-controls columns-2">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search_label' ); ?>"><?php _e( 'Search Label:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'search_label' ); ?>" name="<?php echo $this->get_field_name( 'search_label' ); ?>" value="<?php echo esc_attr( $instance['search_label'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search_text' ); ?>"><?php _e( 'Search Text:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'search_text' ); ?>" name="<?php echo $this->get_field_name( 'search_text' ); ?>" value="<?php echo esc_attr( $instance['search_text'] ); ?>" />
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-2 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search_submit' ); ?>"><?php _e( 'Search Submit:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'search_submit' ); ?>" name="<?php echo $this->get_field_name( 'search_submit' ); ?>" value="<?php echo esc_attr( $instance['search_submit'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'theme_search' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['theme_search'], true ); ?> id="<?php echo $this->get_field_id( 'theme_search' ); ?>" name="<?php echo $this->get_field_name( 'theme_search' ); ?>" /> <?php _e( 'Use theme\'s <code>searchform.php</code>?', 'hybrid-core' ); ?></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/classes/widget-tags.php b/wp-content/themes/path/library/classes/widget-tags.php
new file mode 100644
index 0000000000000000000000000000000000000000..0f2f9918d82c93c7f3972c6394a76276c7d7bb6a
--- /dev/null
+++ b/wp-content/themes/path/library/classes/widget-tags.php
@@ -0,0 +1,300 @@
+<?php
+/**
+ * The Tags widget replaces the default WordPress Tag Cloud widget. This version gives total
+ * control over the output to the user by allowing the input of all the arguments typically seen
+ * in the wp_tag_cloud() function.
+ *
+ * @package Hybrid
+ * @subpackage Classes
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Tags Widget Class
+ *
+ * @since 0.6.0
+ */
+class Hybrid_Widget_Tags extends WP_Widget {
+
+	/**
+	 * Set up the widget's unique name, ID, class, description, and other options.
+	 *
+	 * @since 1.2.0
+	 */
+	function __construct() {
+
+		/* Set up the widget options. */
+		$widget_options = array(
+			'classname' => 'tags',
+			'description' => esc_html__( 'An advanced widget that gives you total control over the output of your tags.', 'hybrid-core' )
+		);
+
+		/* Set up the widget control options. */
+		$control_options = array(
+			'width' => 800,
+			'height' => 350
+		);
+
+		/* Create the widget. */
+		$this->WP_Widget(
+			'hybrid-tags',			// $this->id_base
+			__( 'Tags', 'hybrid-core' ),		// $this->name
+			$widget_options,			// $this->widget_options
+			$control_options			// $this->control_options
+		);
+	}
+
+	/**
+	 * Outputs the widget based on the arguments input through the widget controls.
+	 *
+	 * @since 0.6.0
+	 */
+	function widget( $sidebar, $instance ) {
+		extract( $sidebar );
+
+		/* Set the $args for wp_tag_cloud() to the $instance array. */
+		$args = $instance;
+
+		/* Make sure empty callbacks aren't passed for custom functions. */
+		$args['topic_count_text_callback'] = !empty( $args['topic_count_text_callback'] ) ? $args['topic_count_text_callback'] : 'default_topic_count_text';
+		$args['topic_count_scale_callback'] = !empty( $args['topic_count_scale_callback'] ) ? $args['topic_count_scale_callback'] : 'default_topic_count_scale';
+
+		/* If the separator is empty, set it to the default new line. */
+		$args['separator'] = !empty( $args['separator'] ) ? $args['separator'] : "\n";
+
+		/* Overwrite the echo argument. */
+		$args['echo'] = false;
+
+		/* Output the theme's $before_widget wrapper. */
+		echo $before_widget;
+
+		/* If a title was input by the user, display it. */
+		if ( !empty( $instance['title'] ) )
+			echo $before_title . apply_filters( 'widget_title',  $instance['title'], $instance, $this->id_base ) . $after_title;
+
+		/* Get the tag cloud. */
+		$tags = str_replace( array( "\r", "\n", "\t" ), ' ', wp_tag_cloud( $args ) );
+
+		/* If $format should be flat, wrap it in the <p> element. */
+		if ( 'flat' == $instance['format'] ) {
+			$classes = array( 'term-cloud' );
+
+			foreach ( $instance['taxonomy'] as $tax )
+				$classes[] = sanitize_html_class( "{$tax}-cloud" );
+
+			$tags = '<p class="' . join( $classes, ' ' ) . '">' . $tags . '</p>';
+		}
+
+		/* Output the tag cloud. */
+		echo $tags;
+
+		/* Close the theme's widget wrapper. */
+		echo $after_widget;
+	}
+
+	/**
+	 * Updates the widget control options for the particular instance of the widget.
+	 *
+	 * @since 0.6.0
+	 */
+	function update( $new_instance, $old_instance ) {
+		$instance = $old_instance;
+
+		/* Set the instance to the new instance. */
+		$instance = $new_instance;
+
+		$instance['title'] = strip_tags( $new_instance['title'] );
+		$instance['smallest'] = strip_tags( $new_instance['smallest'] );
+		$instance['largest'] = strip_tags( $new_instance['largest'] );
+		$instance['number'] = strip_tags( $new_instance['number'] );
+		$instance['separator'] = strip_tags( $new_instance['separator'] );
+		$instance['name__like'] = strip_tags( $new_instance['name__like'] );
+		$instance['search'] = strip_tags( $new_instance['search'] );
+		$instance['child_of'] = strip_tags( $new_instance['child_of'] );
+		$instance['parent'] = strip_tags( $new_instance['parent'] );
+		$instance['topic_count_text_callback'] = strip_tags( $new_instance['topic_count_text_callback'] );
+		$instance['topic_count_scale_callback'] = strip_tags( $new_instance['topic_count_scale_callback'] );
+		$instance['include'] = preg_replace( '/[^0-9,]/', '', $new_instance['include'] );
+		$instance['exclude'] = preg_replace( '/[^0-9,]/', '', $new_instance['exclude'] );
+		$instance['unit'] = $new_instance['unit'];
+		$instance['format'] = $new_instance['format'];
+		$instance['orderby'] = $new_instance['orderby'];
+		$instance['order'] = $new_instance['order'];
+		$instance['taxonomy'] = $new_instance['taxonomy'];
+		$instance['link'] = $new_instance['link'];
+		$instance['pad_counts'] = ( isset( $new_instance['pad_counts'] ) ? 1 : 0 );
+		$instance['hide_empty'] = ( isset( $new_instance['hide_empty'] ) ? 1 : 0 );
+
+		return $instance;
+	}
+
+	/**
+	 * Displays the widget control options in the Widgets admin screen.
+	 *
+	 * @since 0.6.0
+	 */
+	function form( $instance ) {
+
+		/* Set up the default form values. */
+		$defaults = array(
+			'title' => esc_attr__( 'Tags', 'hybrid-core' ),
+			'order' => 'ASC',
+			'orderby' => 'name',
+			'format' => 'flat',
+			'include' => '',
+			'exclude' => '',
+			'unit' => 'pt',
+			'smallest' => 8,
+			'largest' => 22,
+			'link' => 'view',
+			'number' => 45,
+			'separator' => ' ',
+			'child_of' => '',
+			'parent' => '',
+			'taxonomy' => array( 'post_tag' ),
+			'hide_empty' => 1,
+			'pad_counts' => false,
+			'search' => '',
+			'name__like' => '',
+			'topic_count_text_callback' => 'default_topic_count_text',
+			'topic_count_scale_callback' => 'default_topic_count_scale',
+		);
+
+		/* Merge the user-selected arguments with the defaults. */
+		$instance = wp_parse_args( (array) $instance, $defaults );
+
+		/* <select> element options. */
+		$taxonomies = get_taxonomies( array( 'show_tagcloud' => true ), 'objects' );
+		$link = array( 'view' => esc_attr__( 'View', 'hybrid-core' ), 'edit' => esc_attr__( 'Edit', 'hybrid-core' ) );
+		$format = array( 'flat' => esc_attr__( 'Flat', 'hybrid-core' ), 'list' => esc_attr__( 'List', 'hybrid-core' ) );
+		$order = array( 'ASC' => esc_attr__( 'Ascending', 'hybrid-core' ), 'DESC' => esc_attr__( 'Descending', 'hybrid-core' ), 'RAND' => esc_attr__( 'Random', 'hybrid-core' ) );
+		$orderby = array( 'count' => esc_attr__( 'Count', 'hybrid-core' ), 'name' => esc_attr__( 'Name', 'hybrid-core' ) );
+		$unit = array( 'pt' => 'pt', 'px' => 'px', 'em' => 'em', '%' => '%' );
+
+		?>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'hybrid-core' ); ?></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'taxonomy' ); ?>"><code>taxonomy</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>[]" size="4" multiple="multiple">
+				<?php foreach ( $taxonomies as $taxonomy ) { ?>
+					<option value="<?php echo $taxonomy->name; ?>" <?php selected( in_array( $taxonomy->name, (array)$instance['taxonomy'] ) ); ?>><?php echo $taxonomy->labels->singular_name; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'format' ); ?>"><code>format</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'format' ); ?>" name="<?php echo $this->get_field_name( 'format' ); ?>">
+				<?php foreach ( $format as $option_value => $option_label ) { ?>
+					<option value="<?php echo $option_value; ?>" <?php selected( $instance['format'], $option_value ); ?>><?php echo $option_label; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'order' ); ?>"><code>order</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'order' ); ?>" name="<?php echo $this->get_field_name( 'order' ); ?>">
+				<?php foreach ( $order as $option_value => $option_label ) { ?>
+					<option value="<?php echo $option_value; ?>" <?php selected( $instance['order'], $option_value ); ?>><?php echo $option_label; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><code>orderby</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'orderby' ); ?>" name="<?php echo $this->get_field_name( 'orderby' ); ?>">
+				<?php foreach ( $orderby as $option_value => $option_label ) { ?>
+					<option value="<?php echo $option_value; ?>" <?php selected( $instance['orderby'], $option_value ); ?>><?php echo $option_label; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'include' ); ?>"><code>include</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'include' ); ?>" name="<?php echo $this->get_field_name( 'include' ); ?>" value="<?php echo esc_attr( $instance['include'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'exclude' ); ?>"><code>exclude</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'exclude' ); ?>" name="<?php echo $this->get_field_name( 'exclude' ); ?>" value="<?php echo esc_attr( $instance['exclude'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><code>number</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo esc_attr( $instance['number'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'largest' ); ?>"><code>largest</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'largest' ); ?>" name="<?php echo $this->get_field_name( 'largest' ); ?>" value="<?php echo esc_attr( $instance['largest'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'smallest' ); ?>"><code>smallest</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'smallest' ); ?>" name="<?php echo $this->get_field_name( 'smallest' ); ?>" value="<?php echo esc_attr( $instance['smallest'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'unit' ); ?>"><code>unit</code></label> 
+			<select class="smallfat" id="<?php echo $this->get_field_id( 'unit' ); ?>" name="<?php echo $this->get_field_name( 'unit' ); ?>">
+				<?php foreach ( $unit as $option_value => $option_label ) { ?>
+					<option value="<?php echo $option_value; ?>" <?php selected( $instance['unit'], $option_value ); ?>><?php echo $option_label; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'separator' ); ?>"><code>separator</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'separator' ); ?>" name="<?php echo $this->get_field_name( 'separator' ); ?>" value="<?php echo esc_attr( $instance['separator'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'child_of' ); ?>"><code>child_of</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'child_of' ); ?>" name="<?php echo $this->get_field_name( 'child_of' ); ?>" value="<?php echo esc_attr( $instance['child_of'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'parent' ); ?>"><code>parent</code></label>
+			<input type="text" class="smallfat code" id="<?php echo $this->get_field_id( 'parent' ); ?>" name="<?php echo $this->get_field_name( 'parent' ); ?>" value="<?php echo esc_attr( $instance['parent'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'link' ); ?>"><code>link</code></label> 
+			<select class="widefat" id="<?php echo $this->get_field_id( 'link' ); ?>" name="<?php echo $this->get_field_name( 'link' ); ?>">
+				<?php foreach ( $link as $option_value => $option_label ) { ?>
+					<option value="<?php echo $option_value; ?>" <?php selected( $instance['link'], $option_value ); ?>><?php echo $option_label; ?></option>
+				<?php } ?>
+			</select>
+		</p>
+		</div>
+
+		<div class="hybrid-widget-controls columns-3 column-last">
+		<p>
+			<label for="<?php echo $this->get_field_id( 'search' ); ?>"><code>search</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'search' ); ?>" name="<?php echo $this->get_field_name( 'search' ); ?>" value="<?php echo esc_attr( $instance['search'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'name__like' ); ?>"><code>name__like</code></label>
+			<input type="text" class="widefat code" id="<?php echo $this->get_field_id( 'name__like' ); ?>" name="<?php echo $this->get_field_name( 'name__like' ); ?>" value="<?php echo esc_attr( $instance['name__like'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'topic_count_text_callback' ); ?>"><code>topic_count_text_callback</code></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'topic_count_text_callback' ); ?>" name="<?php echo $this->get_field_name( 'topic_count_text_callback' ); ?>" value="<?php echo esc_attr( $instance['topic_count_text_callback'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'topic_count_scale_callback' ); ?>"><code>topic_count_scale_callback</code></label>
+			<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'topic_count_scale_callback' ); ?>" name="<?php echo $this->get_field_name( 'topic_count_scale_callback' ); ?>" value="<?php echo esc_attr( $instance['topic_count_scale_callback'] ); ?>" />
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'pad_counts' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['pad_counts'], true ); ?> id="<?php echo $this->get_field_id( 'pad_counts' ); ?>" name="<?php echo $this->get_field_name( 'pad_counts' ); ?>" /> <?php _e( 'Pad counts?', 'hybrid-core' ); ?> <code>pad_counts</code></label>
+		</p>
+		<p>
+			<label for="<?php echo $this->get_field_id( 'hide_empty' ); ?>">
+			<input class="checkbox" type="checkbox" <?php checked( $instance['hide_empty'], true ); ?> id="<?php echo $this->get_field_id( 'hide_empty' ); ?>" name="<?php echo $this->get_field_name( 'hide_empty' ); ?>" /> <?php _e( 'Hide empty?', 'hybrid-core' ); ?> <code>hide_empty</code></label>
+		</p>
+		</div>
+		<div style="clear:both;">&nbsp;</div>
+	<?php
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/18px.css b/wp-content/themes/path/library/css/18px.css
new file mode 100644
index 0000000000000000000000000000000000000000..0dc15b63c16e5a4fd9246ef198d078c404abae85
--- /dev/null
+++ b/wp-content/themes/path/library/css/18px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:21px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 18px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 18px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 18px 2.5em}ol{list-style-type:decimal;margin:0 0 18px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 18px 3px}dl dt{font-weight:bold;margin:12px 0 0 0}dl dd{margin:6px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 18px 0}li address,dd address{margin:0}blockquote{margin:0 2.5em;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:18px;margin-bottom:18px;padding:9px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:18px}input,textarea{font-size:1em;padding:3px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 3px}table{border-collapse:collapse;border-spacing:0;margin-bottom:18px}th,td{text-align:left}hr{height:1px;margin-bottom:18px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:18px}.alignleft,.left{float:left;margin-right:15px}.alignright,.right{float:right;margin-left:15px}.aligncenter,.center{display:block;margin:0 auto 18px auto}.alignnone,.block{clear:both;margin:0 0 18px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/18px.dev.css b/wp-content/themes/path/library/css/18px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..adb122a950b6eaf7b12d6cd4c5c082a9c5187873
--- /dev/null
+++ b/wp-content/themes/path/library/css/18px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 21px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 18px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 18px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 18px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 18px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 18px 3px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 12px 0 0 0;
+	}
+
+dl dd {
+	margin: 6px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 18px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 2.5em;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 18px;
+	margin-bottom: 18px;
+	padding: 9px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 18px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 3px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 3px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 18px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 18px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 18px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 15px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 15px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 18px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 18px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/20px.css b/wp-content/themes/path/library/css/20px.css
new file mode 100644
index 0000000000000000000000000000000000000000..8e4fd779bd30052401f47db28d1c2f509a556dac
--- /dev/null
+++ b/wp-content/themes/path/library/css/20px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:20px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 20px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 20px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 20px 2.5em}ol{list-style-type:decimal;margin:0 0 20px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 20px 5px}dl dt{font-weight:bold;margin:10px 0 0 0}dl dd{margin:5px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 20px 0}li address,dd address{margin:0}blockquote{margin:0 25px;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:20px;margin-bottom:20px;padding:10px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:20px}input,textarea{font-size:1em;padding:4px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 2px}table{border-collapse:collapse;border-spacing:0;margin-bottom:20px}th,td{text-align:left}hr{height:1px;margin-bottom:20px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:20px}.alignleft,.left{float:left;margin-right:15px}.alignright,.right{float:right;margin-left:15px}.aligncenter,.center{display:block;margin:0 auto 20px auto}.alignnone,.block{clear:both;margin:0 0 20px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/20px.dev.css b/wp-content/themes/path/library/css/20px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..9173d107a8e3846b64d2786c413a27a679376a38
--- /dev/null
+++ b/wp-content/themes/path/library/css/20px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 20px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 20px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 20px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 20px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 20px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 20px 5px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 10px 0 0 0;
+	}
+
+dl dd {
+	margin: 5px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 20px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 25px;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 20px;
+	margin-bottom: 20px;
+	padding: 10px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 20px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 4px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 2px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 20px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 20px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 20px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 15px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 15px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 20px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 20px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/21px.css b/wp-content/themes/path/library/css/21px.css
new file mode 100644
index 0000000000000000000000000000000000000000..557c8053a70ca496792b467066b70bf852a8d73d
--- /dev/null
+++ b/wp-content/themes/path/library/css/21px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:24px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 21px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 21px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 21px 2.5em}ol{list-style-type:decimal;margin:0 0 21px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 18px 3px}dl dt{font-weight:bold;margin:12px 0 0 0}dl dd{margin:6px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 21px 0}li address,dd address{margin:0}blockquote{margin:0 2.5em;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:21px;margin-bottom:21px;padding:9px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:21px}input,textarea{font-size:1em;padding:3px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 3px}table{border-collapse:collapse;border-spacing:0;margin-bottom:21px}th,td{text-align:left}hr{height:1px;margin-bottom:21px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:21px}.alignleft,.left{float:left;margin-right:15px}.alignright,.right{float:right;margin-left:15px}.aligncenter,.center{display:block;margin:0 auto 21px auto}.alignnone,.block{clear:both;margin:0 0 21px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/21px.dev.css b/wp-content/themes/path/library/css/21px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..aa0882f1643419c1f7056338f8ffccf0f7500a65
--- /dev/null
+++ b/wp-content/themes/path/library/css/21px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 24px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 21px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 21px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 21px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 21px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 18px 3px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 12px 0 0 0;
+	}
+
+dl dd {
+	margin: 6px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 21px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 2.5em;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 21px;
+	margin-bottom: 21px;
+	padding: 9px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 21px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 3px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 3px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 21px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 21px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 21px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 15px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 15px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 21px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 21px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/22px.css b/wp-content/themes/path/library/css/22px.css
new file mode 100644
index 0000000000000000000000000000000000000000..a5ae1b7273712b4adffdab7f48fdaf1b7ab0811c
--- /dev/null
+++ b/wp-content/themes/path/library/css/22px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:22px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 22px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 22px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 22px 2.5em}ol{list-style-type:decimal;margin:0 0 22px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 22px 5px}dl dt{font-weight:bold;margin:10px 0 0 0}dl dd{margin:5px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 22px 0}li address,dd address{margin:0}blockquote{margin:0 22px;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:22px;margin-bottom:22px;padding:10px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:22px}input,textarea{font-size:1em;padding:3px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 2px}table{border-collapse:collapse;border-spacing:0;margin-bottom:22px}th,td{text-align:left}hr{height:1px;margin-bottom:22px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:22px}.alignleft,.left{float:left;margin-right:15px}.alignright,.right{float:right;margin-left:15px}.aligncenter,.center{display:block;margin:0 auto 22px auto}.alignnone,.block{clear:both;margin:0 0 22px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/22px.dev.css b/wp-content/themes/path/library/css/22px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..706538121b28ea6ae7e44250855ac11cb1fb4a3f
--- /dev/null
+++ b/wp-content/themes/path/library/css/22px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 22px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 22px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 22px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 22px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 22px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 22px 5px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 10px 0 0 0;
+	}
+
+dl dd {
+	margin: 5px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 22px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 22px;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 22px;
+	margin-bottom: 22px;
+	padding: 10px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 22px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 3px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 2px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 22px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 22px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 22px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 15px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 15px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 22px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 22px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/24px.css b/wp-content/themes/path/library/css/24px.css
new file mode 100644
index 0000000000000000000000000000000000000000..e3f0310286e166586f35ab7cb6e9c646820d6b02
--- /dev/null
+++ b/wp-content/themes/path/library/css/24px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:24px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 24px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 24px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 24px 2.5em}ol{list-style-type:decimal;margin:0 0 24px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 24px 6px}dl dt{font-weight:bold;margin:12px 0 0 0}dl dd{margin:6px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 24px 0}li address,dd address{margin:0}blockquote{margin:0 24px;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:24px;margin-bottom:24px;padding:12px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:24px}input,textarea{font-size:1em;padding:3px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 2px}table{border-collapse:collapse;border-spacing:0;margin-bottom:24px}th,td{text-align:left}hr{height:1px;margin-bottom:24px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:24px}.alignleft,.left{float:left;margin-right:18px}.alignright,.right{float:right;margin-left:18px}.aligncenter,.center{display:block;margin:0 auto 24px auto}.alignnone,.block{clear:both;margin:0 0 24px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/24px.dev.css b/wp-content/themes/path/library/css/24px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..9ebc27e23772dcde658c7f8580c12fbe5f80f158
--- /dev/null
+++ b/wp-content/themes/path/library/css/24px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 24px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 24px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 24px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 24px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 24px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 24px 6px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 12px 0 0 0;
+	}
+
+dl dd {
+	margin: 6px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 24px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 24px;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 24px;
+	margin-bottom: 24px;
+	padding: 12px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 24px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 3px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 2px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 24px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 24px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 24px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 18px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 18px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 24px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 24px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/25px.css b/wp-content/themes/path/library/css/25px.css
new file mode 100644
index 0000000000000000000000000000000000000000..515530aec6147b83ea591e36e1671c246e86d39f
--- /dev/null
+++ b/wp-content/themes/path/library/css/25px.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}body{line-height:25px;font-family:Georgia,Times,"Times New Roman",serif;color:#333;background:#fff}h1,h2,h3,h4,h5,h6{font-style:normal;font-weight:normal;margin:0 0 25px 0}h1{font-size:1.8em}h2{font-size:1.7em}h3{font-size:1.55em}h4{font-size:1.4em}h5{font-size:1.25em}h6{font-size:1.1em}p{margin:0 0 25px 0}ol,ul{list-style:none}ul{list-style:disc;margin:0 0 25px 2.5em}ol{list-style-type:decimal;margin:0 0 25px 3em}ol ol{list-style:upper-roman}ol ol ol{list-style:lower-roman}ol ol ol ol{list-style:upper-alpha}ol ol ol ol ol{list-style:lower-alpha}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}dl{margin:0 0 25px 5px}dl dt{font-weight:bold;margin:10px 0 0 0}dl dd{margin:5px 0 0 1.5em}strong{font-weight:bold}strong strong{font-weight:normal}em,cite{font-style:italic}em em,cite cite{font-style:normal}abbr{cursor:help}acronym{text-transform:uppercase;border-bottom:1px dashed #666;cursor:help}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:baseline;position:relative;bottom:0.3em}sub{vertical-align:baseline;position:relative;top:0.3em}address{font-style:italic;margin:0 0 25px 0}li address,dd address{margin:0}blockquote{margin:0 25px;font-style:normal}blockquote em,blockquote cite{font-style:italic}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{cursor:pointer}a img{border:none}pre{overflow:auto;font:.9em Monaco,monospace,Courier,"Courier New";line-height:25px;margin-bottom:25px;padding:10px}code{font:.9em Monaco,monospace,Courier,"Courier New"}pre code{font-size:1em}ins,dfn{font-style:italic;text-decoration:none;border-bottom:1px solid #666}del,s,strike{text-decoration:line-through}object{margin-bottom:25px}input,textarea{font-size:1em;padding:3px}input[type="submit"]{cursor:pointer}:focus{outline:none}form label{cursor:pointer}option{padding:1px 2px}table{border-collapse:collapse;border-spacing:0;margin-bottom:25px}th,td{text-align:left}hr{height:1px;margin-bottom:25px;background:#333}img.wp-smiley{max-height:12px;margin:0;padding:0;border:none}.gallery{display:block;text-align:center;margin-bottom:25px}.alignleft,.left{float:left;margin-right:20px}.alignright,.right{float:right;margin-left:20px}.aligncenter,.center{display:block;margin:0 auto 25px auto}.alignnone,.block{clear:both;margin:0 0 25px 0}.clear{clear:both}img.alignleft,img.alignright{display:inline}blockquote.alignleft,blockquote.alignright{width:33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/25px.dev.css b/wp-content/themes/path/library/css/25px.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..e0b4fbf01ee0b8ce3992267037e460bcd879e942
--- /dev/null
+++ b/wp-content/themes/path/library/css/25px.dev.css
@@ -0,0 +1,308 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+body {
+	line-height: 25px;
+	font-family: Georgia, Times, "Times New Roman", serif;
+	color: #333;
+	background: #fff;
+	}
+
+h1, h2, h3, h4, h5, h6 {
+	font-style: normal;
+	font-weight: normal;
+	margin: 0 0 25px 0;
+	}
+
+h1 {
+	font-size: 1.8em;
+	}
+
+h2 {
+	font-size: 1.7em;
+	}
+
+h3 {
+	font-size: 1.55em;
+	}
+
+h4 {
+	font-size: 1.4em;
+	}
+
+h5 {
+	font-size: 1.25em;
+	}
+
+h6 {
+	font-size: 1.1em;
+	}
+
+p {
+	margin: 0 0 25px 0;
+	}
+
+ol, ul {
+	list-style: none;
+	}
+
+ul {
+	list-style: disc;
+	margin: 0 0 25px 2.5em;
+	}
+
+ol {
+	list-style-type: decimal;
+	margin: 0 0 25px 3em;
+	}
+
+ol ol {
+	list-style: upper-roman;
+	}
+
+ol ol ol {
+	list-style: lower-roman;
+	}
+
+ol ol ol ol {
+	list-style: upper-alpha;
+	}
+
+ol ol ol ol ol {
+	list-style: lower-alpha;
+	}
+
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom: 0;
+	}
+
+dl {
+	margin: 0 0 25px 5px;
+	}
+
+dl dt {
+	font-weight: bold;
+	margin: 10px 0 0 0;
+	}
+
+dl dd {
+	margin: 5px 0 0 1.5em;
+	}
+
+strong {
+	font-weight: bold;
+	}
+
+strong strong {
+	font-weight: normal;
+	}
+
+em, cite {
+	font-style: italic;
+	}
+
+em em, cite cite {
+	font-style: normal;
+	}
+
+abbr {
+	cursor: help;
+	}
+
+acronym {
+	text-transform: uppercase;
+	border-bottom: 1px dashed #666;
+	cursor: help;
+	}
+
+big {
+	font-size: 120%;
+	}
+
+small, sup, sub {
+	font-size: 80%;
+	}
+
+sup {
+	vertical-align: baseline;
+	position: relative;
+	bottom: 0.3em;
+	}
+
+sub {
+	vertical-align: baseline;
+	position: relative;
+	top: 0.3em;
+	}
+
+address {
+	font-style: italic;
+	margin: 0 0 25px 0;
+	}
+
+li address, dd address {
+	margin: 0;
+	}
+
+blockquote {
+	margin: 0 25px;
+	font-style: normal;
+	}
+
+blockquote em, blockquote cite {
+	font-style: italic;
+	}
+
+blockquote, q {
+	quotes: none;
+	}
+
+blockquote:before, blockquote:after, q:before, q:after {
+	content: '';
+	content: none;
+	}
+
+a {
+	cursor: pointer;
+	}
+
+a img {
+	border: none;
+	}
+
+pre {
+	overflow: auto;
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	line-height: 25px;
+	margin-bottom: 25px;
+	padding: 10px;
+	}
+
+code {
+	font: .9em Monaco, monospace, Courier, "Courier New";
+	}
+
+pre code {
+	font-size: 1em;
+	}
+
+ins, dfn {
+	font-style: italic;
+	text-decoration: none;
+	border-bottom: 1px solid #666;
+	}
+
+del, s, strike {
+	text-decoration: line-through;
+	}
+
+object {
+	margin-bottom: 25px;
+	}
+
+input, textarea {
+	font-size: 1em;
+	padding: 3px;
+	}
+
+input[type="submit"] {
+	cursor: pointer;
+	}
+
+:focus {
+	outline: none;
+	}
+
+form label {
+	cursor: pointer;
+	}
+
+option {
+	padding: 1px 2px;
+	}
+
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+	margin-bottom: 25px;
+	}
+
+th, td {
+	text-align: left;
+	}
+
+hr {
+	height: 1px;
+	margin-bottom: 25px;
+	background: #333;
+	}
+
+img.wp-smiley {
+	max-height: 12px;
+	margin: 0;
+	padding: 0;
+	border: none;
+	}
+
+.gallery {
+	display: block;
+	text-align: center;
+	margin-bottom: 25px;
+	}
+
+.alignleft, .left {
+	float: left;
+	margin-right: 20px;
+	}
+
+.alignright, .right {
+	float: right;
+	margin-left: 20px;
+	}
+
+.aligncenter, .center {
+	display: block;
+	margin: 0 auto 25px auto;
+	}
+
+.alignnone, .block {
+	clear: both;
+	margin: 0 0 25px 0;
+	}
+
+.clear {
+	clear: both;
+	}
+
+img.alignleft, img.alignright {
+	display: inline;
+	}
+
+blockquote.alignleft, blockquote.alignright {
+	width: 33%;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/2c-l-fixed.css b/wp-content/themes/path/library/css/2c-l-fixed.css
new file mode 100644
index 0000000000000000000000000000000000000000..93756950de9746f85d25b6b592414c04ae0734a9
--- /dev/null
+++ b/wp-content/themes/path/library/css/2c-l-fixed.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+#body-container{overflow:hidden;width:960px;margin:0 auto}#container{overflow:hidden;float:left;width:960px}.content{overflow:hidden;float:left;width:620px}.no-widgets .content,.no-default-widgets .content{width:960px}#primary{position:relative;float:right;width:300px}#secondary{position:relative;clear:right;float:right;width:300px}#subsidiary{overflow:hidden}#subsidiary .widget{overflow:hidden;float:left;width:300px;margin:0 20px 0 0}#footer-container{clear:both;overflow:hidden}#footer{clear:both;overflow:hidden}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/2c-r-fixed.css b/wp-content/themes/path/library/css/2c-r-fixed.css
new file mode 100644
index 0000000000000000000000000000000000000000..30dabb2e47975b1b30a97f5e01b12644ad24db4c
--- /dev/null
+++ b/wp-content/themes/path/library/css/2c-r-fixed.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+#body-container{overflow:hidden;width:960px;margin:0 auto}#container{overflow:hidden;float:left;width:960px}.content{overflow:hidden;float:right;width:620px}.no-widgets .content,.no-default-widgets .content{width:960px}#primary{float:left;width:300px}#secondary{clear:left;float:left;width:300px}#subsidiary{overflow:hidden}#subsidiary .widget{overflow:hidden;float:left;width:300px;margin:0 20px 0 0}#footer-container{clear:both;overflow:hidden}#footer{clear:both;overflow:hidden}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/3c-c-fixed.css b/wp-content/themes/path/library/css/3c-c-fixed.css
new file mode 100644
index 0000000000000000000000000000000000000000..a0403d9526ca8a6a4c26a26d3e397cb85acf3405
--- /dev/null
+++ b/wp-content/themes/path/library/css/3c-c-fixed.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+body{min-width:600px}#body-container{overflow:hidden;width:960px;margin:0 auto}#primary-menu{position:relative;z-index:100}#container{position:relative;clear:both;overflow:hidden;padding-left:240px; padding-right:240px; z-index:1}.no-widgets #container,.no-default-widgets #container{width:960px;padding-left:0;padding-right:0}.content,#primary,#secondary{position:relative;float:left;z-index:1}.content{width:100%}.no-widgets .content,.no-default-widgets .content{width:960px}#primary{width:220px; right:240px; margin-left:-100%}#secondary{width:220px; margin-right:-240px; margin-left:20px}* html #secondary{left:240px}#subsidiary{overflow:hidden}#subsidiary .widget{overflow:hidden;float:left;width:300px;margin:0 20px 0 0}#footer-container{clear:both;overflow:hidden}#footer{clear:both}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/3c-l-fixed.css b/wp-content/themes/path/library/css/3c-l-fixed.css
new file mode 100644
index 0000000000000000000000000000000000000000..abc84ce44e8181be86fa80aec1b85ec7dd951629
--- /dev/null
+++ b/wp-content/themes/path/library/css/3c-l-fixed.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+#body-container{overflow:hidden;width:960px;margin:0 auto}#container{overflow:hidden;float:left;width:960px}.content{overflow:hidden;float:left;width:520px}.no-widgets .content,.no-default-widgets .content{width:960px}#primary{overflow:hidden;float:right;width:190px}#secondary{overflow:hidden;float:right;width:190px;margin-right:20px}#subsidiary{overflow:hidden}#subsidiary .widget{overflow:hidden;float:left;width:300px;margin:0 20px 0 0}#footer-container{clear:both;overflow:hidden}#footer{clear:both}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/3c-r-fixed.css b/wp-content/themes/path/library/css/3c-r-fixed.css
new file mode 100644
index 0000000000000000000000000000000000000000..27427da933a0ac67d1a62b1ebcf8456d359ac044
--- /dev/null
+++ b/wp-content/themes/path/library/css/3c-r-fixed.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+#body-container{overflow:hidden;width:960px;margin:0 auto}#container{overflow:hidden;float:left;width:960px}.content{overflow:hidden;float:right;width:520px}.no-widgets .content,.no-default-widgets .content{width:960px}#primary{overflow:hidden;float:left;width:190px}#secondary{overflow:hidden;float:left;width:190px;margin-left:20px}#subsidiary{overflow:hidden}#subsidiary .widget{overflow:hidden;float:left;width:300px;margin:0 20px 0 0}#footer-container{clear:both;overflow:hidden}#footer{clear:both}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/admin.css b/wp-content/themes/path/library/css/admin.css
new file mode 100644
index 0000000000000000000000000000000000000000..8e7f52bdc72c0b2b02d6cee342274fbfd00d36cf
--- /dev/null
+++ b/wp-content/themes/path/library/css/admin.css
@@ -0,0 +1 @@
+.appearance_page_theme-settings .side .form-table th{width:20%;font-weight:bold;text-align:left;padding-left:0}.appearance_page_theme-settings .metabox-holder .column-1{float:left;width:66%}.appearance_page_theme-settings .metabox-holder .column-2{float:right;width:32%}.appearance_page_theme-settings .metabox-holder .column-3{clear:both;width:100%}.appearance_page_theme-settings .metabox-holder textarea{width:100%}.custom-post-format-wrap,.post-layout-wrap{padding:0 5px;max-height:170px;overflow-y:auto}.hybrid-post-settings{padding-top:5px}.hybrid-post-settings p{margin-bottom:15px !important}.widgets-php .columns-1{}.widgets-php .columns-2{overflow:hidden;float:left;width:48%}.widgets-php .columns-3{overflow:hidden;float:left;width:31%;margin-right:3.5%}.widgets-php .column-last{float:right;margin-right:0}.widgets-php .hybrid-widget-controls label{font-size:11px}.widgets-php .columns-2 input.widefat,.widgets-php .columns-2 select.widefat{width:99%}.widgets-php .columns-3 select.widefat{width:98.5%}.widgets-php .hybrid-widget-controls select[multiple="multiple"]{width:100%;height:5.0em !important}.widgets-php input.smallfat{float:right;width:66px}.widgets-php select.smallfat{float:right;min-width:66px}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/admin.dev.css b/wp-content/themes/path/library/css/admin.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..66d3ed2d1adf2ca8fea28f77565f2d35e7f5c144
--- /dev/null
+++ b/wp-content/themes/path/library/css/admin.dev.css
@@ -0,0 +1,76 @@
+/* Theme settings page. */
+.appearance_page_theme-settings .side .form-table th {
+	width: 20%;
+	font-weight: bold;
+	text-align: left;
+	padding-left: 0;
+	}
+.appearance_page_theme-settings .metabox-holder .column-1 {
+	float: left;
+	width: 66%;
+	}
+.appearance_page_theme-settings .metabox-holder .column-2 {
+	float: right;
+	width: 32%;
+	}
+.appearance_page_theme-settings .metabox-holder .column-3 {
+	clear: both;
+	width: 100%;
+	}
+.appearance_page_theme-settings .metabox-holder textarea {
+	width: 100%;
+	}
+
+/* Post edit screen. */
+.custom-post-format-wrap, .post-layout-wrap {
+	padding: 0 5px;
+	max-height: 170px;
+	overflow-y: auto;
+	}
+.hybrid-post-settings {
+	padding-top: 5px;
+	}
+.hybrid-post-settings p {
+	margin-bottom: 15px !important;
+	}
+
+/* Widgets page. */
+.widgets-php .columns-1 {
+	}
+.widgets-php .columns-2 {
+	overflow: hidden;
+	float: left;
+	width: 48%;
+	}
+.widgets-php .columns-3 {
+	overflow: hidden;
+	float: left;
+	width: 31%;
+	margin-right: 3.5%;
+	}
+.widgets-php .column-last {
+	float: right;
+	margin-right: 0;
+	}
+
+.widgets-php .hybrid-widget-controls label {
+	font-size: 11px;
+	}
+.widgets-php .columns-2 input.widefat, .widgets-php .columns-2 select.widefat {
+	width: 99%;
+	}
+.widgets-php .columns-3 select.widefat {
+	width: 98.5%;
+	}
+.widgets-php .hybrid-widget-controls select[multiple="multiple"] {
+	width: 100%;
+	height: 5.0em !important;
+	}
+.widgets-php input.smallfat {
+	float: right;
+	width: 66px;
+	}
+.widgets-php select.smallfat {
+	float: right;
+	min-width: 66px;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/drop-downs.css b/wp-content/themes/path/library/css/drop-downs.css
new file mode 100644
index 0000000000000000000000000000000000000000..44426d1913b259e5c783866cc22a36cee1102ad7
--- /dev/null
+++ b/wp-content/themes/path/library/css/drop-downs.css
@@ -0,0 +1 @@
+div.menu ul,nav.menu ul{margin:0;padding:0;list-style:none;line-height:1.0}div.menu ul ul,nav.menu ul ul{position:absolute;top:-999em;width:10em}div.menu ul ul li,nav.menu ul ul li{width:100%}div.menu li:hover,nav.menu li:hover{visibility:inherit}div.menu li,nav.menu li{float:left;position:relative}div.menu a,nav.menu a{display:block;position:relative}div.menu li:hover ul,div.menu li.sfHover ul,nav.menu li:hover ul,nav.menu li.sfHover ul{left:0;top:2em;z-index:99}div.menu li:hover li ul,div.menu li.sfHover li ul,nav.menu li:hover li ul,nav.menu li.sfHover li ul{top:-999em}div.menu li li:hover ul,div.menu li li.sfHover ul,nav.menu li li:hover ul,nav.menu li li.sfHover ul{left:10em;top:0}div.menu li li:hover li ul,div.menu li li.sfHover li ul,nav.menu li li:hover li ul,nav.menu li li.sfHover li ul{top:-999em}div.menu li li li:hover ul,div.menu li li li.sfHover ul,nav.menu li li li:hover ul,nav.menu li li li.sfHover ul{left:10em;top:0}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/drop-downs.dev.css b/wp-content/themes/path/library/css/drop-downs.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..f39e722141c392583cabe8556c17f6ead07ca11f
--- /dev/null
+++ b/wp-content/themes/path/library/css/drop-downs.dev.css
@@ -0,0 +1,64 @@
+/**
+ * Dropdowns Stylesheet - Sets up style rules for drop-down menus.
+ *
+ * @since 0.5.0
+ * @package Hybrid
+ * @subpackage CSS
+ */
+
+/* Drop-down styles. */
+div.menu ul, 
+nav.menu ul {
+	margin: 0;
+	padding: 0;
+	list-style: none;
+	line-height: 1.0;
+	}
+div.menu ul ul, 
+nav.menu ul ul {
+	position: absolute;
+	top: -999em;
+	width: 10em;
+	}
+div.menu ul ul li, 
+nav.menu ul ul li {
+	width: 100%;
+	}
+div.menu li:hover, 
+nav.menu li:hover {
+	visibility: inherit;
+	}
+div.menu li, 
+nav.menu li {
+	float: left;
+	position: relative;
+	}
+div.menu a, 
+nav.menu a {
+	display: block;
+	position: relative;
+	}
+div.menu li:hover ul, div.menu li.sfHover ul, 
+nav.menu li:hover ul, nav.menu li.sfHover ul {
+	left: 0;
+	top: 2em;
+	z-index: 99;
+	}
+div.menu li:hover li ul, div.menu li.sfHover li ul, 
+nav.menu li:hover li ul, nav.menu li.sfHover li ul {
+	top: -999em;
+	}
+div.menu li li:hover ul, div.menu li li.sfHover ul, 
+nav.menu li li:hover ul, nav.menu li li.sfHover ul {
+	left: 10em;
+	top: 0;
+	}
+div.menu li li:hover li ul, div.menu li li.sfHover li ul, 
+nav.menu li li:hover li ul, nav.menu li li.sfHover li ul {
+	top: -999em;
+	}
+div.menu li li li:hover ul, div.menu li li li.sfHover ul, 
+nav.menu li li li:hover ul, nav.menu li li li.sfHover ul {
+	left: 10em;
+	top: 0;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/gallery.css b/wp-content/themes/path/library/css/gallery.css
new file mode 100644
index 0000000000000000000000000000000000000000..c2b4ab079769246c5d52f8b0118b7a7f4f24e4ad
--- /dev/null
+++ b/wp-content/themes/path/library/css/gallery.css
@@ -0,0 +1 @@
+.gallery{display:block;clear:both;overflow:hidden;margin:0 auto}.gallery .gallery-row{display:block;clear:both;overflow:hidden;margin:0}.gallery .gallery-item{overflow:hidden;float:left;margin:0;text-align:center;list-style:none;padding:0}.gallery .gallery-item .gallery-icon img{width:auto;max-width:89%;height:auto;padding:1%;margin:0 auto}.gallery-caption{margin-left:0}.gallery .col-0{width:100%}.gallery .col-1{width:100%}.gallery .col-2{width:50%}.gallery .col-3{width:33.33%}.gallery .col-4{width:25%}.gallery .col-5{width:20%}.gallery .col-6{width:16.66%}.gallery .col-7{width:14.28%}.gallery .col-8{width:12.5%}.gallery .col-9{width:11.11%}.gallery .col-10{width:10%}.gallery .col-11{width:9.09%}.gallery .col-12{width:8.33%}.gallery .col-13{width:7.69%}.gallery .col-14{width:7.14%}.gallery .col-15{width:6.66%}.gallery .col-16{width:6.25%}.gallery .col-17{width:5.88%}.gallery .col-18{width:5.55%}.gallery .col-19{width:5.26%}.gallery .col-20{width:5%}.gallery .col-21{width:4.76%}.gallery .col-22{width:4.54%}.gallery .col-23{width:4.34%}.gallery .col-24{width:4.16%}.gallery .col-25{width:4%}.gallery .col-26{width:3.84%}.gallery .col-27{width:3.7%}.gallery .col-28{width:3.57%}.gallery .col-29{width:3.44%}.gallery .col-30{width:3.33%}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/gallery.dev.css b/wp-content/themes/path/library/css/gallery.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..0bd55b6e1d2ef9895fc1447532ef7573189c8091
--- /dev/null
+++ b/wp-content/themes/path/library/css/gallery.dev.css
@@ -0,0 +1,68 @@
+/**
+ * Cleaner Gallery Stylesheet
+ * @version 0.9.2
+ */
+
+.gallery {
+	display: block;
+	clear: both;
+	overflow: hidden;
+	margin: 0 auto;
+	}
+.gallery .gallery-row {
+	display: block;
+	clear: both;
+	overflow: hidden;
+	margin: 0;
+	}
+.gallery .gallery-item {
+	overflow: hidden;
+	float: left;
+	margin: 0;
+	text-align: center;
+	list-style: none;
+	padding: 0;
+	}
+.gallery .gallery-item .gallery-icon img {
+	width: auto;
+	max-width: 89%;
+	height: auto;
+	padding: 1%;
+	margin: 0 auto;
+	}
+.gallery-caption {
+	margin-left: 0;
+	}
+
+/* Image sizes depending on the number of columns */
+.gallery .col-0 { width: 100%; }
+.gallery .col-1 { width: 100%; }
+.gallery .col-2 { width: 50%; }
+.gallery .col-3 { width: 33.33%; }
+.gallery .col-4 { width: 25%; }
+.gallery .col-5 { width: 20%; }
+.gallery .col-6 { width: 16.66%; }
+.gallery .col-7 { width: 14.28%; }
+.gallery .col-8 { width: 12.5%; }
+.gallery .col-9 { width: 11.11%; }
+.gallery .col-10 { width: 10%; }
+.gallery .col-11 { width: 9.09%; }
+.gallery .col-12 { width: 8.33%; }
+.gallery .col-13 { width: 7.69%; }
+.gallery .col-14 { width: 7.14%; }
+.gallery .col-15 { width: 6.66%; }
+.gallery .col-16 { width: 6.25%; }
+.gallery .col-17 { width: 5.88%; }
+.gallery .col-18 { width: 5.55%; }
+.gallery .col-19 { width: 5.26%; }
+.gallery .col-20 { width: 5%; }
+.gallery .col-21 { width: 4.76%; }
+.gallery .col-22 { width: 4.54%; }
+.gallery .col-23 { width: 4.34%; }
+.gallery .col-24 { width: 4.16%; }
+.gallery .col-25 { width: 4%; }
+.gallery .col-26 { width: 3.84%; }
+.gallery .col-27 { width: 3.7%; }
+.gallery .col-28 { width: 3.57%; }
+.gallery .col-29 { width: 3.44%; }
+.gallery .col-30 { width: 3.33%; }
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/holy-grail-fluid.css b/wp-content/themes/path/library/css/holy-grail-fluid.css
new file mode 100644
index 0000000000000000000000000000000000000000..10606db3e9905521d3139e3ea15743228d925d3a
--- /dev/null
+++ b/wp-content/themes/path/library/css/holy-grail-fluid.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+*/
+body{min-width:600px}#container{overflow:hidden;padding-left:200px; padding-right:200px}.content,#primary,#secondary{position:relative;float:left;padding-bottom:20010px; margin-bottom:-20000px}.content{width:100%}#primary{width:200px; right:200px; margin-left:-100%}#secondary{width:200px; margin-right:-200px}#footer{clear:both}* html #secondary{left:200px}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/nav-bar.css b/wp-content/themes/path/library/css/nav-bar.css
new file mode 100644
index 0000000000000000000000000000000000000000..aa85ad6720620df4cfd231ee9513bcbf1a4f223a
--- /dev/null
+++ b/wp-content/themes/path/library/css/nav-bar.css
@@ -0,0 +1 @@
+div.menu ul,nav.menu ul{margin:0;padding:0;list-style:none;line-height:1.0;position:relative}div.menu ul ul,nav.menu ul ul{position:absolute;top:-999em;width:100%}div.menu ul ul ul,nav.menu ul ul ul{width:10em}div.menu ul ul li,nav.menu ul ul li{position:relative;width:auto;float:left}div.menu ul ul ul li,nav.menu ul ul ul li{width:100%}div.menu li:hover,nav.menu li:hover{visibility:inherit}div.menu li,nav.menu li{float:left;position:static}div.menu a,nav.menu a{display:block;position:relative}div.menu li:hover ul,div.menu li.sfHover ul,nav.menu li:hover ul,nav.menu li.sfHover ul{left:0;top:2em;z-index:99}div.menu li:hover li ul,div.menu li.sfHover li ul,nav.menu li:hover li ul,nav.menu li.sfHover li ul{top:-999em}div.menu li li:hover ul,div.menu li li.sfHover ul,nav.menu li li:hover ul,nav.menu li li.sfHover ul{left:10em;top:0}div.menu li li:hover li ul,div.menu li li.sfHover li ul,nav.menu li li:hover li ul,nav.menu li li.sfHover li ul{top:-999em}div.menu li li li:hover ul,div.menu li li li.sfHover ul,nav.menu li li li:hover ul,nav.menu li li li.sfHover ul{left:10em;top:0}div.menu ul li.current-menu-item ul,div.menu ul ul li:hover ul,div.menu ul ul li.sfHover ul,nav.menu ul li.current-menu-item ul,nav.menu ul ul li:hover ul,nav.menu ul ul li.sfHover ul{left:0;top:2.5em}div.menu ul li.current-menu-item ul ul,nav.menu ul li.current-menu-item ul ul{top:-999em}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/nav-bar.dev.css b/wp-content/themes/path/library/css/nav-bar.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..43f91fc075986d0132e73a118117e998413cec9f
--- /dev/null
+++ b/wp-content/themes/path/library/css/nav-bar.dev.css
@@ -0,0 +1,83 @@
+/**
+ * Nav-Bar Stylesheet - Sets up style rules for nav-bar style menus
+ *
+ * @since 1.3.0
+ * @package HybridCore
+ * @subpackage CSS
+ */
+
+div.menu ul, 
+nav.menu ul {
+	margin: 0;
+	padding: 0;
+	list-style: none;
+	line-height: 1.0;
+	position: relative;
+	}
+div.menu ul ul, 
+nav.menu ul ul {
+	position: absolute;
+	top: -999em;
+	width: 100%;
+	}
+div.menu ul ul ul,
+nav.menu ul ul ul {
+	width: 10em;
+	}
+div.menu ul ul li, 
+nav.menu ul ul li {
+	position: relative;
+	width: auto;
+	float: left;
+	}
+div.menu ul ul ul li,
+nav.menu ul ul ul li {
+	width: 100%;
+	}
+div.menu li:hover, 
+nav.menu li:hover {
+	visibility: inherit;
+	}
+div.menu li, 
+nav.menu li {
+	float: left;
+	position: static;
+	}
+div.menu a, 
+nav.menu a {
+	display: block;
+	position: relative;
+	}
+div.menu li:hover ul, div.menu li.sfHover ul, 
+nav.menu li:hover ul, nav.menu li.sfHover ul {
+	left: 0;
+	top: 2em;
+	z-index: 99;
+	}
+div.menu li:hover li ul, div.menu li.sfHover li ul, 
+nav.menu li:hover li ul, nav.menu li.sfHover li ul {
+	top: -999em;
+	}
+div.menu li li:hover ul, div.menu li li.sfHover ul, 
+nav.menu li li:hover ul, nav.menu li li.sfHover ul {
+	left: 10em;
+	top: 0;
+	}
+div.menu li li:hover li ul, div.menu li li.sfHover li ul, 
+nav.menu li li:hover li ul, nav.menu li li.sfHover li ul {
+	top: -999em;
+	}
+div.menu li li li:hover ul, div.menu li li li.sfHover ul, 
+nav.menu li li li:hover ul, nav.menu li li li.sfHover ul {
+	left: 10em;
+	top: 0;
+	}
+div.menu ul li.current-menu-item ul, div.menu ul ul li:hover ul, div.menu ul ul li.sfHover ul,
+nav.menu ul li.current-menu-item ul, nav.menu ul ul li:hover ul, nav.menu ul ul li.sfHover ul {
+	left: 0;
+	top: 2.5em;
+	}
+div.menu ul li.current-menu-item ul ul,
+nav.menu ul li.current-menu-item ul ul {
+	top: -999em;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/plugins.css b/wp-content/themes/path/library/css/plugins.css
new file mode 100644
index 0000000000000000000000000000000000000000..9f1ec36797f07c06dbe63ba1238897bb8b0a43ee
--- /dev/null
+++ b/wp-content/themes/path/library/css/plugins.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+*/
+.wp-pagenavi .pages{margin:2px 3px 2px 0;font-style:italic}.wp-pagenavi .current{margin:2px;padding:1px 6px;font-weight:bold}.wp-pagenavi .extend{margin:2px}.wp-pagenavi a{margin:0 2px;padding:1px 6px;font-style:italic;border:1px solid #ccc}.WP-EmailIcon{padding:0;margin:0;border:none}.comment_license{font-style:italic}img#wpstats{overflow:hidden !important;width:0 !important;height:0 !important;padding:0 !important;margin:0 !important}.contact-form{margin-bottom:21px}.contact-form legend{display:none}.contact-form .form-input input{display:block;margin-bottom:6px;padding:3px 6px;width:300px}.contact-form label{font-size:.9em}.contact-form textarea{width:97%;margin-bottom:6px;padding:6px}.contact-form .form-option{margin-bottom:6px}.contact-form .button{width:100px;margin-right:9px;padding:6px 9px}.contact-form .button:hover{cursor:pointer}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/reset.css b/wp-content/themes/path/library/css/reset.css
new file mode 100644
index 0000000000000000000000000000000000000000..c2542bdb5074ff8e892b45d066faf0dc62c4ccc5
--- /dev/null
+++ b/wp-content/themes/path/library/css/reset.css
@@ -0,0 +1 @@
+html,body,div,span,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;background:transparent;border:none;text-decoration:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}b,i,hr,u,center,menu,layer,s,strike,font,xmp{margin:0;padding:0;vertical-align:baseline;outline:none;font-size:100%;font-weight:normal;font-style:normal;background:transparent;border:none;text-decoration:none}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/reset.dev.css b/wp-content/themes/path/library/css/reset.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..25b5efbe3bf14357d3c7f862eb6b0d68cc7a4b4b
--- /dev/null
+++ b/wp-content/themes/path/library/css/reset.dev.css
@@ -0,0 +1,27 @@
+html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
+
+article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
+	display: block;
+	}
+
+b, i, hr, u, center, menu, layer, s, strike, font, xmp {
+	margin: 0;
+	padding: 0;
+	vertical-align: baseline;
+	outline: none;
+	font-size: 100%;
+	font-weight: normal;
+	font-style: normal;
+	background: transparent;
+	border: none;
+	text-decoration: none;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/css/screen.css b/wp-content/themes/path/library/css/screen.css
new file mode 100644
index 0000000000000000000000000000000000000000..abad3eff3654a1b2a4043854f3d619a0f15e1208
--- /dev/null
+++ b/wp-content/themes/path/library/css/screen.css
@@ -0,0 +1,5 @@
+/**
+ * @deprecated 1.0.0 - This file is for backwards compatibility with the Hybrid parent theme.  It will
+ * be removed in a future version.
+ */
+.sticky,.bypostauthor{}body{font:normal normal normal 15px/21px Georgia,Times,"Times New Roman",serif;color:#000}#body-container{margin:90px auto 21px auto}a{color:#21759b;text-decoration:none}a:visited{color:#551a8b}a:hover,a:active{color:#d54e21;text-decoration:underline}h1,h2,h3,h4,h5,h6{font-family:Arial,Verdana,sans-serif;color:#000;font-weight:bold}h1{font-size:24px}h2{font-size:21px}h3{font-size:19px}h4{font-size:17px}h5{font-size:15px}h6{font-size:13px}ul{list-style:square}blockquote{font-style:italic;color:#555}blockquote blockquote{color:#777}blockquote em{font-style:normal}pre{padding:9px;background:#f9f9f9;border:1px solid #ccc}code{padding:0 3px;background:#eee}pre code{background:transparent}table{width:100%;border-collapse:separate;border-top:1px solid #ccc;border-left:1px solid #ccc}caption{font-size:.9em;font-style:italic;text-align:right}td,th{padding:3px 6px;border-bottom:1px solid #ccc;border-right:1px solid #ccc}th{background:#eee}.drop-cap{float:left;margin:3px 3px 0 0;font:normal normal normal 47px/35px "Warnock Pro","Goudy Old Style",Palatino,"Book Antiqua",Georgia,serif;color:#333}.note{padding:6px 9px;background:#eee;border:1px solid #ccc}.warning,.alert{padding:6px 9px;background:#fffbbc;border:1px solid #E6DB55}.error{padding:6px 9px;background:#ffebe8;border:1px solid #C00}.download{padding:6px 9px;background:#e7f7d3;border:1px solid #6c3}.breadcrumb{margin:0 0 30px 0;font-size:.9em;font-style:italic;color:#666}.breadcrumb a{color:#111;text-decoration:none}.breadcrumb a:hover{color:#d54e21;text-decoration:underline}.hentry img{max-width:610px;height:auto;padding:4px;border:1px solid #ccc}.no-widgets .hentry img{max-width:950px}img.alignleft,img.alignright{margin-bottom:10px}.thumbnail{float:left;width:100px;height:100px;margin:5px 15px 10px 0}img.wp-smiley{max-width:12px;padding:0;background:transparent;border:none}.wp-caption{max-width:616px;margin-top:6px;padding:6px 1px 3px 1px;border:1px solid #ccc;text-align:center}.wp-caption .wp-caption-text{margin:0;padding:0 5px;text-align:right;font-size:.9em;font-style:italic;color:#666}.wp-caption img{max-width:604px;margin:0 auto;padding:0;border:1px solid #666}.no-widgets .wp-caption{max-width:956px}.no-widgets .wp-caption img{max-width:946px}.gallery img{border:1px solid #ccc}.avatar{float:left;width:100px;height:100px;margin:5px 15px 0 0;padding:4px;border:1px solid #ccc}#header{margin:0 0 40px 0}#site-title{font:normal normal bold 35px/35px Arial,Verdana,sans-serif;margin:0 0 10px 0}#site-title a{color:#000}#site-description{font:normal normal normal 16px/20px Georgia,Times,"Times New Roman",serif;margin:0;color:#666}#primary-menu,#navigation{overflow:visible;height:34px;margin:0 0 60px 0;z-index:100}#primary-menu li,#page-nav li{margin-right:15px}#primary-menu li li,#page-nav li li{margin-right:0}#primary-menu li a,#page-nav li a{padding:8px 15px 8px 15px;color:#111;background:#fff;border:1px solid #ccc}#primary-menu li:hover ul,#primary-menu li.sfHover ul,#page-nav li:hover ul,#page-nav li.sfHover ul{top:32px}#primary-menu li li a,#page-nav li li a{border-top:none;margin-right:0}#primary-menu li ul,#page-nav li ul{background:#fff;border-top:1px solid #ccc}#primary-menu li li:hover ul,#primary-menu li li.sfHover ul,#primary-menu li li li:hover ul,#primary-menu li li li.sfHover ul,#page-nav li li:hover ul,#page-nav li li.sfHover ul,#page-nav li li li:hover ul,#page-nav li li li.sfHover ul {top:-1px}#primary-menu li li li,#page-nav li li li{margin-left:-1px}#container{margin-bottom:21px}.content{margin:0 0 21px 0}.no-widgets .content,.page-template-no-widgets .content{width:960px}.hentry{overflow:hidden;margin:0 0 40px 0}.singular .hentry{margin:0}.loop-meta{overflow:hidden;margin:0 0 40px 0}.loop-title{font:normal normal bold 24px/24px Arial,Verdana,sans-serif}.entry-title{font:normal normal bold 24px/24px Arial,Verdana,sans-serif;margin:0 0 12px 0}.archive .entry-title,.search .entry-title{font-size:21px;margin:0 0 5px 0}.singular-page .entry-title,.singular-attachment .entry-title{margin:0 0 21px 0}.entry-title a{color:#000}.byline{margin:0 0 30px 0;font-style:italic;color:#666}.archive .byline,.search .byline{margin:0 0 5px 0}.entry-content{margin:0 0 10px 0}.entry-meta{clear:both;font-style:italic;color:#666}p.page-links,.comment-pagination{clear:both}.comment-pagination{margin-bottom:21px}p.page-links a,.comment-pagination .page-numbers{margin:0 3px;padding:3px 9px 3px 9px;border:1px solid #ccc}.navigation-links{margin-bottom:21px;font-style:italic}.navigation-links .previous{float:left;max-width:50%}.navigation-links .next{float:right;max-width:50%;text-align:right}.navigation-attachment{overflow:hidden}.widget{overflow:hidden;margin:0 0 15px 0;color:#464646}.widget a{color:#464646;text-decoration:underline}.widget a:hover{color:#d54e21;text-decoration:none}.widget-title{font-size:18px;color:#111}#utility-before-content,#utility-after-content,#utility-after-page,#utility-after-single{margin:0 0 21px 0;padding:20px 20px 0 20px;border:1px solid #ccc}#comments-template{clear:both}.comments-header{font-size:1.2em}.comments-closed{font-style:italic}ol.comment-list,ol.comment-list ol.children{list-style:none;margin:0 0 21px 0}li.comment,li li li.comment,li li li li li.comment,li li li li li li li.comment,li li li li li li li li li.comment,li.pingback,li.trackback{overflow:hidden;margin:0 0 21px 0;padding:21px 21px 0 21px;background:#fff;border:1px solid #ccc}li li.comment,li li li li.comment,li li li li li li.comment,li li li li li li li li.comment,li li li li li li li li li li.comment{background:#f9f9f9}#comments-template .avatar{width:40px;height:40px;float:left;margin-right:15px;padding:0;border:1px solid #666}.comment-meta{margin:10px 0 21px 0;font-size:13px;color:#666}.comment-author{font-size:15px;color:#000}.comment-reply-link,.permalink,.comment-edit-link{font-style:italic;color:#666}.comment-text{clear:left;margin:0 15px}.text-input{display:block;padding:3px 6px;width:97%}#comments-template label{font-size:.9em}textarea{width:98%}#submit{display:inline-block;margin-right:15px;padding:7px 15px 8px 15px;background:#fff;border:1px solid #ccc}#submit:hover{cursor:pointer;background:#f9f9f9}#footer-container{clear:both;margin:0 0 21px 0}#subsidiary{margin:0 0 21px 0}#footer{font-style:italic;color:#444}#footer .copyright{display:inline;float:left;margin-right:9px}.content{float:left;width:620px}#primary{float:right;width:300px}#secondary{clear:right;float:right;width:300px}
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/breadcrumb-trail.php b/wp-content/themes/path/library/extensions/breadcrumb-trail.php
new file mode 100644
index 0000000000000000000000000000000000000000..c75a69e1af152bcc6b6ab5dbf2e292e17afc94be
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/breadcrumb-trail.php
@@ -0,0 +1,692 @@
+<?php
+/**
+ * Breadcrumb Trail - A breadcrumb menu script for WordPress.
+ *
+ * Breadcrumb Trail is a script for showing a breadcrumb trail for any type of page.  It tries to 
+ * anticipate any type of structure and display the best possible trail that matches your site's 
+ * permalink structure.  While not perfect, it attempts to fill in the gaps left by many other 
+ * breadcrumb scripts.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package BreadcrumbTrail
+ * @version 0.5.2
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://justintadlock.com/archives/2009/04/05/breadcrumb-trail-wordpress-plugin
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Shows a breadcrumb for all types of pages.  This function is formatting the final output of the 
+ * breadcrumb trail.  The breadcrumb_trail_get_items() function returns the items and this function 
+ * formats those items.
+ *
+ * @since 0.1.0
+ * @access public
+ * @param array $args Mixed arguments for the menu.
+ * @return string Output of the breadcrumb menu.
+ */
+function breadcrumb_trail( $args = array() ) {
+
+	/* Create an empty variable for the breadcrumb. */
+	$breadcrumb = '';
+
+	/* Set up the default arguments for the breadcrumb. */
+	$defaults = array(
+		'container' => 		'div', // div, nav, p, etc.
+		'separator' => 		'/',
+		'before' => 		__( 'Browse:', 'breadcrumb-trail' ),
+		'after' => 		false,
+		'front_page' => 	true,
+		'show_home' => 		__( 'Home', 'breadcrumb-trail' ),
+		'echo' => 		true
+	);
+
+	/* Allow singular post views to have a taxonomy's terms prefixing the trail. */
+	if ( is_singular() ) {
+		$post = get_queried_object();
+		$defaults["singular_{$post->post_type}_taxonomy"] = false;
+	}
+
+	/* Apply filters to the arguments. */
+	$args = apply_filters( 'breadcrumb_trail_args', $args );
+
+	/* Parse the arguments and extract them for easy variable naming. */
+	$args = wp_parse_args( $args, $defaults );
+
+	/* Get the trail items. */
+	$trail = breadcrumb_trail_get_items( $args );
+
+	/* Connect the breadcrumb trail if there are items in the trail. */
+	if ( !empty( $trail ) && is_array( $trail ) ) {
+
+		/* Open the breadcrumb trail containers. */
+		$breadcrumb = '<' . tag_escape( $args['container'] ) . ' class="breadcrumb-trail breadcrumbs" itemprop="breadcrumb">';
+
+		/* If $before was set, wrap it in a container. */
+		$breadcrumb .= ( !empty( $args['before'] ) ? '<span class="trail-before">' . $args['before'] . '</span> ' : '' );
+
+		/* Adds the 'trail-begin' class around first item if there's more than one item. */
+		if ( 1 < count( $trail ) )
+			array_unshift( $trail, '<span class="trail-begin">' . array_shift( $trail ) . '</span>' );
+
+		/* Adds the 'trail-end' class around last item. */
+		array_push( $trail, '<span class="trail-end">' . array_pop( $trail ) . '</span>' );
+
+		/* Format the separator. */
+		$separator = ( !empty( $args['separator'] ) ? '<span class="sep">' . $args['separator'] . '</span>' : '<span class="sep">/</span>' );
+
+		/* Join the individual trail items into a single string. */
+		$breadcrumb .= join( " {$separator} ", $trail );
+
+		/* If $after was set, wrap it in a container. */
+		$breadcrumb .= ( !empty( $args['after'] ) ? ' <span class="trail-after">' . $args['after'] . '</span>' : '' );
+
+		/* Close the breadcrumb trail containers. */
+		$breadcrumb .= '</' . tag_escape( $args['container'] ) . '>';
+	}
+
+	/* Allow developers to filter the breadcrumb trail HTML. */
+	$breadcrumb = apply_filters( 'breadcrumb_trail', $breadcrumb, $args );
+
+	/* Output the breadcrumb. */
+	if ( $args['echo'] )
+		echo $breadcrumb;
+	else
+		return $breadcrumb;
+}
+
+/**
+ * Gets the items for the breadcrumb trail.  This is the heart of the script.  It checks the current page 
+ * being viewed and decided based on the information provided by WordPress what items should be
+ * added to the breadcrumb trail.
+ *
+ * @since 0.4.0
+ * @todo Build in caching based on the queried object ID.
+ * @access private
+ * @param array $args Mixed arguments for the menu.
+ * @return array List of items to be shown in the trail.
+ */
+function breadcrumb_trail_get_items( $args = array() ) {
+	global $wp_rewrite;
+
+	/* Set up an empty trail array and empty path. */
+	$trail = array();
+	$path = '';
+
+	/* If $show_home is set and we're not on the front page of the site, link to the home page. */
+	if ( !is_front_page() && $args['show_home'] )
+		$trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $args['show_home'] . '</a>';
+
+	/* If bbPress is installed and we're on a bbPress page. */
+	if ( function_exists( 'is_bbpress' ) && is_bbpress() ) {
+		$trail = array_merge( $trail, breadcrumb_trail_get_bbpress_items() );
+	}
+
+	/* If viewing the front page of the site. */
+	elseif ( is_front_page() ) {
+		if ( $args['show_home'] && $args['front_page'] )
+			$trail[] = "{$args['show_home']}";
+	}
+
+	/* If viewing the "home"/posts page. */
+	elseif ( is_home() ) {
+		$home_page = get_page( get_queried_object_id() );
+		$trail = array_merge( $trail, breadcrumb_trail_get_parents( $home_page->post_parent, '' ) );
+		$trail[] = get_the_title( $home_page->ID );
+	}
+
+	/* If viewing a singular post (page, attachment, etc.). */
+	elseif ( is_singular() ) {
+
+		/* Get singular post variables needed. */
+		$post = get_queried_object();
+		$post_id = absint( get_queried_object_id() );
+		$post_type = $post->post_type;
+		$parent = absint( $post->post_parent );
+
+		/* Get the post type object. */
+		$post_type_object = get_post_type_object( $post_type );
+
+		/* If viewing a singular 'post'. */
+		if ( 'post' == $post_type ) {
+
+			/* If $front has been set, add it to the $path. */
+			$path .= trailingslashit( $wp_rewrite->front );
+
+			/* If there's a path, check for parents. */
+			if ( !empty( $path ) )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* Map the permalink structure tags to actual links. */
+			$trail = array_merge( $trail, breadcrumb_trail_map_rewrite_tags( $post_id, get_option( 'permalink_structure' ), $args ) );
+		}
+
+		/* If viewing a singular 'attachment'. */
+		elseif ( 'attachment' == $post_type ) {
+
+			/* If $front has been set, add it to the $path. */
+			$path .= trailingslashit( $wp_rewrite->front );
+
+			/* If there's a path, check for parents. */
+			if ( !empty( $path ) )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* Map the post (parent) permalink structure tags to actual links. */
+			$trail = array_merge( $trail, breadcrumb_trail_map_rewrite_tags( $post->post_parent, get_option( 'permalink_structure' ), $args ) );
+		}
+
+		/* If a custom post type, check if there are any pages in its hierarchy based on the slug. */
+		elseif ( 'page' !== $post_type ) {
+
+			/* If $front has been set, add it to the $path. */
+			if ( $post_type_object->rewrite['with_front'] && $wp_rewrite->front )
+				$path .= trailingslashit( $wp_rewrite->front );
+
+			/* If there's a slug, add it to the $path. */
+			if ( !empty( $post_type_object->rewrite['slug'] ) )
+				$path .= $post_type_object->rewrite['slug'];
+
+			/* If there's a path, check for parents. */
+			if ( !empty( $path ) )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* If there's an archive page, add it to the trail. */
+			if ( !empty( $post_type_object->has_archive ) )
+				$trail[] = '<a href="' . get_post_type_archive_link( $post_type ) . '" title="' . esc_attr( $post_type_object->labels->name ) . '">' . $post_type_object->labels->name . '</a>';
+		}
+
+		/* If the post type path returns nothing and there is a parent, get its parents. */
+		if ( ( empty( $path ) && 0 !== $parent ) || ( 'attachment' == $post_type ) )
+			$trail = array_merge( $trail, breadcrumb_trail_get_parents( $parent, '' ) );
+
+		/* Or, if the post type is hierarchical and there's a parent, get its parents. */
+		elseif ( 0 !== $parent && is_post_type_hierarchical( $post_type ) )
+			$trail = array_merge( $trail, breadcrumb_trail_get_parents( $parent, '' ) );
+
+		/* Display terms for specific post type taxonomy if requested. */
+		if ( !empty( $args["singular_{$post_type}_taxonomy"] ) && $terms = get_the_term_list( $post_id, $args["singular_{$post_type}_taxonomy"], '', ', ', '' ) )
+			$trail[] = $terms;
+
+		/* End with the post title. */
+		$post_title = single_post_title( '', false );
+		if ( !empty( $post_title ) )
+			$trail[] = $post_title;
+	}
+
+	/* If we're viewing any type of archive. */
+	elseif ( is_archive() ) {
+
+		/* If viewing a taxonomy term archive. */
+		if ( is_tax() || is_category() || is_tag() ) {
+
+			/* Get some taxonomy and term variables. */
+			$term = get_queried_object();
+			$taxonomy = get_taxonomy( $term->taxonomy );
+
+			/* Get the path to the term archive. Use this to determine if a page is present with it. */
+			if ( is_category() )
+				$path = get_option( 'category_base' );
+			elseif ( is_tag() )
+				$path = get_option( 'tag_base' );
+			else {
+				if ( $taxonomy->rewrite['with_front'] && $wp_rewrite->front )
+					$path = trailingslashit( $wp_rewrite->front );
+				$path .= $taxonomy->rewrite['slug'];
+			}
+
+			/* Get parent pages by path if they exist. */
+			if ( $path )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* If the taxonomy is hierarchical, list its parent terms. */
+			if ( is_taxonomy_hierarchical( $term->taxonomy ) && $term->parent )
+				$trail = array_merge( $trail, breadcrumb_trail_get_term_parents( $term->parent, $term->taxonomy ) );
+
+			/* Add the term name to the trail end. */
+			$trail[] = single_term_title( '', false );
+		}
+
+		/* If viewing a post type archive. */
+		elseif ( is_post_type_archive() ) {
+
+			/* Get the post type object. */
+			$post_type_object = get_post_type_object( get_query_var( 'post_type' ) );
+
+			/* If $front has been set, add it to the $path. */
+			if ( $post_type_object->rewrite['with_front'] && $wp_rewrite->front )
+				$path .= trailingslashit( $wp_rewrite->front );
+
+			/* If there's a slug, add it to the $path. */
+			if ( !empty( $post_type_object->rewrite['slug'] ) )
+				$path .= $post_type_object->rewrite['slug'];
+
+			/* If there's a path, check for parents. */
+			if ( !empty( $path ) )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* Add the post type [plural] name to the trail end. */
+			$trail[] = $post_type_object->labels->name;
+		}
+
+		/* If viewing an author archive. */
+		elseif ( is_author() ) {
+
+			/* If $front has been set, add it to $path. */
+			if ( !empty( $wp_rewrite->front ) )
+				$path .= trailingslashit( $wp_rewrite->front );
+
+			/* If an $author_base exists, add it to $path. */
+			if ( !empty( $wp_rewrite->author_base ) )
+				$path .= $wp_rewrite->author_base;
+
+			/* If $path exists, check for parent pages. */
+			if ( !empty( $path ) )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $path ) );
+
+			/* Add the author's display name to the trail end. */
+			$trail[] = get_the_author_meta( 'display_name', get_query_var( 'author' ) );
+		}
+
+		/* If viewing a time-based archive. */
+		elseif ( is_time() ) {
+
+			if ( get_query_var( 'minute' ) && get_query_var( 'hour' ) )
+				$trail[] = get_the_time( __( 'g:i a', 'breadcrumb-trail' ) );
+
+			elseif ( get_query_var( 'minute' ) )
+				$trail[] = sprintf( __( 'Minute %1$s', 'breadcrumb-trail' ), get_the_time( __( 'i', 'breadcrumb-trail' ) ) );
+
+			elseif ( get_query_var( 'hour' ) )
+				$trail[] = get_the_time( __( 'g a', 'breadcrumb-trail' ) );
+		}
+
+		/* If viewing a date-based archive. */
+		elseif ( is_date() ) {
+
+			/* If $front has been set, check for parent pages. */
+			if ( $wp_rewrite->front )
+				$trail = array_merge( $trail, breadcrumb_trail_get_parents( '', $wp_rewrite->front ) );
+
+			if ( is_day() ) {
+				$trail[] = '<a href="' . get_year_link( get_the_time( 'Y' ) ) . '" title="' . get_the_time( esc_attr__( 'Y', 'breadcrumb-trail' ) ) . '">' . get_the_time( __( 'Y', 'breadcrumb-trail' ) ) . '</a>';
+				$trail[] = '<a href="' . get_month_link( get_the_time( 'Y' ), get_the_time( 'm' ) ) . '" title="' . get_the_time( esc_attr__( 'F', 'breadcrumb-trail' ) ) . '">' . get_the_time( __( 'F', 'breadcrumb-trail' ) ) . '</a>';
+				$trail[] = get_the_time( __( 'd', 'breadcrumb-trail' ) );
+			}
+
+			elseif ( get_query_var( 'w' ) ) {
+				$trail[] = '<a href="' . get_year_link( get_the_time( 'Y' ) ) . '" title="' . get_the_time( esc_attr__( 'Y', 'breadcrumb-trail' ) ) . '">' . get_the_time( __( 'Y', 'breadcrumb-trail' ) ) . '</a>';
+				$trail[] = sprintf( __( 'Week %1$s', 'breadcrumb-trail' ), get_the_time( esc_attr__( 'W', 'breadcrumb-trail' ) ) );
+			}
+
+			elseif ( is_month() ) {
+				$trail[] = '<a href="' . get_year_link( get_the_time( 'Y' ) ) . '" title="' . get_the_time( esc_attr__( 'Y', 'breadcrumb-trail' ) ) . '">' . get_the_time( __( 'Y', 'breadcrumb-trail' ) ) . '</a>';
+				$trail[] = get_the_time( __( 'F', 'breadcrumb-trail' ) );
+			}
+
+			elseif ( is_year() ) {
+				$trail[] = get_the_time( __( 'Y', 'breadcrumb-trail' ) );
+			}
+		}
+	}
+
+	/* If viewing search results. */
+	elseif ( is_search() )
+		$trail[] = sprintf( __( 'Search results for &quot;%1$s&quot;', 'breadcrumb-trail' ), esc_attr( get_search_query() ) );
+
+	/* If viewing a 404 error page. */
+	elseif ( is_404() )
+		$trail[] = __( '404 Not Found', 'breadcrumb-trail' );
+
+	/* Allow devs to step in and filter the $trail array. */
+	return apply_filters( 'breadcrumb_trail_items', $trail, $args );
+}
+
+/**
+ * Gets the items for the breadcrumb trail if bbPress is installed.
+ *
+ * @since 0.5.0
+ * @access private
+ * @param array $args Mixed arguments for the menu.
+ * @return array List of items to be shown in the trail.
+ */
+function breadcrumb_trail_get_bbpress_items( $args = array() ) {
+
+	/* Set up a new trail items array. */
+	$trail = array();
+
+	/* Get the forum post type object. */
+	$post_type_object = get_post_type_object( bbp_get_forum_post_type() );
+
+	/* If not viewing the forum root/archive page and a forum archive exists, add it. */
+	if ( !empty( $post_type_object->has_archive ) && !bbp_is_forum_archive() )
+		$trail[] = '<a href="' . get_post_type_archive_link( bbp_get_forum_post_type() ) . '">' . bbp_get_forum_archive_title() . '</a>';
+
+	/* If viewing the forum root/archive. */
+	if ( bbp_is_forum_archive() ) {
+		$trail[] = bbp_get_forum_archive_title();
+	}
+
+	/* If viewing the topics archive. */
+	elseif ( bbp_is_topic_archive() ) {
+		$trail[] = bbp_get_topic_archive_title();
+	}
+
+	/* If viewing a topic tag archive. */
+	elseif ( bbp_is_topic_tag() ) {
+		$trail[] = bbp_get_topic_tag_name();
+	}
+
+	/* If viewing a topic tag edit page. */
+	elseif ( bbp_is_topic_tag_edit() ) {
+		$trail[] = '<a href="' . bbp_get_topic_tag_link() . '">' . bbp_get_topic_tag_name() . '</a>';
+		$trail[] = __( 'Edit', 'breadcrumb-trail' );
+	}
+
+	/* If viewing a "view" page. */
+	elseif ( bbp_is_single_view() ) {
+		$trail[] = bbp_get_view_title();
+	}
+
+	/* If viewing a single topic page. */
+	elseif ( bbp_is_single_topic() ) {
+
+		/* Get the queried topic. */
+		$topic_id = get_queried_object_id();
+
+		/* Get the parent items for the topic, which would be its forum (and possibly forum grandparents). */
+		$trail = array_merge( $trail, breadcrumb_trail_get_parents( bbp_get_topic_forum_id( $topic_id ) ) );
+
+		/* If viewing a split, merge, or edit topic page, show the link back to the topic.  Else, display topic title. */
+		if ( bbp_is_topic_split() || bbp_is_topic_merge() || bbp_is_topic_edit() )
+			$trail[] = '<a href="' . bbp_get_topic_permalink( $topic_id ) . '">' . bbp_get_topic_title( $topic_id ) . '</a>';
+		else
+			$trail[] = bbp_get_topic_title( $topic_id );
+
+		/* If viewing a topic split page. */
+		if ( bbp_is_topic_split() )
+			$trail[] = __( 'Split', 'breadcrumb-trail' );
+
+		/* If viewing a topic merge page. */
+		elseif ( bbp_is_topic_merge() )
+			$trail[] = __( 'Merge', 'breadcrumb-trail' );
+
+		/* If viewing a topic edit page. */
+		elseif ( bbp_is_topic_edit() )
+			$trail[] = __( 'Edit', 'breadcrumb-trail' );
+	}
+
+	/* If viewing a single reply page. */
+	elseif ( bbp_is_single_reply() ) {
+
+		/* Get the queried reply object ID. */
+		$reply_id = get_queried_object_id();
+
+		/* Get the parent items for the reply, which should be its topic. */
+		$trail = array_merge( $trail, breadcrumb_trail_get_parents( bbp_get_reply_topic_id( $reply_id ) ) );
+
+		/* If viewing a reply edit page, link back to the reply. Else, display the reply title. */
+		if ( bbp_is_reply_edit() ) {
+			$trail[] = '<a href="' . bbp_get_reply_url( $reply_id ) . '">' . bbp_get_reply_title( $reply_id ) . '</a>';
+			$trail[] = __( 'Edit', 'breadcrumb-trail' );
+
+		} else {
+			$trail[] = bbp_get_reply_title( $reply_id );
+		}
+
+	}
+
+	/* If viewing a single forum. */
+	elseif ( bbp_is_single_forum() ) {
+
+		/* Get the queried forum ID and its parent forum ID. */
+		$forum_id = get_queried_object_id();
+		$forum_parent_id = bbp_get_forum_parent_id( $forum_id );
+
+		/* If the forum has a parent forum, get its parent(s). */
+		if ( 0 !== $forum_parent_id)
+			$trail = array_merge( $trail, breadcrumb_trail_get_parents( $forum_parent_id ) );
+
+		/* Add the forum title to the end of the trail. */
+		$trail[] = bbp_get_forum_title( $forum_id );
+	}
+
+	/* If viewing a user page or user edit page. */
+	elseif ( bbp_is_single_user() || bbp_is_single_user_edit() ) {
+
+		if ( bbp_is_single_user_edit() ) {
+			$trail[] = '<a href="' . bbp_get_user_profile_url() . '">' . bbp_get_displayed_user_field( 'display_name' ) . '</a>';
+			$trail[] = __( 'Edit', 'breadcrumb-trail' );
+		} else {
+			$trail[] = bbp_get_displayed_user_field( 'display_name' );
+		}
+	}
+
+	/* Return the bbPress breadcrumb trail items. */
+	return apply_filters( 'breadcrumb_trail_get_bbpress_items', $trail, $args );
+}
+
+/**
+ * Turns %tag% from permalink structures into usable links for the breadcrumb trail.  This feels kind of
+ * hackish for now because we're checking for specific %tag% examples and only doing it for the 'post' 
+ * post type.  In the future, maybe it'll handle a wider variety of possibilities, especially for custom post
+ * types.
+ *
+ * @since 0.4.0
+ * @access private
+ * @param int $post_id ID of the post whose parents we want.
+ * @param string $path Path of a potential parent page.
+ * @param array $args Mixed arguments for the menu.
+ * @return array $trail Array of links to the post breadcrumb.
+ */
+function breadcrumb_trail_map_rewrite_tags( $post_id = '', $path = '', $args = array() ) {
+
+	/* Set up an empty $trail array. */
+	$trail = array();
+
+	/* Make sure there's a $path and $post_id before continuing. */
+	if ( empty( $path ) || empty( $post_id ) )
+		return $trail;
+
+	/* Get the post based on the post ID. */
+	$post = get_post( $post_id );
+
+	/* If no post is returned, an error is returned, or the post does not have a 'post' post type, return. */
+	if ( empty( $post ) || is_wp_error( $post ) || 'post' !== $post->post_type )
+		return $trail;
+
+	/* Trim '/' from both sides of the $path. */
+	$path = trim( $path, '/' );
+
+	/* Split the $path into an array of strings. */
+	$matches = explode( '/', $path );
+
+	/* If matches are found for the path. */
+	if ( is_array( $matches ) ) {
+
+		/* Loop through each of the matches, adding each to the $trail array. */
+		foreach ( $matches as $match ) {
+
+			/* Trim any '/' from the $match. */
+			$tag = trim( $match, '/' );
+
+			/* If using the %year% tag, add a link to the yearly archive. */
+			if ( '%year%' == $tag )
+				$trail[] = '<a href="' . get_year_link( get_the_time( 'Y', $post_id ) ) . '" title="' . get_the_time( esc_attr__( 'Y', 'breadcrumb-trail' ), $post_id ) . '">' . get_the_time( __( 'Y', 'breadcrumb-trail' ), $post_id ) . '</a>';
+
+			/* If using the %monthnum% tag, add a link to the monthly archive. */
+			elseif ( '%monthnum%' == $tag )
+				$trail[] = '<a href="' . get_month_link( get_the_time( 'Y', $post_id ), get_the_time( 'm', $post_id ) ) . '" title="' . get_the_time( esc_attr__( 'F Y', 'breadcrumb-trail' ), $post_id ) . '">' . get_the_time( __( 'F', 'breadcrumb-trail' ), $post_id ) . '</a>';
+
+			/* If using the %day% tag, add a link to the daily archive. */
+			elseif ( '%day%' == $tag )
+				$trail[] = '<a href="' . get_day_link( get_the_time( 'Y', $post_id ), get_the_time( 'm', $post_id ), get_the_time( 'd', $post_id ) ) . '" title="' . get_the_time( esc_attr__( 'F j, Y', 'breadcrumb-trail' ), $post_id ) . '">' . get_the_time( __( 'd', 'breadcrumb-trail' ), $post_id ) . '</a>';
+
+			/* If using the %author% tag, add a link to the post author archive. */
+			elseif ( '%author%' == $tag )
+				$trail[] = '<a href="' . get_author_posts_url( $post->post_author ) . '" title="' . esc_attr( get_the_author_meta( 'display_name', $post->post_author ) ) . '">' . get_the_author_meta( 'display_name', $post->post_author ) . '</a>';
+
+			/* If using the %category% tag, add a link to the first category archive to match permalinks. */
+			elseif ( '%category%' == $tag && 'category' !== $args["singular_{$post->post_type}_taxonomy"] ) {
+
+				/* Get the post categories. */
+				$terms = get_the_category( $post_id );
+
+				/* Check that categories were returned. */
+				if ( $terms ) {
+
+					/* Sort the terms by ID and get the first category. */
+					usort( $terms, '_usort_terms_by_ID' );
+					$term = get_term( $terms[0], 'category' );
+
+					/* If the category has a parent, add the hierarchy to the trail. */
+					if ( 0 !== $term->parent )
+						$trail = array_merge( $trail, breadcrumb_trail_get_term_parents( $term->parent, 'category' ) );
+
+					/* Add the category archive link to the trail. */
+					$trail[] = '<a href="' . get_term_link( $term, 'category' ) . '" title="' . esc_attr( $term->name ) . '">' . $term->name . '</a>';
+				}
+			}
+		}
+	}
+
+	/* Return the $trail array. */
+	return $trail;
+}
+
+/**
+ * Gets parent pages of any post type or taxonomy by the ID or Path.  The goal of this function is to create 
+ * a clear path back to home given what would normally be a "ghost" directory.  If any page matches the given 
+ * path, it'll be added.  But, it's also just a way to check for a hierarchy with hierarchical post types.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param int $post_id ID of the post whose parents we want.
+ * @param string $path Path of a potential parent page.
+ * @return array $trail Array of parent page links.
+ */
+function breadcrumb_trail_get_parents( $post_id = '', $path = '' ) {
+
+	/* Set up an empty trail array. */
+	$trail = array();
+
+	/* Trim '/' off $path in case we just got a simple '/' instead of a real path. */
+	$path = trim( $path, '/' );
+
+	/* If neither a post ID nor path set, return an empty array. */
+	if ( empty( $post_id ) && empty( $path ) )
+		return $trail;
+
+	/* If the post ID is empty, use the path to get the ID. */
+	if ( empty( $post_id ) ) {
+
+		/* Get parent post by the path. */
+		$parent_page = get_page_by_path( $path );
+
+		/* If a parent post is found, set the $post_id variable to it. */
+		if ( !empty( $parent_page ) )
+			$post_id = $parent_page->ID;
+	}
+
+	/* If a post ID and path is set, search for a post by the given path. */
+	if ( $post_id == 0 && !empty( $path ) ) {
+
+		/* Separate post names into separate paths by '/'. */
+		$path = trim( $path, '/' );
+		preg_match_all( "/\/.*?\z/", $path, $matches );
+
+		/* If matches are found for the path. */
+		if ( isset( $matches ) ) {
+
+			/* Reverse the array of matches to search for posts in the proper order. */
+			$matches = array_reverse( $matches );
+
+			/* Loop through each of the path matches. */
+			foreach ( $matches as $match ) {
+
+				/* If a match is found. */
+				if ( isset( $match[0] ) ) {
+
+					/* Get the parent post by the given path. */
+					$path = str_replace( $match[0], '', $path );
+					$parent_page = get_page_by_path( trim( $path, '/' ) );
+
+					/* If a parent post is found, set the $post_id and break out of the loop. */
+					if ( !empty( $parent_page ) && $parent_page->ID > 0 ) {
+						$post_id = $parent_page->ID;
+						break;
+					}
+				}
+			}
+		}
+	}
+
+	/* While there's a post ID, add the post link to the $parents array. */
+	while ( $post_id ) {
+
+		/* Get the post by ID. */
+		$page = get_page( $post_id );
+
+		/* Add the formatted post link to the array of parents. */
+		$parents[]  = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . get_the_title( $post_id ) . '</a>';
+
+		/* Set the parent post's parent to the post ID. */
+		$post_id = $page->post_parent;
+	}
+
+	/* If we have parent posts, reverse the array to put them in the proper order for the trail. */
+	if ( isset( $parents ) )
+		$trail = array_reverse( $parents );
+
+	/* Return the trail of parent posts. */
+	return $trail;
+}
+
+/**
+ * Searches for term parents of hierarchical taxonomies.  This function is similar to the WordPress 
+ * function get_category_parents() but handles any type of taxonomy.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param int $parent_id The ID of the first parent.
+ * @param object|string $taxonomy The taxonomy of the term whose parents we want.
+ * @return array $trail Array of links to parent terms.
+ */
+function breadcrumb_trail_get_term_parents( $parent_id = '', $taxonomy = '' ) {
+
+	/* Set up some default arrays. */
+	$trail = array();
+	$parents = array();
+
+	/* If no term parent ID or taxonomy is given, return an empty array. */
+	if ( empty( $parent_id ) || empty( $taxonomy ) )
+		return $trail;
+
+	/* While there is a parent ID, add the parent term link to the $parents array. */
+	while ( $parent_id ) {
+
+		/* Get the parent term. */
+		$parent = get_term( $parent_id, $taxonomy );
+
+		/* Add the formatted term link to the array of parent terms. */
+		$parents[] = '<a href="' . get_term_link( $parent, $taxonomy ) . '" title="' . esc_attr( $parent->name ) . '">' . $parent->name . '</a>';
+
+		/* Set the parent term's parent as the parent ID. */
+		$parent_id = $parent->parent;
+	}
+
+	/* If we have parent terms, reverse the array to put them in the proper order for the trail. */
+	if ( !empty( $parents ) )
+		$trail = array_reverse( $parents );
+
+	/* Return the trail of parent terms. */
+	return $trail;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/cleaner-caption.php b/wp-content/themes/path/library/extensions/cleaner-caption.php
new file mode 100644
index 0000000000000000000000000000000000000000..6490874f1b8a6a8a426714135bc54d2d99eae713
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/cleaner-caption.php
@@ -0,0 +1,88 @@
+<?php
+/**
+ * Cleaner Caption - Cleans up the WP [caption] shortcode.
+ *
+ * WordPress adds an inline style to its [caption] shortcode which specifically adds 10px of extra width to 
+ * captions, making theme authors jump through hoops to design captioned elements to their liking.  This extra
+ * width makes the assumption that all captions should have 10px of extra padding to account for a box that 
+ * wraps the element.  This script changes the width to match that of the 'width' attribute passed in through
+ * the shortcode, allowing themes to better handle how their captions are designed.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package CleanerCaption
+ * @version 0.1.1
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2012, Justin Tadlock
+ * @link http://justintadlock.com
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Filter the caption shortcode output. */
+add_filter( 'img_caption_shortcode', 'cleaner_caption', 10, 3 );
+
+/**
+ * Cleans up the default WordPress [caption] shortcode.  The main purpose of this function is to remove the 
+ * inline styling WP adds, which creates 10px of padding around captioned elements.
+ *
+ * @since 0.1.0
+ * @access private
+ * @param string $output The output of the default caption (empty string at this point).
+ * @param array $attr Array of arguments for the [caption] shortcode.
+ * @param string $content The content placed after the opening [caption] tag and before the closing [/caption] tag.
+ * @return string $output The formatted HTML for the caption.
+ */
+function cleaner_caption( $output, $attr, $content ) {
+
+	/* We're not worried abut captions in feeds, so just return the output here. */
+	if ( is_feed() )
+		return $output;
+
+	/* Set up the default arguments. */
+	$defaults = array(
+		'id' => '',
+		'align' => 'alignnone',
+		'width' => '',
+		'caption' => ''
+	);
+
+	/* Allow developers to override the default arguments. */
+	$defaults = apply_filters( 'cleaner_caption_defaults', $defaults );
+
+	/* Apply filters to the arguments. */
+	$attr = apply_filters( 'cleaner_caption_args', $attr );
+
+	/* Merge the defaults with user input. */
+	$attr = shortcode_atts( $defaults, $attr );
+
+	/* If the width is less than 1 or there is no caption, return the content wrapped between the [caption] tags. */
+	if ( 1 > $attr['width'] || empty( $attr['caption'] ) )
+		return $content;
+
+	/* Set up the attributes for the caption <div>. */
+	$attributes = ( !empty( $attr['id'] ) ? ' id="' . esc_attr( $attr['id'] ) . '"' : '' );
+	$attributes .= ' class="wp-caption ' . esc_attr( $attr['align'] ) . '"';
+	$attributes .= ' style="width: ' . esc_attr( $attr['width'] ) . 'px"';
+
+	/* Open the caption <div>. */
+	$output = '<div' . $attributes .'>';
+
+	/* Allow shortcodes for the content the caption was created for. */
+	$output .= do_shortcode( $content );
+
+	/* Append the caption text. */
+	$output .= '<p class="wp-caption-text">' . $attr['caption'] . '</p>';
+
+	/* Close the caption </div>. */
+	$output .= '</div>';
+
+	/* Return the formatted, clean caption. */
+	return apply_filters( 'cleaner_caption', $output );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/cleaner-gallery.php b/wp-content/themes/path/library/extensions/cleaner-gallery.php
new file mode 100644
index 0000000000000000000000000000000000000000..4841b1bc7128f1c3978b1719159fc92408c2a9c0
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/cleaner-gallery.php
@@ -0,0 +1,166 @@
+<?php
+/**
+ * Cleaner Gallery - A valid image gallery script for WordPress.
+ *
+ * Cleaner Gallery was created to clean up the invalid HTML and remove the inline styles of the default 
+ * implementation of the WordPress [gallery] shortcode.  This has the obvious benefits of creating 
+ * sites with clean, valid code.  But, it also allows developers to more easily create custom styles for 
+ * galleries within their themes.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package CleanerGallery
+ * @version 0.9.4
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://justintadlock.com/archives/2008/04/13/cleaner-wordpress-gallery-plugin
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Filter the post gallery shortcode output. */
+add_filter( 'post_gallery', 'cleaner_gallery', 10, 2 );
+
+/**
+ * Overwrites the default WordPress [gallery] shortcode's output.  This function removes the invalid 
+ * HTML and inline styles.  It adds the number of columns used as a class attribute, which allows 
+ * developers to style the gallery more easily.
+ *
+ * @since 0.9.0
+ * @access private
+ * @param string $output
+ * @param array $attr
+ * @return string $output
+ */
+function cleaner_gallery( $output, $attr ) {
+
+	static $cleaner_gallery_instance = 0;
+	$cleaner_gallery_instance++;
+
+	/* We're not worried abut galleries in feeds, so just return the output here. */
+	if ( is_feed() )
+		return $output;
+
+	/* Orderby. */
+	if ( isset( $attr['orderby'] ) ) {
+		$attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
+		if ( !$attr['orderby'] )
+			unset( $attr['orderby'] );
+	}
+
+	/* Default gallery settings. */
+	$defaults = array(
+		'order' => 'ASC',
+		'orderby' => 'menu_order ID',
+		'id' => get_the_ID(),
+		'link' => '',
+		'itemtag' => 'dl',
+		'icontag' => 'dt',
+		'captiontag' => 'dd',
+		'columns' => 3,
+		'size' => 'thumbnail',
+		'include' => '',
+		'exclude' => '',
+		'numberposts' => -1,
+		'offset' => ''
+	);
+
+	/* Apply filters to the default arguments. */
+	$defaults = apply_filters( 'cleaner_gallery_defaults', $defaults );
+
+	/* Apply filters to the arguments. */
+	$attr = apply_filters( 'cleaner_gallery_args', $attr );
+
+	/* Merge the defaults with user input.  */
+	$attr = shortcode_atts( $defaults, $attr );
+	extract( $attr );
+	$id = intval( $id );
+
+	/* Arguments for get_children(). */
+	$children = array(
+		'post_parent' => $id,
+		'post_status' => 'inherit',
+		'post_type' => 'attachment',
+		'post_mime_type' => 'image',
+		'order' => $order,
+		'orderby' => $orderby,
+		'exclude' => $exclude,
+		'include' => $include,
+		'numberposts' => $numberposts,
+		'offset' => $offset,
+		'suppress_filters' => true
+	);
+
+	/* Get image attachments. If none, return. */
+	$attachments = get_children( $children );
+
+	if ( empty( $attachments ) )
+		return '';
+
+	/* Properly escape the gallery tags. */
+	$itemtag = tag_escape( $itemtag );
+	$icontag = tag_escape( $icontag );
+	$captiontag = tag_escape( $captiontag );
+	$i = 0;
+
+	/* Count the number of attachments returned. */
+	$attachment_count = count( $attachments );
+
+	/* Allow developers to overwrite the number of columns. This can be useful for reducing columns with with fewer images than number of columns. */
+	//$columns = ( ( $columns <= $attachment_count ) ? intval( $columns ) : intval( $attachment_count ) );
+	$columns = apply_filters( 'cleaner_gallery_columns', intval( $columns ), $attachment_count, $attr );
+
+	/* Open the gallery <div>. */
+	$output = "\n\t\t\t<div id='gallery-{$id}-{$cleaner_gallery_instance}' class='gallery gallery-{$id}'>";
+
+	/* Loop through each attachment. */
+	foreach ( $attachments as $id => $attachment ) {
+
+		/* Open each gallery row. */
+		if ( $columns > 0 && $i % $columns == 0 )
+			$output .= "\n\t\t\t\t<div class='gallery-row gallery-clear'>";
+
+		/* Open each gallery item. */
+		$output .= "\n\t\t\t\t\t<{$itemtag} class='gallery-item col-{$columns}'>";
+
+		/* Open the element to wrap the image. */
+		$output .= "\n\t\t\t\t\t\t<{$icontag} class='gallery-icon'>";
+
+		/* Add the image. */
+		$image = ( ( isset( $attr['link'] ) && 'file' == $attr['link'] ) ? wp_get_attachment_link( $id, $size, false, false ) : wp_get_attachment_link( $id, $size, true, false ) );
+		$output .= apply_filters( 'cleaner_gallery_image', $image, $id, $attr, $cleaner_gallery_instance );
+
+		/* Close the image wrapper. */
+		$output .= "</{$icontag}>";
+
+		/* Get the caption. */
+		$caption = apply_filters( 'cleaner_gallery_caption', wptexturize( $attachment->post_excerpt ), $id, $attr, $cleaner_gallery_instance );
+
+		/* If image caption is set. */
+		if ( !empty( $caption ) )
+			$output .= "\n\t\t\t\t\t\t<{$captiontag} class='gallery-caption'>{$caption}</{$captiontag}>";
+
+		/* Close individual gallery item. */
+		$output .= "\n\t\t\t\t\t</{$itemtag}>";
+
+		/* Close gallery row. */
+		if ( $columns > 0 && ++$i % $columns == 0 )
+			$output .= "\n\t\t\t\t</div>";
+	}
+
+	/* Close gallery row. */
+	if ( $columns > 0 && $i % $columns !== 0 )
+		$output .= "\n\t\t\t</div>";
+
+	/* Close the gallery <div>. */
+	$output .= "\n\t\t\t</div><!-- .gallery -->\n";
+
+	/* Return out very nice, valid HTML gallery. */
+	return $output;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/custom-field-series.php b/wp-content/themes/path/library/extensions/custom-field-series.php
new file mode 100644
index 0000000000000000000000000000000000000000..c12d89bd3b93c377fcaa3f5b47caab05f650a01b
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/custom-field-series.php
@@ -0,0 +1,270 @@
+<?php
+/**
+ * Custom Field Series - A script for creating a series of posts by custom field.
+ *
+ * Custom Field Series was created to allow users to add individual posts to a larger series of posts.  It was 
+ * created before WordPress made it easy for developers to create new taxonomies.  Ideally, one would use a 
+ * taxonomy to handle this functionality.  However, this method is lighter, provides an extremely simple 
+ * method for adding posts to a series, and offers backwards compatibility for people that have used this 
+ * method before.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package CustomFieldSeries
+ * @version 0.4.0
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2007 - 2012, Justin Tadlock
+ * @link http://justintadlock.com/archives/2007/11/01/wordpress-custom-fields-listing-a-series-of-posts
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add support for the 'custom-field-series' extension to posts. */
+add_action( 'init', 'custom_field_series_post_type_support' );
+
+/* Register metadata for the custom field series. */
+add_action( 'init', 'custom_field_series_register_meta' );
+
+/* Create the meta box on the 'admin_menu' hook. */
+add_action( 'admin_menu', 'custom_field_series_admin_setup' );
+
+/**
+ * Checks for a series of posts by the current post's metadata.  The function grabs the meta value for the 
+ * 'Series' meta key and checks if any posts have been given the same value.  If posts are found with this 
+ * meta key/value pair, the function adds them to an unordered list.
+ *
+ * @since 0.1.0
+ * @access public
+ * @param array $args Array of arguments.
+ */
+function custom_field_series( $args = array() ) {
+
+	/* Set $series to an empty string. */
+	$series = '';
+
+	/* Get the current post ID. */
+	$post_id = get_the_ID();
+
+	/* Get the series meta value for the post. */
+	$meta_value = get_post_meta( $post_id, custom_field_series_meta_key(), true );
+
+	/* If a meta value was found, create a list of posts in the series. */
+	if ( !empty( $meta_value ) ) {
+
+		/* Set up the default post query arguments. */
+		$defaults = array(
+			'order' => 	'DESC',
+			'orderby' => 	'ID',
+			'include' => 	'',
+			'exclude' => 	'',
+			'post_type' => 	'any',
+			'numberposts' => 	-1,
+			'meta_key' => 	custom_field_series_meta_key(),
+			'meta_value' => 	$meta_value,
+			'echo' => 	true
+		);
+
+		/* Allow developers to override the arguments used. */
+		$args = apply_filters( 'custom_field_series_args', $args );
+		$args = wp_parse_args( $args, $defaults );
+
+		/* Get all posts in the current series. */
+		$series_posts = get_posts( $args );
+
+		/* If posts were found, display them. */
+		if ( !empty( $series_posts ) ) {
+
+			/* Format the series class with the name of the series. */
+			$class = sanitize_html_class( sanitize_title_with_dashes( $meta_value ) );
+
+			/* Create the opening wrapper div, title, and list element. */
+			$series = '<div class="series series-' . esc_attr( $class ) . '">';
+			$series .= '<h4 class="series-title">' . apply_filters( 'custom_field_series_title', __( 'Articles in this series', 'custom-field-series' ) ) . '</h4>';
+			$series .= '<ul>';
+
+			/* Loop through the posts. */
+			foreach ( $series_posts as $serial ) {
+
+				/* If the current post in the loop matches the post we're viewing, don't link to it. */
+				if ( $serial->ID == $post_id )
+					$series .= '<li class="current-post">' . $serial->post_title . '</li>';
+
+				/* Display a link to the post. */
+				else
+					$series .= '<li><a href="' . get_permalink( $serial->ID ) . '" title="' . esc_attr( $serial->post_title ) . '">' . $serial->post_title . '</a></li>';
+			}
+
+			/* Close the unordered list and wrapper div. */
+			$series .= '</ul></div>';
+		}
+	}
+
+	/* Allow developers to overwrite the HTML of the series. */
+	$series = apply_filters( 'custom_field_series', $series );
+
+	/* If $echo is set to true, display the series. */
+	if ( !empty( $args['echo'] ) )
+		echo $series;
+
+	/* If $echo is not set to true, return the series. */
+	else
+		return $series;
+}
+
+/**
+ * Adds post type support of 'custom-field-series' to the 'post' post type.  Developers should register support 
+ * for additional post types.
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function custom_field_series_post_type_support() {
+	add_post_type_support( 'post', 'custom-field-series' );
+}
+
+/**
+ * Registers the custom field series meta key 'Series' for for specific object types and provides a 
+ * function to sanitize the metadata on update.
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function custom_field_series_register_meta() {
+	register_meta( 'post', custom_field_series_meta_key(), 'custom_field_series_sanitize_meta' );
+}
+
+/**
+ * Callback function for sanitizing meta when add_metadata() or update_metadata() is called by WordPress. 
+ * If a developer wants to set up a custom method for sanitizing the data, they should use the 
+ * "sanitize_{$meta_type}_meta_{$meta_key}" filter hook to do so.
+ *
+ * @since 0.4.0
+ * @param mixed $meta_value The value of the data to sanitize.
+ * @param string $meta_key The meta key name.
+ * @param string $meta_type The type of metadata (post, comment, user, etc.)
+ * @return mixed $meta_value
+ */
+function custom_field_series_sanitize_meta( $meta_value, $meta_key, $meta_type ) {
+	return strip_tags( $meta_value );
+}
+
+/**
+ * Returns the meta key used for the 'Series' custom field so that developers can overwrite the key if they
+ * need to for their project.
+ *
+ * @since 0.4.0
+ * @access public
+ * @return string The meta key used for the series metadata.
+ */
+function custom_field_series_meta_key() {
+	return apply_filters( 'custom_field_series_meta_key', 'Series' );
+}
+
+/**
+ * Admin setup for the custom field series script.
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function custom_field_series_admin_setup() {
+
+	/* Load the post meta boxes on the new post and edit post screens. */
+	add_action( 'load-post.php', 'custom_field_series_load_meta_boxes' );
+	add_action( 'load-post-new.php', 'custom_field_series_load_meta_boxes' );
+}
+
+/**
+ * Hooks into the 'add_meta_boxes' hook to add the custom field series meta box and the 'save_post' hook 
+ * to save the metadata.
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function custom_field_series_load_meta_boxes() {
+
+	/* Add the custom field series meta box on the 'add_meta_boxes' hook. */
+	add_action( 'add_meta_boxes', 'custom_field_series_create_meta_box', 10, 2 );
+
+	/* Saves the post meta box data. */
+	add_action( 'save_post', 'custom_field_series_meta_box_save', 10, 2 );
+}
+
+/**
+ * Creates the meta box on the post editing screen for the 'post' post type.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post object.
+ * @return void
+ */
+function custom_field_series_create_meta_box( $post_type, $post ) {
+
+	if ( post_type_supports( $post_type, 'custom-field-series' ) )
+		add_meta_box( 'custom-field-series', __( 'Series', 'custom-field-series' ), 'custom_field_series_meta_box', $post_type, 'side', 'default' );
+}
+
+/**
+ * Displays the input field with the meta box.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param object $object The post object currently being edited.
+ * @param array $box Specific information about the meta box being loaded.
+ * @return void
+ */
+function custom_field_series_meta_box( $object, $box ) { ?>
+
+	<p>
+		<?php wp_nonce_field( basename( __FILE__ ), 'custom-field-series-nonce' ); ?>
+		<input type="text" name="custom-field-series" id="custom-field-series" value="<?php echo esc_attr( get_post_meta( $object->ID, custom_field_series_meta_key(), true ) ); ?>" size="30" tabindex="30" style="width: 99%;" />
+	</p>
+<?php
+}
+
+/**
+ * Saves the single value for the 'Series' meta key, which was set using the custom field series meta box.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param int $post_id The ID of the current post being saved.
+ * @param object $post The post object currently being saved.
+ * @return void
+ */
+function custom_field_series_meta_box_save( $post_id, $post ) {
+
+	/* Verify the nonce before proceeding. */
+	if ( !isset( $_POST['custom-field-series-nonce'] ) || !wp_verify_nonce( $_POST['custom-field-series-nonce'], basename( __FILE__ ) ) )
+		return $post_id;
+
+	/* Get the posted series title and strip all tags from it. */
+	$new_meta_value = $_POST['custom-field-series'];
+
+	/* Get the meta key. */
+	$meta_key = custom_field_series_meta_key();
+
+	/* Get the meta value of the custom field key. */
+	$meta_value = get_post_meta( $post_id, $meta_key, true );
+
+	/* If there is no new meta value but an old value exists, delete it. */
+	if ( current_user_can( 'delete_post_meta', $post_id, $meta_key ) && '' == $new_meta_value && $meta_value )
+		delete_post_meta( $post_id, $meta_key, $meta_value );
+
+	/* If a new meta value was added and there was no previous value, add it. */
+	elseif ( current_user_can( 'add_post_meta', $post_id, $meta_key ) && $new_meta_value && '' == $meta_value )
+		add_post_meta( $post_id, $meta_key, $new_meta_value, true );
+
+	/* If the old layout doesn't match the new layout, update the post layout meta. */
+	elseif ( current_user_can( 'edit_post_meta', $post_id, $meta_key ) && $meta_value !== $new_meta_value )
+		update_post_meta( $post_id, $meta_key, $new_meta_value );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/entry-views.php b/wp-content/themes/path/library/extensions/entry-views.php
new file mode 100644
index 0000000000000000000000000000000000000000..294c65f37a5460ff93eb4a250cef775c986d5a97
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/entry-views.php
@@ -0,0 +1,194 @@
+<?php
+/**
+ * Entry Views - A WordPress script for counting post views.
+ *
+ * Entry views is a script for calculating the number of views a post gets.  It is meant to be basic and 
+ * not a full-featured solution.  The idea is to allow theme/plugin authors to quickly load this file and 
+ * build functions on top of it to suit their project needs.  This is an AJAX-based solution, so only visitors 
+ * to your site with JavaScript enabled in their browser will update the view count.  It is possible to do this
+ * without AJAX but not recommend (see notes below).
+ *
+ * By default, no post types are supported.  You have to register support for 'entry-views' for the post types
+ * you wish to use this extension with.
+ *
+ * Not using AJAX: You can call up entry_views_update() at any time and pass it a post ID to update the 
+ * count, but this has problems.  Any links with rel="next" or rel="prefetch" will cause some browsers to prefetch
+ * the data for that particular page.  This can cause the view count to be skewed.  To try and avoid this 
+ * issue, you need to disable/remove adjacent_posts_rel_link_wp_head().  However, this is not bullet-proof 
+ * as it cannot control links it doesn't know about.
+ * @link http://core.trac.wordpress.org/ticket/14568
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package EntryViews
+ * @version 0.2.2
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2010 - 2012, Justin Tadlock
+ * @link http://justintadlock.com
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add post type support for 'entry-views'. */
+add_action( 'init', 'entry_views_post_type_support' );
+
+/* Add the [entry-views] shortcode. */
+add_shortcode( 'entry-views', 'entry_views_get' );
+
+/* Registers the entry views extension scripts if we're on the correct page. */
+add_action( 'template_redirect', 'entry_views_load' );
+
+/* Add the entry views AJAX actions to the appropriate hooks. */
+add_action( 'wp_ajax_entry_views', 'entry_views_update_ajax' );
+add_action( 'wp_ajax_nopriv_entry_views', 'entry_views_update_ajax' );
+
+/**
+ * Adds support for 'entry-views' to the 'post', 'page', and 'attachment' post types (default WordPress 
+ * post types).  For all other post types, the theme should explicitly register support for this feature.
+ *
+ * @since 0.2.0
+ * @access private
+ * @return void
+ */
+function entry_views_post_type_support() {
+
+	/* Add support for entry-views to the 'post' post type. */
+	add_post_type_support( 'post', array( 'entry-views' ) );
+
+	/* Add support for entry-views to the 'page' post type. */
+	add_post_type_support( 'page', array( 'entry-views' ) );
+
+	/* Add support for entry-views to the 'attachment' post type. */
+	add_post_type_support( 'attachment', array( 'entry-views' ) );
+}
+
+/**
+ * Checks if we're on a singular post view and if the current post type supports the 'entry-views'
+ * extension.  If so, set the $post_id variable and load the needed JavaScript.
+ *
+ * @since 0.1.0
+ * @access private
+ * @return void
+ */
+function entry_views_load() {
+	global $_entry_views_post_id;
+
+	/* Check if we're on a singular post view. */
+	if ( is_singular() ) {
+
+		/* Get the post object. */
+		$post = get_queried_object();
+
+		/* Check if the post type supports the 'entry-views' feature. */
+		if ( post_type_supports( $post->post_type, 'entry-views' ) ) {
+
+			/* Set the post ID for later use because we wouldn't want a custom query to change this. */
+			$_entry_views_post_id = get_queried_object_id();
+
+			/* Enqueue the jQuery library. */
+			wp_enqueue_script( 'jquery' );
+
+			/* Load the entry views JavaScript in the footer. */
+			add_action( 'wp_footer', 'entry_views_load_scripts' );
+		}
+	}
+}
+
+/**
+ * Updates the number of views when on a singular view of a post.  This function uses post meta to store
+ * the number of views per post.  By default, the meta key is 'Views', but you can filter this with the 
+ * 'entry_views_meta_key' hook.
+ *
+ * @since 0.1.0
+ * @access public
+ * @param int $post_id The ID of the post to update the meta for.
+ * @return void
+ */
+function entry_views_update( $post_id = '' ) {
+
+	/* If we're on a singular view of a post, calculate the number of views. */
+	if ( !empty( $post_id ) ) {
+
+		/* Allow devs to override the meta key used. By default, this is 'Views'. */
+		$meta_key = apply_filters( 'entry_views_meta_key', 'Views' );
+
+		/* Get the number of views the post currently has. */
+		$old_views = get_post_meta( $post_id, $meta_key, true );
+
+		/* Add +1 to the number of current views. */
+		$new_views = absint( $old_views ) + 1;
+
+		/* Update the view count with the new view count. */
+		update_post_meta( $post_id, $meta_key, $new_views, $old_views );
+	}
+}
+
+/**
+ * Gets the number of views a specific post has.  It also doubles as a shortcode, which is called with the 
+ * [entry-views] format.
+ *
+ * @since 0.1.0
+ * @access public
+ * @param array $attr Attributes for use in the shortcode.
+ * @return string
+ */
+function entry_views_get( $attr = '' ) {
+
+	/* Merge the defaults and the given attributes. */
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '', 'post_id' => get_the_ID() ), $attr );
+
+	/* Allow devs to override the meta key used. */
+	$meta_key = apply_filters( 'entry_views_meta_key', 'Views' );
+
+	/* Get the number of views the post has. */
+	$views = intval( get_post_meta( $attr['post_id'], $meta_key, true ) );
+
+	/* Returns the formatted number of views. */
+	return $attr['before'] . number_format_i18n( $views ) . $attr['after'];
+}
+
+/**
+ * Callback function hooked to 'wp_ajax_entry_views' and 'wp_ajax_nopriv_entry_views'.  It checks the
+ * AJAX nonce and passes the given $post_id to the entry views update function.
+ *
+ * @since 0.1.0
+ * @access private
+ * @return void
+ */
+function entry_views_update_ajax() {
+
+	/* Check the AJAX nonce to make sure this is a valid request. */
+	check_ajax_referer( 'entry_views_ajax' );
+
+	/* If the post ID is set, set it to the $post_id variable and make sure it's an integer. */
+	if ( isset( $_POST['post_id'] ) )
+		$post_id = absint( $_POST['post_id'] );
+
+	/* If $post_id isn't empty, pass it to the entry_views_update() function to update the view count. */
+	if ( !empty( $post_id ) )
+		entry_views_update( $post_id );
+}
+
+/**
+ * Displays a small script that sends an AJAX request for the page.  It passes the $post_id to the AJAX 
+ * callback function for updating the meta.
+ *
+ * @since 0.1.0
+ * @access private
+ * @return void
+ */
+function entry_views_load_scripts() {
+	global $_entry_views_post_id;
+
+	/* Create a nonce for the AJAX request. */
+	$nonce = wp_create_nonce( 'entry_views_ajax' );
+
+	/* Display the JavaScript needed. */
+	echo '<script type="text/javascript">/* <![CDATA[ */ jQuery(document).ready( function() { jQuery.post( "' . admin_url( 'admin-ajax.php' ) . '", { action : "entry_views", _ajax_nonce : "' . $nonce . '", post_id : ' . $_entry_views_post_id . ' } ); } ); /* ]]> */</script>' . "\n";
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/get-the-image.php b/wp-content/themes/path/library/extensions/get-the-image.php
new file mode 100644
index 0000000000000000000000000000000000000000..31f4b6b15275920ee144ad8079e5b13be1554bb0
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/get-the-image.php
@@ -0,0 +1,544 @@
+<?php
+/**
+ * Get the Image - An advanced post image script for WordPress.
+ *
+ * Get the Image was created to be a highly-intuitive image script that displays post-specific images (an 
+ * image-based representation of a post).  The script handles old-style post images via custom fields for 
+ * backwards compatibility.  It also supports WordPress' built-in featured image functionality.  On top of 
+ * those things, it can automatically set attachment images as the post image or scan the post content for 
+ * the first image element used.  It can also fall back to a given default image.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package GetTheImage
+ * @version 0.8.0
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://justintadlock.com/archives/2008/05/27/get-the-image-wordpress-plugin
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Adds theme support for WordPress 'featured images'. */
+add_theme_support( 'post-thumbnails' );
+
+/* Delete the cache when a post or post metadata is updated. */
+add_action( 'save_post', 'get_the_image_delete_cache_by_post' );
+add_action( 'deleted_post_meta', 'get_the_image_delete_cache_by_meta', 10, 2 );
+add_action( 'updated_post_meta', 'get_the_image_delete_cache_by_meta', 10, 2 );
+add_action( 'added_post_meta', 'get_the_image_delete_cache_by_meta', 10, 2 );
+
+/**
+ * The main image function for displaying an image.  It supports several arguments that allow developers to
+ * customize how the script outputs the image.
+ *
+ * The image check order is important to note here.  If an image is found by any specific check, the script
+ * will no longer look for images.  The check order is 'meta_key', 'the_post_thumbnail', 'attachment', 
+ * 'image_scan', 'callback', and 'default_image'.
+ *
+ * @since 0.1.0
+ * @access public
+ * @global $post The current post's database object.
+ * @param array $args Arguments for how to load and display the image.
+ * @return string|array The HTML for the image. | Image attributes in an array.
+ */
+function get_the_image( $args = array() ) {
+
+	/* Set the default arguments. */
+	$defaults = array(
+		'meta_key' => 		array( 'Thumbnail', 'thumbnail' ), // array|string
+		'post_id' => 		get_the_ID(),
+		'attachment' => 		true,
+		'the_post_thumbnail' => 	true, // WP 2.9+ image function
+		'size' => 			'thumbnail',
+		'default_image' => 	false,
+		'order_of_image' => 	1,
+		'link_to_post' => 		true,
+		'image_class' => 		false,
+		'image_scan' => 		false,
+		'width' => 		false,
+		'height' => 		false,
+		'format' => 		'img',
+		'meta_key_save' => 	false,
+		'thumbnail_id_save' => 	false, // Set 'featured image'.
+		'callback' => 		null,
+		'cache' => 		true,
+		'before' => 		'',
+		'after' => 		'',
+		'echo' => 		true,
+		'custom_key' => 		null, // @deprecated 0.6. Use 'meta_key'.
+		'default_size' => 		null, // @deprecated 0.5.  Use 'size'.
+	);
+
+	/* Allow plugins/themes to filter the arguments. */
+	$args = apply_filters( 'get_the_image_args', $args );
+
+	/* Merge the input arguments and the defaults. */
+	$args = wp_parse_args( $args, $defaults );
+
+	/* If $default_size is given, overwrite $size. */
+	if ( !is_null( $args['default_size'] ) )
+		$args['size'] = $args['default_size']; // Deprecated 0.5 in favor of $size
+
+	/* If $custom_key is set, overwrite $meta_key. */
+	if ( !is_null( $args['custom_key'] ) )
+		$args['meta_key'] = $args['custom_key']; // Deprecated 0.6 in favor of $meta_key
+
+	/* If $format is set to 'array', don't link to the post. */
+	if ( 'array' == $args['format'] )
+		$args['link_to_post'] = false;
+
+	/* Extract the array to allow easy use of variables. */
+	extract( $args );
+
+	/* Get cache key based on $args. */
+	$key = md5( serialize( compact( array_keys( $args ) ) ) );
+
+	/* Check for a cached image. */
+	$image_cache = wp_cache_get( $post_id, 'get_the_image' );
+
+	if ( !is_array( $image_cache ) )
+		$image_cache = array();
+
+	/* Set up a default, empty $image_html variable. */
+	$image_html = '';
+
+	/* If there is no cached image, let's see if one exists. */
+	if ( !isset( $image_cache[$key] ) || empty( $cache ) ) {
+
+		/* If a custom field key (array) is defined, check for images by custom field. */
+		if ( !empty( $meta_key ) )
+			$image = get_the_image_by_meta_key( $args );
+
+		/* If no image found and $the_post_thumbnail is set to true, check for a post image (WP feature). */
+		if ( empty( $image ) && !empty( $the_post_thumbnail ) )
+			$image = get_the_image_by_post_thumbnail( $args );
+
+		/* If no image found and $attachment is set to true, check for an image by attachment. */
+		if ( empty( $image ) && !empty( $attachment ) )
+			$image = get_the_image_by_attachment( $args );
+
+		/* If no image found and $image_scan is set to true, scan the post for images. */
+		if ( empty( $image ) && !empty( $image_scan ) )
+			$image = get_the_image_by_scan( $args );
+
+		/* If no image found and a callback function was given. Callback function must pass back array of <img> attributes. */
+		if ( empty( $image ) && !is_null( $callback ) && function_exists( $callback ) )
+			$image = call_user_func( $callback, $args );
+
+		/* If no image found and a $default_image is set, get the default image. */
+		if ( empty( $image ) && !empty( $default_image ) )
+			$image = get_the_image_by_default( $args );
+
+		/* If an image was found. */
+		if ( !empty( $image ) ) {
+
+			/* If $meta_key_save was set, save the image to a custom field. */
+			if ( !empty( $meta_key_save ) )
+				get_the_image_meta_key_save( $args, $image['src'] );
+
+			/* Format the image HTML. */
+			$image_html = get_the_image_format( $args, $image );
+
+			/* Set the image cache for the specific post. */
+			$image_cache[$key] = $image_html;
+			wp_cache_set( $post_id, $image_cache, 'get_the_image' );
+		}
+	}
+
+	/* If an image was already cached for the post and arguments, use it. */
+	else {
+		$image_html = $image_cache[$key];
+	}
+
+	/* Allow plugins/theme to override the final output. */
+	$image_html = apply_filters( 'get_the_image', $image_html );
+
+	/* If $format is set to 'array', return an array of image attributes. */
+	if ( 'array' == $format ) {
+
+		/* Set up a default empty array. */
+		$out = array();
+
+		/* Get the image attributes. */
+		$atts = wp_kses_hair( $image_html, array( 'http' ) );
+
+		/* Loop through the image attributes and add them in key/value pairs for the return array. */
+		foreach ( $atts as $att )
+			$out[$att['name']] = $att['value'];
+
+		$out['url'] = $out['src']; // @deprecated 0.5 Use 'src' instead of 'url'.
+
+		/* Return the array of attributes. */
+		return $out;
+	}
+
+	/* Or, if $echo is set to false, return the formatted image. */
+	elseif ( false === $echo ) {
+		return $args['before'] . $image_html . $args['after'];
+	}
+
+	/* If there is a $post_thumbnail_id, do the actions associated with get_the_post_thumbnail(). */
+	if ( isset( $image['post_thumbnail_id'] ) )
+		do_action( 'begin_fetch_post_thumbnail_html', $post_id, $image['post_thumbnail_id'], $size );
+
+	/* Display the image if we get to this point. */
+	echo $args['before'] . $image_html . $args['after'];
+
+	/* If there is a $post_thumbnail_id, do the actions associated with get_the_post_thumbnail(). */
+	if ( isset( $image['post_thumbnail_id'] ) )
+		do_action( 'end_fetch_post_thumbnail_html', $post_id, $image['post_thumbnail_id'], $size );
+}
+
+/* Internal Functions */
+
+/**
+ * Calls images by custom field key.  Script loops through multiple custom field keys.  If that particular key 
+ * is found, $image is set and the loop breaks.  If an image is found, it is returned.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @return array|bool Array of image attributes. | False if no image is found.
+ */
+function get_the_image_by_meta_key( $args = array() ) {
+
+	/* If $meta_key is not an array. */
+	if ( !is_array( $args['meta_key'] ) )
+		$args['meta_key'] = array( $args['meta_key'] );
+
+	/* Loop through each of the given meta keys. */
+	foreach ( $args['meta_key'] as $meta_key ) {
+
+		/* Get the image URL by the current meta key in the loop. */
+		$image = get_post_meta( $args['post_id'], $meta_key, true );
+
+		/* If an image was found, break out of the loop. */
+		if ( !empty( $image ) )
+			break;
+	}
+
+	/* If a custom key value has been given for one of the keys, return the image URL. */
+	if ( !empty( $image ) )
+		return array( 'src' => $image );
+
+	return false;
+}
+
+/**
+ * Checks for images using a custom version of the WordPress 2.9+ get_the_post_thumbnail() function.  
+ * If an image is found, return it and the $post_thumbnail_id.  The WordPress function's other filters are 
+ * later added in the display_the_image() function.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @return array|bool Array of image attributes. | False if no image is found.
+ */
+function get_the_image_by_post_thumbnail( $args = array() ) {
+
+	/* Check for a post image ID (set by WP as a custom field). */
+	$post_thumbnail_id = get_post_thumbnail_id( $args['post_id'] );
+
+	/* If no post image ID is found, return false. */
+	if ( empty( $post_thumbnail_id ) )
+		return false;
+
+	/* Apply filters on post_thumbnail_size because this is a default WP filter used with its image feature. */
+	$size = apply_filters( 'post_thumbnail_size', $args['size'] );
+
+	/* Get the attachment image source.  This should return an array. */
+	$image = wp_get_attachment_image_src( $post_thumbnail_id, $size );
+
+	/* Get the attachment excerpt to use as alt text. */
+	$alt = trim( strip_tags( get_post_field( 'post_excerpt', $post_thumbnail_id ) ) );
+
+	/* Return both the image URL and the post thumbnail ID. */
+	return array( 'src' => $image[0], 'post_thumbnail_id' => $post_thumbnail_id, 'alt' => $alt );
+}
+
+/**
+ * Check for attachment images.  Uses get_children() to check if the post has images attached.  If image 
+ * attachments are found, loop through each.  The loop only breaks once $order_of_image is reached.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @return array|bool Array of image attributes. | False if no image is found.
+ */
+function get_the_image_by_attachment( $args = array() ) {
+
+	/* Get the post type of the current post. */
+	$post_type = get_post_type( $args['post_id'] );
+
+	/* Check if the post itself is an image attachment. */
+	if ( 'attachment' == $post_type && wp_attachment_is_image( $args['post_id'] ) ) {
+		$attachment_id = $args['post_id'];
+	}
+
+	/* If the post is not an attachment, check if it has any image attachments. */
+	elseif ( 'attachment' !== $post_type ) {
+
+		/* Get attachments for the inputted $post_id. */
+		$attachments = get_children(
+			array(
+				'post_parent' => $args['post_id'],
+				'post_status' => 'inherit',
+				'post_type' => 'attachment',
+				'post_mime_type' => 'image',
+				'order' => 'ASC',
+				'orderby' => 'menu_order ID',
+				'suppress_filters' => true
+			)
+		);
+
+		/* Check if any attachments were found. */
+		if ( !empty( $attachments ) ) {
+
+			/* Set the default iterator to 0. */
+			$i = 0;
+
+			/* Loop through each attachment. */
+			foreach ( $attachments as $id => $attachment ) {
+
+				/* Set the attachment ID as the current ID in the loop. */
+				$attachment_id = $id;
+
+				/* Break if/when we hit 'order_of_image'. */
+				if ( ++$i == $args['order_of_image'] )
+					break;
+			}
+		}
+	}
+
+	/* Check if we have an attachment ID before proceeding. */
+	if ( !empty( $attachment_id ) ) {
+
+		/* Get the attachment image. */
+		$image = wp_get_attachment_image_src( $id, $args['size'] );
+
+		/* Get the attachment excerpt. */
+		$alt = trim( strip_tags( get_post_field( 'post_excerpt', $id ) ) );
+
+		/* Save the attachment as the 'featured image'. */
+		if ( true === $args['thumbnail_id_save'] )
+			set_post_thumbnail( $args['post_id'], $id );
+
+		/* Return the image URL. */
+		return array( 'src' => $image[0], 'alt' => $alt );
+	}
+
+	/* Return false for anything else. */
+	return false;
+}
+
+/**
+ * Scans the post for images within the content.  Not called by default with get_the_image().  Shouldn't use 
+ * if using large images within posts, better to use the other options.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @return array|bool Array of image attributes. | False if no image is found.
+ */
+function get_the_image_by_scan( $args = array() ) {
+
+	/* Search the post's content for the <img /> tag and get its URL. */
+	preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', get_post_field( 'post_content', $args['post_id'] ), $matches );
+
+	/* If there is a match for the image, return its URL. */
+	if ( isset( $matches ) && !empty( $matches[1][0] ) )
+		return array( 'src' => $matches[1][0] );
+
+	return false;
+}
+
+/**
+ * Used for setting a default image.  The function simply returns the image URL it was given in an array.  
+ * Not used with get_the_image() by default.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @return array|bool Array of image attributes. | False if no image is found.
+ */
+function get_the_image_by_default( $args = array() ) {
+	return array( 'src' => $args['default_image'] );
+}
+
+/**
+ * Formats an image with appropriate alt text and class.  Adds a link to the post if argument is set.  Should 
+ * only be called if there is an image to display, but will handle it if not.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @param array $image Array of image attributes ($image, $classes, $alt, $caption).
+ * @return string $image Formatted image (w/link to post if the option is set).
+ */
+function get_the_image_format( $args = array(), $image = false ) {
+
+	/* If there is no image URL, return false. */
+	if ( empty( $image['src'] ) )
+		return false;
+
+	/* Extract the arguments for easy-to-use variables. */
+	extract( $args );
+
+	/* If there is alt text, set it.  Otherwise, default to the post title. */
+	$image_alt = ( ( !empty( $image['alt'] ) ) ? $image['alt'] : apply_filters( 'the_title', get_post_field( 'post_title', $post_id ) ) );
+
+	/* If there is a width or height, set them as HMTL-ready attributes. */
+	$width = ( ( $width ) ? ' width="' . esc_attr( $width ) . '"' : '' );
+	$height = ( ( $height ) ? ' height="' . esc_attr( $height ) . '"' : '' );
+
+	/* Loop through the custom field keys and add them as classes. */
+	if ( is_array( $meta_key ) ) {
+		foreach ( $meta_key as $key )
+			$classes[] = sanitize_html_class( $key );
+	}
+
+	/* Add the $size and any user-added $image_class to the class. */
+	$classes[] = sanitize_html_class( $size );
+	$classes[] = sanitize_html_class( $image_class );
+
+	/* Join all the classes into a single string and make sure there are no duplicates. */
+	$class = join( ' ', array_unique( $classes ) );
+
+	/* Add the image attributes to the <img /> element. */
+	$html = '<img src="' . $image['src'] . '" alt="' . esc_attr( strip_tags( $image_alt ) ) . '" class="' . esc_attr( $class ) . '"' . $width . $height . ' />';
+
+	/* If $link_to_post is set to true, link the image to its post. */
+	if ( $link_to_post )
+		$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( apply_filters( 'the_title', get_post_field( 'post_title', $post_id ) ) ) . '">' . $html . '</a>';
+
+	/* If there is a $post_thumbnail_id, apply the WP filters normally associated with get_the_post_thumbnail(). */
+	if ( !empty( $image['post_thumbnail_id'] ) )
+		$html = apply_filters( 'post_thumbnail_html', $html, $post_id, $image['post_thumbnail_id'], $size, '' );
+
+	return $html;
+}
+
+/**
+ * Saves the image URL as the value of the meta key provided.  This allows users to set a custom meta key 
+ * for their image.  By doing this, users can trim off database queries when grabbing attachments or get rid 
+ * of expensive scans of the content when using the image scan feature.
+ *
+ * @since 0.6.0
+ * @access private
+ * @param array $args Arguments for how to load and display the image.
+ * @param array $image Array of image attributes ($image, $classes, $alt, $caption).
+ */
+function get_the_image_meta_key_save( $args = array(), $image = array() ) {
+
+	/* If the $meta_key_save argument is empty or there is no image $url given, return. */
+	if ( empty( $args['meta_key_save'] ) || empty( $image['src'] ) )
+		return;
+
+	/* Get the current value of the meta key. */
+	$meta = get_post_meta( $args['post_id'], $args['meta_key_save'], true );
+
+	/* If there is no value for the meta key, set a new value with the image $url. */
+	if ( empty( $meta ) )
+		add_post_meta( $args['post_id'], $args['meta_key_save'], $image['src'] );
+
+	/* If the current value doesn't match the image $url, update it. */
+	elseif ( $meta !== $image['src'] )
+		update_post_meta( $args['post_id'], $args['meta_key_save'], $image['src'], $meta );
+}
+
+/**
+ * Deletes the image cache for the specific post when the 'save_post' hook is fired.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param int $post_id The ID of the post to delete the cache for.
+ * @return void
+ */
+function get_the_image_delete_cache_by_post( $post_id ) {
+	wp_cache_delete( $post_id, 'get_the_image' );
+}
+
+/**
+ * Deletes the image cache for a specific post when the 'added_post_meta', 'deleted_post_meta', 
+ * or 'updated_post_meta' hooks are called.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param int $meta_id The ID of the metadata being updated.
+ * @param int $post_id The ID of the post to delete the cache for.
+ * @return void
+ */
+function get_the_image_delete_cache_by_meta( $meta_id, $post_id ) {
+	wp_cache_delete( $post_id, 'get_the_image' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 0.3.0
+ */
+function get_the_image_link( $deprecated = '', $deprecated_2 = '', $deprecated_3 = '' ) {
+	get_the_image();
+}
+
+/**
+ * @since 0.3.0
+ * @deprecated 0.7.0
+ */
+function image_by_custom_field( $args = array() ) {
+	return get_the_image_by_meta_key( $args );
+}
+
+/**
+ * @since 0.4.0
+ * @deprecated 0.7.0
+ */
+function image_by_the_post_thumbnail( $args = array() ) {
+	return get_the_image_by_post_thumbnail( $args );
+}
+
+/**
+ * @since 0.3.0
+ * @deprecated 0.7.0
+ */
+function image_by_attachment( $args = array() ) {
+	return get_the_image_by_attachment( $args );
+}
+
+/**
+ * @since 0.3.0
+ * @deprecated 0.7.0
+ */
+function image_by_scan( $args = array() ) {
+	return get_the_image_by_scan( $args );
+}
+
+/**
+ * @since 0.3.0
+ * @deprecated 0.7.0
+ */
+function image_by_default( $args = array() ) {
+	return get_the_image_by_default( $args );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 0.7.0
+ */
+function display_the_image( $args = array(), $image = false ) {
+	return get_the_image_format( $args, $image );
+}
+
+/**
+ * @since 0.5.0
+ * @deprecated 0.7.0 Replaced by cache delete functions specifically for the post ID.
+ */
+function get_the_image_delete_cache() {
+	return;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/loop-pagination.php b/wp-content/themes/path/library/extensions/loop-pagination.php
new file mode 100644
index 0000000000000000000000000000000000000000..fa7cf39c4106e968c05aa7c8b90e09eb33ba41b4
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/loop-pagination.php
@@ -0,0 +1,110 @@
+<?php
+/**
+ * Loop Pagination - A WordPress script for creating paginated links on archive-type pages.
+ *
+ * The Loop Pagination script was designed to give theme authors a quick way to paginate archive-type 
+ * (archive, search, and blog) pages without having to worry about which of the many plugins a user might 
+ * possibly be using.  Instead, they can simply build pagination right into their themes.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package   LoopPagination
+ * @version   0.1.6
+ * @author    Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2010 - 2012, Justin Tadlock
+ * @link      http://themehybrid.com/docs/tutorials/loop-pagination
+ * @license   http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Loop pagination function for paginating loops with multiple posts.  This should be used on archive, blog, and 
+ * search pages.  It is not for singular views.
+ *
+ * @since 0.1.0
+ * @access public
+ * @uses paginate_links() Creates a string of paginated links based on the arguments given.
+ * @param array $args Arguments to customize how the page links are output.
+ * @return string $page_links
+ */
+function loop_pagination( $args = array() ) {
+	global $wp_rewrite, $wp_query;
+
+	/* If there's not more than one page, return nothing. */
+	if ( 1 >= $wp_query->max_num_pages )
+		return;
+
+	/* Get the current page. */
+	$current = ( get_query_var( 'paged' ) ? absint( get_query_var( 'paged' ) ) : 1 );
+
+	/* Get the max number of pages. */
+	$max_num_pages = intval( $wp_query->max_num_pages );
+
+	/* Set up some default arguments for the paginate_links() function. */
+	$defaults = array(
+		'base'         => add_query_arg( 'paged', '%#%' ),
+		'format'       => '',
+		'total'        => $max_num_pages,
+		'current'      => $current,
+		'prev_next'    => true,
+		//'prev_text'  => __( '&laquo; Previous' ), // This is the WordPress default.
+		//'next_text'  => __( 'Next &raquo;' ), // This is the WordPress default.
+		'show_all'     => false,
+		'end_size'     => 1,
+		'mid_size'     => 1,
+		'add_fragment' => '',
+		'type'         => 'plain',
+
+		// Begin loop_pagination() arguments.
+		'before'       => '<div class="pagination loop-pagination">',
+		'after'        => '</div>',
+		'echo'         => true,
+	);
+
+	/* Add the $base argument to the array if the user is using permalinks. */
+	if ( $wp_rewrite->using_permalinks() && !is_search() )
+		$defaults['base'] = user_trailingslashit( trailingslashit( get_pagenum_link() ) . 'page/%#%' );
+
+	/* @todo Find a way to make pretty links work for search in all cases. */
+	/**
+	if ( is_search() ) {
+		$search_permastruct = $wp_rewrite->get_search_permastruct();
+		if ( !empty( $search_permastruct ) )
+			$defaults['base'] = user_trailingslashit( trailingslashit( get_search_link() ) . 'page/%#%' );
+	}
+	/**/
+
+	/* Allow developers to overwrite the arguments with a filter. */
+	$args = apply_filters( 'loop_pagination_args', $args );
+
+	/* Merge the arguments input with the defaults. */
+	$args = wp_parse_args( $args, $defaults );
+
+	/* Don't allow the user to set this to an array. */
+	if ( 'array' == $args['type'] )
+		$args['type'] = 'plain';
+
+	/* Get the paginated links. */
+	$page_links = paginate_links( $args );
+
+	/* Remove 'page/1' from the entire output since it's not needed. */
+	$page_links = str_replace( array( '&#038;paged=1\'', '/page/1\'', '/page/1/\'' ), '\'', $page_links );
+
+	/* Wrap the paginated links with the $before and $after elements. */
+	$page_links = $args['before'] . $page_links . $args['after'];
+
+	/* Allow devs to completely overwrite the output. */
+	$page_links = apply_filters( 'loop_pagination', $page_links );
+
+	/* Return the paginated links for use in themes. */
+	if ( $args['echo'] )
+		echo $page_links;
+	else
+		return $page_links;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/post-stylesheets.php b/wp-content/themes/path/library/extensions/post-stylesheets.php
new file mode 100644
index 0000000000000000000000000000000000000000..0455e4242965586910b482ea32bf59ba28b43f75
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/post-stylesheets.php
@@ -0,0 +1,327 @@
+<?php
+/**
+ * Post Stylesheets - A WordPress script for post-specific stylesheets.
+ *
+ * Post Stylesheets allows users and developers to add unique, per-post stylesheets.  This script was 
+ * created so that custom stylesheet files could be dropped into a theme's '/css' folder and loaded for 
+ * individual posts using the 'Stylesheet' post meta key and the stylesheet name as the post meta value.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package PostStylesheets
+ * @version 0.3.0
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2010 - 2012, Justin Tadlock
+ * @link http://justintadlock.com
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ * @todo register_meta()
+ */
+
+/* Register metadata with WordPress. */
+add_action( 'init', 'post_stylesheets_register_meta' );
+
+/* Add post type support for the 'post-stylesheets' feature. */
+add_action( 'init', 'post_stylesheets_add_post_type_support' );
+add_action( 'init', 'post_stylesheets_remove_post_type_support' );
+
+/* Filters stylesheet_uri with a function for adding a new style. */
+add_filter( 'stylesheet_uri', 'post_stylesheets_stylesheet_uri', 10, 2 );
+
+/* Admin setup for the 'post-stylesheets' feature. */
+add_action( 'admin_menu', 'post_stylesheets_admin_setup' );
+
+/**
+ * Registers the post stylesheets meta key ('Stylesheet') for posts and provides a function to sanitize
+ * the metadata on update.
+ *
+ * @since 0.3.0
+ * @return void
+ */
+function post_stylesheets_register_meta() {
+	register_meta( 'post', post_stylesheets_get_meta_key(), 'post_stylesheets_sanitize_meta' );
+}
+
+/**
+ * Callback function for sanitizing meta when add_metadata() or update_metadata() is called by WordPress. 
+ * If a developer wants to set up a custom method for sanitizing the data, they should use the 
+ * "sanitize_{$meta_type}_meta_{$meta_key}" filter hook to do so.
+ *
+ * @since 0.3.0
+ * @param mixed $meta_value The value of the data to sanitize.
+ * @param string $meta_key The meta key name.
+ * @param string $meta_type The type of metadata (post, comment, user, etc.)
+ * @return mixed $meta_value
+ */
+function post_styleheets_sanitize_meta( $meta_value, $meta_key, $meta_type ) {
+	return esc_attr( strip_tags( $meta_value ) );
+}
+
+/**
+ * Adds post type support for the 'post-stylesheets' feature to all 'public' post types.
+ *
+ * @since 0.3.0
+ * @access private
+ * @return void
+ */
+function post_stylesheets_add_post_type_support() {
+
+	/* Get all available 'public' post types. */
+	$post_types = get_post_types( array( 'public' => true ) );
+
+	/* Loop through each of the public post types and add support for post stylesheets. */
+	foreach ( $post_types as $type )
+		add_post_type_support( $type, 'post-stylesheets' );
+}
+
+/**
+ * Removes post stylesheets support for certain post types created by plugins.
+ *
+ * @since 0.3.0
+ * @access private
+ * @return void
+ */
+function post_stylesheets_remove_post_type_support() {
+
+	/* Removes post stylesheets support of the bbPress 'topic' post type. */
+	if ( function_exists( 'bbp_get_topic_post_type' ) )
+		remove_post_type_support( bbp_get_topic_post_type(), 'post-stylesheets' );
+
+	/* Removes post stylesheets support of the bbPress 'reply' post type. */
+	if ( function_exists( 'bbp_get_reply_post_type' ) )
+		remove_post_type_support( bbp_get_reply_post_type(), 'post-stylesheets' );
+}
+
+/**
+ * Checks if a post (or any post type) has the given meta key of 'Stylesheet' when on the singular view of 
+ * the post on the front of the site.  If found, the function checks within the '/css' folder of the stylesheet 
+ * directory (child theme) and the template directory (parent theme).  If the file exists, it is used rather 
+ * than the typical style.css file.
+ *
+ * @since 0.1.0
+ * @todo Use features from Ticket #18302 when available. http://core.trac.wordpress.org/ticket/18302
+ * @access private
+ * @param string $stylesheet_uri The URI of the active theme's stylesheet.
+ * @param string $stylesheet_dir_uri The directory URI of the active theme's stylesheet.
+ * @return string $stylesheet_uri
+ */
+function post_stylesheets_stylesheet_uri( $stylesheet_uri, $stylesheet_dir_uri ) {
+
+	/* Check if viewing a singular post. */
+	if ( is_singular() ) {
+
+		/* If viewing a bbPress topic, use its forum object. */
+		if ( function_exists( 'bbp_is_single_topic' ) && bbp_is_single_topic() )
+			$post = get_post( bbp_get_topic_forum_id( get_queried_object_id() ) );
+
+		/* If viewing a bbPress reply, use its forum object. */
+		elseif ( function_exists( 'bbp_is_single_reply' ) && bbp_is_single_reply() )
+			$post = get_post( bbp_get_reply_forum_id( get_queried_object_id() ) );
+
+		/* Get the queried object (post). */
+		else
+			$post = get_queried_object();
+
+		/* Check if the post type supports 'post-stylesheets' before proceeding. */
+		if ( post_type_supports( $post->post_type, 'post-stylesheets' ) ) {
+
+			/* Check if the user has set a value for the post stylesheet. */
+			$stylesheet = get_post_stylesheet( $post->ID );
+
+			/* If a meta value was given and the file exists, set $stylesheet_uri to the new file. */
+			if ( !empty( $stylesheet ) ) {
+
+				/* If the stylesheet is found in the child theme '/css' folder, use it. */
+				if ( file_exists( trailingslashit( get_stylesheet_directory() ) . "css/{$stylesheet}" ) )
+					$stylesheet_uri = trailingslashit( $stylesheet_dir_uri ) . "css/{$stylesheet}";
+
+				/* Else, if the stylesheet is found in the parent theme '/css' folder, use it. */
+				elseif ( file_exists( trailingslashit( get_template_directory() ) . "css/{$stylesheet}" ) )
+					$stylesheet_uri = trailingslashit( get_template_directory_uri() ) . "css/{$stylesheet}";
+			}
+		}
+	}
+
+	/* Return the stylesheet URI. */
+	return $stylesheet_uri;
+}
+
+/**
+ * Returns the post stylesheet if one is saved as post metadata.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param int $post_id The ID of the post to get the stylesheet for.
+ * @return string Stylesheet name if given.  Empty string for no stylesheet.
+ */
+function get_post_stylesheet( $post_id ) {
+	return get_post_meta( $post_id, post_stylesheets_get_meta_key(), true );
+}
+
+/**
+ * Adds/updates the post stylesheet for a specific post.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param int $post_id The ID of the post to set the stylesheet for.
+ * @param string $stylesheet The filename of the stylesheet.
+ * @return bool True on successful update, false on failure.
+ */
+function set_post_stylesheet( $post_id, $stylesheet ) {
+	return update_post_meta( $post_id, post_stylesheets_get_meta_key(), $stylesheet );
+}
+
+/**
+ * Deletes a post stylesheet.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param int $post_id The ID of the post to delete the stylesheet for.
+ * @return bool True on successful delete, false on failure.
+ */
+function delete_post_stylesheet( $post_id ) {
+	return delete_post_meta( $post_id, post_stylesheets_get_meta_key() );
+}
+
+/**
+ * Checks if a post has a specific post stylesheet.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param string $stylesheet The filename of the stylesheet.
+ * @param int $post_id The ID of the post to check.
+ * @return bool True|False depending on whether the post has the stylesheet.
+ */
+function has_post_stylesheet( $stylesheet, $post_id = '' ) {
+
+	/* If no post ID is given, use WP's get_the_ID() to get it and assume we're in the post loop. */
+	if ( empty( $post_id ) )
+		$post_id = get_the_ID();
+
+	/* Return true/false based on whether the stylesheet matches. */
+	return ( $stylesheet == get_post_stylesheet( $post_id ) ? true : false );
+}
+
+/**
+ * Admin setup for the post stylesheets script.
+ *
+ * @since 0.3.0
+ * @access private
+ * @return void
+ */
+function post_stylesheets_admin_setup() {
+
+	/* Load the post meta boxes on the new post and edit post screens. */
+	add_action( 'load-post.php', 'post_stylesheets_load_meta_boxes' );
+	add_action( 'load-post-new.php', 'post_stylesheets_load_meta_boxes' );
+}
+
+/**
+ * Hooks into the 'add_meta_boxes' hook to add the post stylesheets meta box and the 'save_post' hook 
+ * to save the metadata.
+ *
+ * @since 0.3.0
+ * @access private
+ * @return void
+ */
+function post_stylesheets_load_meta_boxes() {
+
+	/* Add the post stylesheets meta box on the 'add_meta_boxes' hook. */
+	add_action( 'add_meta_boxes', 'post_stylesheets_create_meta_box', 10, 2 );
+
+	/* Saves the post meta box data. */
+	add_action( 'save_post', 'post_stylesheets_meta_box_save', 10, 2 );
+}
+
+/**
+ * Adds the post stylesheets meta box if the post type supports 'post-stylesheets' and the current user has 
+ * permission to edit post meta.
+ *
+ * @since 0.2.0
+ * @access private
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post object.
+ * @return void
+ */
+function post_stylesheets_create_meta_box( $post_type, $post ) {
+
+	/* Add the meta box if the post type supports 'post-stylesheets'. */
+	if ( ( post_type_supports( $post_type, 'post-stylesheets' ) ) && ( current_user_can( 'edit_post_meta', $post->ID ) || current_user_can( 'add_post_meta', $post->ID ) || current_user_can( 'delete_post_meta', $post->ID ) ) )
+		add_meta_box( "post-stylesheets", __( 'Stylesheet', 'post-stylesheets' ), 'post_stylesheets_meta_box', $post_type, 'side', 'default' );
+}
+
+/**
+ * Displays the input field for entering a custom stylesheet.
+ *
+ * @since 0.2.0
+ * @access private
+ * @param object $object The post object currently being edited.
+ * @param array $box Specific information about the meta box being loaded.
+ * @return void
+ */
+function post_stylesheets_meta_box( $object, $box ) { ?>
+
+	<p>
+		<?php wp_nonce_field( basename( __FILE__ ), 'post-stylesheets-nonce' ); ?>
+		<input type="text" class="widefat" name="post-stylesheets" id="post-stylesheets" value="<?php echo esc_attr( get_post_stylesheet( $object->ID ) ); ?>" />
+	</p>
+<?php
+}
+
+/**
+ * Saves the user-selected post stylesheet on the 'save_post' hook.
+ *
+ * @since 0.2.0
+ * @access private
+ * @param int $post_id The ID of the current post being saved.
+ * @param object $post The post object currently being saved.
+ */
+function post_stylesheets_meta_box_save( $post_id, $post ) {
+
+	/* Verify the nonce before proceeding. */
+	if ( !isset( $_POST['post-stylesheets-nonce'] ) || !wp_verify_nonce( $_POST['post-stylesheets-nonce'], basename( __FILE__ ) ) )
+		return;
+
+	/* Check if the post type supports 'post-stylesheets'. */
+	if ( !post_type_supports( $post->post_type, 'post-stylesheets' ) )
+		return;
+
+	/* Get the meta key. */
+	$meta_key = post_stylesheets_get_meta_key();
+
+	/* Get the previous post stylesheet. */
+	$meta_value = get_post_stylesheet( $post_id );
+
+	/* Get the submitted post stylesheet. */
+	$new_meta_value = $_POST['post-stylesheets'];
+
+	/* If there is no new meta value but an old value exists, delete it. */
+	if ( current_user_can( 'delete_post_meta', $post_id, $meta_key ) && '' == $new_meta_value && $meta_value )
+		delete_post_stylesheet( $post_id );
+
+	/* If a new meta value was added and there was no previous value, add it. */
+	elseif ( current_user_can( 'add_post_meta', $post_id, $meta_key ) && $new_meta_value && '' == $meta_value )
+		set_post_stylesheet( $post_id, $new_meta_value );
+
+	/* If the old layout doesn't match the new layout, update the post layout meta. */
+	elseif ( current_user_can( 'edit_post_meta', $post_id, $meta_key ) && $meta_value !== $new_meta_value )
+		set_post_stylesheet( $post_id, $new_meta_value );
+}
+
+/**
+ * Returns the meta key used by the script for post metadata.
+ *
+ * @since 0.3.0
+ * @access public
+ * @return string
+ */
+function post_stylesheets_get_meta_key() {
+	return apply_filters( 'post_stylesheets_meta_key', 'Stylesheet' );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/extensions/theme-layouts.php b/wp-content/themes/path/library/extensions/theme-layouts.php
new file mode 100644
index 0000000000000000000000000000000000000000..db0220249cafeec85db4f6ff6fd3d5556a520011
--- /dev/null
+++ b/wp-content/themes/path/library/extensions/theme-layouts.php
@@ -0,0 +1,553 @@
+<?php
+/**
+ * Theme Layouts - A WordPress script for creating dynamic layouts.
+ *
+ * Theme Layouts was created to allow theme developers to easily style themes with dynamic layout 
+ * structures.  It gives users the ability to control how each post (or any post type) is displayed on the 
+ * front end of the site.  The layout can also be filtered for any page of a WordPress site.  
+ *
+ * The script will filter the WordPress body_class to provide a layout class for the given page.  Themes 
+ * must support this hook or its accompanying body_class() function for the Theme Layouts script to work. 
+ * Themes must also handle the CSS based on the layout class.  This script merely provides the logic.  The 
+ * design should be handled on a theme-by-theme basis.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * @package ThemeLayouts
+ * @version 0.4.0
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2010 - 2012, Justin Tadlock
+ * @link http://justintadlock.com
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register metadata with WordPress. */
+add_action( 'init', 'theme_layouts_register_meta' );
+
+/* Add post type support for theme layouts. */
+add_action( 'init', 'theme_layouts_add_post_type_support' );
+add_action( 'init', 'theme_layouts_remove_post_type_support' );
+
+/* Set up the custom post layouts. */
+add_action( 'admin_menu', 'theme_layouts_admin_setup' );
+
+/* Filters the body_class hook to add a custom class. */
+add_filter( 'body_class', 'theme_layouts_body_class' );
+
+/**
+ * Registers the theme layouts meta key ('Layout') for specific object types and provides a function to sanitize
+ * the metadata on update.
+ *
+ * @since 0.4.0
+ * @return void
+ */
+function theme_layouts_register_meta() {
+	register_meta( 'post', theme_layouts_get_meta_key(), 'theme_layouts_sanitize_meta' );
+	register_meta( 'user', theme_layouts_get_meta_key(), 'theme_layouts_sanitize_meta' );
+}
+
+/**
+ * Callback function for sanitizing meta when add_metadata() or update_metadata() is called by WordPress. 
+ * If a developer wants to set up a custom method for sanitizing the data, they should use the 
+ * "sanitize_{$meta_type}_meta_{$meta_key}" filter hook to do so.
+ *
+ * @since 0.4.0
+ * @param mixed $meta_value The value of the data to sanitize.
+ * @param string $meta_key The meta key name.
+ * @param string $meta_type The type of metadata (post, comment, user, etc.)
+ * @return mixed $meta_value
+ */
+function theme_layouts_sanitize_meta( $meta_value, $meta_key, $meta_type ) {
+	return esc_attr( strip_tags( $meta_value ) );
+}
+
+/**
+ * Adds post type support to all 'public' post types.  This allows themes to remove support for the 'theme-layouts'
+ * feature with remove_post_type_support().
+ *
+ * @since 0.4.0
+ * @return void
+ */
+function theme_layouts_add_post_type_support() {
+
+	/* Gets available public post types. */
+	$post_types = get_post_types( array( 'public' => true ) );
+
+	/* For each available post type, create a meta box on its edit page if it supports '$prefix-post-settings'. */
+	foreach ( $post_types as $type )
+		add_post_type_support( $type, 'theme-layouts' );
+}
+
+/**
+ * Removes theme layouts support from specific post types created by plugins.
+ *
+ * @since 0.4.0
+ * @return void
+ */
+function theme_layouts_remove_post_type_support() {
+
+	/* Removes theme layouts support of the bbPress 'reply' post type. */
+	if ( function_exists( 'bbp_get_reply_post_type' ) )
+		remove_post_type_support( bbp_get_reply_post_type(), 'theme-layouts' );
+}
+
+/**
+ * Gets the layout for the current post based off the 'Layout' custom field key if viewing a singular post 
+ * entry.  All other pages are given a default layout of 'layout-default'.
+ *
+ * @since 0.2.0
+ * @return string The layout for the given page.
+ */
+function theme_layouts_get_layout() {
+
+	/* Get the available post layouts. */
+	$post_layouts = get_theme_support( 'theme-layouts' );
+
+	/* Set the layout to an empty string. */
+	$layout = '';
+
+	/* If viewing a singular post, check if a layout has been specified. */
+	if ( is_singular() ) {
+
+		/* Get the current post ID. */
+		$post_id = get_queried_object_id();
+
+		/* Get the post layout. */
+		$layout = get_post_layout( $post_id );
+	}
+
+	/* If viewing a user/author archive, check if a layout has been specified. */
+	elseif ( is_author() ) {
+
+		/* Get the current user ID. */
+		$user_id = get_queried_object_id();
+
+		/* Get the user layout. */
+		$layout = get_user_layout( $user_id );
+	}
+
+	/* Make sure the given layout is in the array of available post layouts for the theme. */
+	if ( empty( $layout ) || !in_array( $layout, $post_layouts[0] ) )
+		$layout = 'default';
+
+	/* If the theme set a default layout, use it if the layout should be set to default. */
+	if ( 'default' == $layout && !empty( $post_layouts[1] ) && isset( $post_layouts[1]['default'] ) )
+		$layout = $post_layouts[1]['default'];
+
+	/* @deprecated 0.2.0. Use the 'get_theme_layout' hook. */
+	$layout = apply_filters( 'get_post_layout', "layout-{$layout}" );
+
+	/* Return the layout and allow plugin/theme developers to override it. */
+	return esc_attr( apply_filters( 'get_theme_layout', $layout ) );
+}
+
+/**
+ * Get the post layout based on the given post ID.
+ *
+ * @since 0.2.0
+ * @param int $post_id The ID of the post to get the layout for.
+ * @return string $layout The name of the post's layout.
+ */
+function get_post_layout( $post_id ) {
+
+	/* Get the post layout. */
+	$layout = get_post_meta( $post_id, theme_layouts_get_meta_key(), true );
+
+	/* Return the layout if one is found.  Otherwise, return 'default'. */
+	return ( !empty( $layout ) ? $layout : 'default' );
+}
+
+/**
+ * Update/set the post layout based on the given post ID and layout.
+ *
+ * @since 0.2.0
+ * @param int $post_id The ID of the post to set the layout for.
+ * @param string $layout The name of the layout to set.
+ * @return bool True on successful update, false on failure.
+ */
+function set_post_layout( $post_id, $layout ) {
+	return update_post_meta( $post_id, theme_layouts_get_meta_key(), $layout );
+}
+
+/**
+ * Deletes a post layout.
+ *
+ * @since 0.4.0
+ * @access public
+ * @param int $post_id The ID of the post to delete the layout for.
+ * @return bool True on successful delete, false on failure.
+ */
+function delete_post_layout( $post_id ) {
+	return delete_post_meta( $post_id, theme_layouts_get_meta_key() );
+}
+
+/**
+ * Checks if a specific post's layout matches that of the given layout.
+ *
+ * @since 0.3.0
+ * @param string $layout The name of the layout to check if the post has.
+ * @param int $post_id The ID of the post to check the layout for.
+ * @return bool Whether the given layout matches the post's layout.
+ */
+function has_post_layout( $layout, $post_id = '' ) {
+
+	/* If no post ID is given, use WP's get_the_ID() to get it and assume we're in the post loop. */
+	if ( empty( $post_id ) )
+		$post_id = get_the_ID();
+
+	/* Return true/false based on whether the layout matches. */
+	return ( $layout == get_post_layout( $post_id ) ? true : false );
+}
+
+/**
+ * Get the layout for a user/author archive page based on a specific user ID.
+ *
+ * @since 0.3.0
+ * @param int $user_id The ID of the user to get the layout for.
+ * @return string The layout if one exists, 'default' if one doesn't.
+ */
+function get_user_layout( $user_id ) {
+
+	/* Get the user layout. */
+	$layout = get_user_meta( $user_id, theme_layouts_get_meta_key(), true );
+
+	/* Return the layout if one is found.  Otherwise, return 'default'. */
+	return ( !empty( $layout ) ? $layout : 'default' );
+}
+
+/**
+ * Update/set the layout for a user/author archive paged based on the user ID.
+ *
+ * @since 0.3.0
+ * @param int $user_id The ID of the user to set the layout for.
+ * @param string $layout The name of the layout to set.
+ * @return bool True on successful update, false on failure.
+ */
+function set_user_layout( $user_id, $layout ) {
+	return update_user_meta( $user_id, theme_layouts_get_meta_key(), $layout );
+}
+
+/**
+ * Deletes a user layout.
+ *
+ * @since 0.4.0
+ * @access public
+ * @param int $user_id The ID of the user to delete the layout for.
+ * @return bool True on successful delete, false on failure.
+ */
+function delete_user_layout( $user_id ) {
+	return delete_user_meta( $user_id, theme_layouts_get_meta_key() );
+}
+
+/**
+ * Checks if a specific user's layout matches that of the given layout.
+ *
+ * @since 0.3.0
+ * @param string $layout The name of the layout to check if the user has.
+ * @param int $user_id The ID of the user to check the layout for.
+ * @return bool Whether the given layout matches the user's layout.
+ */
+function has_user_layout( $layout, $user_id = '' ) {
+
+	/* If no user ID is given, assume we're viewing an author archive page and get the user ID. */
+	if ( empty( $user_id ) )
+		$user_id = get_query_var( 'author' );
+
+	/* Return true/false based on whether the layout matches. */
+	return ( $layout == get_user_layout( $user_id ) ? true : false );
+}
+
+/**
+ * Adds the post layout class to the WordPress body class in the form of "layout-$layout".  This allows 
+ * theme developers to design their theme layouts based on the layout class.  If designing a theme with 
+ * this extension, the theme should make sure to handle all possible layout classes.
+ *
+ * @since 0.2.0
+ * @param array $classes
+ * @param array $classes
+ */
+function theme_layouts_body_class( $classes ) {
+
+	/* Adds the layout to array of body classes. */
+	$classes[] = sanitize_html_class( theme_layouts_get_layout() );
+
+	/* Return the $classes array. */
+	return $classes;
+}
+
+/**
+ * Creates default text strings based on the default post layouts.  Theme developers that add custom 
+ * layouts should filter 'post_layouts_strings' to add strings to match the custom layouts, but it's not 
+ * required.  The layout name will be used if no text string is found.
+ *
+ * @since 0.2.0
+ * @return array $strings
+ */
+function theme_layouts_strings() {
+
+	/* Set up the default layout strings. */
+	$strings = array(
+		'default' => 	__( 'Default', 'theme-layouts' ),
+		'1c' => 		__( 'One Column', 'theme-layouts' ),
+		'2c-l' => 		__( 'Two Columns, Left', 'theme-layouts' ),
+		'2c-r' => 	__( 'Two Columns, Right', 'theme-layouts' ),
+		'3c-l' => 		__( 'Three Columns, Left', 'theme-layouts' ),
+		'3c-r' => 	__( 'Three Columns, Right', 'theme-layouts' ),
+		'3c-c' => 	__( 'Three Columns, Center', 'theme-layouts' )
+	);
+
+	/* Allow devs to filter the strings for custom layouts. */
+	return apply_filters( 'theme_layouts_strings', $strings );
+}
+
+/**
+ * Get a specific layout's text string.
+ *
+ * @since 0.2.0
+ * @param string $layout
+ * @return string
+ */
+function theme_layouts_get_string( $layout ) {
+
+	/* Get an array of post layout strings. */
+	$strings = theme_layouts_strings();
+
+	/* Return the layout's string if it exists. Else, return the layout slug. */
+	return ( ( isset( $strings[$layout] ) ) ? $strings[$layout] : $layout );
+}
+
+/**
+ * Post layouts admin setup.  Registers the post layouts meta box for the post editing screen.  Adds the 
+ * metadata save function to the 'save_post' hook.
+ *
+ * @since 0.2.0
+ * @return void
+ */
+function theme_layouts_admin_setup() {
+
+	/* Load the post meta boxes on the new post and edit post screens. */
+	add_action( 'load-post.php', 'theme_layouts_load_meta_boxes' );
+	add_action( 'load-post-new.php', 'theme_layouts_load_meta_boxes' );
+
+	/* If the attachment post type supports 'theme-layouts', add form fields for it. */
+	if ( post_type_supports( 'attachment', 'theme-layouts' ) ) {
+
+		/* Adds a theme layout <select> element to the attachment edit form. */
+		add_filter( 'attachment_fields_to_edit', 'theme_layouts_attachment_fields_to_edit', 10, 2 );
+
+		/* Saves the theme layout for attachments. */
+		add_filter( 'attachment_fields_to_save', 'theme_layouts_attachment_fields_to_save', 10, 2 );
+	}
+}
+
+/**
+ * Hooks into the 'add_meta_boxes' hook to add the theme layouts meta box and the 'save_post' hook 
+ * to save the metadata.
+ *
+ * @since 0.4.0
+ * @return void
+ */
+function theme_layouts_load_meta_boxes() {
+
+	/* Add the layout meta box on the 'add_meta_boxes' hook. */
+	add_action( 'add_meta_boxes', 'theme_layouts_add_meta_boxes', 10, 2 );
+
+	/* Saves the post format on the post editing page. */
+	add_action( 'save_post', 'theme_layouts_save_post', 10, 2 );
+}
+
+/**
+ * Adds the theme layouts meta box if the post type supports 'theme-layouts' and the current user has 
+ * permission to edit post meta.
+ *
+ * @since 0.4.0
+ * @param string $post_type The post type of the current post being edited.
+ * @param object $post The current post object.
+ * @return void
+ */
+function theme_layouts_add_meta_boxes( $post_type, $post ) {
+
+	/* Add the meta box if the post type supports 'post-stylesheets'. */
+	if ( ( post_type_supports( $post_type, 'theme-layouts' ) ) && ( current_user_can( 'edit_post_meta', $post->ID ) || current_user_can( 'add_post_meta', $post->ID ) || current_user_can( 'delete_post_meta', $post->ID ) ) )
+		add_meta_box( 'theme-layouts-post-meta-box', __( 'Layout', 'theme-layouts' ), 'theme_layouts_post_meta_box', $post_type, 'side', 'default' );
+}
+
+/**
+ * Displays a meta box of radio selectors on the post editing screen, which allows theme users to select 
+ * the layout they wish to use for the specific post.
+ *
+ * @since 0.2.0
+ * @access private
+ * @param object $post The post object currently being edited.
+ * @param array $box Specific information about the meta box being loaded.
+ * @return void
+ * @return void
+ */
+function theme_layouts_post_meta_box( $post, $box ) {
+
+	/* Get theme-supported theme layouts. */
+	$layouts = get_theme_support( 'theme-layouts' );
+	$post_layouts = $layouts[0];
+
+	/* Get the current post's layout. */
+	$post_layout = get_post_layout( $post->ID ); ?>
+
+	<div class="post-layout">
+
+		<?php wp_nonce_field( basename( __FILE__ ), 'theme-layouts-nonce' ); ?>
+
+		<p><?php _e( 'Layout is a theme-specific structure for the single view of the post.', 'theme-layouts' ); ?></p>
+
+		<div class="post-layout-wrap">
+			<ul>
+				<li><input type="radio" name="post-layout" id="post-layout-default" value="default" <?php checked( $post_layout, 'default' );?> /> <label for="post-layout-default"><?php echo esc_html( theme_layouts_get_string( 'default' ) ); ?></label></li>
+
+				<?php foreach ( $post_layouts as $layout ) { ?>
+					<li><input type="radio" name="post-layout" id="post-layout-<?php echo esc_attr( $layout ); ?>" value="<?php echo esc_attr( $layout ); ?>" <?php checked( $post_layout, $layout ); ?> /> <label for="post-layout-<?php echo esc_attr( $layout ); ?>"><?php echo esc_html( theme_layouts_get_string( $layout ) ); ?></label></li>
+				<?php } ?>
+			</ul>
+		</div>
+	</div><?php
+}
+
+/**
+ * Saves the post layout metadata if on the post editing screen in the admin.
+ *
+ * @since 0.2.0
+ * @access private
+ * @param int $post_id The ID of the current post being saved.
+ * @param object $post The post object currently being saved.
+ * @return void|int
+ */
+function theme_layouts_save_post( $post_id, $post ) {
+
+	/* Verify the nonce for the post formats meta box. */
+	if ( !isset( $_POST['theme-layouts-nonce'] ) || !wp_verify_nonce( $_POST['theme-layouts-nonce'], basename( __FILE__ ) ) )
+		return $post_id;
+
+	/* Get the meta key. */
+	$meta_key = theme_layouts_get_meta_key();
+
+	/* Get the previous post layout. */
+	$meta_value = get_post_layout( $post_id );
+
+	/* Get the submitted post layout. */
+	$new_meta_value = $_POST['post-layout'];
+
+	/* If there is no new meta value but an old value exists, delete it. */
+	if ( current_user_can( 'delete_post_meta', $post_id, $meta_key ) && '' == $new_meta_value && $meta_value )
+		delete_post_layout( $post_id );
+
+	/* If a new meta value was added and there was no previous value, add it. */
+	elseif ( current_user_can( 'add_post_meta', $post_id, $meta_key ) && $new_meta_value && '' == $meta_value )
+		set_post_layout( $post_id, $new_meta_value );
+
+	/* If the old layout doesn't match the new layout, update the post layout meta. */
+	elseif ( current_user_can( 'edit_post_meta', $post_id, $meta_key ) && $meta_value !== $new_meta_value )
+		set_post_layout( $post_id, $new_meta_value );
+}
+
+/**
+ * Adds a select drop-down element to the attachment edit form for selecting the attachment layout.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param array $fields Array of fields for the edit attachment form.
+ * @param object $post The attachment post object.
+ * @return array $fields
+ */
+function theme_layouts_attachment_fields_to_edit( $fields, $post ) {
+
+	/* Get theme-supported theme layouts. */
+	$layouts = get_theme_support( 'theme-layouts' );
+	$post_layouts = $layouts[0];
+
+	/* Get the current post's layout. */
+	$post_layout = get_post_layout( $post->ID );
+
+	/* Set the default post layout. */
+	$select = '<option id="post-layout-default" value="default" ' . selected( $post_layout, 'default', false ) . '>' . esc_html( theme_layouts_get_string( 'default' ) ) . '</option>';
+
+	/* Loop through each theme-supported layout, adding it to the select element. */
+	foreach ( $post_layouts as $layout )
+		$select .= '<option id="post-layout-' . esc_attr( $layout ) . '" value="' . esc_attr( $layout ) . '" ' . selected( $post_layout, $layout, false ) . '>' . esc_html( theme_layouts_get_string( $layout ) ) . '</option>';
+
+	/* Set the HTML for the post layout select drop-down. */
+	$select = '<select name="attachments[' . $post->ID . '][theme-layouts-post-layout]" id="attachments[' . $post->ID . '][theme-layouts-post-layout]">' . $select . '</select>';
+
+	/* Add the attachment layout field to the $fields array. */
+	$fields['theme-layouts-post-layout'] = array(
+		'label' => __( 'Layout', 'theme-layouts' ),
+		'input' => 'html',
+		'html' => $select
+	);
+
+	/* Return the $fields array back to WordPress. */
+	return $fields;
+}
+
+/**
+ * Saves the attachment layout for the attachment edit form.
+ *
+ * @since 0.3.0
+ * @access private
+ * @param array $post The attachment post array (not the post object!).
+ * @param array $fields Array of fields for the edit attachment form.
+ * @return array $post
+ */
+function theme_layouts_attachment_fields_to_save( $post, $fields ) {
+
+	/* If the theme layouts field was submitted. */
+	if ( isset( $fields['theme-layouts-post-layout'] ) ) {
+
+		/* Get the meta key. */
+		$meta_key = theme_layouts_get_meta_key();
+
+		/* Get the previous post layout. */
+		$meta_value = get_post_layout( $post['ID'] );
+
+		/* Get the submitted post layout. */
+		$new_meta_value = $fields['theme-layouts-post-layout'];
+
+		/* If there is no new meta value but an old value exists, delete it. */
+		if ( current_user_can( 'delete_post_meta', $post['ID'], $meta_key ) && '' == $new_meta_value && $meta_value )
+			delete_post_layout( $post['ID'] );
+
+		/* If a new meta value was added and there was no previous value, add it. */
+		elseif ( current_user_can( 'add_post_meta', $post['ID'], $meta_key ) && $new_meta_value && '' == $meta_value )
+			set_post_layout( $post['ID'], $new_meta_value );
+
+		/* If the old layout doesn't match the new layout, update the post layout meta. */
+		elseif ( current_user_can( 'edit_post_meta', $post['ID'], $meta_key ) && $meta_value !== $new_meta_value )
+			set_post_layout( $post['ID'], $new_meta_value );
+	}
+
+	/* Return the attachment post array. */
+	return $post;
+}
+
+/**
+ * Wrapper function for returning the metadata key used for objects that can use layouts.
+ *
+ * @since 0.3.0
+ * @access public
+ * @return string The meta key used for theme layouts.
+ */
+function theme_layouts_get_meta_key() {
+	return apply_filters( 'theme_layouts_meta_key', 'Layout' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 0.2.0 Use theme_layouts_get_layout().
+ */
+function post_layouts_get_layout() {
+	return theme_layouts_get_layout();
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/comments.php b/wp-content/themes/path/library/functions/comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..b4899f924003d7d926bb249fad5667086a48951f
--- /dev/null
+++ b/wp-content/themes/path/library/functions/comments.php
@@ -0,0 +1,233 @@
+<?php
+/**
+ * Functions for handling how comments are displayed and used on the site. This allows more precise 
+ * control over their display and makes more filter and action hooks available to developers to use in their 
+ * customizations.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Filter the comment form defaults. */
+add_filter( 'comment_form_defaults', 'hybrid_comment_form_args' );
+
+/* Add a few comment types to the allowed avatar comment types list. */
+add_filter( 'get_avatar_comment_types', 'hybrid_avatar_comment_types' );
+
+/**
+ * Arguments for the wp_list_comments_function() used in comments.php. Users can set up a 
+ * custom comments callback function by changing $callback to the custom function.  Note that 
+ * $style should remain 'ol' since this is hardcoded into the theme and is the semantically correct
+ * element to use for listing comments.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return array $args Arguments for listing comments.
+ */
+function hybrid_list_comments_args() {
+
+	/* Set the default arguments for listing comments. */
+	$args = array(
+		'style' => 'ol',
+		'type' => 'all',
+		'avatar_size' => 80,
+		'callback' => 'hybrid_comments_callback',
+		'end-callback' => 'hybrid_comments_end_callback'
+	);
+
+	/* Return the arguments and allow devs to overwrite them. */
+	return apply_atomic( 'list_comments_args', $args );
+}
+
+/**
+ * Uses the $comment_type to determine which comment template should be used. Once the 
+ * template is located, it is loaded for use. Child themes can create custom templates based off
+ * the $comment_type. The comment template hierarchy is comment-$comment_type.php, 
+ * comment.php.
+ *
+ * The templates are saved in $hybrid->comment_template[$comment_type], so each comment template
+ * is only located once if it is needed. Following comments will use the saved template.
+ *
+ * @since 0.2.3
+ * @access public
+ * @param $comment The comment object.
+ * @param $args Array of arguments passed from wp_list_comments().
+ * @param $depth What level the particular comment is.
+ * @return void
+ */
+function hybrid_comments_callback( $comment, $args, $depth ) {
+	global $hybrid;
+	$GLOBALS['comment'] = $comment;
+	$GLOBALS['comment_depth'] = $depth;
+
+	/* Get the comment type of the current comment. */
+	$comment_type = get_comment_type( $comment->comment_ID );
+
+	/* Create an empty array if the comment template array is not set. */
+	if ( !isset( $hybrid->comment_template) || !is_array( $hybrid->comment_template ) )
+		$hybrid->comment_template = array();
+
+	/* Check if a template has been provided for the specific comment type.  If not, get the template. */
+	if ( !isset( $hybrid->comment_template[$comment_type] ) ) {
+
+		/* Create an array of template files to look for. */
+		$templates = array( "comment-{$comment_type}.php" );
+
+		/* If the comment type is a 'pingback' or 'trackback', allow the use of 'comment-ping.php'. */
+		if ( 'pingback' == $comment_type || 'trackback' == $comment_type )
+			$templates[] = 'comment-ping.php';
+
+		/* Add the fallback 'comment.php' template. */
+		$templates[] = 'comment.php';
+
+		/* Locate the comment template. */
+		$template = locate_template( $templates );
+
+		/* Set the template in the comment template array. */
+		$hybrid->comment_template[$comment_type] = $template;
+	}
+
+	/* If a template was found, load the template. */
+	if ( !empty( $hybrid->comment_template[$comment_type] ) )
+		require( $hybrid->comment_template[$comment_type] );
+}
+
+/**
+ * Ends the display of individual comments. Uses the callback parameter for wp_list_comments(). 
+ * Needs to be used in conjunction with hybrid_comments_callback(). Not needed but used just in 
+ * case something is changed.
+ *
+ * @since 0.2.3
+ * @access public
+ * @return void
+ */
+function hybrid_comments_end_callback() {
+	echo '</li><!-- .comment -->';
+}
+
+/**
+ * Displays the avatar for the comment author and wraps it in the comment author's URL if it is
+ * available.  Adds a call to HYBRID_IMAGES . "/{$comment_type}.png" for the default avatars for
+ * trackbacks and pingbacks.
+ *
+ * @since 0.2.0
+ * @access public
+ * @global $comment The current comment's DB object.
+ * @global $hybrid The global Hybrid object.
+ * @return void
+ */
+function hybrid_avatar() {
+	global $comment, $hybrid;
+
+	/* Make sure avatars are allowed before proceeding. */
+	if ( !get_option( 'show_avatars' ) )
+		return false;
+
+	/* Get/set some comment variables. */
+	$comment_type = get_comment_type( $comment->comment_ID );
+	$author = get_comment_author( $comment->comment_ID );
+	$url = get_comment_author_url( $comment->comment_ID );
+	$avatar = '';
+	$default_avatar = '';
+
+	/* Get comment types that are allowed to have an avatar. */
+	$avatar_comment_types = apply_filters( 'get_avatar_comment_types', array( 'comment' ) );
+
+	/* If comment type is in the allowed list, check if it's a pingback or trackback. */
+	if ( in_array( $comment_type, $avatar_comment_types ) ) {
+
+		/* Set a default avatar for pingbacks and trackbacks. */
+		$default_avatar = ( ( 'pingback' == $comment_type || 'trackback' == $comment_type ) ? trailingslashit( HYBRID_IMAGES ) . "{$comment_type}.png" : '' );
+
+		/* Allow the default avatar to be filtered by comment type. */
+		$default_avatar = apply_filters( "{$hybrid->prefix}_{$comment_type}_avatar", $default_avatar );
+	}
+
+	/* Set up the avatar size. */
+	$comment_list_args = hybrid_list_comments_args();
+	$size = ( ( $comment_list_args['avatar_size'] ) ? $comment_list_args['avatar_size'] : 80 );
+
+	/* Get the avatar provided by the get_avatar() function. */
+	$avatar = get_avatar( $comment, absint( $size ), $default_avatar, $author );
+
+	/* If URL input, wrap avatar in hyperlink. */
+	if ( !empty( $url ) && !empty( $avatar ) )
+		$avatar = '<a href="' . esc_url( $url ) . '" rel="external nofollow" title="' . esc_attr( $author ) . '">' . $avatar . '</a>';
+
+	/* Display the avatar and allow it to be filtered. Note: Use the get_avatar filter hook where possible. */
+	echo apply_filters( "{$hybrid->prefix}_avatar", $avatar );
+}
+
+/**
+ * Filters the WordPress comment_form() function that was added in WordPress 3.0.  This allows
+ * the theme to preserve some backwards compatibility with its old comment form.  It also allows 
+ * users to build custom comment forms by filtering 'comment_form_defaults' in their child theme.
+ *
+ * @since 0.8.0
+ * @access public
+ * @param array $args The default comment form arguments.
+ * @return array $args The filtered comment form arguments.
+ */
+function hybrid_comment_form_args( $args ) {
+	global $user_identity;
+
+	/* Get the current commenter. */
+	$commenter = wp_get_current_commenter();
+
+	/* Create the required <span> and <input> element class. */
+	$req = ( ( get_option( 'require_name_email' ) ) ? ' <span class="required">' . __( '*', 'hybrid-core' ) . '</span> ' : '' );
+	$input_class = ( ( get_option( 'require_name_email' ) ) ? ' req' : '' );
+
+	/* Sets up the default comment form fields. */
+	$fields = array(
+		'author' => '<p class="form-author' . esc_attr( $input_class ) . '"><label for="author">' . __( 'Name', 'hybrid-core' ) . $req . '</label> <input type="text" class="text-input" name="author" id="author" value="' . esc_attr( $commenter['comment_author'] ) . '" size="40" /></p>',
+		'email' => '<p class="form-email' . esc_attr( $input_class ) . '"><label for="email">' . __( 'Email', 'hybrid-core' ) . $req . '</label> <input type="text" class="text-input" name="email" id="email" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="40" /></p>',
+		'url' => '<p class="form-url"><label for="url">' . __( 'Website', 'hybrid-core' ) . '</label><input type="text" class="text-input" name="url" id="url" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="40" /></p>'
+	);
+
+	/* Sets the default arguments for displaying the comment form. */
+	$args = array(
+		'fields' => apply_filters( 'comment_form_default_fields', $fields ),
+		'comment_field' => '<p class="form-textarea req"><label for="comment">' . __( 'Comment', 'hybrid-core' ) . '</label><textarea name="comment" id="comment" cols="60" rows="10"></textarea></p>',
+		'must_log_in' => '<p class="alert">' . sprintf( __( 'You must be <a href="%1$s" title="Log in">logged in</a> to post a comment.', 'hybrid-core' ), wp_login_url( get_permalink() ) ) . '</p><!-- .alert -->',
+		'logged_in_as' => '<p class="log-in-out">' . sprintf( __( 'Logged in as <a href="%1$s" title="%2$s">%2$s</a>.', 'hybrid-core' ), admin_url( 'profile.php' ), esc_attr( $user_identity ) ) . ' <a href="' . wp_logout_url( get_permalink() ) . '" title="' . esc_attr__( 'Log out of this account', 'hybrid-core' ) . '">' . __( 'Log out &raquo;', 'hybrid-core' ) . '</a></p><!-- .log-in-out -->',
+		'comment_notes_before' => '',
+		'comment_notes_after' => '',
+		'id_form' => 'commentform',
+		'id_submit' => 'submit',
+		'title_reply' => __( 'Leave a Reply', 'hybrid-core' ),
+		'title_reply_to' => __( 'Leave a Reply to %s', 'hybrid-core' ),
+		'cancel_reply_link' => __( 'Click here to cancel reply.', 'hybrid-core' ),
+		'label_submit' => __( 'Post Comment', 'hybrid-core' ),
+	);
+
+	/* Return the arguments for displaying the comment form. */
+	return $args;
+}
+
+/**
+ * Adds the 'pingback' and 'trackback' comment types to the allowed list of avatar comment types.  By
+ * default, WordPress only allows the 'comment' comment type to have an avatar.
+ *
+ * @since 1.2.0
+ * @access private
+ * @param array $types List of all comment types allowed to have avatars.
+ * @return array $types
+ */
+function hybrid_avatar_comment_types( $types ) {
+
+	/* Add the 'pingback' comment type. */
+	$types[] = 'pingback';
+
+	/* Add the 'trackback' comment type. */
+	$types[] = 'trackback';
+
+	/* Return the array of comment types. */
+	return $types;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/context.php b/wp-content/themes/path/library/functions/context.php
new file mode 100644
index 0000000000000000000000000000000000000000..d73be8f442648e37e33b8a1035becba9095bae8c
--- /dev/null
+++ b/wp-content/themes/path/library/functions/context.php
@@ -0,0 +1,472 @@
+<?php
+/**
+ * Functions for making various theme elements context-aware.  Controls things such as the smart 
+ * and logical body, post, and comment CSS classes as well as context-based action and filter hooks.  
+ * The functions also integrate with WordPress' implementations of body_class, post_class, and 
+ * comment_class, so your theme won't have any trouble with plugin integration.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Hybrid's main contextual function.  This allows code to be used more than once without running 
+ * hundreds of conditional checks within the theme.  It returns an array of contexts based on what 
+ * page a visitor is currently viewing on the site.  This function is useful for making dynamic/contextual
+ * classes, action and filter hooks, and handling the templating system.
+ *
+ * Note that time and date can be tricky because any of the conditionals may be true on time-/date-
+ * based archives depending on several factors.  For example, one could load an archive for a specific
+ * second during a specific minute within a specific hour on a specific day and so on.
+ *
+ * @since 0.7.0
+ * @access public
+ * @global $wp_query The current page's query object.
+ * @global $hybrid The global Hybrid object.
+ * @return array $hybrid->context Several contexts based on the current page.
+ */
+function hybrid_get_context() {
+	global $hybrid;
+
+	/* If $hybrid->context has been set, don't run through the conditionals again. Just return the variable. */
+	if ( isset( $hybrid->context ) )
+		return $hybrid->context;
+
+	/* Set some variables for use within the function. */
+	$hybrid->context = array();
+	$object = get_queried_object();
+	$object_id = get_queried_object_id();
+
+	/* Front page of the site. */
+	if ( is_front_page() )
+		$hybrid->context[] = 'home';
+
+	/* Blog page. */
+	if ( is_home() ) {
+		$hybrid->context[] = 'blog';
+	}
+
+	/* Singular views. */
+	elseif ( is_singular() ) {
+		$hybrid->context[] = 'singular';
+		$hybrid->context[] = "singular-{$object->post_type}";
+		$hybrid->context[] = "singular-{$object->post_type}-{$object_id}";
+	}
+
+	/* Archive views. */
+	elseif ( is_archive() ) {
+		$hybrid->context[] = 'archive';
+
+		/* Taxonomy archives. */
+		if ( is_tax() || is_category() || is_tag() ) {
+			$hybrid->context[] = 'taxonomy';
+			$hybrid->context[] = "taxonomy-{$object->taxonomy}";
+
+			$slug = ( ( 'post_format' == $object->taxonomy ) ? str_replace( 'post-format-', '', $object->slug ) : $object->slug );
+			$hybrid->context[] = "taxonomy-{$object->taxonomy}-" . sanitize_html_class( $slug, $object->term_id );
+		}
+
+		/* Post type archives. */
+		elseif ( is_post_type_archive() ) {
+			$post_type = get_post_type_object( get_query_var( 'post_type' ) );
+			$hybrid->context[] = "archive-{$post_type->name}";
+		}
+
+		/* User/author archives. */
+		elseif ( is_author() ) {
+			$hybrid->context[] = 'user';
+			$hybrid->context[] = 'user-' . sanitize_html_class( get_the_author_meta( 'user_nicename', $object_id ), $object_id );
+		}
+
+		/* Time/Date archives. */
+		else {
+			if ( is_date() ) {
+				$hybrid->context[] = 'date';
+				if ( is_year() )
+					$hybrid->context[] = 'year';
+				if ( is_month() )
+					$hybrid->context[] = 'month';
+				if ( get_query_var( 'w' ) )
+					$hybrid->context[] = 'week';
+				if ( is_day() )
+					$hybrid->context[] = 'day';
+			}
+			if ( is_time() ) {
+				$hybrid->context[] = 'time';
+				if ( get_query_var( 'hour' ) )
+					$hybrid->context[] = 'hour';
+				if ( get_query_var( 'minute' ) )
+					$hybrid->context[] = 'minute';
+			}
+		}
+	}
+
+	/* Search results. */
+	elseif ( is_search() ) {
+		$hybrid->context[] = 'search';
+	}
+
+	/* Error 404 pages. */
+	elseif ( is_404() ) {
+		$hybrid->context[] = 'error-404';
+	}
+
+	return array_map( 'esc_attr', $hybrid->context );
+}
+
+/**
+ * Creates a set of classes for each site entry upon display. Each entry is given the class of 
+ * 'hentry'. Posts are given category, tag, and author classes. Alternate post classes of odd, 
+ * even, and alt are added.
+ *
+ * @since 0.5.0
+ * @access public
+ * @global $post The current post's DB object.
+ * @param string|array $class Additional classes for more control.
+ * @return void
+ */
+function hybrid_entry_class( $class = '', $post_id = null ) {
+	static $post_alt;
+
+	$post = get_post( $post_id );
+
+	/* Make sure we have a real post first. */
+	if ( !empty( $post ) ) {
+
+		$post_id = $post->ID;
+
+		/* Add hentry for microformats compliance, the post type, and post status. */
+		$classes = array( 'hentry', $post->post_type, $post->post_status );
+
+		/* Post alt class. */
+		$classes[] = 'post-' . ++$post_alt;
+		$classes[] = ( $post_alt % 2 ) ? 'odd' : 'even alt';
+
+		/* Author class. */
+		$classes[] = 'author-' . sanitize_html_class( get_the_author_meta( 'user_nicename' ), get_the_author_meta( 'ID' ) );
+
+		/* Sticky class (only on home/blog page). */
+		if ( is_home() && is_sticky() && !is_paged() )
+			$classes[] = 'sticky';
+
+		/* Password-protected posts. */
+		if ( post_password_required() )
+			$classes[] = 'protected';
+
+		/* Has excerpt. */
+		if ( post_type_supports( $post->post_type, 'excerpt' ) && has_excerpt() )
+			$classes[] = 'has-excerpt';
+
+		/* Has <!--more--> link. */
+		if ( !is_singular() && false !== strpos( $post->post_content, '<!--more-->' ) )
+			$classes[] = 'has-more-link';
+
+		/* Post format. */
+		if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) {
+			$post_format = get_post_format( $post_id );
+			$classes[] = ( ( empty( $post_format ) || is_wp_error( $post_format ) ) ? 'format-standard' : "format-{$post_format}" );
+		}
+
+		/* Add category and post tag terms as classes. */
+		if ( 'post' == $post->post_type ) {
+
+			foreach ( array( 'category', 'post_tag' ) as $tax ) {
+
+				foreach ( (array)get_the_terms( $post->ID, $tax ) as $term ) {
+					if ( !empty( $term->slug ) )
+						$classes[] = $tax . '-' . sanitize_html_class( $term->slug, $term->term_id );
+				}
+			}
+		}
+	}
+
+	/* If not a post. */
+	else {
+		$classes = array( 'hentry', 'error' );
+	}
+
+	/* User-created classes. */
+	if ( !empty( $class ) ) {
+		if ( !is_array( $class ) )
+			$class = preg_split( '#\s+#', $class );
+		$classes = array_merge( $classes, $class );
+	}
+
+	/* Apply the filters for WP's 'post_class'. */
+	$classes = apply_filters( 'post_class', $classes, $class, $post_id );
+
+	/* Join all the classes into one string and echo them. */
+	$class = join( ' ', $classes );
+
+	echo apply_atomic( 'entry_class', $class );
+}
+
+/**
+ * Sets a class for each comment. Sets alt, odd/even, and author/user classes. Adds author, user, 
+ * and reader classes. Needs more work because WP, by default, assigns even/odd backwards 
+ * (Odd should come first, even second).
+ *
+ * @since 0.2.0
+ * @access public
+ * @global $wpdb WordPress DB access object.
+ * @global $comment The current comment's DB object.
+ * @return void
+ */
+function hybrid_comment_class( $class = '' ) {
+	global $post, $comment, $hybrid;
+
+	/* Gets default WP comment classes. */
+	$classes = get_comment_class( $class );
+
+	/* Get the comment type. */
+	$comment_type = get_comment_type();
+
+	/* If the comment type is 'pingback' or 'trackback', add the 'ping' comment class. */
+	if ( 'pingback' == $comment_type || 'trackback' == $comment_type )
+		$classes[] = 'ping';
+
+	/* User classes to match user role and user. */
+	if ( $comment->user_id > 0 ) {
+
+		/* Create new user object. */
+		$user = new WP_User( $comment->user_id );
+
+		/* Set a class with the user's role(s). */
+		if ( is_array( $user->roles ) ) {
+			foreach ( $user->roles as $role )
+				$classes[] = sanitize_html_class( "role-{$role}" );
+		}
+
+		/* Set a class with the user's name. */
+		$classes[] = sanitize_html_class( "user-{$user->user_nicename}", "user-{$user->ID}" );
+	}
+
+	/* If not a registered user */
+	else {
+		$classes[] = 'reader';
+	}
+
+	/* Comment by the entry/post author. */
+	if ( $post = get_post( $post_id ) ) {
+		if ( $comment->user_id === $post->post_author )
+			$classes[] = 'entry-author';
+	}
+
+	/* Get comment types that are allowed to have an avatar. */
+	$avatar_comment_types = apply_filters( 'get_avatar_comment_types', array( 'comment' ) );
+
+	/* If avatars are enabled and the comment types can display avatars, add the 'has-avatar' class. */
+	if ( get_option( 'show_avatars' ) && in_array( $comment->comment_type, $avatar_comment_types ) )
+		$classes[] = 'has-avatar';
+
+	/* Make sure comment classes doesn't have any duplicates. */
+	$classes = array_unique( $classes );
+
+	/* Join all the classes into one string and echo them. */
+	$class = join( ' ', $classes );
+
+	echo apply_filters( "{$hybrid->prefix}_comment_class", $class );
+}
+
+/**
+ * Provides classes for the <body> element depending on page context.
+ *
+ * @since 0.1.0
+ * @access public
+ * @uses $wp_query
+ * @param string|array $class Additional classes for more control.
+ * @return void
+ */
+function hybrid_body_class( $class = '' ) {
+	global $wp_query;
+
+	/* Text direction (which direction does the text flow). */
+	$classes = array( 'wordpress', get_bloginfo( 'text_direction' ), get_locale() );
+
+	/* Check if the current theme is a parent or child theme. */
+	$classes[] = ( is_child_theme() ? 'child-theme' : 'parent-theme' );
+
+	/* Multisite check adds the 'multisite' class and the blog ID. */
+	if ( is_multisite() ) {
+		$classes[] = 'multisite';
+		$classes[] = 'blog-' . get_current_blog_id();
+	}
+
+	/* Date classes. */
+	$time = time() + ( get_option( 'gmt_offset' ) * 3600 );
+	$classes[] = strtolower( gmdate( '\yY \mm \dd \hH l', $time ) );
+
+	/* Is the current user logged in. */
+	$classes[] = ( is_user_logged_in() ) ? 'logged-in' : 'logged-out';
+
+	/* WP admin bar. */
+	if ( is_admin_bar_showing() )
+		$classes[] = 'admin-bar';
+
+	/* Use the '.custom-background' class to integrate with the WP background feature. */
+	if ( get_background_image() || get_background_color() )
+		$classes[] = 'custom-background';
+
+	/* Add the '.custom-header' class if the user is using a custom header. */
+	if ( get_header_image() )
+		$classes[] = 'custom-header';
+
+	/* Merge base contextual classes with $classes. */
+	$classes = array_merge( $classes, hybrid_get_context() );
+
+	/* Singular post (post_type) classes. */
+	if ( is_singular() ) {
+
+		/* Get the queried post object. */
+		$post = get_queried_object();
+
+		/* Checks for custom template. */
+		$template = str_replace( array ( "{$post->post_type}-template-", "{$post->post_type}-" ), '', basename( get_post_meta( get_queried_object_id(), "_wp_{$post->post_type}_template", true ), '.php' ) );
+		if ( !empty( $template ) )
+			$classes[] = "{$post->post_type}-template-{$template}";
+
+		/* Post format. */
+		if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) ) {
+			$post_format = get_post_format( get_queried_object_id() );
+			$classes[] = ( ( empty( $post_format ) || is_wp_error( $post_format ) ) ? "{$post->post_type}-format-standard" : "{$post->post_type}-format-{$post_format}" );
+		}
+
+		/* Attachment mime types. */
+		if ( is_attachment() ) {
+			foreach ( explode( '/', get_post_mime_type() ) as $type )
+				$classes[] = "attachment-{$type}";
+		}
+	}
+
+	/* Paged views. */
+	if ( ( ( $page = $wp_query->get( 'paged' ) ) || ( $page = $wp_query->get( 'page' ) ) ) && $page > 1 )
+		$classes[] = 'paged paged-' . intval( $page );
+
+	/* Input class. */
+	if ( !empty( $class ) ) {
+		if ( !is_array( $class ) )
+			$class = preg_split( '#\s+#', $class );
+		$classes = array_merge( $classes, $class );
+	}
+
+	/* Apply the filters for WP's 'body_class'. */
+	$classes = apply_filters( 'body_class', $classes, $class );
+
+	/* Join all the classes into one string. */
+	$class = join( ' ', $classes );
+
+	/* Print the body class. */
+	echo apply_atomic( 'body_class', $class );
+}
+
+/**
+ * Function for handling what the browser/search engine title should be. Attempts to handle every 
+ * possible situation WordPress throws at it for the best optimization.
+ *
+ * @since 0.1.0
+ * @access public
+ * @global $wp_query
+ * @return void
+ */
+function hybrid_document_title() {
+	global $wp_query;
+
+	/* Set up some default variables. */
+	$doctitle = '';
+	$separator = ':';
+
+	/* If viewing the front page and posts page of the site. */
+	if ( is_front_page() && is_home() )
+		$doctitle = get_bloginfo( 'name' ) . $separator . ' ' . get_bloginfo( 'description' );
+
+	/* If viewing the posts page or a singular post. */
+	elseif ( is_home() || is_singular() ) {
+
+		$doctitle = get_post_meta( get_queried_object_id(), 'Title', true );
+
+		if ( empty( $doctitle ) && is_front_page() )
+			$doctitle = get_bloginfo( 'name' ) . $separator . ' ' . get_bloginfo( 'description' );
+
+		elseif ( empty( $doctitle ) )
+			$doctitle = single_post_title( '', false );
+	}
+
+	/* If viewing any type of archive page. */
+	elseif ( is_archive() ) {
+
+		/* If viewing a taxonomy term archive. */
+		if ( is_category() || is_tag() || is_tax() ) {
+			$doctitle = single_term_title( '', false );
+		}
+
+		/* If viewing a post type archive. */
+		elseif ( is_post_type_archive() ) {
+			$post_type = get_post_type_object( get_query_var( 'post_type' ) );
+			$doctitle = $post_type->labels->name;
+		}
+
+		/* If viewing an author/user archive. */
+		elseif ( is_author() ) {
+			$doctitle = get_user_meta( get_query_var( 'author' ), 'Title', true );
+
+			if ( empty( $doctitle ) )
+				$doctitle = get_the_author_meta( 'display_name', get_query_var( 'author' ) );
+		}
+
+		/* If viewing a date-/time-based archive. */
+		elseif ( is_date () ) {
+			if ( get_query_var( 'minute' ) && get_query_var( 'hour' ) )
+				$doctitle = sprintf( __( 'Archive for %1$s', 'hybrid-core' ), get_the_time( __( 'g:i a', 'hybrid-core' ) ) );
+
+			elseif ( get_query_var( 'minute' ) )
+				$doctitle = sprintf( __( 'Archive for minute %1$s', 'hybrid-core' ), get_the_time( __( 'i', 'hybrid-core' ) ) );
+
+			elseif ( get_query_var( 'hour' ) )
+				$doctitle = sprintf( __( 'Archive for %1$s', 'hybrid-core' ), get_the_time( __( 'g a', 'hybrid-core' ) ) );
+
+			elseif ( is_day() )
+				$doctitle = sprintf( __( 'Archive for %1$s', 'hybrid-core' ), get_the_time( __( 'F jS, Y', 'hybrid-core' ) ) );
+
+			elseif ( get_query_var( 'w' ) )
+				$doctitle = sprintf( __( 'Archive for week %1$s of %2$s', 'hybrid-core' ), get_the_time( __( 'W', 'hybrid-core' ) ), get_the_time( __( 'Y', 'hybrid-core' ) ) );
+
+			elseif ( is_month() )
+				$doctitle = sprintf( __( 'Archive for %1$s', 'hybrid-core' ), single_month_title( ' ', false) );
+
+			elseif ( is_year() )
+				$doctitle = sprintf( __( 'Archive for %1$s', 'hybrid-core' ), get_the_time( __( 'Y', 'hybrid-core' ) ) );
+		}
+
+		/* For any other archives. */
+		else {
+			$doctitle = __( 'Archives', 'hybrid-core' );
+		}
+	}
+
+	/* If viewing a search results page. */
+	elseif ( is_search() )
+		$doctitle = sprintf( __( 'Search results for &quot;%1$s&quot;', 'hybrid-core' ), esc_attr( get_search_query() ) );
+
+	/* If viewing a 404 not found page. */
+	elseif ( is_404() )
+		$doctitle = __( '404 Not Found', 'hybrid-core' );
+
+	/* If the current page is a paged page. */
+	if ( ( ( $page = $wp_query->get( 'paged' ) ) || ( $page = $wp_query->get( 'page' ) ) ) && $page > 1 )
+		$doctitle = sprintf( __( '%1$s Page %2$s', 'hybrid-core' ), $doctitle . $separator, number_format_i18n( $page ) );
+
+	/* Apply the wp_title filters so we're compatible with plugins. */
+	$doctitle = apply_filters( 'wp_title', $doctitle, $separator, '' );
+
+	/* Trim separator + space from beginning and end in case a plugin adds it. */
+	$doctitle = trim( $doctitle, "{$separator} " );
+
+	/* Print the title to the screen. */
+	echo apply_atomic( 'document_title', esc_attr( $doctitle ) );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/core-seo.php b/wp-content/themes/path/library/functions/core-seo.php
new file mode 100644
index 0000000000000000000000000000000000000000..97c3d6943f70a9f3cd7dcd5cd8f30cf813cf4881
--- /dev/null
+++ b/wp-content/themes/path/library/functions/core-seo.php
@@ -0,0 +1,244 @@
+<?php
+/**
+ * SEO and header functions.  Not all things in this file are strictly for search engine optimization.  Many 
+ * of the functions handle basic <meta> elements for the <head> area of the site.  This file is a catchall file 
+ * for adding these types of things to themes.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add <meta> elements to the <head> area. */
+add_action( 'wp_head', 'hybrid_meta_robots', 1 );
+add_action( 'wp_head', 'hybrid_meta_author', 1 );
+add_action( 'wp_head', 'hybrid_meta_copyright', 1 );
+add_action( 'wp_head', 'hybrid_meta_revised', 1 );
+add_action( 'wp_head', 'hybrid_meta_description', 1 );
+add_action( 'wp_head', 'hybrid_meta_keywords', 1 );
+
+/**
+ * Sets the default meta robots setting.  If private, don't send meta info to the header.  Runs the 
+ * hybrid_meta_robots filter hook at the end.
+ *
+ * @since 0.2.3
+ * @access private
+ * @return void
+ */
+function hybrid_meta_robots() {
+
+	/* If the blog is set to private, don't show anything. */
+	if ( !get_option( 'blog_public' ) )
+		return;
+
+	/* Create the HTML for the robots meta tag. */
+	$robots = '<meta name="robots" content="index,follow" />' . "\n";
+
+	echo apply_atomic( 'meta_robots', $robots );
+}
+
+/**
+ * Generates the meta author.  For singular posts, it uses the post author's display name.  For user/author 
+ * archives, it uses the user's display name.
+ *
+ * @since 0.3.3
+ * @access private
+ * @return void
+ */
+function hybrid_meta_author() {
+
+	/* Set an empty $author variable. */
+	$author = '';
+
+	/* Get the queried object. */
+	$object = get_queried_object();
+
+	/* If viewing a singular post, get the post author's display name. */
+	if ( is_singular() )
+		$author = get_the_author_meta( 'display_name', $object->post_author );
+
+	/* If viewing a user/author archive, get the user's display name. */
+	elseif ( is_author() )
+		$author = get_the_author_meta( 'display_name', get_queried_object_id() );
+
+	/* If an author was found, wrap it in the proper HTML and escape the author name. */
+	if ( !empty( $author ) )
+		$author = '<meta name="author" content="' . esc_attr( $author ) . '" />' . "\n";
+
+	echo apply_atomic( 'meta_author', $author );
+}
+
+/**
+ * Add the meta tag for copyright information to the header.  Singular posts display the date the post was 
+ * published.  All other pages will show the current year. 
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function hybrid_meta_copyright() {
+
+	/* If viewing a singular post, get the post month and year. */
+	if ( is_singular() )
+		$date = get_the_time( esc_attr__( 'F Y', 'hybrid-core' ) );
+
+	/* For all other views, get the current year. */
+	else
+		$date = date( esc_attr__( 'Y', 'hybrid-core' ) );
+
+	/* Create the HTML for the copyright meta tag. */
+	$copyright = '<meta name="copyright" content="' . sprintf( esc_attr__( 'Copyright (c) %1$s', 'hybrid-core' ), $date ) . '" />' . "\n";
+
+	echo apply_atomic( 'meta_copyright', $copyright );
+}
+
+/**
+ * Add the revised meta tag on the singular view of posts.  This shows the last time the post was modified. 
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function hybrid_meta_revised() {
+
+	/* Create an empty $revised variable. */
+	$revised = '';
+
+	/* If viewing a singular post, get the last modified date/time to use in the revised meta tag. */
+	if ( is_singular() )
+		$revised = '<meta name="revised" content="' . get_the_modified_time( esc_attr__( 'l, F jS, Y, g:i a', 'hybrid-core' ) ) . '" />' . "\n";
+
+	echo apply_atomic( 'meta_revised', $revised );
+}
+
+/**
+ * Generates the meta description based on either metadata or the description for the object.
+ *
+ * @since 0.2.3
+ * @access private
+ * @return void
+ */
+function hybrid_meta_description() {
+
+	/* Set an empty $description variable. */
+	$description = '';
+
+	/* If viewing the home/posts page, get the site's description. */
+	if ( is_home() ) {
+		$description = get_bloginfo( 'description' );
+	}
+
+	/* If viewing a singular post. */
+	elseif ( is_singular() ) {
+
+		/* Get the meta value for the 'Description' meta key. */
+		$description = get_post_meta( get_queried_object_id(), 'Description', true );
+
+		/* If no description was found and viewing the site's front page, use the site's description. */
+		if ( empty( $description ) && is_front_page() )
+			$description = get_bloginfo( 'description' );
+
+		/* For all other singular views, get the post excerpt. */
+		elseif ( empty( $description ) )
+			$description = get_post_field( 'post_excerpt', get_queried_object_id() );
+	}
+
+	/* If viewing an archive page. */
+	elseif ( is_archive() ) {
+
+		/* If viewing a user/author archive. */
+		if ( is_author() ) {
+
+			/* Get the meta value for the 'Description' user meta key. */
+			$description = get_user_meta( get_query_var( 'author' ), 'Description', true );
+
+			/* If no description was found, get the user's description (biographical info). */
+			if ( empty( $description ) )
+				$description = get_the_author_meta( 'description', get_query_var( 'author' ) );
+		}
+
+		/* If viewing a taxonomy term archive, get the term's description. */
+		elseif ( is_category() || is_tag() || is_tax() )
+			$description = term_description( '', get_query_var( 'taxonomy' ) );
+
+		/* If viewing a custom post type archive. */
+		elseif ( is_post_type_archive() ) {
+
+			/* Get the post type object. */
+			$post_type = get_post_type_object( get_query_var( 'post_type' ) );
+
+			/* If a description was set for the post type, use it. */
+			if ( isset( $post_type->description ) )
+				$description = $post_type->description;
+		}
+	}
+
+	/* Format the meta description. */
+	if ( !empty( $description ) )
+		$description = '<meta name="description" content="' . str_replace( array( "\r", "\n", "\t" ), '', esc_attr( strip_tags( $description ) ) ) . '" />' . "\n";
+
+	echo apply_atomic( 'meta_description', $description );
+}
+
+/**
+ * Generates meta keywords/tags for the site.
+ *
+ * @since 0.2.3
+ * @access private
+ * @return void
+ */
+function hybrid_meta_keywords() {
+
+	/* Set an empty $keywords variable. */
+	$keywords = '';
+
+	/* If on a singular post and not a preview. */
+	if ( is_singular() && !is_preview() ) {
+
+		/* Get the queried post. */
+		$post = get_queried_object();
+
+		/* Get the meta value for the 'Keywords' meta key. */
+		$keywords = get_post_meta( get_queried_object_id(), 'Keywords', true );
+
+		/* If no keywords were found. */
+		if ( empty( $keywords ) ) {
+
+			/* Get all taxonomies for the current post type. */
+			$taxonomies = get_object_taxonomies( $post->post_type );
+
+			/* If taxonomies were found for the post type. */
+			if ( is_array( $taxonomies ) ) {
+
+				/* Loop through the taxonomies, getting the terms for the current post. */
+				foreach ( $taxonomies as $tax ) {
+
+					if ( $terms = get_the_term_list( get_queried_object_id(), $tax, '', ', ', '' ) )
+						$keywords[] = $terms;
+				}
+
+				/* If keywords were found, join the array into a comma-separated string. */
+				if ( !empty( $keywords ) )
+					$keywords = join( ', ', $keywords );
+			}
+		}
+	}
+
+	/* If on a user/author archive page, check for user meta. */
+	elseif ( is_author() ) {
+
+		/* Get the meta value for the 'Keywords' user meta key. */
+		$keywords = get_user_meta( get_query_var( 'author' ), 'Keywords', true );
+	}
+
+	/* If we have keywords, format for output. */
+	if ( !empty( $keywords ) )
+		$keywords = '<meta name="keywords" content="' . esc_attr( strip_tags( $keywords ) ) . '" />' . "\n";
+
+	echo apply_atomic( 'meta_keywords', $keywords );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/core.php b/wp-content/themes/path/library/functions/core.php
new file mode 100644
index 0000000000000000000000000000000000000000..73f428bbd3f5ad1a08d21993925d0d4d83ecb0ae
--- /dev/null
+++ b/wp-content/themes/path/library/functions/core.php
@@ -0,0 +1,216 @@
+<?php
+/**
+ * The core functions file for the Hybrid framework. Functions defined here are generally
+ * used across the entire framework to make various tasks faster. This file should be loaded
+ * prior to any other files because its functions are needed to run the framework.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Defines the theme prefix. This allows developers to infinitely change the theme. In theory,
+ * one could use the Hybrid core to create their own theme or filter 'hybrid_prefix' with a 
+ * plugin to make it easier to use hooks across multiple themes without having to figure out
+ * each theme's hooks (assuming other themes used the same system).
+ *
+ * @since 0.7.0
+ * @access public
+ * @uses get_template() Defines the theme prefix based on the theme directory.
+ * @global object $hybrid The global Hybrid object.
+ * @return string $hybrid->prefix The prefix of the theme.
+ */
+function hybrid_get_prefix() {
+	global $hybrid;
+
+	/* If the global prefix isn't set, define it. Plugin/theme authors may also define a custom prefix. */
+	if ( empty( $hybrid->prefix ) )
+		$hybrid->prefix = sanitize_key( apply_filters( 'hybrid_prefix', get_template() ) );
+
+	return $hybrid->prefix;
+}
+
+/**
+ * Adds contextual action hooks to the theme.  This allows users to easily add context-based content 
+ * without having to know how to use WordPress conditional tags.  The theme handles the logic.
+ *
+ * An example of a basic hook would be 'hybrid_header'.  The do_atomic() function extends that to 
+ * give extra hooks such as 'hybrid_singular_header', 'hybrid_singular-post_header', and 
+ * 'hybrid_singular-post-ID_header'.
+ *
+ * @since 0.7.0
+ * @access public
+ * @uses hybrid_get_prefix() Gets the theme prefix.
+ * @uses hybrid_get_context() Gets the context of the current page.
+ * @param string $tag Usually the location of the hook but defines what the base hook is.
+ * @param mixed $arg,... Optional additional arguments which are passed on to the functions hooked to the action.
+ */
+function do_atomic( $tag = '', $arg = '' ) {
+	if ( empty( $tag ) )
+		return false;
+
+	/* Get the theme prefix. */
+	$pre = hybrid_get_prefix();
+
+	/* Get the args passed into the function and remove $tag. */
+	$args = func_get_args();
+	array_splice( $args, 0, 1 );
+
+	/* Do actions on the basic hook. */
+	do_action_ref_array( "{$pre}_{$tag}", $args );
+
+	/* Loop through context array and fire actions on a contextual scale. */
+	foreach ( (array)hybrid_get_context() as $context )
+		do_action_ref_array( "{$pre}_{$context}_{$tag}", $args );
+}
+
+/**
+ * Adds contextual filter hooks to the theme.  This allows users to easily filter context-based content 
+ * without having to know how to use WordPress conditional tags.  The theme handles the logic.
+ *
+ * An example of a basic hook would be 'hybrid_entry_meta'.  The apply_atomic() function extends 
+ * that to give extra hooks such as 'hybrid_singular_entry_meta', 'hybrid_singular-post_entry_meta', 
+ * and 'hybrid_singular-post-ID_entry_meta'.
+ *
+ * @since 0.7.0
+ * @access public
+ * @uses hybrid_get_prefix() Gets the theme prefix.
+ * @uses hybrid_get_context() Gets the context of the current page.
+ * @param string $tag Usually the location of the hook but defines what the base hook is.
+ * @param mixed $value The value on which the filters hooked to $tag are applied on.
+ * @param mixed $var,... Additional variables passed to the functions hooked to $tag.
+ * @return mixed $value The value after it has been filtered.
+ */
+function apply_atomic( $tag = '', $value = '' ) {
+	if ( empty( $tag ) )
+		return false;
+
+	/* Get theme prefix. */
+	$pre = hybrid_get_prefix();
+
+	/* Get the args passed into the function and remove $tag. */
+	$args = func_get_args();
+	array_splice( $args, 0, 1 );
+
+	/* Apply filters on the basic hook. */
+	$value = $args[0] = apply_filters_ref_array( "{$pre}_{$tag}", $args );
+
+	/* Loop through context array and apply filters on a contextual scale. */
+	foreach ( (array)hybrid_get_context() as $context )
+		$value = $args[0] = apply_filters_ref_array( "{$pre}_{$context}_{$tag}", $args );
+
+	/* Return the final value once all filters have been applied. */
+	return $value;
+}
+
+/**
+ * Wraps the output of apply_atomic() in a call to do_shortcode(). This allows developers to use 
+ * context-aware functionality alongside shortcodes. Rather than adding a lot of code to the 
+ * function itself, developers can create individual functions to handle shortcodes.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param string $tag Usually the location of the hook but defines what the base hook is.
+ * @param mixed $value The value to be filtered.
+ * @return mixed $value The value after it has been filtered.
+ */
+function apply_atomic_shortcode( $tag = '', $value = '' ) {
+	return do_shortcode( apply_atomic( $tag, $value ) );
+}
+
+/**
+ * The theme can save multiple things in a transient to help speed up page load times. We're
+ * setting a default of 12 hours or 43,200 seconds (60 * 60 * 12).
+ *
+ * @since 0.8.0
+ * @access public
+ * @return int Transient expiration time in seconds.
+ */
+function hybrid_get_transient_expiration() {
+	return apply_filters( hybrid_get_prefix() . '_transient_expiration', 43200 );
+}
+
+/**
+ * Function for formatting a hook name if needed. It automatically adds the theme's prefix to 
+ * the hook, and it will add a context (or any variable) if it's given.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param string $tag The basic name of the hook (e.g., 'before_header').
+ * @param string $context A specific context/value to be added to the hook.
+ */
+function hybrid_format_hook( $tag, $context = '' ) {
+	return hybrid_get_prefix() . ( ( !empty( $context ) ) ? "_{$context}" : "" ). "_{$tag}";
+}
+
+/**
+ * Function for setting the content width of a theme.  This does not check if a content width has been set; it 
+ * simply overwrites whatever the content width is.
+ *
+ * @since 1.2.0
+ * @access public
+ * @global int $content_width The width for the theme's content area.
+ * @param int $width Numeric value of the width to set.
+ */
+function hybrid_set_content_width( $width = '' ) {
+	global $content_width;
+
+	$content_width = absint( $width );
+}
+
+/**
+ * Function for getting the theme's content width.
+ *
+ * @since 1.2.0
+ * @access public
+ * @global int $content_width The width for the theme's content area.
+ * @return int $content_width
+ */
+function hybrid_get_content_width() {
+	global $content_width;
+
+	return $content_width;
+}
+
+/**
+ * Gets theme data and stores it in the global $hybrid variable.  By storing it, it can be accessed quickly without 
+ * having to run through the get_theme_data() function again.
+ *
+ * @since 1.2.0
+ * @access public
+ * @param string $path Whether to use the template (parent theme) or stylesheet (child theme) path.
+ */
+function hybrid_get_theme_data( $path = 'template' ) {
+	global $hybrid;
+
+	/* If 'template' is requested, get the parent theme data. */
+	if ( 'template' == $path ) {
+
+		/* If the parent theme data isn't set, grab it with the get_theme_data() function. */
+		if ( empty( $hybrid->theme_data ) )
+			$hybrid->theme_data = get_theme_data( trailingslashit( TEMPLATEPATH ) . 'style.css' );
+
+		/* Return the parent theme data. */
+		return $hybrid->theme_data;
+	}
+
+	/* If 'stylesheet' is requested, get the child theme data. */
+	elseif ( 'stylesheet' == $path ) {
+
+		/* If the child theme data isn't set, grab it with the get_theme_data() function. */
+		if ( empty( $hybrid->child_theme_data ) )
+			$hybrid->child_theme_data = get_theme_data( trailingslashit( STYLESHEETPATH ) . 'style.css' );
+
+		/* Return the child theme data. */
+		return $hybrid->child_theme_data;
+	}
+
+	/* Return false for everything else. */
+	return false;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/customize.php b/wp-content/themes/path/library/functions/customize.php
new file mode 100644
index 0000000000000000000000000000000000000000..72670ebf4b4c71c9af1d434ef54aed85317c7f7c
--- /dev/null
+++ b/wp-content/themes/path/library/functions/customize.php
@@ -0,0 +1,181 @@
+<?php
+/**
+ * Functions for registering and setting theme settings that tie into the WordPress theme customizer.  
+ * This file loads additional classes and adds settings to the customizer for the built-in Hybrid Core 
+ * settings.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Load custom control classes. */
+add_action( 'customize_register', 'hybrid_load_customize_controls', 1 );
+
+/* Register custom sections, settings, and controls. */
+add_action( 'customize_register', 'hybrid_customize_register' );
+
+/* Add the footer content Ajax to the correct hooks. */
+add_action( 'wp_ajax_hybrid_customize_footer_content', 'hybrid_customize_footer_content_ajax' );
+add_action( 'wp_ajax_nopriv_hybrid_customize_footer_content', 'hybrid_customize_footer_content_ajax' );
+
+/**
+ * Loads framework-specific customize control classes.  Customize control classes extend the WordPress 
+ * WP_Customize_Control class to create unique classes that can be used within the framework.
+ *
+ * @since 1.4.0
+ * @access private
+ */
+function hybrid_load_customize_controls() {
+
+	/* Loads the textarea customize control class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'customize-control-textarea.php' );
+}
+
+/**
+ * Registers custom sections, settings, and controls for the $wp_customize instance.
+ *
+ * @since 1.4.0
+ * @access private
+ * @param object $wp_customize
+ */
+function hybrid_customize_register( $wp_customize ) {
+
+	/* Get supported theme settings. */
+	$supports = get_theme_support( 'hybrid-core-theme-settings' );
+
+	/* Get the theme prefix. */
+	$prefix = hybrid_get_prefix();
+
+	/* Get the default theme settings. */
+	$default_settings = hybrid_get_default_theme_settings();
+
+	/* Add the footer section, setting, and control if theme supports the 'footer' setting. */
+	if ( is_array( $supports[0] ) && in_array( 'footer', $supports[0] ) ) {
+
+		/* Add the footer section. */
+		$wp_customize->add_section(
+			'hybrid-core-footer',
+			array(
+				'title' => 		esc_html__( 'Footer', 'hybrid-core' ),
+				'priority' => 	200,
+				'capability' => 	'edit_theme_options'
+			)
+		);
+
+		/* Add the 'footer_insert' setting. */
+		$wp_customize->add_setting(
+			"{$prefix}_theme_settings[footer_insert]",
+			array(
+				'default' => 		$default_settings['footer_insert'],
+				'type' => 			'option',
+				'capability' => 		'edit_theme_options',
+				'sanitize_callback' => 	'hybrid_customize_sanitize',
+				'sanitize_js_callback' => 	'hybrid_customize_sanitize',
+				'transport' => 		'postMessage',
+			)
+		);
+
+		/* Add the textarea control for the 'footer_insert' setting. */
+		$wp_customize->add_control(
+			new Hybrid_Customize_Control_Textarea(
+				$wp_customize,
+				'hybrid-core-footer',
+				array(
+					'label' => 	esc_html__( 'Footer', 'hybrid-core' ),
+					'section' => 	'hybrid-core-footer',
+					'settings' => 	"{$prefix}_theme_settings[footer_insert]",
+				)
+			)
+		);
+
+		/* If viewing the customize preview screen, add a script to show a live preview. */
+		if ( $wp_customize->is_preview() && !is_admin() )
+			add_action( 'wp_footer', 'hybrid_customize_preview_script', 21 );
+	}
+}
+
+/**
+ * Sanitizes the footer content on the customize screen.  Users with the 'unfiltered_html' cap can post 
+ * anything.  For other users, wp_filter_post_kses() is ran over the setting.
+ *
+ * @since 1.4.0
+ * @access public
+ * @param mixed $setting The current setting passed to sanitize.
+ * @param object $object The setting object passed via WP_Customize_Setting.
+ * @return mixed $setting
+ */
+function hybrid_customize_sanitize( $setting, $object ) {
+
+	/* Get the theme prefix. */
+	$prefix = hybrid_get_prefix();
+
+	/* Make sure we kill evil scripts from users without the 'unfiltered_html' cap. */
+	if ( "{$prefix}_theme_settings[footer_insert]" == $object->id && !current_user_can( 'unfiltered_html' )  )
+		$setting = stripslashes( wp_filter_post_kses( addslashes( $setting ) ) );
+
+	/* Return the sanitized setting and apply filters. */
+	return apply_filters( "{$prefix}_customize_sanitize", $setting, $object );
+}
+
+/**
+ * Runs the footer content posted via Ajax through the do_shortcode() function.  This makes sure the 
+ * shortcodes are output correctly in the live preview.
+ *
+ * @since 1.4.0
+ * @access private
+ */
+function hybrid_customize_footer_content_ajax() {
+
+	/* Check the AJAX nonce to make sure this is a valid request. */
+	check_ajax_referer( 'hybrid_customize_footer_content_nonce' );
+
+	/* If footer content has been posted, run it through the do_shortcode() function. */
+	if ( isset( $_POST['footer_content'] ) )
+		echo do_shortcode( wp_kses_stripslashes( $_POST['footer_content'] ) );
+
+	/* Always die() when handling Ajax. */
+	die();
+}
+
+/**
+ * Handles changing settings for the live preview of the theme.
+ *
+ * @since 1.4.0
+ * @access private
+ */
+function hybrid_customize_preview_script() {
+
+	/* Create a nonce for the Ajax. */
+	$nonce = wp_create_nonce( 'hybrid_customize_footer_content_nonce' );
+
+	?>
+	<script type="text/javascript">
+	wp.customize(
+		'<?php echo hybrid_get_prefix(); ?>_theme_settings[footer_insert]',
+		function( value ) {
+			value.bind(
+				function( to ) {
+					jQuery.post( 
+						'<?php echo admin_url( 'admin-ajax.php' ); ?>', 
+						{ 
+							action: 'hybrid_customize_footer_content',
+							_ajax_nonce: '<?php echo $nonce; ?>',
+							footer_content: to
+						},
+						function( response ) {
+							jQuery( '.footer-content' ).html( response );
+						}
+					);
+				}
+			);
+		}
+	);
+	</script>
+	<?php
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/deprecated.php b/wp-content/themes/path/library/functions/deprecated.php
new file mode 100644
index 0000000000000000000000000000000000000000..ff7dce5ad255297b79597639f7003cc5126179fa
--- /dev/null
+++ b/wp-content/themes/path/library/functions/deprecated.php
@@ -0,0 +1,575 @@
+<?php
+/**
+ * Deprecated functions that should be avoided in favor of newer functions. Also handles removed 
+ * functions to avoid errors. Developers should not use these functions in their parent themes and users 
+ * should not use these functions in their child themes.  The functions below will all be removed at some 
+ * point in a future release.  If your theme is using one of these, you should use the listed alternative or 
+ * remove it from your theme if necessary.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * @since 0.2.0
+ * @deprecated 0.7.0
+ */
+function hybrid_after_single() {
+	_deprecated_function( __FUNCTION__, '0.7', "do_atomic( 'after_singular' )" );
+	hybrid_after_singular();
+}
+
+/**
+ * @since 0.2.0
+ * @deprecated 0.7.0
+ */
+function hybrid_after_page() {
+	_deprecated_function( __FUNCTION__, '0.7', "do_atomic( 'after_singular' )" );
+	hybrid_after_singular();
+}
+
+/**
+ * @since 0.2.2
+ * @deprecated 0.8.0
+ */
+function hybrid_comment_author() {
+	_deprecated_function( __FUNCTION__, '0.8', 'hybrid_comment_author_shortcode()' );
+	return hybrid_comment_author_shortcode();
+}
+
+/**
+ * @since 0.4.0
+ * @deprecated 1.0.0
+ */
+function hybrid_theme_settings() {
+	_deprecated_function( __FUNCTION__, '1.0.0', 'hybrid_get_default_theme_settings()' );
+	return apply_filters( hybrid_get_prefix() . '_settings_args', hybrid_get_default_theme_settings() );
+}
+
+/**
+ * @since 0.4.0
+ * @deprecated 1.0.0
+ */
+function hybrid_doctype() {
+	_deprecated_function( __FUNCTION__, '1.0.0', '' );
+	if ( !preg_match( "/MSIE 6.0/", esc_attr( $_SERVER['HTTP_USER_AGENT'] ) ) )
+		$doctype = '<' . '?xml version="1.0" encoding="' . get_bloginfo( 'charset' ) . '"?>' . "\n";
+
+	$doctype .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' . "\n";
+	echo apply_atomic( 'doctype', $doctype );
+}
+
+/**
+ * @since 0.4.0
+ * @deprecated 1.0.0
+ */
+function hybrid_meta_content_type() {
+	_deprecated_function( __FUNCTION__, '1.0.0', '' );
+	$content_type = '<meta http-equiv="Content-Type" content="' . get_bloginfo( 'html_type' ) . '; charset=' . get_bloginfo( 'charset' ) . '" />' . "\n";
+	echo apply_atomic( 'meta_content_type', $content_type );
+}
+
+/**
+ * @since 0.4.0
+ * @deprecated 1.0.0
+ */
+function hybrid_head_pingback() {
+	_deprecated_function( __FUNCTION__, '1.0.0', '' );
+	$pingback = '<link rel="pingback" href="' . get_bloginfo( 'pingback_url' ) . '" />' . "\n";
+	echo apply_atomic( 'head_pingback', $pingback );
+}
+
+/**
+ * @since 0.6.0
+ * @deprecated 1.0.0
+ */
+function hybrid_profile_uri() {
+	_deprecated_function( __FUNCTION__, '1.0.0', '' );
+	echo apply_atomic( 'profile_uri', 'http://gmpg.org/xfn/11' );
+}
+
+/**
+ * @since 0.3.2
+ * @deprecated 1.0.0
+ */
+function hybrid_before_html() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_html' )" );
+	do_atomic( 'before_html' );
+}
+
+/**
+ * @since 0.3.2
+ * @deprecated 1.0.0
+ */
+function hybrid_after_html() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_html' )" );
+	do_atomic( 'after_html' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_head() {
+	_deprecated_function( __FUNCTION__, '1.0.0', 'wp_head' );
+	do_atomic( 'head' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_header() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_header' )" );
+	do_atomic( 'before_header' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_header() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'header' )" );
+	do_atomic( 'header' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_header() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_header' )" );
+	do_atomic( 'after_header' );
+}
+
+/**
+ * @since 0.8.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_primary_menu() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_primary_menu' )" );
+	do_atomic( 'before_primary_menu' );
+}
+
+/**
+ * @since 0.8.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_primary_menu() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_primary_menu' )" );
+	do_atomic( 'after_primary_menu' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_container() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_container' )" );
+	do_atomic( 'before_container' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_content() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_content' )" );
+	do_atomic( 'before_content' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_content() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_content' )" );
+	do_atomic( 'after_content' );
+}
+
+/**
+ * @since 0.5.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_entry() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_entry' )" );
+	do_atomic( 'before_entry' );
+}
+
+/**
+ * @since 0.5.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_entry() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_entry' )" );
+	do_atomic( 'after_entry' );
+}
+
+/**
+ * @since 0.7.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_singular() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_singular' )" );
+	do_atomic( 'after_singular' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_primary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_primary' )" );
+	do_atomic( 'before_primary' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_primary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_primary' )" );
+	do_atomic( 'after_primary' );
+}
+
+/**
+ * @since 0.2.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_secondary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_secondary' )" );
+	do_atomic( 'before_secondary' );
+}
+
+/**
+ * @since 0.2.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_secondary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_secondary' )" );
+	do_atomic( 'after_secondary' );
+}
+
+/**
+ * @since 0.3.1
+ * @deprecated 1.0.0
+ */
+function hybrid_before_subsidiary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_subsidiary' )" );
+	do_atomic( 'before_subsidiary' );
+}
+
+/**
+ * @since 0.3.1
+ * @deprecated 1.0.0
+ */
+function hybrid_after_subsidiary() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_subsidiary' )" );
+	do_atomic( 'after_subsidiary' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_container() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_container' )" );
+	do_atomic( 'after_container' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_footer() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_footer' )" );
+	do_atomic( 'before_footer' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_footer() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'footer' )" );
+	do_atomic( 'footer' );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_footer() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_footer' )" );
+	do_atomic( 'after_footer' );
+}
+
+/**
+ * @since 0.5.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_comment() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_comment' )" );
+	do_atomic( 'before_comment' );
+}
+
+/**
+ * @since 0.5.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_comment() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_comment' )" );
+	do_atomic( 'after_comment' );
+}
+
+/**
+ * @since 0.6.0
+ * @deprecated 1.0.0
+ */
+function hybrid_before_comment_list() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'before_comment_list' )" );
+	do_atomic( 'before_comment_list' );
+}
+
+/**
+ * @since 0.6.0
+ * @deprecated 1.0.0
+ */
+function hybrid_after_comment_list() {
+	_deprecated_function( __FUNCTION__, '1.0.0', "do_atomic( 'after_comment_list' )" );
+	do_atomic( 'after_comment_list' );
+}
+
+/* @deprecated 1.0.0. Backwards compatibility with old theme settings. */
+add_action( 'check_admin_referer', 'hybrid_back_compat_update_settings' );
+
+/**
+ * Backwards compatibility function for updating child theme settings.  Do not use this function or the 
+ * available hook in development.
+ *
+ * @since 1.0.0
+ * @deprecated 1.0.0
+ */
+function hybrid_back_compat_update_settings( $action ) {
+	//_deprecated_function( __FUNCTION__, '1.0.0' );
+
+	$prefix = hybrid_get_prefix();
+
+	if ( "{$prefix}_theme_settings-options" == $action )
+		do_action( "{$prefix}_update_settings_page" );
+}
+
+/**
+ * @since 0.1.0
+ * @deprecated 1.2.0
+ */
+function hybrid_enqueue_script() {
+	_deprecated_function( __FUNCTION__, '1.2.0', 'hybrid_enqueue_scripts' );
+	return;
+}
+
+/**
+ * @since 1.0.0
+ * @deprecated 1.2.0
+ */
+function hybrid_admin_enqueue_style() {
+	_deprecated_function( __FUNCTION__, '1.2.0', 'hybrid_admin_enqueue_styles' );
+	return;
+}
+
+/**
+ * @since 0.7.0
+ * @deprecated 1.2.0
+ */
+function hybrid_settings_page_enqueue_style() {
+	_deprecated_function( __FUNCTION__, '1.2.0', 'hybrid_settings_page_enqueue_styles' );
+	return;
+}
+
+/**
+ * @since 0.7.0
+ * @deprecated 1.2.0
+ */
+function hybrid_settings_page_enqueue_script() {
+	_deprecated_function( __FUNCTION__, '1.2.0', 'hybrid_settings_page_enqueue_scripts' );
+	return;
+}
+
+/**
+ * @since 0.7.0
+ * @deprecated 1.3.0
+ */
+function hybrid_admin_init() {
+	_deprecated_function( __FUNCTION__, '1.3.0', 'hybrid_admin_setup' );
+	return;
+}
+
+/**
+ * @since 1.2.0
+ * @deprecated 1.3.0
+ */
+function hybrid_settings_page_contextual_help() {
+	_deprecated_function( __FUNCTION__, '1.3.0', 'hybrid_settings_page_help' );
+	return;
+}
+
+/**
+ * @since 0.9.0
+ * @deprecated 1.3.0
+ */
+function hybrid_load_textdomain( $mofile, $domain ) {
+	_deprecated_function( __FUNCTION__, '1.3.0', 'hybrid_load_textdomain_mofile' );
+	return hybrid_load_textdomain_mofile( $mofile, $domain );
+}
+
+/* === Removed Functions === */
+
+/* Functions removed in the 0.8 branch. */
+
+function hybrid_content_wrapper() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_handle_attachment() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_widget_class() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_before_ping_list() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_after_ping_list() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_pings_callback() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_pings_end_callback() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+/* Functions removed in the 1.2 branch. */
+
+function hybrid_get_comment_form() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_before_comment_form() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_after_comment_form() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_get_utility_after_single() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_get_utility_after_page() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_create_post_meta_box() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box_args() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box_text() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box_select() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box_textarea() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_meta_box_radio() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_save_post_meta_box() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_create_settings_meta_boxes() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_footer_settings_meta_box() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_about_theme_meta_box() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_load_settings_page() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_page_nav() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_cat_nav() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_category_menu() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_search_form() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_class() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function is_sidebar_active() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_enqueue_style() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_add_theme_support() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+function hybrid_post_stylesheets() {
+	hybrid_function_removed( __FUNCTION__ );
+}
+
+/**
+ * Message to display for removed functions.
+ * @since 0.5.0
+ */
+function hybrid_function_removed( $func = '' ) {
+	die( sprintf( __( '<code>%1$s</code> &mdash; This function has been removed or replaced by another function.', 'hybrid-core' ), $func ) );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/i18n.php b/wp-content/themes/path/library/functions/i18n.php
new file mode 100644
index 0000000000000000000000000000000000000000..25ef14cec382173d587b90ec1b6ac01e5729101c
--- /dev/null
+++ b/wp-content/themes/path/library/functions/i18n.php
@@ -0,0 +1,209 @@
+<?php
+/**
+ * Internationalization and translation functions.  Because Hybrid Core is a framework made up of various 
+ * extensions with different textdomains, it must filter 'gettext' so that a single translation file can 
+ * handle all translations.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Checks if a textdomain's translation files have been loaded.  This function behaves differently from 
+ * WordPress core's is_textdomain_loaded(), which will return true after any translation function is run over 
+ * a text string with the given domain.  The purpose of this function is to simply check if the translation files 
+ * are loaded.
+ *
+ * @since 1.3.0
+ * @access private This is only used internally by the framework for checking translations.
+ * @param string $domain The textdomain to check translations for.
+ */
+function hybrid_is_textdomain_loaded( $domain ) {
+	global $hybrid;
+
+	return ( isset( $hybrid->textdomain_loaded[$domain] ) && true === $hybrid->textdomain_loaded[$domain] ) ? true : false;
+}
+
+/**
+ * Loads the framework's translation files.  The function first checks if the parent theme or child theme 
+ * has the translation files housed in their '/languages' folder.  If not, it sets the translation file the the 
+ * framework '/languages' folder.
+ *
+ * @since 1.3.0
+ * @access private
+ * @uses load_textdomain() Loads an MO file into the domain for the framework.
+ * @param string $domain The name of the framework's textdomain.
+ * @return true|false Whether the MO file was loaded.
+ */
+function hybrid_load_framework_textdomain( $domain ) {
+
+	/* Get the WordPress installation's locale set by the user. */
+	$locale = get_locale();
+
+	/* Check if the mofile is located in parent/child theme /languages folder. */
+	$mofile = locate_template( array( "languages/{$domain}-{$locale}.mo" ) );
+
+	/* If no mofile was found in the parent/child theme, set it to the framework's mofile. */
+	if ( empty( $mofile ) )
+		$mofile = trailingslashit( HYBRID_LANGUAGES ) . "{$domain}-{$locale}.mo";
+
+	return load_textdomain( $domain, $mofile );
+}
+
+/**
+ * @since 0.7.0
+ * @deprecated 1.3.0
+ */
+function hybrid_get_textdomain() {
+	_deprecated_function( __FUNCTION__, '1.3.0', 'hybrid_get_parent_textdomain' );
+	return hybrid_get_parent_textdomain();
+}
+
+/**
+ * Gets the parent theme textdomain. This allows the framework to recognize the proper textdomain of the 
+ * parent theme.
+ *
+ * Important! Do not use this for translation functions in your theme.  Hardcode your textdomain string.  Your 
+ * theme's textdomain should match your theme's folder name.
+ *
+ * @since 1.3.0
+ * @access private
+ * @uses get_template() Defines the theme textdomain based on the template directory.
+ * @global object $hybrid The global Hybrid object.
+ * @return string $hybrid->textdomain The textdomain of the theme.
+ */
+function hybrid_get_parent_textdomain() {
+	global $hybrid;
+
+	/* If the global textdomain isn't set, define it. Plugin/theme authors may also define a custom textdomain. */
+	if ( empty( $hybrid->parent_textdomain ) )
+		$hybrid->parent_textdomain = sanitize_key( apply_filters( hybrid_get_prefix() . '_parent_textdomain', get_template() ) );
+
+	/* Return the expected textdomain of the parent theme. */
+	return $hybrid->parent_textdomain;
+}
+
+/**
+ * Gets the child theme textdomain. This allows the framework to recognize the proper textdomain of the 
+ * child theme.
+ *
+ * Important! Do not use this for translation functions in your theme.  Hardcode your textdomain string.  Your 
+ * theme's textdomain should match your theme's folder name.
+ *
+ * @since 1.2.0
+ * @access private
+ * @uses get_stylesheet() Defines the child theme textdomain based on the stylesheet directory.
+ * @global object $hybrid The global Hybrid object.
+ * @return string $hybrid->child_theme_textdomain The textdomain of the child theme.
+ */
+function hybrid_get_child_textdomain() {
+	global $hybrid;
+
+	/* If a child theme isn't active, return an empty string. */
+	if ( !is_child_theme() )
+		return '';
+
+	/* If the global textdomain isn't set, define it. Plugin/theme authors may also define a custom textdomain. */
+	if ( empty( $hybrid->child_textdomain ) )
+		$hybrid->child_textdomain = sanitize_key( apply_filters( hybrid_get_prefix() . '_child_textdomain', get_stylesheet() ) );
+
+	/* Return the expected textdomain of the child theme. */
+	return $hybrid->child_textdomain;
+}
+
+/**
+ * Filters the 'load_textdomain_mofile' filter hook so that we can change the directory and file name 
+ * of the mofile for translations.  This allows child themes to have a folder called /languages with translations
+ * of their parent theme so that the translations aren't lost on a parent theme upgrade.
+ *
+ * @since 1.3.0
+ * @access private
+ * @param string $mofile File name of the .mo file.
+ * @param string $domain The textdomain currently being filtered.
+ * @return $mofile
+ */
+function hybrid_load_textdomain_mofile( $mofile, $domain ) {
+
+	/* If the $domain is for the parent or child theme, search for a $domain-$locale.mo file. */
+	if ( $domain == hybrid_get_parent_textdomain() || $domain == hybrid_get_child_textdomain() ) {
+
+		/* Check for a $domain-$locale.mo file in the parent and child theme root and /languages folder. */
+		$locale = get_locale();
+		$locate_mofile = locate_template( array( "languages/{$domain}-{$locale}.mo", "{$domain}-{$locale}.mo" ) );
+
+		/* If a mofile was found based on the given format, set $mofile to that file name. */
+		if ( !empty( $locate_mofile ) )
+			$mofile = $locate_mofile;
+	}
+
+	/* Return the $mofile string. */
+	return $mofile;
+}
+
+/**
+ * Filters 'gettext' to change the translations used for the 'hybrid-core' textdomain.  This filter makes it possible 
+ * for the theme's MO file to translate the framework's text strings.
+ *
+ * @since 1.3.0
+ * @access private
+ * @param string $translated The translated text.
+ * @param string $text The original, untranslated text.
+ * @param string $domain The textdomain for the text.
+ * @return string $translated
+ */
+function hybrid_gettext( $translated, $text, $domain ) {
+
+	/* Check if 'hybrid-core' is the current textdomain, there's no mofile for it, and the theme has a mofile. */
+	if ( 'hybrid-core' == $domain && !hybrid_is_textdomain_loaded( 'hybrid-core' ) && hybrid_is_textdomain_loaded( hybrid_get_parent_textdomain() ) ) {
+
+		/* Get the translations for the theme. */
+		$translations = &get_translations_for_domain( hybrid_get_parent_textdomain() );
+
+		/* Translate the text using the theme's translation. */
+		$translated = $translations->translate( $text );
+	}
+
+	return $translated;
+}
+
+/**
+ * Filters 'gettext' to change the translations used for the each of the extensions' textdomains.  This filter 
+ * makes it possible for the theme's MO file to translate the framework's extensions.
+ *
+ * @since 1.3.0
+ * @access private
+ * @param string $translated The translated text.
+ * @param string $text The original, untranslated text.
+ * @param string $domain The textdomain for the text.
+ * @return string $translated
+ */
+function hybrid_extensions_gettext( $translated, $text, $domain ) {
+
+	/* Check if the current textdomain matches one of the framework extensions. */
+	if ( in_array( $domain, array( 'breadcrumb-trail', 'custom-field-series', 'post-stylesheets', 'theme-layouts' ) ) ) {
+
+		/* If the theme supports the extension, switch the translations. */
+		if ( current_theme_supports( $domain ) ) {
+
+			/* If the framework mofile is loaded, use its translations. */
+			if ( hybrid_is_textdomain_loaded( 'hybrid-core' ) )
+				$translations = &get_translations_for_domain( 'hybrid-core' );
+
+			/* If the theme mofile is loaded, use its translations. */
+			elseif ( hybrid_is_textdomain_loaded( hybrid_get_parent_textdomain() ) )
+				$translations = &get_translations_for_domain( hybrid_get_parent_textdomain() );
+
+			/* If translations were found, translate the text. */
+			if ( !empty( $translations ) )
+				$translated = $translations->translate( $text );
+		}
+	}
+
+	return $translated;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/media.php b/wp-content/themes/path/library/functions/media.php
new file mode 100644
index 0000000000000000000000000000000000000000..f3a29bcb8acfb6f0b2402706ebdf36610f0c66e0
--- /dev/null
+++ b/wp-content/themes/path/library/functions/media.php
@@ -0,0 +1,247 @@
+<?php
+/**
+ * Functions file for loading scripts and stylesheets.  This file also handles the output of attachment files 
+ * by displaying appropriate HTML elements for the attachments.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register Hybrid Core scripts. */
+add_action( 'wp_enqueue_scripts', 'hybrid_register_scripts', 1 );
+
+/* Load Hybrid Core scripts. */
+add_action( 'wp_enqueue_scripts', 'hybrid_enqueue_scripts' );
+
+/* Load the development stylsheet in script debug mode. */
+add_filter( 'stylesheet_uri', 'hybrid_debug_stylesheet', 10, 2 );
+
+/* Add all image sizes to the image editor to insert into post. */
+add_filter( 'image_size_names_choose', 'hybrid_image_size_names_choose' );
+
+/**
+ * Registers JavaScript files for the framework.  This function merely registers scripts with WordPress using
+ * the wp_register_script() function.  It does not load any script files on the site.  If a theme wants to register 
+ * its own custom scripts, it should do so on the 'wp_enqueue_scripts' hook.
+ *
+ * @since 1.2.0
+ * @access private
+ * @return void
+ */
+function hybrid_register_scripts() {
+
+	/* Supported JavaScript. */
+	$supports = get_theme_support( 'hybrid-core-javascript' );
+
+	/* Register the 'drop-downs' script if the current theme supports 'hybrid-core-drop-downs'. */
+	if ( current_theme_supports( 'hybrid-core-drop-downs' ) || ( isset( $supports[0] ) && in_array( 'drop-downs', $supports[0] ) ) )
+		wp_register_script( 'drop-downs', esc_url( apply_atomic( 'drop_downs_script', trailingslashit( HYBRID_JS ) . 'drop-downs.js' ) ), array( 'jquery' ), '20110920', true );
+
+	/* Register the 'nav-bar' script if the current theme supports 'hybrid-core-nav-bar'. */
+	if ( isset( $supports[0] ) && in_array( 'nav-bar', $supports[0] ) )
+		wp_register_script( 'nav-bar', esc_url( apply_atomic( 'nav_bar_script', trailingslashit( HYBRID_JS ) . 'nav-bar.js' ) ), array( 'jquery' ), '20111008', true );
+}
+
+/**
+ * Tells WordPress to load the scripts needed for the framework using the wp_enqueue_script() function.
+ *
+ * @since 1.2.0
+ * @access private
+ * @return void
+ */
+function hybrid_enqueue_scripts() {
+
+	/* Supported JavaScript. */
+	$supports = get_theme_support( 'hybrid-core-javascript' );
+
+	/* Load the comment reply script on singular posts with open comments if threaded comments are supported. */
+	if ( is_singular() && get_option( 'thread_comments' ) && comments_open() )
+		wp_enqueue_script( 'comment-reply' );
+
+	/* Load the 'drop-downs' script if the current theme supports 'hybrid-core-drop-downs'. */
+	if ( current_theme_supports( 'hybrid-core-drop-downs' ) || ( isset( $supports[0] ) && in_array( 'drop-downs', $supports[0] ) ) )
+		wp_enqueue_script( 'drop-downs' );
+
+	/* Load the 'nav-bar' script if the current theme supports 'hybrid-core-nav-bar'. */
+	if ( isset( $supports[0] ) && in_array( 'nav-bar', $supports[0] ) )
+		wp_enqueue_script( 'nav-bar' );
+}
+
+/**
+ * Function for using a debug stylesheet when developing.  To develop with the debug stylesheet, 
+ * SCRIPT_DEBUG must be set to 'true' in the 'wp-config.php' file.  This will check if a 'style.dev.css'
+ * file is present within the theme folder and use it if it exists.  Else, it defaults to 'style.css'.
+ *
+ * @since 0.9.0
+ * @access private
+ * @param string $stylesheet_uri The URI of the active theme's stylesheet.
+ * @param string $stylesheet_dir_uri The directory URI of the active theme's stylesheet.
+ * @return string $stylesheet_uri
+ */
+function hybrid_debug_stylesheet( $stylesheet_uri, $stylesheet_dir_uri ) {
+
+	/* If SCRIPT_DEBUG is set to true and the theme supports 'dev-stylesheet'. */
+	if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG && current_theme_supports( 'dev-stylesheet' ) ) {
+
+		/* Remove the stylesheet directory URI from the file name. */
+		$stylesheet = str_replace( trailingslashit( $stylesheet_dir_uri ), '', $stylesheet_uri );
+
+		/* Change the stylesheet name to 'style.dev.css'. */
+		$stylesheet = str_replace( '.css', '.dev.css', $stylesheet );
+
+		/* If the stylesheet exists in the stylesheet directory, set the stylesheet URI to the dev stylesheet. */
+		if ( file_exists( trailingslashit( get_stylesheet_directory() ) . $stylesheet ) )
+			$stylesheet_uri = trailingslashit( $stylesheet_dir_uri ) . $stylesheet;
+	}
+
+	/* Return the theme stylesheet. */
+	return $stylesheet_uri;
+}
+
+/**
+ * Adds theme/plugin custom images sizes added with add_image_size() to the image uploader/editor.  This 
+ * allows users to insert these images within their post content editor.
+ *
+ * @since 1.3.0
+ * @access private
+ * @param array $sizes Selectable image sizes.
+ * @return array $sizes
+ */
+function hybrid_image_size_names_choose( $sizes ) {
+
+	/* Get all intermediate image sizes. */
+	$intermediate_sizes = get_intermediate_image_sizes();
+	$add_sizes = array();
+
+	/* Loop through each of the intermediate sizes, adding them to the $add_sizes array. */
+	foreach ( $intermediate_sizes as $size )
+		$add_sizes[$size] = $size;
+
+	/* Merge the original array, keeping it intact, with the new array of image sizes. */
+	$sizes = array_merge( $add_sizes, $sizes );
+
+	/* Return the new sizes plus the old sizes back. */
+	return $sizes;
+}
+
+/**
+ * Loads the correct function for handling attachments.  Checks the attachment mime type to call 
+ * correct function. Image attachments are not loaded with this function.  The functionality for them 
+ * should be handled by the theme's attachment or image attachment file.
+ *
+ * Ideally, all attachments would be appropriately handled within their templates. However, this could 
+ * lead to messy template files.
+ *
+ * @since 0.5.0
+ * @access public
+ * @uses get_post_mime_type() Gets the mime type of the attachment.
+ * @uses wp_get_attachment_url() Gets the URL of the attachment file.
+ * @return void
+ */
+function hybrid_attachment() {
+	$file = wp_get_attachment_url();
+	$mime = get_post_mime_type();
+	$mime_type = explode( '/', $mime );
+
+	/* Loop through each mime type. If a function exists for it, call it. Allow users to filter the display. */
+	foreach ( $mime_type as $type ) {
+		if ( function_exists( "hybrid_{$type}_attachment" ) )
+			$attachment = call_user_func( "hybrid_{$type}_attachment", $mime, $file );
+
+		$attachment = apply_atomic( "{$type}_attachment", $attachment );
+	}
+
+	echo apply_atomic( 'attachment', $attachment );
+}
+
+/**
+ * Handles application attachments on their attachment pages.  Uses the <object> tag to embed media 
+ * on those pages.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param string $mime attachment mime type
+ * @param string $file attachment file URL
+ * @return string
+ */
+function hybrid_application_attachment( $mime = '', $file = '' ) {
+	$embed_defaults = wp_embed_defaults();
+	$application = '<object class="text" type="' . esc_attr( $mime ) . '" data="' . esc_url( $file ) . '" width="' . esc_attr( $embed_defaults['width'] ) . '" height="' . esc_attr( $embed_defaults['height'] ) . '">';
+	$application .= '<param name="src" value="' . esc_url( $file ) . '" />';
+	$application .= '</object>';
+
+	return $application;
+}
+
+/**
+ * Handles text attachments on their attachment pages.  Uses the <object> element to embed media 
+ * in the pages.
+ *
+ * @since 0.3.0
+ * @access public
+ * @param string $mime attachment mime type
+ * @param string $file attachment file URL
+ * @return string
+ */
+function hybrid_text_attachment( $mime = '', $file = '' ) {
+	$embed_defaults = wp_embed_defaults();
+	$text = '<object class="text" type="' . esc_attr( $mime ) . '" data="' . esc_url( $file ) . '" width="' . esc_attr( $embed_defaults['width'] ) . '" height="' . esc_attr( $embed_defaults['height'] ) . '">';
+	$text .= '<param name="src" value="' . esc_url( $file ) . '" />';
+	$text .= '</object>';
+
+	return $text;
+}
+
+/**
+ * Handles audio attachments on their attachment pages.  Puts audio/mpeg and audio/wma files into 
+ * an <object> element.
+ *
+ * @todo Test out and support more audio types.
+ *
+ * @since 0.2.2
+ * @access public
+ * @param string $mime attachment mime type
+ * @param string $file attachment file URL
+ * @return string
+ */
+function hybrid_audio_attachment( $mime = '', $file = '' ) {
+	$embed_defaults = wp_embed_defaults();
+	$audio = '<object type="' . esc_attr( $mime ) . '" class="player audio" data="' . esc_url( $file ) . '" width="' . esc_attr( $embed_defaults['width'] ) . '" height="' . esc_attr( $embed_defaults['height'] ) . '">';
+		$audio .= '<param name="src" value="' . esc_url( $file ) . '" />';
+		$audio .= '<param name="autostart" value="false" />';
+		$audio .= '<param name="controller" value="true" />';
+	$audio .= '</object>';
+
+	return $audio;
+}
+
+/**
+ * Handles video attachments on attachment pages.  Add other video types to the <object> element.
+ *
+ * @since 0.2.2
+ * @access public
+ * @param string $mime attachment mime type
+ * @param string $file attachment file URL
+ * @return string
+ */
+function hybrid_video_attachment( $mime = false, $file = false ) {
+	$embed_defaults = wp_embed_defaults();
+
+	if ( $mime == 'video/asf' )
+		$mime = 'video/x-ms-wmv';
+
+	$video = '<object type="' . esc_attr( $mime ) . '" class="player video" data="' . esc_url( $file ) . '" width="' . esc_attr( $embed_defaults['width'] ) . '" height="' . esc_attr( $embed_defaults['height'] ) . '">';
+		$video .= '<param name="src" value="' . esc_url( $file ) . '" />';
+		$video .= '<param name="autoplay" value="false" />';
+		$video .= '<param name="allowfullscreen" value="true" />';
+		$video .= '<param name="controller" value="true" />';
+	$video .= '</object>';
+
+	return $video;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/menus.php b/wp-content/themes/path/library/functions/menus.php
new file mode 100644
index 0000000000000000000000000000000000000000..7439d84f5cf2a193b8b19b3526ff8430323e833b
--- /dev/null
+++ b/wp-content/themes/path/library/functions/menus.php
@@ -0,0 +1,49 @@
+<?php
+/**
+ * The menus functions deal with registering nav menus within WordPress for the core framework.  Theme 
+ * developers may use the default menu(s) provided by the framework within their own themes, decide not
+ * to use them, or register additional menus.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register nav menus. */
+add_action( 'init', 'hybrid_register_menus' );
+
+/**
+ * Registers the the framework's default menus based on the menus the theme has registered support for.
+ *
+ * @since 0.8.0
+ * @access private
+ * @uses register_nav_menu() Registers a nav menu with WordPress.
+ * @link http://codex.wordpress.org/Function_Reference/register_nav_menu
+ * @return void
+ */
+function hybrid_register_menus() {
+
+	/* Get theme-supported menus. */
+	$menus = get_theme_support( 'hybrid-core-menus' );
+
+	/* If there is no array of menus IDs, return. */
+	if ( !is_array( $menus[0] ) )
+		return;
+
+	/* Register the 'primary' menu. */
+	if ( in_array( 'primary', $menus[0] ) )
+		register_nav_menu( 'primary', _x( 'Primary', 'nav menu location', 'hybrid-core' ) );
+
+	/* Register the 'secondary' menu. */
+	if ( in_array( 'secondary', $menus[0] ) )
+		register_nav_menu( 'secondary', _x( 'Secondary', 'nav menu location', 'hybrid-core' ) );
+
+	/* Register the 'subsidiary' menu. */
+	if ( in_array( 'subsidiary', $menus[0] ) )
+		register_nav_menu( 'subsidiary', _x( 'Subsidiary', 'nav menu location', 'hybrid-core' ) );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/meta.php b/wp-content/themes/path/library/functions/meta.php
new file mode 100644
index 0000000000000000000000000000000000000000..b094734f7278815eb62029684cb113005d89c85f
--- /dev/null
+++ b/wp-content/themes/path/library/functions/meta.php
@@ -0,0 +1,66 @@
+<?php
+/**
+ * Metadata functions used in the core framework.  This file registers meta keys for use in WordPress 
+ * in a safe manner by setting up a custom sanitize callback.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register meta on the 'init' hook. */
+add_action( 'init', 'hybrid_register_meta' );
+
+/**
+ * Registers the framework's custom metadata keys and sets up the sanitize callback function.
+ *
+ * @since 1.3.0
+ * @return void
+ */
+function hybrid_register_meta() {
+
+	/* Register meta if the theme supports the 'hybrid-core-seo' feature. */
+	if ( current_theme_supports( 'hybrid-core-seo' ) ) {
+
+		/* Register 'Title', 'Description', and 'Keywords' meta for posts. */
+		register_meta( 'post', 'Title', 'hybrid_sanitize_meta' );
+		register_meta( 'post', 'Description', 'hybrid_sanitize_meta' );
+		register_meta( 'post', 'Keywords', 'hybrid_sanitize_meta' );
+
+		/* Register 'Title', 'Description', and 'Keywords' meta for users. */
+		register_meta( 'user', 'Title', 'hybrid_sanitize_meta' );
+		register_meta( 'user', 'Description', 'hybrid_sanitize_meta' );
+		register_meta( 'user', 'Keywords', 'hybrid_sanitize_meta' );
+	}
+
+	/* Register meta if the theme supports the 'hybrid-core-template-hierarchy' feature. */
+	if ( current_theme_supports( 'hybrid-core-template-hierarchy' ) ) {
+
+		$post_types = get_post_types( array( 'public' => true ) );
+
+		foreach ( $post_types as $post_type ) {
+			if ( 'page' !== $post_type )
+				register_meta( 'post', "_wp_{$post_type}_template", 'hybrid_sanitize_meta' );
+		}
+	}
+}
+
+/**
+ * Callback function for sanitizing meta when add_metadata() or update_metadata() is called by WordPress. 
+ * If a developer wants to set up a custom method for sanitizing the data, they should use the 
+ * "sanitize_{$meta_type}_meta_{$meta_key}" filter hook to do so.
+ *
+ * @since 1.3.0
+ * @param mixed $meta_value The value of the data to sanitize.
+ * @param string $meta_key The meta key name.
+ * @param string $meta_type The type of metadata (post, comment, user, etc.)
+ * @return mixed $meta_value
+ */
+function hybrid_sanitize_meta( $meta_value, $meta_key, $meta_type ) {
+	return strip_tags( $meta_value );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/settings.php b/wp-content/themes/path/library/functions/settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..f8d4acba6c195b9150f821ebccab810daf5ab0fb
--- /dev/null
+++ b/wp-content/themes/path/library/functions/settings.php
@@ -0,0 +1,87 @@
+<?php
+/**
+ * Functions for dealing with theme settings on both the front end of the site and the admin.  This allows us 
+ * to set some default settings and make it easy for theme developers to quickly grab theme settings from 
+ * the database.  This file is only loaded if the theme adds support for the 'hybrid-core-theme-settings' 
+ * feature.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * Loads the Hybrid theme settings once and allows the input of the specific field the user would 
+ * like to show.  Hybrid theme settings are added with 'autoload' set to 'yes', so the settings are 
+ * only loaded once on each page load.
+ *
+ * @since 0.7.0
+ * @access public
+ * @uses get_option() Gets an option from the database.
+ * @uses hybrid_get_prefix() Gets the prefix of the theme.
+ * @global object $hybrid The global Hybrid object.
+ * @param string $option The specific theme setting the user wants.
+ * @return mixed $settings[$option] Specific setting asked for.
+ */
+function hybrid_get_setting( $option = '' ) {
+	global $hybrid;
+
+	/* If no specific option was requested, return false. */
+	if ( !$option )
+		return false;
+
+	/* If the settings array hasn't been set, call get_option() to get an array of theme settings. */
+	if ( !isset( $hybrid->settings ) )
+		$hybrid->settings = get_option( hybrid_get_prefix() . '_theme_settings', hybrid_get_default_theme_settings() );
+
+	/* If the settings isn't an array or the specific option isn't in the array, return false. */
+	if ( !is_array( $hybrid->settings ) || empty( $hybrid->settings[$option] ) )
+		return false;
+
+	/* If the specific option is an array, return it. */
+	if ( is_array( $hybrid->settings[$option] ) )
+		return $hybrid->settings[$option];
+
+	/* Strip slashes from the setting and return. */
+	else
+		return wp_kses_stripslashes( $hybrid->settings[$option] );
+}
+
+/**
+ * Sets up a default array of theme settings for use with the theme.  Theme developers should filter the 
+ * "{$prefix}_default_theme_settings" hook to define any default theme settings.  WordPress does not 
+ * provide a hook for default settings at this time.
+ *
+ * @since 1.0.0
+ * @access public
+ * @return array $settings The default theme settings.
+ */
+function hybrid_get_default_theme_settings() {
+
+	/* Set up some default variables. */
+	$settings = array();
+	$prefix = hybrid_get_prefix();
+
+	/* Get theme-supported meta boxes for the settings page. */
+	$supports = get_theme_support( 'hybrid-core-theme-settings' );
+
+	/* If the current theme supports the footer meta box and shortcodes, add default footer settings. */
+	if ( is_array( $supports[0] ) && in_array( 'footer', $supports[0] ) && current_theme_supports( 'hybrid-core-shortcodes' ) ) {
+
+		/* If there is a child theme active, add the [child-link] shortcode to the $footer_insert. */
+		if ( is_child_theme() )
+			$settings['footer_insert'] = '<p class="copyright">' . __( 'Copyright &#169; [the-year] [site-link].', 'hybrid-core' ) . '</p>' . "\n\n" . '<p class="credit">' . __( 'Powered by [wp-link], [theme-link], and [child-link].', 'hybrid-core' ) . '</p>';
+
+		/* If no child theme is active, leave out the [child-link] shortcode. */
+		else
+			$settings['footer_insert'] = '<p class="copyright">' . __( 'Copyright &#169; [the-year] [site-link].', 'hybrid-core' ) . '</p>' . "\n\n" . '<p class="credit">' . __( 'Powered by [wp-link] and [theme-link].', 'hybrid-core' ) . '</p>';
+	}
+
+	/* Return the $settings array and provide a hook for overwriting the default settings. */
+	return apply_filters( "{$prefix}_default_theme_settings", $settings );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/shortcodes.php b/wp-content/themes/path/library/functions/shortcodes.php
new file mode 100644
index 0000000000000000000000000000000000000000..ffde6aa8b8822a75c6fb1e75aca1e929a22552db
--- /dev/null
+++ b/wp-content/themes/path/library/functions/shortcodes.php
@@ -0,0 +1,474 @@
+<?php
+/**
+ * Shortcodes bundled for use with themes.  These shortcodes are not meant to be used with the post content 
+ * editor.  Their purpose is to make it easier for users to filter hooks without having to know too much PHP code
+ * and to provide access to specific functionality in other (non-post content) shortcode-aware areas.  Note that 
+ * some shortcodes are specific to posts and comments and would be useless outside of the post and comment 
+ * loops.  To use the shortcodes, a theme must register support for 'hybrid-core-shortcodes'.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register shortcodes. */
+add_action( 'init', 'hybrid_add_shortcodes' );
+
+/**
+ * Creates new shortcodes for use in any shortcode-ready area.  This function uses the add_shortcode() 
+ * function to register new shortcodes with WordPress.
+ *
+ * @since 0.8.0
+ * @access private
+ * @uses add_shortcode() to create new shortcodes.
+ * @link http://codex.wordpress.org/Shortcode_API
+ * @return void
+ */
+function hybrid_add_shortcodes() {
+
+	/* Add theme-specific shortcodes. */
+	add_shortcode( 'the-year', 'hybrid_the_year_shortcode' );
+	add_shortcode( 'site-link', 'hybrid_site_link_shortcode' );
+	add_shortcode( 'wp-link', 'hybrid_wp_link_shortcode' );
+	add_shortcode( 'theme-link', 'hybrid_theme_link_shortcode' );
+	add_shortcode( 'child-link', 'hybrid_child_link_shortcode' );
+	add_shortcode( 'loginout-link', 'hybrid_loginout_link_shortcode' );
+	add_shortcode( 'query-counter', 'hybrid_query_counter_shortcode' );
+	add_shortcode( 'nav-menu', 'hybrid_nav_menu_shortcode' );
+
+	/* Add entry-specific shortcodes. */
+	add_shortcode( 'entry-title', 'hybrid_entry_title_shortcode' );
+	add_shortcode( 'entry-author', 'hybrid_entry_author_shortcode' );
+	add_shortcode( 'entry-terms', 'hybrid_entry_terms_shortcode' );
+	add_shortcode( 'entry-comments-link', 'hybrid_entry_comments_link_shortcode' );
+	add_shortcode( 'entry-published', 'hybrid_entry_published_shortcode' );
+	add_shortcode( 'entry-edit-link', 'hybrid_entry_edit_link_shortcode' );
+	add_shortcode( 'entry-shortlink', 'hybrid_entry_shortlink_shortcode' );
+	add_shortcode( 'entry-permalink', 'hybrid_entry_permalink_shortcode' );
+	add_shortcode( 'post-format-link', 'hybrid_post_format_link_shortcode' );
+
+	/* Add comment-specific shortcodes. */
+	add_shortcode( 'comment-published', 'hybrid_comment_published_shortcode' );
+	add_shortcode( 'comment-author', 'hybrid_comment_author_shortcode' );
+	add_shortcode( 'comment-edit-link', 'hybrid_comment_edit_link_shortcode' );
+	add_shortcode( 'comment-reply-link', 'hybrid_comment_reply_link_shortcode' );
+	add_shortcode( 'comment-permalink', 'hybrid_comment_permalink_shortcode' );
+}
+
+/**
+ * Shortcode to display the current year.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses date() Gets the current year.
+ * @return string
+ */
+function hybrid_the_year_shortcode() {
+	return date( __( 'Y', 'hybrid-core' ) );
+}
+
+/**
+ * Shortcode to display a link back to the site.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses get_bloginfo() Gets information about the install.
+ * @return string
+ */
+function hybrid_site_link_shortcode() {
+	return '<a class="site-link" href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home"><span>' . get_bloginfo( 'name' ) . '</span></a>';
+}
+
+/**
+ * Shortcode to display a link to WordPress.org.
+ *
+ * @since 0.6.0
+ * @access public
+ * @return string
+ */
+function hybrid_wp_link_shortcode() {
+	return '<a class="wp-link" href="http://wordpress.org" title="' . esc_attr__( 'State-of-the-art semantic personal publishing platform', 'hybrid-core' ) . '"><span>' . __( 'WordPress', 'hybrid-core' ) . '</span></a>';
+}
+
+/**
+ * Shortcode to display a link to the parent theme page.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses get_theme_data() Gets theme (parent theme) information.
+ * @return string
+ */
+function hybrid_theme_link_shortcode() {
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+	return '<a class="theme-link" href="' . esc_url( $theme->get( 'ThemeURI' ) ) . '" title="' . sprintf( esc_attr__( '%s WordPress Theme', 'hybrid-core' ), $theme->get( 'Name' ) ) . '"><span>' . esc_attr( $theme->get( 'Name' ) ) . '</span></a>';
+}
+
+/**
+ * Shortcode to display a link to the child theme's page.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses get_theme_data() Gets theme (child theme) information.
+ * @return string
+ */
+function hybrid_child_link_shortcode() {
+	$theme = wp_get_theme( get_stylesheet(), get_theme_root( get_stylesheet_directory() ) );
+	return '<a class="child-link" href="' . esc_url( $theme->get( 'ThemeURI' ) ) . '" title="' . esc_attr( $theme->get( 'Name' ) ) . '"><span>' . esc_html( $theme->get( 'Name' ) ) . '</span></a>';
+}
+
+/**
+ * Shortcode to display a login link or logout link.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses is_user_logged_in() Checks if the current user is logged into the site.
+ * @uses wp_logout_url() Creates a logout URL.
+ * @uses wp_login_url() Creates a login URL.
+ * @return string
+ */
+function hybrid_loginout_link_shortcode() {
+	if ( is_user_logged_in() )
+		$out = '<a class="logout-link" href="' . esc_url( wp_logout_url( site_url( $_SERVER['REQUEST_URI'] ) ) ) . '" title="' . esc_attr__( 'Log out', 'hybrid-core' ) . '">' . __( 'Log out', 'hybrid-core' ) . '</a>';
+	else
+		$out = '<a class="login-link" href="' . esc_url( wp_login_url( site_url( $_SERVER['REQUEST_URI'] ) ) ) . '" title="' . esc_attr__( 'Log in', 'hybrid-core' ) . '">' . __( 'Log in', 'hybrid-core' ) . '</a>';
+
+	return $out;
+}
+
+/**
+ * Displays query count and load time if the current user can edit themes.
+ *
+ * @since 0.6.0
+ * @access public
+ * @uses current_user_can() Checks if the current user can edit themes.
+ * @return string
+ */
+function hybrid_query_counter_shortcode() {
+	if ( current_user_can( 'edit_theme_options' ) )
+		return sprintf( __( 'This page loaded in %1$s seconds with %2$s database queries.', 'hybrid-core' ), timer_stop( 0, 3 ), get_num_queries() );
+	return '';
+}
+
+/**
+ * Displays a nav menu that has been created from the Menus screen in the admin.
+ *
+ * @since 0.8.0
+ * @access public
+ * @uses wp_nav_menu() Displays the nav menu.
+ * @return string
+ */
+function hybrid_nav_menu_shortcode( $attr ) {
+
+	$attr = shortcode_atts(
+		array(
+			'menu' => '',
+			'container' => 'div',
+			'container_id' => '',
+			'container_class' => 'nav-menu',
+			'menu_id' => '',
+			'menu_class' => '',
+			'link_before' => '',
+			'link_after' => '',
+			'before' => '',
+			'after' => '',
+			'fallback_cb' => 'wp_page_menu',
+			'walker' => ''
+		),
+		$attr
+	);
+	$attr['echo'] = false;
+
+	return wp_nav_menu( $attr );
+}
+
+/**
+ * Displays the edit link for an individual post.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param array $attr
+ * @return string
+ */
+function hybrid_entry_edit_link_shortcode( $attr ) {
+
+	$post_type = get_post_type_object( get_post_type() );
+
+	if ( !current_user_can( $post_type->cap->edit_post, get_the_ID() ) )
+		return '';
+
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+
+	return $attr['before'] . '<span class="edit"><a class="post-edit-link" href="' . esc_url( get_edit_post_link( get_the_ID() ) ) . '" title="' . sprintf( esc_attr__( 'Edit %1$s', 'hybrid-core' ), $post_type->labels->singular_name ) . '">' . __( 'Edit', 'hybrid-core' ) . '</a></span>' . $attr['after'];
+}
+
+/**
+ * Displays the published date of an individual post.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param array $attr
+ * @return string
+ */
+function hybrid_entry_published_shortcode( $attr ) {
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '', 'format' => get_option( 'date_format' ) ), $attr );
+
+	$published = '<abbr class="published" title="' . sprintf( get_the_time( esc_attr__( 'l, F jS, Y, g:i a', 'hybrid-core' ) ) ) . '">' . sprintf( get_the_time( $attr['format'] ) ) . '</abbr>';
+	return $attr['before'] . $published . $attr['after'];
+}
+
+/**
+ * Displays a post's number of comments wrapped in a link to the comments area.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param array $attr
+ * @return string
+ */
+function hybrid_entry_comments_link_shortcode( $attr ) {
+
+	$comments_link = '';
+	$number = doubleval( get_comments_number() );
+	$attr = shortcode_atts( array( 'zero' => __( 'Leave a response', 'hybrid-core' ), 'one' => __( '%1$s Response', 'hybrid-core' ), 'more' => __( '%1$s Responses', 'hybrid-core' ), 'css_class' => 'comments-link', 'none' => '', 'before' => '', 'after' => '' ), $attr );
+
+	if ( 0 == $number && !comments_open() && !pings_open() ) {
+		if ( $attr['none'] )
+			$comments_link = '<span class="' . esc_attr( $attr['css_class'] ) . '">' . sprintf( $attr['none'], number_format_i18n( $number ) ) . '</span>';
+	}
+	elseif ( 0 == $number )
+		$comments_link = '<a class="' . esc_attr( $attr['css_class'] ) . '" href="' . get_permalink() . '#respond" title="' . sprintf( esc_attr__( 'Comment on %1$s', 'hybrid-core' ), the_title_attribute( 'echo=0' ) ) . '">' . sprintf( $attr['zero'], number_format_i18n( $number ) ) . '</a>';
+	elseif ( 1 == $number )
+		$comments_link = '<a class="' . esc_attr( $attr['css_class'] ) . '" href="' . get_comments_link() . '" title="' . sprintf( esc_attr__( 'Comment on %1$s', 'hybrid-core' ), the_title_attribute( 'echo=0' ) ) . '">' . sprintf( $attr['one'], number_format_i18n( $number ) ) . '</a>';
+	elseif ( 1 < $number )
+		$comments_link = '<a class="' . esc_attr( $attr['css_class'] ) . '" href="' . get_comments_link() . '" title="' . sprintf( esc_attr__( 'Comment on %1$s', 'hybrid-core' ), the_title_attribute( 'echo=0' ) ) . '">' . sprintf( $attr['more'], number_format_i18n( $number ) ) . '</a>';
+
+	if ( $comments_link )
+		$comments_link = $attr['before'] . $comments_link . $attr['after'];
+
+	return $comments_link;
+}
+
+/**
+ * Displays an individual post's author with a link to his or her archive.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param array $attr
+ * @return string
+ */
+function hybrid_entry_author_shortcode( $attr ) {
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+	$author = '<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" title="' . esc_attr( get_the_author_meta( 'display_name' ) ) . '">' . get_the_author_meta( 'display_name' ) . '</a></span>';
+	return $attr['before'] . $author . $attr['after'];
+}
+
+/**
+ * Displays a list of terms for a specific taxonomy.
+ *
+ * @since 0.7.0
+ * @access public
+ * @param array $attr
+ * @return string
+ */
+function hybrid_entry_terms_shortcode( $attr ) {
+
+	$attr = shortcode_atts( array( 'id' => get_the_ID(), 'taxonomy' => 'post_tag', 'separator' => ', ', 'before' => '', 'after' => '' ), $attr );
+
+	$attr['before'] = ( empty( $attr['before'] ) ? '<span class="' . $attr['taxonomy'] . '">' : '<span class="' . $attr['taxonomy'] . '"><span class="before">' . $attr['before'] . '</span>' );
+	$attr['after'] = ( empty( $attr['after'] ) ? '</span>' : '<span class="after">' . $attr['after'] . '</span></span>' );
+
+	return get_the_term_list( $attr['id'], $attr['taxonomy'], $attr['before'], $attr['separator'], $attr['after'] );
+}
+
+/**
+ * Displays a post's title with a link to the post.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return string
+ */
+function hybrid_entry_title_shortcode( $attr ) {
+
+	$attr = shortcode_atts( array( 'permalink' => true ), $attr );
+
+	$tag = is_singular() ? 'h1' : 'h2';
+	$class = sanitize_html_class( get_post_type() ) . '-title entry-title';
+
+	if ( false == (bool)$attr['permalink'] )
+		$title = the_title( "<{$tag} class='{$class}'>", "</{$tag}>", false );
+	else
+		$title = the_title( "<{$tag} class='{$class}'><a href='" . get_permalink() . "'>", "</a></{$tag}>", false );
+
+	if ( empty( $title ) && !is_singular() )
+		$title = "<{$tag} class='{$class}'><a href='" . get_permalink() . "'>" . __( '(Untitled)', 'hybrid-core' ) . "</a></{$tag}>";
+
+	return $title;
+}
+
+/**
+ * Displays the shortlink of an individual entry.
+ *
+ * @since 0.8.0
+ * @access public
+ * @return string
+ */
+function hybrid_entry_shortlink_shortcode( $attr ) {
+
+	$attr = shortcode_atts(
+		array(
+			'text' => __( 'Shortlink', 'hybrid-core' ),
+			'title' => the_title_attribute( array( 'echo' => false ) ),
+			'before' => '',
+			'after' => ''
+		),
+		$attr
+	);
+
+	$shortlink = esc_url( wp_get_shortlink( get_the_ID() ) );
+
+	return "{$attr['before']}<a class='shortlink' href='{$shortlink}' title='" . esc_attr( $attr['title'] ) . "' rel='shortlink'>{$attr['text']}</a>{$attr['after']}";
+}
+
+/**
+ * Returns the output of the [entry-permalink] shortcode, which is a link back to the post permalink page.
+ *
+ * @since 1.3.0.
+ * @param array $attr The shortcode arguments.
+ * @return string A permalink back to the post.
+ */
+function hybrid_entry_permalink_shortcode( $attr ) {
+
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+
+	return $attr['before'] . '<a href="' . esc_url( get_permalink() ) . '" class="permalink">' . __( 'Permalink', 'hybrid-core' ) . '</a>' . $attr['after'];
+}
+
+/**
+ * Returns the output of the [post-format-link] shortcode.  This shortcode is for use when a theme uses the 
+ * post formats feature.
+ *
+ * @since 1.3.0.
+ * @param array $attr The shortcode arguments.
+ * @return string A link to the post format archive.
+ */
+function hybrid_post_format_link_shortcode( $attr ) {
+
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+	$format = get_post_format();
+	$url = ( empty( $format ) ? get_permalink() : get_post_format_link( $format ) );
+
+	return $attr['before'] . '<a href="' . esc_url( $url ) . '" class="post-format-link">' . get_post_format_string( $format ) . '</a>' . $attr['after'];
+}
+
+/**
+ * Displays the published date and time of an individual comment.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return string
+ */
+function hybrid_comment_published_shortcode() {
+	$link = '<span class="published">' . sprintf( __( '%1$s at %2$s', 'hybrid-core' ), '<abbr class="comment-date" title="' . get_comment_date( esc_attr__( 'l, F jS, Y, g:i a', 'hybrid-core' ) ) . '">' . get_comment_date() . '</abbr>', '<abbr class="comment-time" title="' . get_comment_date( esc_attr__( 'l, F jS, Y, g:i a', 'hybrid-core' ) ) . '">' . get_comment_time() . '</abbr>' ) . '</span>';
+	return $link;
+}
+
+/**
+ * Displays the comment author of an individual comment.
+ *
+ * @since 0.8.0
+ * @access public
+ * @global $comment The current comment's DB object.
+ * @return string
+ */
+function hybrid_comment_author_shortcode( $attr ) {
+	global $comment;
+
+	$attr = shortcode_atts(
+		array(
+			'before' => '',
+			'after' => '',
+			'tag' => 'span' // @deprecated 1.2.0 Back-compatibility. Please don't use this argument.
+		),
+		$attr
+	);
+
+	$author = esc_html( get_comment_author( $comment->comment_ID ) );
+	$url = esc_url( get_comment_author_url( $comment->comment_ID ) );
+
+	/* Display link and cite if URL is set. Also, properly cites trackbacks/pingbacks. */
+	if ( $url )
+		$output = '<cite class="fn" title="' . $url . '"><a href="' . $url . '" title="' . esc_attr( $author ) . '" class="url" rel="external nofollow">' . $author . '</a></cite>';
+	else
+		$output = '<cite class="fn">' . $author . '</cite>';
+
+	$output = '<' . tag_escape( $attr['tag'] ) . ' class="comment-author vcard">' . $attr['before'] . apply_filters( 'get_comment_author_link', $output ) . $attr['after'] . '</' . tag_escape( $attr['tag'] ) . '><!-- .comment-author .vcard -->';
+
+	return $output;
+}
+
+/**
+ * Displays the permalink to an individual comment.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return string
+ */
+function hybrid_comment_permalink_shortcode( $attr ) {
+	global $comment;
+
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+	$link = '<a class="permalink" href="' . esc_url( get_comment_link( $comment->comment_ID ) ) . '" title="' . sprintf( esc_attr__( 'Permalink to comment %1$s', 'hybrid-core' ), $comment->comment_ID ) . '">' . __( 'Permalink', 'hybrid-core' ) . '</a>';
+	return $attr['before'] . $link . $attr['after'];
+}
+
+/**
+ * Displays a comment's edit link to users that have the capability to edit the comment.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return string
+ */
+function hybrid_comment_edit_link_shortcode( $attr ) {
+	global $comment;
+
+	$edit_link = get_edit_comment_link( $comment->comment_ID );
+
+	if ( !$edit_link )
+		return '';
+
+	$attr = shortcode_atts( array( 'before' => '', 'after' => '' ), $attr );
+
+	$link = '<a class="comment-edit-link" href="' . esc_url( $edit_link ) . '" title="' . sprintf( esc_attr__( 'Edit %1$s', 'hybrid-core' ), $comment->comment_type ) . '"><span class="edit">' . __( 'Edit', 'hybrid-core' ) . '</span></a>';
+	$link = apply_filters( 'edit_comment_link', $link, $comment->comment_ID );
+
+	return $attr['before'] . $link . $attr['after'];
+}
+
+/**
+ * Displays a reply link for the 'comment' comment_type if threaded comments are enabled.
+ *
+ * @since 0.7.0
+ * @access public
+ * @return string
+ */
+function hybrid_comment_reply_link_shortcode( $attr ) {
+
+	if ( !get_option( 'thread_comments' ) || 'comment' !== get_comment_type() )
+		return '';
+
+	$defaults = array(
+		'reply_text' => __( 'Reply', 'hybrid-core' ),
+		'login_text' => __( 'Log in to reply.', 'hybrid-core' ),
+		'depth' => intval( $GLOBALS['comment_depth'] ),
+		'max_depth' => get_option( 'thread_comments_depth' ),
+		'before' => '',
+		'after' => ''
+	);
+	$attr = shortcode_atts( $defaults, $attr );
+
+	return get_comment_reply_link( $attr );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/sidebars.php b/wp-content/themes/path/library/functions/sidebars.php
new file mode 100644
index 0000000000000000000000000000000000000000..0e7ce78113535056b727817df8173850b5b111f1
--- /dev/null
+++ b/wp-content/themes/path/library/functions/sidebars.php
@@ -0,0 +1,120 @@
+<?php
+/**
+ * Sets up the default framework sidebars if the theme supports them.  By default, the framework registers 
+ * seven sidebars.  Themes may choose to use one or more of these sidebars.  A theme must register support 
+ * for 'hybrid-core-sidebars' to use them and register each sidebar ID within an array for the second 
+ * parameter of add_theme_support().
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Register widget areas. */
+add_action( 'widgets_init', 'hybrid_register_sidebars' );
+
+/**
+ * Registers the default framework dynamic sidebars based on the sidebars the theme has added support 
+ * for using add_theme_support().
+ *
+ * @since 0.7.0
+ * @access private
+ * @uses register_sidebar() Registers a sidebar with WordPress.
+ * @link http://codex.wordpress.org/Function_Reference/register_sidebar
+ * @return void
+ */
+function hybrid_register_sidebars() {
+
+	/* Get the theme-supported sidebars. */
+	$supported_sidebars = get_theme_support( 'hybrid-core-sidebars' );
+
+	/* If the theme doesn't add support for any sidebars, return. */
+	if ( !is_array( $supported_sidebars[0] ) )
+		return;
+
+	/* Get the available core framework sidebars. */
+	$core_sidebars = hybrid_get_sidebars();
+
+	/* Loop through the supported sidebars. */
+	foreach ( $supported_sidebars[0] as $sidebar ) {
+
+		/* Make sure the given sidebar is one of the core sidebars. */
+		if ( isset( $core_sidebars[$sidebar] ) ) {
+
+			/* Set up some default sidebar arguments. */
+			$defaults = array(
+				'before_widget' => 	'<div id="%1$s" class="widget %2$s widget-%2$s"><div class="widget-wrap widget-inside">',
+				'after_widget' => 		'</div></div>',
+				'before_title' => 		'<h3 class="widget-title">',
+				'after_title' => 		'</h3>'
+			);
+
+			/* Allow developers to filter the default sidebar arguments. */
+			$defaults = apply_filters( hybrid_get_prefix() . '_sidebar_defaults', $defaults, $sidebar );
+
+			/* Parse the sidebar arguments and defaults. */
+			$args = wp_parse_args( $core_sidebars[$sidebar], $defaults );
+
+			/* If no 'id' was given, use the $sidebar variable and sanitize it. */
+			$args['id'] = ( isset( $args['id'] ) ? sanitize_key( $args['id'] ) : sanitize_key( $sidebar ) );
+
+			/* Allow developers to filter the sidebar arguments. */
+			$args = apply_filters( hybrid_get_prefix() . '_sidebar_args', $args, $sidebar );
+
+			/* Register the sidebar. */
+			register_sidebar( $args );
+		}
+	}
+}
+
+/**
+ * Returns an array of the core framework's available sidebars for use in themes.  We'll just set the 
+ * ID (array keys), name, and description of each sidebar.  The other sidebar arguments will be set when the 
+ * sidebar is registered.
+ *
+ * @since 1.2.0
+ * @access private
+ * @return array $sidebars All the available framework sidebars.
+ */
+function hybrid_get_sidebars() {
+
+	/* Set up an array of sidebars. */
+	$sidebars = array(
+		'primary' => array(
+			'name' => 	_x( 'Primary', 'sidebar', 'hybrid-core' ),
+			'description' => 	__( 'The main (primary) widget area, most often used as a sidebar.', 'hybrid-core' )
+		),
+		'secondary' => array(
+			'name' =>	_x( 'Secondary', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( 'The second most important widget area, most often used as a secondary sidebar.', 'hybrid-core' ),
+		),
+		'subsidiary' => array(
+			'name' => 	_x( 'Subsidiary', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( 'A widget area loaded in the footer of the site.', 'hybrid-core' ),
+		),
+		'header' => array(
+			'name' =>	_x( 'Header', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( "Displayed within the site's header area.", 'hybrid-core' ),
+		),
+		'before-content' => array(
+			'name' =>	_x( 'Before Content', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( "Loaded before the page's main content area.", 'hybrid-core' ),
+		),
+		'after-content' => array(
+			'name' =>	_x( 'After Content', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( "Loaded after the page's main content area.", 'hybrid-core' ),
+		),
+		'after-singular' => array(
+			'name' =>	_x( 'After Singular', 'sidebar', 'hybrid-core' ),
+			'description' =>	__( 'Loaded on singular post (page, attachment, etc.) views before the comments area.', 'hybrid-core' ),
+		)
+	);
+
+	/* Return the sidebars. */
+	return $sidebars;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/template-hierarchy.php b/wp-content/themes/path/library/functions/template-hierarchy.php
new file mode 100644
index 0000000000000000000000000000000000000000..431e17d393270b653fafe37915771c9642da13e6
--- /dev/null
+++ b/wp-content/themes/path/library/functions/template-hierarchy.php
@@ -0,0 +1,211 @@
+<?php
+/**
+ * The framework has its own template hierarchy that can be used instead of the default WordPress 
+ * template hierarchy.  It is not much different than the default.  It was built to extend the default by 
+ * making it smarter and more flexible.  The goal is to give theme developers and end users an 
+ * easy-to-override system that doesn't involve massive amounts of conditional tags within files.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Filter the date template. */
+add_filter( 'date_template', 'hybrid_date_template' );
+
+/* Filter the author/user template. */
+add_filter( 'author_template', 'hybrid_user_template' );
+
+/* Filter the tag and category (taxonomy) templates. */
+add_filter( 'tag_template', 'hybrid_taxonomy_template' );
+add_filter( 'category_template', 'hybrid_taxonomy_template' );
+add_filter( 'taxonomy_template', 'hybrid_taxonomy_template' );
+
+/* Filter the single, page, and attachment (singular) templates. */
+add_filter( 'single_template', 'hybrid_singular_template' );
+add_filter( 'page_template', 'hybrid_singular_template' );
+add_filter( 'attachment_template', 'hybrid_singular_template' );
+
+/**
+ * Overrides WP's default template for date-based archives. Better abstraction of templates than 
+ * is_date() allows by checking for the year, month, week, day, hour, and minute.
+ *
+ * @since 0.6.0
+ * @access private
+ * @uses locate_template() Checks for template in child and parent theme.
+ * @param string $template
+ * @return string $template Full path to file.
+ */
+function hybrid_date_template( $template ) {
+	$templates = array();
+
+	/* If viewing a time-based archive. */
+	if ( is_time() ) {
+
+		/* If viewing a minutely archive. */
+		if ( get_query_var( 'minute' ) )
+			$templates[] = 'minute.php';
+
+		/* If viewing an hourly archive. */
+		elseif ( get_query_var( 'hour' ) )
+			$templates[] = 'hour.php';
+
+		/* Catchall for any time-based archive. */
+		$templates[] = 'time.php';
+	}
+
+	/* If viewing a daily archive. */
+	elseif ( is_day() )
+		$templates[] = 'day.php';
+
+	/* If viewing a weekly archive. */
+	elseif ( get_query_var( 'w' ) )
+		$templates[] = 'week.php';
+
+	/* If viewing a monthly archive. */
+	elseif ( is_month() )
+		$templates[] = 'month.php';
+
+	/* If viewing a yearly archive. */
+	elseif ( is_year() )
+		$templates[] = 'year.php';
+
+	/* Catchall template for date-based archives. */
+	$templates[] = 'date.php';
+
+	/* Fall back to the basic archive template. */
+	$templates[] = 'archive.php';
+
+	/* Return the found template. */
+	return locate_template( $templates );
+}
+
+/**
+ * Overrides WP's default template for author-based archives. Better abstraction of templates than 
+ * is_author() allows by allowing themes to specify templates for a specific author. The hierarchy is 
+ * user-$nicename.php, $user-role-$role.php, user.php, author.php, archive.php.
+ *
+ * @since 0.7.0
+ * @access private
+ * @uses locate_template() Checks for template in child and parent theme.
+ * @param string $template
+ * @return string Full path to file.
+ */
+function hybrid_user_template( $template ) {
+	$templates = array();
+
+	/* Get the user nicename. */
+	$name = get_the_author_meta( 'user_nicename', get_query_var( 'author' ) );
+
+	/* Get the user object. */
+	$user = new WP_User( absint( get_query_var( 'author' ) ) );
+
+	/* Add the user nicename template. */
+	$templates[] = "user-{$name}.php";
+
+	/* Add role-based templates for the user. */
+	if ( is_array( $user->roles ) ) {
+		foreach ( $user->roles as $role )
+			$templates[] = "user-role-{$role}.php";
+	}
+
+	/* Add a basic user template. */
+	$templates[] = 'user.php';
+
+	/* Add backwards compatibility with the WordPress author template. */
+	$templates[] = 'author.php';
+
+	/* Fall back to the basic archive template. */
+	$templates[] = 'archive.php';
+
+	/* Return the found template. */
+	return locate_template( $templates );
+}
+
+/**
+ * Overrides WP's default template for category- and tag-based archives. This allows better 
+ * organization of taxonomy template files by making categories and post tags work the same way as 
+ * other taxonomies. The hierarchy is taxonomy-$taxonomy-$term.php, taxonomy-$taxonomy.php, 
+ * taxonomy.php, archive.php.
+ *
+ * @since 0.7.0
+ * @access private
+ * @uses locate_template() Checks for template in child and parent theme.
+ * @param string $template
+ * @return string Full path to file.
+ */
+function hybrid_taxonomy_template( $template ) {
+
+	/* Get the queried term object. */
+	$term = get_queried_object();
+
+	/* Remove 'post-format' from the slug. */
+	$slug = ( ( 'post_format' == $term->taxonomy ) ? str_replace( 'post-format-', '', $term->slug ) : $term->slug );
+
+	/* Return the available templates. */
+	return locate_template( array( "taxonomy-{$term->taxonomy}-{$slug}.php", "taxonomy-{$term->taxonomy}.php", 'taxonomy.php', 'archive.php' ) );
+}
+
+/**
+ * Overrides the default single (singular post) template.  Post templates can be loaded using a custom 
+ * post template, by slug, or by ID.
+ *
+ * Attachment templates are handled slightly differently. Rather than look for the slug
+ * or ID, templates can be loaded by attachment-$mime[0]_$mime[1].php, 
+ * attachment-$mime[1].php, or attachment-$mime[0].php.
+ *
+ * @since 0.7.0
+ * @access private
+ * @param string $template The default WordPress post template.
+ * @return string $template The theme post template after all templates have been checked for.
+ */
+function hybrid_singular_template( $template ) {
+
+	$templates = array();
+
+	/* Get the queried post. */
+	$post = get_queried_object();
+
+	/* Check for a custom post template by custom field key '_wp_post_template'. */
+	$custom = get_post_meta( get_queried_object_id(), "_wp_{$post->post_type}_template", true );
+	if ( $custom )
+		$templates[] = $custom;
+
+	/* If viewing an attachment page, handle the files by mime type. */
+	if ( is_attachment() ) {
+		/* Split the mime_type into two distinct parts. */
+		$type = explode( '/', get_post_mime_type() );
+
+		$templates[] = "attachment-{$type[0]}_{$type[1]}.php";
+		$templates[] = "attachment-{$type[1]}.php";
+		$templates[] = "attachment-{$type[0]}.php";
+	}
+
+	/* If viewing any other type of singular page. */
+	else {
+
+		/* Add a post name (slug) template. */
+		$templates[] = "{$post->post_type}-{$post->post_name}.php";
+
+		/* Add a post ID template. */
+		$templates[] = "{$post->post_type}-{$post->ID}.php";
+	}
+
+	/* Add a template based off the post type name. */
+	$templates[] = "{$post->post_type}.php";
+
+	/* Allow for WP standard 'single' templates for compatibility. */
+	$templates[] = "single-{$post->post_type}.php";
+	$templates[] = 'single.php';
+
+	/* Add a general template of singular.php. */
+	$templates[] = "singular.php";
+
+	/* Return the found template. */
+	return locate_template( $templates );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/utility.php b/wp-content/themes/path/library/functions/utility.php
new file mode 100644
index 0000000000000000000000000000000000000000..847e7b16d7becc30f97a30d46d280a2d6f36a096
--- /dev/null
+++ b/wp-content/themes/path/library/functions/utility.php
@@ -0,0 +1,213 @@
+<?php
+/**
+ * Additional helper functions that the framework or themes may use.  The functions in this file are functions
+ * that don't really have a home within any other parts of the framework.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Add extra support for post types. */
+add_action( 'init', 'hybrid_add_post_type_support' );
+
+/* Add extra file headers for themes. */
+add_filter( 'extra_theme_headers', 'hybrid_extra_theme_headers' );
+
+/**
+ * This function is for adding extra support for features not default to the core post types.
+ * Excerpts are added to the 'page' post type.  Comments and trackbacks are added for the
+ * 'attachment' post type.  Technically, these are already used for attachments in core, but 
+ * they're not registered.
+ *
+ * @since 0.8.0
+ * @access private
+ * @return void
+ */
+function hybrid_add_post_type_support() {
+
+	/* Add support for excerpts to the 'page' post type. */
+	add_post_type_support( 'page', array( 'excerpt' ) );
+
+	/* Add support for trackbacks to the 'attachment' post type. */
+	add_post_type_support( 'attachment', array( 'trackbacks' ) );
+}
+
+/**
+ * Creates custom theme headers.  This is the information shown in the header block of a theme's 'style.css' 
+ * file.  Themes are not required to use this information, but the framework does make use of the data for 
+ * displaying additional information to the theme user.
+ *
+ * @since 1.2.0
+ * @access private
+ * @link http://codex.wordpress.org/Theme_Review#Licensing
+ * @param array $headers Array of extra headers added by plugins/themes.
+ * @return array $headers
+ */
+function hybrid_extra_theme_headers( $headers ) {
+
+	/* Add support for 'Template Version'. This is for use in child themes to note the version of the parent theme. */
+	if ( !in_array( 'Template Version', $headers ) )
+		$headers[] = 'Template Version';
+
+	/* Add support for 'License'.  Proposed in the guidelines for the WordPress.org theme review. */
+	if ( !in_array( 'License', $headers ) )
+		$headers[] = 'License';
+
+	/* Add support for 'License URI'. Proposed in the guidelines for the WordPress.org theme review. */
+	if ( !in_array( 'License URI', $headers ) )
+		$headers[] = 'License URI';
+
+	/* Add support for 'Support URI'.  This should be a link to the theme's support forums. */
+	if ( !in_array( 'Support URI', $headers ) )
+		$headers[] = 'Support URI';
+
+	/* Add support for 'Documentation URI'.  This should be a link to the theme's documentation. */
+	if ( !in_array( 'Documentation URI', $headers ) )
+		$headers[] = 'Documentation URI';
+
+	/* Return the array of custom theme headers. */
+	return $headers;
+}
+
+/**
+ * Looks for a template based on the hybrid_get_context() function.  If the $template parameter
+ * is a directory, it will look for files within that directory.  Otherwise, $template becomes the 
+ * template name prefix.  The function looks for templates based on the context of the current page
+ * being viewed by the user.
+ *
+ * @since 0.8.0
+ * @access public
+ * @param string $template The slug of the template whose context we're searching for.
+ * @return string $template The full path of the located template.
+ */
+function get_atomic_template( $template ) {
+
+	$templates = array();
+
+	$theme_dir = trailingslashit( THEME_DIR ) . $template;
+	$child_dir = trailingslashit( CHILD_THEME_DIR ) . $template;
+
+	if ( is_dir( $child_dir ) || is_dir( $theme_dir ) ) {
+		$dir = true;
+		$templates[] = "{$template}/index.php";
+	}
+	else {
+		$dir = false;
+		$templates[] = "{$template}.php";
+	}
+
+	foreach ( hybrid_get_context() as $context )
+		$templates[] = ( ( $dir ) ? "{$template}/{$context}.php" : "{$template}-{$context}.php" );
+
+	return locate_template( array_reverse( $templates ), true );
+}
+
+/**
+ * Generates the relevant template info.  Adds template meta with theme version.  Uses the theme 
+ * name and version from style.css.  In 0.6, added the hybrid_meta_template 
+ * filter hook.
+ *
+ * @since 0.4.0
+ * @access private
+ * @return void
+ */
+function hybrid_meta_template() {
+	$theme = wp_get_theme( get_template(), get_theme_root( get_template_directory() ) );
+	$template = '<meta name="template" content="' . esc_attr( $theme->get( 'Name' ) . ' ' . $theme->get( 'Version' ) ) . '" />' . "\n";
+	echo apply_atomic( 'meta_template', $template );
+}
+
+/**
+ * Dynamic element to wrap the site title in.  If it is the front page, wrap it in an <h1> element.  One other 
+ * pages, wrap it in a <div> element. 
+ *
+ * @since 0.1.0
+ * @access public
+ * @return void
+ */
+function hybrid_site_title() {
+
+	/* If viewing the front page of the site, use an <h1> tag.  Otherwise, use a <div> tag. */
+	$tag = ( is_front_page() ) ? 'h1' : 'div';
+
+	/* Get the site title.  If it's not empty, wrap it with the appropriate HTML. */
+	if ( $title = get_bloginfo( 'name' ) )
+		$title = sprintf( '<%1$s id="site-title"><a href="%2$s" title="%3$s" rel="home"><span>%4$s</span></a></%1$s>', tag_escape( $tag ), home_url(), esc_attr( $title ), $title );
+
+	/* Display the site title and apply filters for developers to overwrite. */
+	echo apply_atomic( 'site_title', $title );
+}
+
+/**
+ * Dynamic element to wrap the site description in.  If it is the front page, wrap it in an <h2> element.  
+ * On other pages, wrap it in a <div> element.
+ *
+ * @since 0.1.0
+ * @access public
+ * @return void
+ */
+function hybrid_site_description() {
+
+	/* If viewing the front page of the site, use an <h2> tag.  Otherwise, use a <div> tag. */
+	$tag = ( is_front_page() ) ? 'h2' : 'div';
+
+	/* Get the site description.  If it's not empty, wrap it with the appropriate HTML. */
+	if ( $desc = get_bloginfo( 'description' ) )
+		$desc = sprintf( '<%1$s id="site-description"><span>%2$s</span></%1$s>', tag_escape( $tag ), $desc );
+
+	/* Display the site description and apply filters for developers to overwrite. */
+	echo apply_atomic( 'site_description', $desc );
+}
+
+/**
+ * Standardized function for outputting the footer content.
+ *
+ * @since 1.4.0
+ * @access public
+ * @return void
+ */
+function hybrid_footer_content() {
+
+	/* Only run the code if the theme supports the Hybrid Core theme settings. */
+	if ( current_theme_supports( 'hybrid-core-theme-settings' ) )
+		echo apply_atomic_shortcode( 'footer_content', hybrid_get_setting( 'footer_insert' ) );
+}
+
+/**
+ * Checks if a post of any post type has a custom template.  This is the equivalent of WordPress' 
+ * is_page_template() function with the exception that it works for all post types.
+ *
+ * @since 1.2.0
+ * @access public
+ * @param string $template The name of the template to check for.
+ * @return bool Whether the post has a template.
+ */
+function hybrid_has_post_template( $template = '' ) {
+
+	/* Assume we're viewing a singular post. */
+	if ( is_singular() ) {
+
+		/* Get the queried object. */
+		$post = get_queried_object();
+
+		/* Get the post template, which is saved as metadata. */
+		$post_template = get_post_meta( get_queried_object_id(), "_wp_{$post->post_type}_template", true );
+
+		/* If a specific template was input, check that the post template matches. */
+		if ( !empty( $template) && ( $template == $post_template ) )
+			return true;
+
+		/* If no specific template was input, check if the post has a template. */
+		elseif ( empty( $template) && !empty( $post_template ) )
+			return true;
+	}
+
+	/* Return false for everything else. */
+	return false;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/functions/widgets.php b/wp-content/themes/path/library/functions/widgets.php
new file mode 100644
index 0000000000000000000000000000000000000000..2d1bf9737741af6aa50d1ce95bf18831d0296dde
--- /dev/null
+++ b/wp-content/themes/path/library/functions/widgets.php
@@ -0,0 +1,113 @@
+<?php
+/**
+ * Sets up the core framework's widgets and unregisters some of the default WordPress widgets if the 
+ * theme supports this feature.  The framework's widgets are meant to extend the default WordPress
+ * widgets by giving users highly-customizable widget settings.  A theme must register support for the 
+ * 'hybrid-core-widgets' feature to use the framework widgets.
+ *
+ * @package HybridCore
+ * @subpackage Functions
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/* Unregister WP widgets. */
+add_action( 'widgets_init', 'hybrid_unregister_widgets' );
+
+/* Register Hybrid widgets. */
+add_action( 'widgets_init', 'hybrid_register_widgets' );
+
+/**
+ * Registers the core frameworks widgets.  These widgets typically overwrite the equivalent default WordPress
+ * widget by extending the available options of the widget.
+ *
+ * @since 0.6.0
+ * @access private
+ * @uses register_widget() Registers individual widgets with WordPress
+ * @link http://codex.wordpress.org/Function_Reference/register_widget
+ * @return void
+ */
+function hybrid_register_widgets() {
+
+	/* Load the archives widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-archives.php' );
+
+	/* Load the authors widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-authors.php' );
+
+	/* Load the bookmarks widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-bookmarks.php' );
+
+	/* Load the calendar widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-calendar.php' );
+
+	/* Load the categories widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-categories.php' );
+
+	/* Load the nav menu widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-nav-menu.php' );
+
+	/* Load the pages widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-pages.php' );
+
+	/* Load the search widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-search.php' );
+
+	/* Load the tags widget class. */
+	require_once( trailingslashit( HYBRID_CLASSES ) . 'widget-tags.php' );
+
+	/* Register the archives widget. */
+	register_widget( 'Hybrid_Widget_Archives' );
+
+	/* Register the authors widget. */
+	register_widget( 'Hybrid_Widget_Authors' );
+
+	/* Register the bookmarks widget. */
+	register_widget( 'Hybrid_Widget_Bookmarks' );
+
+	/* Register the calendar widget. */
+	register_widget( 'Hybrid_Widget_Calendar' );
+
+	/* Register the categories widget. */
+	register_widget( 'Hybrid_Widget_Categories' );
+
+	/* Register the nav menu widget. */
+	register_widget( 'Hybrid_Widget_Nav_Menu' );
+
+	/* Register the pages widget. */
+	register_widget( 'Hybrid_Widget_Pages' );
+
+	/* Register the search widget. */
+	register_widget( 'Hybrid_Widget_Search' );
+
+	/* Register the tags widget. */
+	register_widget( 'Hybrid_Widget_Tags' );
+}
+
+/**
+ * Unregister default WordPress widgets that are replaced by the framework's widgets.  Widgets that
+ * aren't replaced by the framework widgets are not unregistered.
+ *
+ * @since 0.3.2
+ * @access private
+ * @uses unregister_widget() Unregisters a registered widget.
+ * @link http://codex.wordpress.org/Function_Reference/unregister_widget
+ * @return void
+ */
+function hybrid_unregister_widgets() {
+
+	/* Unregister the default WordPress widgets. */
+	unregister_widget( 'WP_Widget_Archives' );
+	unregister_widget( 'WP_Widget_Calendar' );
+	unregister_widget( 'WP_Widget_Categories' );
+	unregister_widget( 'WP_Widget_Links' );
+	unregister_widget( 'WP_Nav_Menu_Widget' );
+	unregister_widget( 'WP_Widget_Pages' );
+	unregister_widget( 'WP_Widget_Recent_Posts' );
+	unregister_widget( 'WP_Widget_Search' );
+	unregister_widget( 'WP_Widget_Tag_Cloud' );
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/hybrid.php b/wp-content/themes/path/library/hybrid.php
new file mode 100644
index 0000000000000000000000000000000000000000..6d35124a35ea3593234b954fda42168045ff2d36
--- /dev/null
+++ b/wp-content/themes/path/library/hybrid.php
@@ -0,0 +1,355 @@
+<?php
+/**
+ * Hybrid Core - A WordPress theme development framework.
+ *
+ * Hybrid Core is a framework for developing WordPress themes.  The framework allows theme developers
+ * to quickly build themes without having to handle all of the "logic" behind the theme or having to code 
+ * complex functionality for features that are often needed in themes.  The framework does these things 
+ * for developers to allow them to get back to what matters the most:  developing and designing themes.  
+ * The framework was built to make it easy for developers to include (or not include) specific, pre-coded 
+ * features.  Themes handle all the markup, style, and scripts while the framework handles the logic.
+ *
+ * Hybrid Core is a modular system, which means that developers can pick and choose the features they 
+ * want to include within their themes.  Most files are only loaded if the theme registers support for the 
+ * feature using the add_theme_support( $feature ) function within their theme.
+ *
+ * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 
+ * General Public License as published by the Free Software Foundation; either version 2 of the License, 
+ * or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the GNU General Public License along with this program; if not, write 
+ * to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * @package HybridCore
+ * @version 1.4.3
+ * @author Justin Tadlock <justin@justintadlock.com>
+ * @copyright Copyright (c) 2008 - 2012, Justin Tadlock
+ * @link http://themehybrid.com/hybrid-core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ */
+
+/**
+ * The Hybrid class launches the framework.  It's the organizational structure behind the entire framework. 
+ * This class should be loaded and initialized before anything else within the theme is called to properly use 
+ * the framework.  
+ *
+ * After parent themes call the Hybrid class, they should perform a theme setup function on the 
+ * 'after_setup_theme' hook with a priority of 10.  Child themes should add their theme setup function on
+ * the 'after_setup_theme' hook with a priority of 11.  This allows the class to load theme-supported features
+ * at the appropriate time, which is on the 'after_setup_theme' hook with a priority of 12.
+ *
+ * @since 0.7.0
+ */
+class Hybrid {
+
+	/**
+	 * Constructor method for the Hybrid class.  This method adds other methods of the class to 
+	 * specific hooks within WordPress.  It controls the load order of the required files for running 
+	 * the framework.
+	 *
+	 * @since 1.0.0
+	 */
+	function __construct() {
+		global $hybrid;
+
+		/* Set up an empty class for the global $hybrid object. */
+		$hybrid = new stdClass;
+
+		/* Define framework, parent theme, and child theme constants. */
+		add_action( 'after_setup_theme', array( &$this, 'constants' ), 1 );
+
+		/* Load the core functions required by the rest of the framework. */
+		add_action( 'after_setup_theme', array( &$this, 'core' ), 2 );
+
+		/* Initialize the framework's default actions and filters. */
+		add_action( 'after_setup_theme', array( &$this, 'default_filters' ), 3 );
+
+		/* Language functions and translations setup. */
+		add_action( 'after_setup_theme', array( &$this, 'i18n' ), 4 );
+
+		/* Handle theme supported features. */
+		add_action( 'after_setup_theme', array( &$this, 'theme_support' ), 12 );
+
+		/* Load the framework functions. */
+		add_action( 'after_setup_theme', array( &$this, 'functions' ), 13 );
+
+		/* Load the framework extensions. */
+		add_action( 'after_setup_theme', array( &$this, 'extensions' ), 14 );
+
+		/* Load admin files. */
+		add_action( 'wp_loaded', array( &$this, 'admin' ) );
+	}
+
+	/**
+	 * Defines the constant paths for use within the core framework, parent theme, and child theme.  
+	 * Constants prefixed with 'HYBRID_' are for use only within the core framework and don't 
+	 * reference other areas of the parent or child theme.
+	 *
+	 * @since 0.7.0
+	 */
+	function constants() {
+
+		/* Sets the framework version number. */
+		define( 'HYBRID_VERSION', '1.4.3' );
+
+		/* Sets the path to the parent theme directory. */
+		define( 'THEME_DIR', get_template_directory() );
+
+		/* Sets the path to the parent theme directory URI. */
+		define( 'THEME_URI', get_template_directory_uri() );
+
+		/* Sets the path to the child theme directory. */
+		define( 'CHILD_THEME_DIR', get_stylesheet_directory() );
+
+		/* Sets the path to the child theme directory URI. */
+		define( 'CHILD_THEME_URI', get_stylesheet_directory_uri() );
+
+		/* Sets the path to the core framework directory. */
+		define( 'HYBRID_DIR', trailingslashit( THEME_DIR ) . basename( dirname( __FILE__ ) ) );
+
+		/* Sets the path to the core framework directory URI. */
+		define( 'HYBRID_URI', trailingslashit( THEME_URI ) . basename( dirname( __FILE__ ) ) );
+
+		/* Sets the path to the core framework admin directory. */
+		define( 'HYBRID_ADMIN', trailingslashit( HYBRID_DIR ) . 'admin' );
+
+		/* Sets the path to the core framework classes directory. */
+		define( 'HYBRID_CLASSES', trailingslashit( HYBRID_DIR ) . 'classes' );
+
+		/* Sets the path to the core framework extensions directory. */
+		define( 'HYBRID_EXTENSIONS', trailingslashit( HYBRID_DIR ) . 'extensions' );
+
+		/* Sets the path to the core framework functions directory. */
+		define( 'HYBRID_FUNCTIONS', trailingslashit( HYBRID_DIR ) . 'functions' );
+
+		/* Sets the path to the core framework languages directory. */
+		define( 'HYBRID_LANGUAGES', trailingslashit( HYBRID_DIR ) . 'languages' );
+
+		/* Sets the path to the core framework images directory URI. */
+		define( 'HYBRID_IMAGES', trailingslashit( HYBRID_URI ) . 'images' );
+
+		/* Sets the path to the core framework CSS directory URI. */
+		define( 'HYBRID_CSS', trailingslashit( HYBRID_URI ) . 'css' );
+
+		/* Sets the path to the core framework JavaScript directory URI. */
+		define( 'HYBRID_JS', trailingslashit( HYBRID_URI ) . 'js' );
+	}
+
+	/**
+	 * Loads the core framework functions.  These files are needed before loading anything else in the 
+	 * framework because they have required functions for use.
+	 *
+	 * @since 1.0.0
+	 */
+	function core() {
+
+		/* Load the core framework functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'core.php' );
+
+		/* Load the context-based functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'context.php' );
+
+		/* Load the core framework internationalization functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'i18n.php' );
+	}
+
+	/**
+	 * Loads both the parent and child theme translation files.  If a locale-based functions file exists
+	 * in either the parent or child theme (child overrides parent), it will also be loaded.  All translation 
+	 * and locale functions files are expected to be within the theme's '/languages' folder, but the 
+	 * framework will fall back on the theme root folder if necessary.  Translation files are expected 
+	 * to be prefixed with the template or stylesheet path (example: 'templatename-en_US.mo').
+	 *
+	 * @since 1.2.0
+	 */
+	function i18n() {
+		global $hybrid;
+
+		/* Get parent and child theme textdomains. */
+		$parent_textdomain = hybrid_get_parent_textdomain();
+		$child_textdomain = hybrid_get_child_textdomain();
+
+		/* Load the framework textdomain. */
+		$hybrid->textdomain_loaded['hybrid-core'] = hybrid_load_framework_textdomain( 'hybrid-core' );
+
+		/* Load theme textdomain. */
+		$hybrid->textdomain_loaded[$parent_textdomain] = load_theme_textdomain( $parent_textdomain );
+
+		/* Load child theme textdomain. */
+		$hybrid->textdomain_loaded[$child_textdomain] = is_child_theme() ? load_child_theme_textdomain( $child_textdomain ) : false;
+
+		/* Get the user's locale. */
+		$locale = get_locale();
+
+		/* Locate a locale-specific functions file. */
+		$locale_functions = locate_template( array( "languages/{$locale}.php", "{$locale}.php" ) );
+
+		/* If the locale file exists and is readable, load it. */
+		if ( !empty( $locale_functions ) && is_readable( $locale_functions ) )
+			require_once( $locale_functions );
+	}
+
+	/**
+	 * Removes theme supported features from themes in the case that a user has a plugin installed
+	 * that handles the functionality.
+	 *
+	 * @since 1.3.0
+	 */
+	function theme_support() {
+
+		/* Remove support for the core SEO component if the WP SEO plugin is installed. */
+		if ( defined( 'WPSEO_VERSION' ) )
+			remove_theme_support( 'hybrid-core-seo' );
+
+		/* Remove support for the the Breadcrumb Trail extension if the plugin is installed. */
+		if ( function_exists( 'breadcrumb_trail' ) )
+			remove_theme_support( 'breadcrumb-trail' );
+
+		/* Remove support for the the Cleaner Gallery extension if the plugin is installed. */
+		if ( function_exists( 'cleaner_gallery' ) )
+			remove_theme_support( 'cleaner-gallery' );
+
+		/* Remove support for the the Get the Image extension if the plugin is installed. */
+		if ( function_exists( 'get_the_image' ) )
+			remove_theme_support( 'get-the-image' );
+	}
+
+	/**
+	 * Loads the framework functions.  Many of these functions are needed to properly run the 
+	 * framework.  Some components are only loaded if the theme supports them.
+	 *
+	 * @since 0.7.0
+	 */
+	function functions() {
+
+		/* Load the comments functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'comments.php' );
+
+		/* Load media-related functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'media.php' );
+
+		/* Load the metadata functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'meta.php' );
+
+		/* Load the utility functions. */
+		require_once( trailingslashit( HYBRID_FUNCTIONS ) . 'utility.php' );
+
+		/* Load the theme settings functions if supported. */
+		require_if_theme_supports( 'hybrid-core-theme-settings', trailingslashit( HYBRID_FUNCTIONS ) . 'settings.php' );
+
+		/* Load the customizer functions if theme settings are supported. */
+		require_if_theme_supports( 'hybrid-core-theme-settings', trailingslashit( HYBRID_FUNCTIONS ) . 'customize.php' );
+
+		/* Load the menus functions if supported. */
+		require_if_theme_supports( 'hybrid-core-menus', trailingslashit( HYBRID_FUNCTIONS ) . 'menus.php' );
+
+		/* Load the core SEO component if supported. */
+		require_if_theme_supports( 'hybrid-core-seo', trailingslashit( HYBRID_FUNCTIONS ) . 'core-seo.php' );
+
+		/* Load the shortcodes if supported. */
+		require_if_theme_supports( 'hybrid-core-shortcodes', trailingslashit( HYBRID_FUNCTIONS ) . 'shortcodes.php' );
+
+		/* Load the sidebars if supported. */
+		require_if_theme_supports( 'hybrid-core-sidebars', trailingslashit( HYBRID_FUNCTIONS ) . 'sidebars.php' );
+
+		/* Load the widgets if supported. */
+		require_if_theme_supports( 'hybrid-core-widgets', trailingslashit( HYBRID_FUNCTIONS ) . 'widgets.php' );
+
+		/* Load the template hierarchy if supported. */
+		require_if_theme_supports( 'hybrid-core-template-hierarchy', trailingslashit( HYBRID_FUNCTIONS ) . 'template-hierarchy.php' );
+
+		/* Load the deprecated functions if supported. */
+		require_if_theme_supports( 'hybrid-core-deprecated', trailingslashit( HYBRID_FUNCTIONS ) . 'deprecated.php' );
+	}
+
+	/**
+	 * Load extensions (external projects).  Extensions are projects that are included within the 
+	 * framework but are not a part of it.  They are external projects developed outside of the 
+	 * framework.  Themes must use add_theme_support( $extension ) to use a specific extension 
+	 * within the theme.  This should be declared on 'after_setup_theme' no later than a priority of 11.
+	 *
+	 * @since 0.7.0
+	 */
+	function extensions() {
+
+		/* Load the Breadcrumb Trail extension if supported. */
+		require_if_theme_supports( 'breadcrumb-trail', trailingslashit( HYBRID_EXTENSIONS ) . 'breadcrumb-trail.php' );
+
+		/* Load the Cleaner Gallery extension if supported. */
+		require_if_theme_supports( 'cleaner-gallery', trailingslashit( HYBRID_EXTENSIONS ) . 'cleaner-gallery.php' );
+
+		/* Load the Get the Image extension if supported. */
+		require_if_theme_supports( 'get-the-image', trailingslashit( HYBRID_EXTENSIONS ) . 'get-the-image.php' );
+
+		/* Load the Cleaner Caption extension if supported. */
+		require_if_theme_supports( 'cleaner-caption', trailingslashit( HYBRID_EXTENSIONS ) . 'cleaner-caption.php' );
+
+		/* Load the Custom Field Series extension if supported. */
+		require_if_theme_supports( 'custom-field-series', trailingslashit( HYBRID_EXTENSIONS ) . 'custom-field-series.php' );
+
+		/* Load the Loop Pagination extension if supported. */
+		require_if_theme_supports( 'loop-pagination', trailingslashit( HYBRID_EXTENSIONS ) . 'loop-pagination.php' );
+
+		/* Load the Entry Views extension if supported. */
+		require_if_theme_supports( 'entry-views', trailingslashit( HYBRID_EXTENSIONS ) . 'entry-views.php' );
+
+		/* Load the Theme Layouts extension if supported. */
+		require_if_theme_supports( 'theme-layouts', trailingslashit( HYBRID_EXTENSIONS ) . 'theme-layouts.php' );
+
+		/* Load the Post Stylesheets extension if supported. */
+		require_if_theme_supports( 'post-stylesheets', trailingslashit( HYBRID_EXTENSIONS ) . 'post-stylesheets.php' );
+	}
+
+	/**
+	 * Load admin files for the framework.
+	 *
+	 * @since 0.7.0
+	 */
+	function admin() {
+
+		/* Check if in the WordPress admin. */
+		if ( is_admin() ) {
+
+			/* Load the main admin file. */
+			require_once( trailingslashit( HYBRID_ADMIN ) . 'admin.php' );
+
+			/* Load the theme settings feature if supported. */
+			require_if_theme_supports( 'hybrid-core-theme-settings', trailingslashit( HYBRID_ADMIN ) . 'theme-settings.php' );
+		}
+	}
+
+	/**
+	 * Adds the default framework actions and filters.
+	 *
+	 * @since 1.0.0
+	 */
+	function default_filters() {
+
+		/* Remove bbPress theme compatibility if current theme supports bbPress. */
+		if ( current_theme_supports( 'bbpress' ) )
+			remove_action( 'bbp_init', 'bbp_setup_theme_compat', 8 );
+
+		/* Move the WordPress generator to a better priority. */
+		remove_action( 'wp_head', 'wp_generator' );
+		add_action( 'wp_head', 'wp_generator', 1 );
+
+		/* Add the theme info to the header (lets theme developers give better support). */
+		add_action( 'wp_head', 'hybrid_meta_template', 1 );
+
+		/* Filter the textdomain mofile to allow child themes to load the parent theme translation. */
+		add_filter( 'load_textdomain_mofile', 'hybrid_load_textdomain_mofile', 10, 2 );
+
+		/* Filter text strings for Hybrid Core and extensions so themes can serve up translations. */
+		add_filter( 'gettext', 'hybrid_gettext', 1, 3 );
+		add_filter( 'gettext', 'hybrid_extensions_gettext', 1, 3 );
+
+		/* Make text widgets and term descriptions shortcode aware. */
+		add_filter( 'widget_text', 'do_shortcode' );
+		add_filter( 'term_description', 'do_shortcode' );
+	}
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/path/library/images/pingback.png b/wp-content/themes/path/library/images/pingback.png
new file mode 100644
index 0000000000000000000000000000000000000000..71ab6f75224655d63fe34ee965d152bb90acbabc
Binary files /dev/null and b/wp-content/themes/path/library/images/pingback.png differ
diff --git a/wp-content/themes/path/library/images/trackback.png b/wp-content/themes/path/library/images/trackback.png
new file mode 100644
index 0000000000000000000000000000000000000000..71ab6f75224655d63fe34ee965d152bb90acbabc
Binary files /dev/null and b/wp-content/themes/path/library/images/trackback.png differ
diff --git a/wp-content/themes/path/library/js/drop-downs.dev.js b/wp-content/themes/path/library/js/drop-downs.dev.js
new file mode 100644
index 0000000000000000000000000000000000000000..e172e14a973bb002b1de33eba29f6bc7d641f557
--- /dev/null
+++ b/wp-content/themes/path/library/js/drop-downs.dev.js
@@ -0,0 +1,248 @@
+/*
+ * Superfish v1.4.8 - jQuery menu widget
+ * Copyright (c) 2008 Joel Birch
+ *
+ * Dual licensed under the MIT and GPL licenses:
+ * 	http://www.opensource.org/licenses/mit-license.php
+ * 	http://www.gnu.org/licenses/gpl.html
+ *
+ * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
+ */
+
+;(function($){
+	$.fn.superfish = function(op){
+
+		var sf = $.fn.superfish,
+			c = sf.c,
+			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
+			over = function(){
+				var $$ = $(this), menu = getMenu($$);
+				clearTimeout(menu.sfTimer);
+				$$.showSuperfishUl().siblings().hideSuperfishUl();
+			},
+			out = function(){
+				var $$ = $(this), menu = getMenu($$), o = sf.op;
+				clearTimeout(menu.sfTimer);
+				menu.sfTimer=setTimeout(function(){
+					o.retainPath=($.inArray($$[0],o.$path)>-1);
+					$$.hideSuperfishUl();
+					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
+				},o.delay);	
+			},
+			getMenu = function($menu){
+				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
+				sf.op = sf.o[menu.serial];
+				return menu;
+			},
+			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
+			
+		return this.each(function() {
+			var s = this.serial = sf.o.length;
+			var o = $.extend({},sf.defaults,op);
+			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
+				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
+					.filter('li:has(ul)').removeClass(o.pathClass);
+			});
+			sf.o[s] = sf.op = o;
+			
+			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
+				if (o.autoArrows) addArrow( $('>a:first-child',this) );
+			})
+			.not('.'+c.bcClass)
+				.hideSuperfishUl();
+			
+			var $a = $('a',this);
+			$a.each(function(i){
+				var $li = $a.eq(i).parents('li');
+				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
+			});
+			o.onInit.call(this);
+			
+		}).each(function() {
+			var menuClasses = [c.menuClass];
+			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
+			$(this).addClass(menuClasses.join(' '));
+		});
+	};
+
+	var sf = $.fn.superfish;
+	sf.o = [];
+	sf.op = {};
+	sf.IE7fix = function(){
+		var o = sf.op;
+		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
+			this.toggleClass(sf.c.shadowClass+'-off');
+		};
+	sf.c = {
+		bcClass     : 'sf-breadcrumb',
+		menuClass   : 'sf-js-enabled',
+		anchorClass : 'sf-with-ul',
+		arrowClass  : 'sf-sub-indicator',
+		shadowClass : 'sf-shadow'
+	};
+	sf.defaults = {
+		hoverClass	: 'sfHover',
+		pathClass	: 'overideThisToUse',
+		pathLevels	: 1,
+		delay		: 800,
+		animation	: {opacity:'show'},
+		speed		: 'normal',
+		autoArrows	: true,
+		dropShadows : true,
+		disableHI	: false,		// true disables hoverIntent detection
+		onInit		: function(){}, // callback functions
+		onBeforeShow: function(){},
+		onShow		: function(){},
+		onHide		: function(){}
+	};
+	$.fn.extend({
+		hideSuperfishUl : function(){
+			var o = sf.op,
+				not = (o.retainPath===true) ? o.$path : '';
+			o.retainPath = false;
+			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
+					.find('>ul').hide().css('visibility','hidden');
+			o.onHide.call($ul);
+			return this;
+		},
+		showSuperfishUl : function(){
+			var o = sf.op,
+				sh = sf.c.shadowClass+'-off',
+				$ul = this.addClass(o.hoverClass)
+					.find('>ul:hidden').css('visibility','visible');
+			sf.IE7fix.call($ul);
+			o.onBeforeShow.call($ul);
+			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
+			return this;
+		}
+	});
+
+})(jQuery);
+
+/*
+ * Supersubs v0.2b - jQuery plugin
+ * Copyright (c) 2008 Joel Birch
+ *
+ * Dual licensed under the MIT and GPL licenses:
+ * 	http://www.opensource.org/licenses/mit-license.php
+ * 	http://www.gnu.org/licenses/gpl.html
+ *
+ *
+ * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
+ * their longest list item children. If you use this, please expect bugs and report them
+ * to the jQuery Google Group with the word 'Superfish' in the subject line.
+ *
+ */
+
+;(function($){ // $ will refer to jQuery within this closure
+
+	$.fn.supersubs = function(options){
+		var opts = $.extend({}, $.fn.supersubs.defaults, options);
+		// return original object to support chaining
+		return this.each(function() {
+			// cache selections
+			var $$ = $(this);
+			// support metadata
+			var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
+			// get the font size of menu.
+			// .css('fontSize') returns various results cross-browser, so measure an em dash instead
+			var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
+				'padding' : 0,
+				'position' : 'absolute',
+				'top' : '-999em',
+				'width' : 'auto'
+			}).appendTo($$).width(); //clientWidth is faster, but was incorrect here
+			// remove em dash
+			$('#menu-fontsize').remove();
+			// cache all ul elements
+			$ULs = $$.find('ul');
+			// loop through each ul in menu
+			$ULs.each(function(i) {	
+				// cache this ul
+				var $ul = $ULs.eq(i);
+				// get all (li) children of this ul
+				var $LIs = $ul.children();
+				// get all anchor grand-children
+				var $As = $LIs.children('a');
+				// force content to one line and save current float property
+				var liFloat = $LIs.css('white-space','nowrap').css('float');
+				// remove width restrictions and floats so elements remain vertically stacked
+				var emWidth = $ul.add($LIs).add($As).css({
+					'float' : 'none',
+					'width'	: 'auto'
+				})
+				// this ul will now be shrink-wrapped to longest li due to position:absolute
+				// so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
+				.end().end()[0].clientWidth / fontsize;
+				// add more width to ensure lines don't turn over at certain sizes in various browsers
+				emWidth += o.extraWidth;
+				// restrict to at least minWidth and at most maxWidth
+				if (emWidth > o.maxWidth)		{ emWidth = o.maxWidth; }
+				else if (emWidth < o.minWidth)	{ emWidth = o.minWidth; }
+				emWidth += 'em';
+				// set ul to width in ems
+				$ul.css('width',emWidth);
+				// restore li floats to avoid IE bugs
+				// set li width to full width of this ul
+				// revert white-space to normal
+				$LIs.css({
+					'float' : liFloat,
+					'width' : '100%',
+					'white-space' : 'normal'
+				})
+				// update offset position of descendant ul to reflect new width of parent
+				.each(function(){
+					var $childUl = $('>ul',this);
+					var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
+					$childUl.css(offsetDirection,emWidth);
+				});
+			});
+			
+		});
+	};
+	// expose defaults
+	$.fn.supersubs.defaults = {
+		minWidth		: 9,		// requires em unit.
+		maxWidth		: 25,		// requires em unit.
+		extraWidth		: 0			// extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
+	};
+	
+})(jQuery); // plugin code ends
+
+/**
+ * Hybrid drop-downs.
+ * @author Justin Tadlock
+ * @license http://www.gnu.org/licenses/gpl.html
+ * @copyright 2008 - 2012 Justin Tadlock
+ */
+$j = jQuery.noConflict();
+
+$j(document).ready(
+	function() {
+
+		/* Drop-down controls. */
+		$j('div.menu ul:first-child').supersubs( {
+			minWidth: 12,
+			maxWidth: 27,
+			extraWidth: 1
+			}
+		).superfish( {
+			delay: 100,
+			animation: { opacity: 'show', height: 'show' },
+			dropShadows: false
+			}
+		);
+
+		$j( 'nav.menu ul:first-child' ).supersubs( {
+			minWidth: 12,
+			maxWidth: 27,
+			extraWidth: 1
+			}
+		).superfish( {
+			delay: 100,
+			animation: { opacity: 'show', height: 'show' },
+			dropShadows: false
+			}
+		);
+	}
+);
\ No newline at end of file
diff --git a/wp-content/themes/path/library/js/drop-downs.js b/wp-content/themes/path/library/js/drop-downs.js
new file mode 100644
index 0000000000000000000000000000000000000000..24f6ccf2d8f0e031aa9138bad45a7ba151d1f616
--- /dev/null
+++ b/wp-content/themes/path/library/js/drop-downs.js
@@ -0,0 +1 @@
+;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl()},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path)}},o.delay)},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone())};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass)});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this))}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li)}).blur(function(){out.call($li)})});o.onInit.call(this)}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '))})};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)this.toggleClass(sf.c.shadowClass+'-off')};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul)});return this}})})(jQuery);(function($){$.fn.supersubs=function(options){var opts=$.extend({},$.fn.supersubs.defaults,options);return this.each(function(){var $$=$(this);var o=$.meta?$.extend({},opts,$$.data()):opts;var fontsize=$('<li id="menu-fontsize">&#8212;</li>').css({'padding':0,'position':'absolute','top':'-999em','width':'auto'}).appendTo($$).width();$('#menu-fontsize').remove();$ULs=$$.find('ul');$ULs.each(function(i){var $ul=$ULs.eq(i);var $LIs=$ul.children();var $As=$LIs.children('a');var liFloat=$LIs.css('white-space','nowrap').css('float');var emWidth=$ul.add($LIs).add($As).css({'float':'none','width':'auto'}).end().end()[0].clientWidth/fontsize;emWidth+=o.extraWidth;if(emWidth>o.maxWidth){emWidth=o.maxWidth}else if(emWidth<o.minWidth){emWidth=o.minWidth}emWidth+='em';$ul.css('width',emWidth);$LIs.css({'float':liFloat,'width':'100%','white-space':'normal'}).each(function(){var $childUl=$('>ul',this);var offsetDirection=$childUl.css('left')!==undefined?'left':'right';$childUl.css(offsetDirection,emWidth)})})})};$.fn.supersubs.defaults={minWidth:9,maxWidth:25,extraWidth:0}})(jQuery);$j=jQuery.noConflict();$j(document).ready(function(){$j('div.menu ul:first-child').supersubs({minWidth:12,maxWidth:27,extraWidth:1}).superfish({delay:100,animation:{opacity:'show',height:'show'},dropShadows:false});$j('nav.menu ul:first-child').supersubs({minWidth:12,maxWidth:27,extraWidth:1}).superfish({delay:100,animation:{opacity:'show',height:'show'},dropShadows:false})});
\ No newline at end of file
diff --git a/wp-content/themes/path/library/js/nav-bar.dev.js b/wp-content/themes/path/library/js/nav-bar.dev.js
new file mode 100644
index 0000000000000000000000000000000000000000..73e6f4564b2088f62d5525dce54d5827a63952fd
--- /dev/null
+++ b/wp-content/themes/path/library/js/nav-bar.dev.js
@@ -0,0 +1,153 @@
+/*
+ * Superfish v1.4.8 - jQuery menu widget
+ * Copyright (c) 2008 Joel Birch
+ *
+ * Dual licensed under the MIT and GPL licenses:
+ * 	http://www.opensource.org/licenses/mit-license.php
+ * 	http://www.gnu.org/licenses/gpl.html
+ *
+ * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
+ */
+
+;(function($){
+	$.fn.superfish = function(op){
+
+		var sf = $.fn.superfish,
+			c = sf.c,
+			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
+			over = function(){
+				var $$ = $(this), menu = getMenu($$);
+				clearTimeout(menu.sfTimer);
+				$$.showSuperfishUl().siblings().hideSuperfishUl();
+			},
+			out = function(){
+				var $$ = $(this), menu = getMenu($$), o = sf.op;
+				clearTimeout(menu.sfTimer);
+				menu.sfTimer=setTimeout(function(){
+					o.retainPath=($.inArray($$[0],o.$path)>-1);
+					$$.hideSuperfishUl();
+					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
+				},o.delay);	
+			},
+			getMenu = function($menu){
+				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
+				sf.op = sf.o[menu.serial];
+				return menu;
+			},
+			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
+			
+		return this.each(function() {
+			var s = this.serial = sf.o.length;
+			var o = $.extend({},sf.defaults,op);
+			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
+				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
+					.filter('li:has(ul)').removeClass(o.pathClass);
+			});
+			sf.o[s] = sf.op = o;
+			
+			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
+				if (o.autoArrows) addArrow( $('>a:first-child',this) );
+			})
+			.not('.'+c.bcClass)
+				.hideSuperfishUl();
+			
+			var $a = $('a',this);
+			$a.each(function(i){
+				var $li = $a.eq(i).parents('li');
+				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
+			});
+			o.onInit.call(this);
+			
+		}).each(function() {
+			var menuClasses = [c.menuClass];
+			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
+			$(this).addClass(menuClasses.join(' '));
+		});
+	};
+
+	var sf = $.fn.superfish;
+	sf.o = [];
+	sf.op = {};
+	sf.IE7fix = function(){
+		var o = sf.op;
+		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
+			this.toggleClass(sf.c.shadowClass+'-off');
+		};
+	sf.c = {
+		bcClass     : 'sf-breadcrumb',
+		menuClass   : 'sf-js-enabled',
+		anchorClass : 'sf-with-ul',
+		arrowClass  : 'sf-sub-indicator',
+		shadowClass : 'sf-shadow'
+	};
+	sf.defaults = {
+		hoverClass	: 'sfHover',
+		pathClass	: 'overideThisToUse',
+		pathLevels	: 1,
+		delay		: 800,
+		animation	: {opacity:'show'},
+		speed		: 'normal',
+		autoArrows	: true,
+		dropShadows : true,
+		disableHI	: false,		// true disables hoverIntent detection
+		onInit		: function(){}, // callback functions
+		onBeforeShow: function(){},
+		onShow		: function(){},
+		onHide		: function(){}
+	};
+	$.fn.extend({
+		hideSuperfishUl : function(){
+			var o = sf.op,
+				not = (o.retainPath===true) ? o.$path : '';
+			o.retainPath = false;
+			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
+					.find('>ul').hide().css('visibility','hidden');
+			o.onHide.call($ul);
+			return this;
+		},
+		showSuperfishUl : function(){
+			var o = sf.op,
+				sh = sf.c.shadowClass+'-off',
+				$ul = this.addClass(o.hoverClass)
+					.find('>ul:hidden').css('visibility','visible');
+			sf.IE7fix.call($ul);
+			o.onBeforeShow.call($ul);
+			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
+			return this;
+		}
+	});
+
+})(jQuery);
+
+/**
+ * Hybrid drop-downs.
+ * @author Justin Tadlock
+ * @license http://www.gnu.org/licenses/gpl.html
+ * @copyright 2008 - 2012 Justin Tadlock
+ */
+$j = jQuery.noConflict();
+
+$j(document).ready(
+	function() {
+
+		$j( 'div.menu ul li.current-menu-ancestor' ).addClass( 'current-menu-item' );
+		$j( 'nav.menu ul li.current-menu-ancestor' ).addClass( 'current-menu-item' );
+
+		/* Drop-down controls. */
+		$j('div.menu ul:first-child').superfish( {
+			pathClass:  'current-menu-item',
+			delay: 100,
+			animation: { opacity: 'show', height: 'show' },
+			dropShadows: false
+			}
+		);
+
+		$j( 'nav.menu ul:first-child' ).superfish( {
+			pathClass:  'current-menu-item',
+			delay: 100,
+			animation: { opacity: 'show', height: 'show' },
+			dropShadows: false
+			}
+		);
+	}
+);
\ No newline at end of file
diff --git a/wp-content/themes/path/library/js/nav-bar.js b/wp-content/themes/path/library/js/nav-bar.js
new file mode 100644
index 0000000000000000000000000000000000000000..dca4ae8cfad257f7bf1616b832cb50bfb4e73643
--- /dev/null
+++ b/wp-content/themes/path/library/js/nav-bar.js
@@ -0,0 +1 @@
+;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl()},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path)}},o.delay)},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone())};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass)});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this))}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li)}).blur(function(){out.call($li)})});o.onInit.call(this)}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '))})};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)this.toggleClass(sf.c.shadowClass+'-off')};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul)});return this}})})(jQuery);$j=jQuery.noConflict();$j(document).ready(function(){$j('div.menu ul li.current-menu-ancestor').addClass('current-menu-item');$j('nav.menu ul li.current-menu-ancestor').addClass('current-menu-item');$j('div.menu ul:first-child').superfish({pathClass:'current-menu-item',delay:100,animation:{opacity:'show',height:'show'},dropShadows:false});$j('nav.menu ul:first-child').superfish({pathClass:'current-menu-item',delay:100,animation:{opacity:'show',height:'show'},dropShadows:false})});
\ No newline at end of file
diff --git a/wp-content/themes/path/library/license.txt b/wp-content/themes/path/library/license.txt
new file mode 100644
index 0000000000000000000000000000000000000000..63e41a44cffe44662260b7b902e4b065b201b515
--- /dev/null
+++ b/wp-content/themes/path/library/license.txt
@@ -0,0 +1,339 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
\ No newline at end of file
diff --git a/wp-content/themes/path/loop-error.php b/wp-content/themes/path/loop-error.php
new file mode 100644
index 0000000000000000000000000000000000000000..af564b851f4d1dee8ab72ac7516df9172186b640
--- /dev/null
+++ b/wp-content/themes/path/loop-error.php
@@ -0,0 +1,20 @@
+<?php
+/**
+ * Loop Error Template
+ *
+ * If no post are found, display error message.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+	<div id="post-0" class="<?php hybrid_entry_class(); ?>">
+
+		<div class="entry-content">
+
+			<p><?php _e( 'Apologies, but no entries were found.', 'path' ); ?></p>
+
+		</div><!-- .entry-content -->
+
+	</div><!-- .hentry .error -->
\ No newline at end of file
diff --git a/wp-content/themes/path/loop-meta.php b/wp-content/themes/path/loop-meta.php
new file mode 100644
index 0000000000000000000000000000000000000000..36113064f5944e551d78ec3c68b288e60038084a
--- /dev/null
+++ b/wp-content/themes/path/loop-meta.php
@@ -0,0 +1,203 @@
+<?php
+/**
+ * Loop Meta Template
+ *
+ * Displays information at the top of the page about archive and search results when viewing those pages.  
+ * It is not shown on the front page or singular views.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+
+	<?php if ( is_home() && !is_front_page() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php echo get_post_field( 'post_title', get_queried_object_id() ); ?></h1>
+
+			<div class="loop-description">
+				<?php echo apply_filters( 'the_excerpt', get_post_field( 'post_excerpt', get_queried_object_id() ) ); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_category() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php single_cat_title(); ?></h1>
+
+			<div class="loop-description">
+				<?php echo category_description(); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_tag() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php single_tag_title(); ?></h1>
+
+			<div class="loop-description">
+				<?php echo tag_description(); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_tax() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php single_term_title(); ?></h1>
+
+			<div class="loop-description">
+				<?php echo term_description( '', get_query_var( 'taxonomy' ) ); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_author() ) : ?>
+
+		<?php $user_id = get_query_var( 'author' ); ?>
+
+		<div id="hcard-<?php echo esc_attr( get_the_author_meta( 'user_nicename', $user_id ) ); ?>" class="loop-meta vcard">
+
+			<h1 class="loop-title fn n"><?php the_author_meta( 'display_name', $user_id ); ?></h1>
+			
+			<?php echo get_avatar( get_the_author_meta( 'user_email', $user_id ), '66' ); ?>
+
+			<div class="loop-description">
+				<?php echo wpautop( get_the_author_meta( 'description', $user_id ) ); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_search() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php echo esc_attr( get_search_query() ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php printf( __( 'You are browsing the search results for "%s"', 'path' ), esc_attr( get_search_query() ) ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_date() ) : ?>
+
+		<div class="loop-meta">
+			<h1 class="loop-title"><?php _e( 'Archives by date', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php _e( 'You are browsing the site archives by date.', 'path' ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_post_type_archive() ) : ?>
+
+		<?php $post_type = get_post_type_object( get_query_var( 'post_type' ) ); ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php post_type_archive_title(); ?></h1>
+
+			<div class="loop-description">
+				<?php if ( !empty( $post_type->description ) ) echo wpautop( $post_type->description ); ?>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php elseif ( is_archive() ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Archives', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php _e( 'You are browsing the site archives.', 'path' ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+		
+	<?php elseif ( is_page_template( 'page-templates/most-popular.php' ) ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Most popular', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php _e( 'You are browsing all time most viewed articles.', 'path' ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+		
+	<?php elseif ( is_page_template( 'page-templates/most-popular-by-year.php' ) ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Most popular by year', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php printf( __( 'You are browsing most viewed articles in the current year %d.', 'path' ), date( 'Y' ) ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+		
+	<?php elseif ( is_page_template( 'page-templates/most-popular-by-month.php' ) ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Most popular by month', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php printf( __( 'You are browsing most viewed articles in current month (%1$s) and year (%2$s).', 'path' ), date( 'm' ), date( 'Y' ) ); ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+		
+	<?php elseif ( is_page_template( 'page-templates/most-popular-by-comments.php' ) ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Most popular by comments', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php _e( 'You are browsing most viewed articles by comments.', 'path' ) ; ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+		
+	<?php elseif ( is_page_template( 'page-templates/most-popular-last-30-days.php' ) ) : ?>
+
+		<div class="loop-meta">
+
+			<h1 class="loop-title"><?php _e( 'Most popular articles in the last 30 days', 'path' ); ?></h1>
+
+			<div class="loop-description">
+				<p>
+				<?php _e( 'You are browsing most viewed articles in the last 30 days.', 'path' ) ; ?>
+				</p>
+			</div><!-- .loop-description -->
+
+		</div><!-- .loop-meta -->
+
+	<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/loop-nav.php b/wp-content/themes/path/loop-nav.php
new file mode 100644
index 0000000000000000000000000000000000000000..b1c7680786ee1069614dba1f5fccbe6bc63c5388
--- /dev/null
+++ b/wp-content/themes/path/loop-nav.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Loop Nav Template
+ *
+ * This template is used to show your your next/previous post links on singular pages and
+ * the next/previous posts links on the home/posts page and archive pages.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+
+	<?php if ( is_attachment() ) : ?>
+
+		<div class="loop-nav">
+			<?php previous_post_link( '%link', '<span class="previous">' . __( '<span class="meta-nav">&larr;</span> Return to entry', 'path' ) . '</span>' ); ?>
+		</div><!-- .loop-nav -->
+
+	<?php elseif ( is_singular( 'post' ) ) : ?>
+
+		<div class="loop-nav">
+			<?php previous_post_link( '%link', '<span class="previous">' . __( '<span class="meta-nav">&larr;</span> Previous', 'path' ) . '</span>' ); ?>
+			<?php next_post_link( '%link', '<span class="next">' . __( 'Next <span class="meta-nav">&rarr;</span>', 'path' ) . '</span>' ); ?>
+		</div><!-- .loop-nav -->
+
+	<?php elseif ( !is_singular() && current_theme_supports( 'loop-pagination' ) ) : loop_pagination( array( 'prev_text' => __( '<span class="meta-nav">&larr;</span> Previous', 'path' ), 'next_text' => __( 'Next <span class="meta-nav">&rarr;</span>', 'path' ) ) ); ?>
+
+	<?php elseif ( !is_singular() && $nav = get_posts_nav_link( array( 'sep' => '', 'prelabel' => '<span class="previous">' . __( '<span class="meta-nav">&larr;</span> Previous', 'path' ) . '</span>', 'nxtlabel' => '<span class="next">' . __( 'Next <span class="meta-nav">&rarr;</span>', 'path' ) . '</span>' ) ) ) : ?>
+
+		<div class="loop-nav">
+			<?php echo $nav; ?>
+		</div><!-- .loop-nav -->
+
+	<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/menu-primary-mobile.php b/wp-content/themes/path/menu-primary-mobile.php
new file mode 100644
index 0000000000000000000000000000000000000000..c7809bd93c261d8211bb98878b40c09c84ea827f
--- /dev/null
+++ b/wp-content/themes/path/menu-primary-mobile.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Primary Menu Mobile Template
+ *
+ * Displays the Primary Menu Mobile if it has active menu items.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+ if ( has_nav_menu( 'primary' ) ) : ?>
+ 
+	<?php do_atomic( 'before_menu_primary_mobile' ); // path_before_menu_primary_mobile ?>
+ 
+		<nav id="menu-primary-mobile" class="menu-container">
+
+			<div class="wrap">
+			
+				<div id="search-primary-mobile"><?php get_search_form(); // Loads the searchform.php template. ?></div>
+				
+				<?php do_atomic( 'open_menu_primary_mobile' ); // path_open_menu_primary_mobile ?>
+				
+				<h3 class="menu-primary-mobile-title"><?php _e( 'Primary Menu', 'path' ); ?></h3>
+					
+				<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'menu-mobile', 'menu_class' => '', 'menu_id' => 'menu-primary-mobile-items', 'fallback_cb' => '' ) ); ?>
+				
+				<?php do_atomic( 'close_menu_primary_mobile' ); // path_close_menu_primary_mobile ?>
+						
+			</div><!-- .wrap -->
+
+		</nav><!-- #menu-primary-mobile .menu-container -->
+	
+	<?php do_atomic( 'after_menu_primary_mobile' ); // path_after_menu_primary_mobile ?>
+	
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/menu-primary.php b/wp-content/themes/path/menu-primary.php
new file mode 100644
index 0000000000000000000000000000000000000000..7378036c572dbb34175e8e184c5b7ed2dd8ad211
--- /dev/null
+++ b/wp-content/themes/path/menu-primary.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Primary Menu Template
+ *
+ * Displays the Primary Menu if it has active menu items.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+ if ( has_nav_menu( 'primary' ) ) : ?>
+ 
+	<?php do_atomic( 'before_menu_primary' ); // path_before_menu_primary ?>
+	
+	<nav id="menu-primary-title" class="nav-anchors">
+	
+		<div class="wrap">
+				
+			<a id="menu-primary-anchor" class="menu-primary-anchor" title="<?php _e( 'Primary Mobile Menu', 'path' ); ?>" href="#menu-primary-mobile"><?php _e( 'Primary Menu', 'path' ); ?></a>
+			
+			<a id="search-primary-anchor" class="search-primary-anchor" title="<?php _e( 'Search', 'path' ); ?>" href="#search-primary-mobile"><?php _e( 'Search', 'path' ); ?></a>
+			
+		</div><!-- .wrap -->
+	
+	</nav><!-- #menu-primary-title -->
+ 
+	<nav id="menu-primary" class="menu-container">
+
+		<div class="wrap">
+				
+			<?php do_atomic( 'open_menu_primary' ); // path_open_menu_primary ?>	
+					
+			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'menu', 'menu_class' => '', 'menu_id' => 'menu-primary-items', 'fallback_cb' => '' ) ); ?>
+				
+			<?php do_atomic( 'close_menu_primary' ); // path_close_menu_primary ?>
+				
+			<?php if ( !is_admin_bar_showing() ) get_search_form(); // Loads the searchform.php template. ?>
+						
+		</div><!-- .wrap -->
+
+	</nav><!-- #menu-primary .menu-container -->
+	
+	<?php do_atomic( 'after_menu_primary' ); // path_after_menu_primary ?>
+	
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/menu-secondary-mobile.php b/wp-content/themes/path/menu-secondary-mobile.php
new file mode 100644
index 0000000000000000000000000000000000000000..85c5bdacab143e9245f53ded2b8819c4eddd70d2
--- /dev/null
+++ b/wp-content/themes/path/menu-secondary-mobile.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Secondary Menu Mobile Template
+ *
+ * Displays the Secondary Menu Mobile if it has active menu items.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+ if ( has_nav_menu( 'secondary' ) ) : ?>
+ 
+	<?php do_atomic( 'before_menu_secondary_mobile' ); // path_before_menu_secondary_mobile ?>
+ 
+		<nav id="menu-secondary-mobile" class="menu-container">
+
+			<div class="wrap">
+				
+				<?php do_atomic( 'open_menu_secondary_mobile' ); // path_open_menu_secondary_mobile ?>
+				
+				<h3 class="menu-secondary-mobile-title"><?php _e( 'Secondary Menu', 'path' ); ?></h3>
+					
+				<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container_class' => 'menu-mobile', 'menu_class' => '', 'menu_id' => 'menu-secondary-mobile-items', 'fallback_cb' => '' ) ); ?>
+				
+				<?php do_atomic( 'close_menu_secondary_mobile' ); // path_close_menu_secondary_mobile ?>
+						
+			</div><!-- .wrap -->
+
+		</nav><!-- #menu-secondary-mobile .menu-container -->
+	
+	<?php do_atomic( 'after_menu_secondary_mobile' ); // path_after_menu_secondary_mobile ?>
+	
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/menu-secondary.php b/wp-content/themes/path/menu-secondary.php
new file mode 100644
index 0000000000000000000000000000000000000000..2dbd8ab1e26036a2235dc576ff190ad6fecf7f17
--- /dev/null
+++ b/wp-content/themes/path/menu-secondary.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Secondary Menu Template
+ *
+ * Displays the Secondary Menu if it has active menu items.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+ 
+ if ( has_nav_menu( 'secondary' ) ) : ?>
+ 
+	<?php do_atomic( 'before_menu_secondary' ); // path_before_menu_secondary ?>
+	
+	<nav id="menu-secondary-title" class="nav-anchors">
+	
+		<div class="wrap">
+		
+			<a id="menu-secondary-anchor" class="menu-secondary-anchor" title="<?php _e( 'Secondary Mobile Menu', 'path' ); ?>" href="#menu-secondary-mobile"><?php _e( 'Secondary Menu', 'path' ); ?></a>
+
+		</div><!-- .wrap -->
+	
+	</nav><!-- #menu-secondary-title -->
+ 
+	<nav id="menu-secondary" class="menu-container">
+
+		<div class="wrap">
+				
+			<?php do_atomic( 'open_menu_secondary' ); // path_open_menu_secondary ?>
+					
+			<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container_class' => 'menu', 'menu_class' => '', 'menu_id' => 'menu-secondary-items', 'fallback_cb' => '' ) ); ?>
+				
+			<?php do_atomic( 'close_menu_secondary' ); // path_close_menu_secondary ?>
+				
+		</div><!-- .wrap -->
+
+	</nav><!-- #menu-secondary .menu-container -->
+	
+	<?php do_atomic( 'after_menu_secondary' ); // path_after_menu_secondary ?>
+	
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/menu-subsidiary.php b/wp-content/themes/path/menu-subsidiary.php
new file mode 100644
index 0000000000000000000000000000000000000000..b2cddf6ada19d08559d2b8351ccfec4ccce2f2e2
--- /dev/null
+++ b/wp-content/themes/path/menu-subsidiary.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Subsidiary Menu Template
+ *
+ * Displays the Subsidiary Menu if it has active menu items.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( has_nav_menu( 'subsidiary' ) ) : ?>
+
+	<?php do_atomic( 'before_menu_subsidiary' ); // path_before_menu_subsidiary ?>
+
+	<nav id="menu-subsidiary" class="menu-container">
+		
+		<div class="wrap">
+
+			<?php do_atomic( 'open_menu_subsidiary' ); // path_open_menu_subsidiary ?>
+
+			<?php wp_nav_menu( array( 'theme_location' => 'subsidiary', 'container_class' => 'menu', 'menu_class' => '', 'menu_id' => 'menu-subsidiary-items', 'depth' => 1, 'fallback_cb' => '' ) ); ?>
+
+			<?php do_atomic( 'close_menu_subsidiary' ); // path_close_menu_subsidiary ?>
+		
+		</div><!-- .wrap -->
+
+	</nav><!-- #menu-subsidiary .menu-container -->
+
+	<?php do_atomic( 'after_menu_subsidiary' ); // path_after_menu_subsidiary ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/archives.php b/wp-content/themes/path/page-templates/archives.php
new file mode 100644
index 0000000000000000000000000000000000000000..5064c17794f0b05c0ade4d4f56ef678d2ebe4299
--- /dev/null
+++ b/wp-content/themes/path/page-templates/archives.php
@@ -0,0 +1,98 @@
+<?php
+/**
+ * Template Name: Archives
+ *
+ * Displays blog archives.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php if ( have_posts() ) : ?>
+
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<header class="entry-header">
+							<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+						</header><!-- .entry-header -->
+						
+							<div class="entry-content">
+								
+								<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'path' ) ); ?>
+								
+								<?php $path_published_posts = wp_count_posts(); // How many posts have been published. ?>
+								
+								<p class="path-published-posts"><?php printf( __( 'There are %1$s posts published.', 'path' ), $path_published_posts->publish ); ?></p>
+		
+								<?php if ( function_exists( 'smart_archives' ) ) : smart_archives(); /* If Smart Archives Reloaded Plugin is active, use it. Else basic stuff. @link http://wordpress.org/extend/plugins/smart-archives-reloaded/ */ ?>
+								
+								<?php else : ?>
+	
+									<h2><?php _e( 'Archives by category', 'path' ); ?></h2>
+	
+									<ul class="xoxo category-archives">
+									
+										<?php wp_list_categories( array( 'feed' => __( 'RSS', 'path' ), 'show_count' => true, 'use_desc_for_title' => false, 'title_li' => false ) ); ?>
+									
+									</ul><!-- .xoxo .category-archives -->
+	
+									<h2><?php _e( 'Archives by month', 'path' ); ?></h2>
+	
+									<ul class="xoxo monthly-archives">
+									
+										<?php wp_get_archives( array( 'show_post_count' => true, 'type' => 'monthly' ) ); ?>
+									
+									</ul><!-- .xoxo .monthly-archives -->
+								
+								<?php endif; ?>
+	
+								<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+								
+							</div><!-- .entry-content -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">[entry-edit-link]</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/authors.php b/wp-content/themes/path/page-templates/authors.php
new file mode 100644
index 0000000000000000000000000000000000000000..f30c1b516a7ade516824a4fb9acdac5e6d0c731c
--- /dev/null
+++ b/wp-content/themes/path/page-templates/authors.php
@@ -0,0 +1,90 @@
+<?php
+/**
+ * Template Name: Authors
+ *
+ * Displays authors who have capability to edit or publish posts or pages.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php if ( have_posts() ) : ?>
+
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<header class="entry-header">
+							<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+						</header><!-- .entry-header -->
+						
+						<div class="entry-content">
+							<?php the_content(); ?>
+						</div><!-- .entry-content -->
+
+						<?php $users = get_users(); ?>
+
+						<?php foreach ( $users as $author ) : ?>
+
+							<?php $user = new WP_User( $author->ID ); ?>
+
+								<?php if ( $user->has_cap( 'publish_posts' ) || $user->has_cap( 'edit_posts' ) || $user->has_cap( 'publish_pages' ) || $user->has_cap( 'edit_pages' ) ) : ?>
+
+									<div id="hcard-<?php echo str_replace( ' ', '-', get_the_author_meta( 'user_nicename', $author->ID ) ); ?>" class="author-profile vcard clear">
+
+										<a href="<?php echo get_author_posts_url( $author->ID ); ?>" title="<?php the_author_meta( 'display_name', $author->ID ); ?>">
+											<?php echo get_avatar( get_the_author_meta( 'user_email', $author->ID ), '100', '', get_the_author_meta( 'display_name', $author->ID ) ); ?>
+										</a>
+										
+										<h2 class="author-name fn n">
+											<a href="<?php echo get_author_posts_url( $author->ID ); ?>" title="<?php the_author_meta( 'display_name', $author->ID ); ?>"><?php the_author_meta( 'display_name', $author->ID ); ?></a>
+										</h2>
+										
+										<p class="author-bio">
+											<?php the_author_meta( 'description', $author->ID ); ?>
+										</p><!-- .author-bio -->
+
+									</div><!-- .author-profile .vcard -->
+
+								<?php endif; ?>
+
+						<?php endforeach; ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/most-popular-by-comments.php b/wp-content/themes/path/page-templates/most-popular-by-comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..8908699ee92a8f6900c1eb4b50df45d996d34654
--- /dev/null
+++ b/wp-content/themes/path/page-templates/most-popular-by-comments.php
@@ -0,0 +1,91 @@
+<?php
+/**
+ * Template Name: Most Popular by comments
+ *
+ * Displays most popular posts by comments.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop for most commented articles. entry-views extension is used. */
+						
+			$args = array (
+				'ignore_sticky_posts' => true,
+				'orderby' => 'comment_count',
+				'posts_per_page' => get_option( 'posts_per_page' ),
+				'paged' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 )
+			);
+			
+			$wp_query = new WP_Query( $args );
+			
+			?>
+			
+			<?php if ( $wp_query->have_posts() ) : ?>
+
+				<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) );?>
+
+						<header class="entry-header">
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</header><!-- .entry-header -->
+
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Views [entry-views] [entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+		
+		<?php wp_reset_postdata(); // Reset Query ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/most-popular-by-month.php b/wp-content/themes/path/page-templates/most-popular-by-month.php
new file mode 100644
index 0000000000000000000000000000000000000000..dbb2d3d5f1297e6a9f8050a93f097610594555c3
--- /dev/null
+++ b/wp-content/themes/path/page-templates/most-popular-by-month.php
@@ -0,0 +1,94 @@
+<?php
+/**
+ * Template Name: Most Popular by month
+ *
+ * Displays most popular posts in current month.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop for most viewed articles in current month. entry-views extension is used. */
+						
+			$args = array (
+				'ignore_sticky_posts' => true,
+				'meta_key' => 'Views',
+				'orderby' => 'meta_value_num',
+				'monthnum' => date( 'm' ),
+				'year' => date( 'Y' ),
+				'posts_per_page' => get_option( 'posts_per_page' ),
+				'paged' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 )
+			);
+			
+			$wp_query = new WP_Query( $args );
+			
+			?>
+			
+			<?php if ( $wp_query->have_posts() ) : ?>
+
+				<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) );?>
+
+						<header class="entry-header">
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</header><!-- .entry-header -->
+						
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Views [entry-views] [entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+		
+		<?php wp_reset_postdata(); // Reset Query ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/most-popular-by-year.php b/wp-content/themes/path/page-templates/most-popular-by-year.php
new file mode 100644
index 0000000000000000000000000000000000000000..ddb07455372f47bbfd0dbd9708cd8bfbf243c985
--- /dev/null
+++ b/wp-content/themes/path/page-templates/most-popular-by-year.php
@@ -0,0 +1,93 @@
+<?php
+/**
+ * Template Name: Most Popular by year
+ *
+ * Displays most popular posts in current year.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop for most viewed articles in current year. entry-views extension is used. */
+						
+			$args = array (
+				'ignore_sticky_posts' => true,
+				'meta_key' => 'Views',
+				'orderby' => 'meta_value_num',
+				'year' => date( 'Y' ),
+				'posts_per_page' => get_option( 'posts_per_page' ),
+				'paged' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 )
+			);
+			
+			$wp_query = new WP_Query( $args );
+			
+			?>
+			
+			<?php if ( $wp_query->have_posts() ) : ?>
+
+				<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) );?>
+
+						<header class="entry-header">
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</header><!-- .entry-header -->
+						
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Views [entry-views] [entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+		
+		<?php wp_reset_postdata(); // Reset Query ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/most-popular-last-30-days.php b/wp-content/themes/path/page-templates/most-popular-last-30-days.php
new file mode 100644
index 0000000000000000000000000000000000000000..01e880c371a1aa119a355ef5448ab5fae63c76e3
--- /dev/null
+++ b/wp-content/themes/path/page-templates/most-popular-last-30-days.php
@@ -0,0 +1,95 @@
+<?php
+/**
+ * Template Name: Most Popular last 30 days
+ *
+ * Displays most popular posts in last 30 days.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop for most viewed articles. entry-views extension is used. */
+						
+			$args = array (
+				'ignore_sticky_posts' => true,
+				'meta_key' => 'Views',
+				'orderby' => 'meta_value_num',
+				'posts_per_page' => get_option( 'posts_per_page' ),
+				'paged' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 )
+			);
+			
+			/* Gets post from last 30 days and filter posts_where. @link http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters */
+			add_filter( 'posts_where', 'path_filter_where' );
+			$wp_query = new WP_Query( $args );
+			remove_filter( 'posts_where', 'path_filter_where' );
+			
+			?>
+			
+			<?php if ( $wp_query->have_posts() ) : ?>
+
+				<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) );?>
+
+						<header class="entry-header">
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</header><!-- .entry-header -->
+
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Views [entry-views] [entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+		
+		<?php wp_reset_postdata(); // Reset Query ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/most-popular.php b/wp-content/themes/path/page-templates/most-popular.php
new file mode 100644
index 0000000000000000000000000000000000000000..7eb4641c42c134edf4eff7fb67ce3eac78b1a051
--- /dev/null
+++ b/wp-content/themes/path/page-templates/most-popular.php
@@ -0,0 +1,92 @@
+<?php
+/**
+ * Template Name: Most Popular
+ *
+ * Displays most popular posts in all time.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop for most viewed articles. entry-views extension is used. */
+						
+			$args = array (
+				'ignore_sticky_posts' => true,
+				'meta_key' => 'Views',
+				'orderby' => 'meta_value_num',
+				'posts_per_page' => get_option( 'posts_per_page' ),
+				'paged' => ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 )
+			);
+			
+			$wp_query = new WP_Query( $args );
+			
+			?>
+			
+			<?php if ( $wp_query->have_posts() ) : ?>
+
+				<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'thumbnail' ) ); ?>
+
+						<header class="entry-header">
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</header><!-- .entry-header -->
+
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">' . __( 'Views [entry-views] [entry-terms taxonomy="category" before="Posted in "] [entry-terms before="Tagged "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+		<?php get_template_part( 'loop-nav' ); // Loads the loop-nav.php template. ?>
+		
+		<?php wp_reset_postdata(); // Reset Query ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/path-slider.php b/wp-content/themes/path/page-templates/path-slider.php
new file mode 100644
index 0000000000000000000000000000000000000000..38387d7407c2343c77877b16d047e299585694ee
--- /dev/null
+++ b/wp-content/themes/path/page-templates/path-slider.php
@@ -0,0 +1,139 @@
+<?php
+/**
+ * Template Name: Slider
+ *
+ * Displays sticky posts in slider.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php
+			
+			/* Loop posts but not sticky ones. Sticky posts are displayd in the slider. That is called in header.php (sticky-slider.php). */
+			$sticky = get_option('sticky_posts');
+						
+			$args = array (
+				'post__not_in' => $sticky,
+				'posts_per_page' => 10
+			);
+			
+			$loop = new WP_Query( $args );
+			$counter = 1;
+			
+			?>
+			
+			<?php if ( $loop->have_posts() ) : ?>
+
+				<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); if ( ( $counter % 2 ) == 0 ) echo ' last'; ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<header class="entry-header">
+							<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-thumbnail' ) ); ?>
+							<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+						</header><!-- .entry-header -->
+
+						<div class="entry-summary">
+							<?php the_excerpt(); ?>
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+						</div><!-- .entry-summary -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+					
+					<?php if ( ( $counter % 2 ) == 0 ) echo '<div class="clear path-line"> </div>'; ?>
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+					
+					<?php $counter++; ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+			
+			<?php wp_reset_postdata(); // Reset Query ?>
+			
+			<div class="hfeed-more-articles">
+			
+				<h3 class="section-title"><?php _e( 'More Articles', 'path' ); ?></h3>				
+					
+					<?php
+
+					$args = array (
+					'post__not_in' => $sticky, 
+					'posts_per_page' => 20,
+					'offset' => 10
+					);
+					
+					$loop = new WP_Query( $args );
+					$counter = 1;
+
+					?>
+					
+					<?php if ( $loop->have_posts() ) : ?>
+					
+						<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
+		
+							<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); if ( ( $counter % 2 ) == 0 ) echo ' last'; ?>">
+							
+								<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-smaller-thumbnail' ) ); ?>
+										
+								<header class="entry-header">
+									<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
+									<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+								</header><!-- .entry-header -->
+								
+							</article><!-- .hentry -->
+							
+							<?php if ( ( $counter % 2 ) == 0 ) echo '<div class="clear path-line"> </div>'; ?>
+							
+							<?php $counter++; ?>
+		
+						<?php endwhile; ?>			
+		
+					<?php else : ?>
+		
+						<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+		
+					<?php endif; ?>
+
+				<?php wp_reset_postdata(); // Reset Query ?>
+		
+			</div><!-- .hfeed-more -->
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/page-templates/tag-cloud.php b/wp-content/themes/path/page-templates/tag-cloud.php
new file mode 100644
index 0000000000000000000000000000000000000000..20c4ba677259e35194cd71c5ba8e8b5885f35314
--- /dev/null
+++ b/wp-content/themes/path/page-templates/tag-cloud.php
@@ -0,0 +1,76 @@
+<?php
+/**
+ * Template Name: Tag Cloud
+ *
+ * Displays Post Tag Cloud.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+get_header(); // Loads the header.php template. ?>
+
+	<?php do_atomic( 'before_content' ); // path_before_content ?>
+
+	<div id="content">
+
+		<?php do_atomic( 'open_content' ); // path_open_content ?>
+
+		<div class="hfeed">
+
+			<?php get_template_part( 'loop-meta' ); // Loads the loop-meta.php template. ?>
+			
+			<?php if ( have_posts() ) : ?>
+
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php do_atomic( 'before_entry' ); // path_before_entry ?>
+
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+					
+						<?php do_atomic( 'open_entry' ); // path_open_entry ?>
+
+						<header class="entry-header">
+							<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+						</header><!-- .entry-header -->
+						
+						<div class="entry-content">
+								
+							<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'path' ) ); ?>
+								
+							<p class="term-cloud post_tag-cloud tag-cloud">
+								<?php wp_tag_cloud( array( 'number' => 0, 'unit' => 'em', 'smallest' => 0.7, 'largest' => 2 ) ); ?>
+							</p><!-- .term-cloud .post_tag-cloud -->
+	
+							<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'path' ), 'after' => '</p>' ) ); ?>
+								
+						</div><!-- .entry-content -->
+						
+						<footer class="entry-footer">
+							<?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">[entry-edit-link]</div>' ); ?>
+						</footer><!-- .entry-footer -->
+						
+						<?php do_atomic( 'close_entry' ); // path_close_entry ?>
+
+					</article><!-- .hentry -->
+
+					<?php do_atomic( 'after_entry' ); // path_after_entry ?>
+
+				<?php endwhile; ?>
+
+			<?php else : ?>
+
+				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
+
+			<?php endif; ?>
+						
+		</div><!-- .hfeed -->
+		
+		<?php do_atomic( 'close_content' ); // path_close_content ?>
+
+	</div><!-- #content -->
+
+	<?php do_atomic( 'after_content' ); // path_after_content ?>
+
+<?php get_footer(); // Loads the footer.php template. ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/screenshot.png b/wp-content/themes/path/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb00a2302ac2a5200f8637a160351d51c6f80156
Binary files /dev/null and b/wp-content/themes/path/screenshot.png differ
diff --git a/wp-content/themes/path/searchform.php b/wp-content/themes/path/searchform.php
new file mode 100644
index 0000000000000000000000000000000000000000..dd6d1f3ddf3850059be9ce58f56d68614959e959
--- /dev/null
+++ b/wp-content/themes/path/searchform.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * Search Form Template
+ *
+ * The search form template displays the search form.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+?>
+			<div class="search">
+
+				<form method="get" class="search-form" action="<?php echo trailingslashit( home_url() ); ?>">
+				<div>
+					<input class="search-text" type="text" name="s" value="<?php if ( is_search() ) echo esc_attr( get_search_query() ); else esc_attr_e( 'Search', 'path' ); ?>" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" />
+					<input class="search-submit button" name="submit" type="submit" value="<?php esc_attr_e( 'Search', 'path' ); ?>" />
+				</div>
+				</form><!-- .search-form -->
+
+			</div><!-- .search -->
\ No newline at end of file
diff --git a/wp-content/themes/path/sidebar-after-singular.php b/wp-content/themes/path/sidebar-after-singular.php
new file mode 100644
index 0000000000000000000000000000000000000000..df9d0fcfe00c06e7b192cbbffe3d5eed514bd993
--- /dev/null
+++ b/wp-content/themes/path/sidebar-after-singular.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * After Singular Sidebar Template
+ *
+ * Displays any widgets for the After Singular dynamic sidebar if they are available.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( is_active_sidebar( 'after-singular' ) ) : ?>
+
+	<?php do_atomic( 'before_sidebar_after_singular' ); // path_before_sidebar_after_singular ?>
+
+	<div id="sidebar-after-singular" class="sidebar">
+	
+		<?php do_atomic( 'open_sidebar_after_singular' ); // path_open_sidebar_after_singular ?>
+
+		<?php dynamic_sidebar( 'after-singular' ); ?>
+		
+		<?php do_atomic( 'close_sidebar_after_singular' ); // path_close_after_singular ?>
+
+	</div><!-- #sidebar-after-singular -->
+	
+	<?php do_atomic( 'after_sidebar_after_singular' ); // path_after_sidebar_after_singular ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/sidebar-before-content.php b/wp-content/themes/path/sidebar-before-content.php
new file mode 100644
index 0000000000000000000000000000000000000000..94a473e3b5e3c7612fddb4c1ecb107467f9b3629
--- /dev/null
+++ b/wp-content/themes/path/sidebar-before-content.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Before Content Sidebar Template
+ *
+ * Displays any widgets for the Before Content dynamic sidebar if they are available.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( is_active_sidebar( 'before-content' ) ) : ?>
+	
+	<?php do_atomic( 'before_sidebar_before_content' ); // path_before_sidebar_before_content ?>
+
+	<div id="sidebar-before-content" class="sidebar">
+	
+		<?php do_atomic( 'open_sidebar_before_content' ); // path_open_sidebar_before_content ?>
+		
+		<div class="wrap">
+
+			<?php dynamic_sidebar( 'before-content' ); ?>
+			
+		</div><!-- .wrap -->
+		
+		<?php do_atomic( 'close_sidebar_before_content' ); // path_close_sidebar_before_content ?>
+
+	</div><!-- #sidebar-before-content -->
+	
+	<?php do_atomic( 'after_sidebar_before_content' ); // path_after_sidebar_before_content ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/sidebar-primary.php b/wp-content/themes/path/sidebar-primary.php
new file mode 100644
index 0000000000000000000000000000000000000000..cb5683a814a62178004710bd4716bbf143ef390e
--- /dev/null
+++ b/wp-content/themes/path/sidebar-primary.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Primary Sidebar Template
+ *
+ * Displays widgets for the Primary dynamic sidebar if any have been added to the sidebar through the 
+ * widgets screen in the admin by the user.  Otherwise, nothing is displayed.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( is_active_sidebar( 'primary' ) ) : ?>
+
+	<?php do_atomic( 'before_sidebar_primary' ); // path_before_sidebar_primary ?>
+
+	<div id="sidebar-primary" class="sidebar">
+
+		<?php do_atomic( 'open_sidebar_primary' ); // path_open_sidebar_primary ?>
+
+		<?php dynamic_sidebar( 'primary' ); ?>
+
+		<?php do_atomic( 'close_sidebar_primary' ); // path_close_sidebar_primary ?>
+	
+	</div><!-- #sidebar-primary -->
+
+	<?php do_atomic( 'after_sidebar_primary' ); // path_after_sidebar_primary ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/sidebar-secondary.php b/wp-content/themes/path/sidebar-secondary.php
new file mode 100644
index 0000000000000000000000000000000000000000..8e09161e015b1b21e3454a485c97ec1b56043902
--- /dev/null
+++ b/wp-content/themes/path/sidebar-secondary.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Secondary Sidebar Template
+ *
+ * Displays widgets for the secondary dynamic sidebar if any have been added to the sidebar through the 
+ * widgets screen in the admin by the user.  Otherwise, nothing is displayed.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( is_active_sidebar( 'secondary' ) ) : ?>
+
+	<?php do_atomic( 'before_sidebar_secondary' ); // path_before_sidebar_secondary ?>
+
+	<div id="sidebar-secondary" class="sidebar">
+
+		<?php do_atomic( 'open_sidebar_secondary' ); // path_open_sidebar_secondary ?>
+
+		<?php dynamic_sidebar( 'secondary' ); ?>
+
+		<?php do_atomic( 'close_sidebar_secondary' ); // path_close_sidebar_secondary ?>
+	
+	</div><!-- #sidebar-secondary -->
+
+	<?php do_atomic( 'after_sidebar_secondary' ); // path_after_sidebar_secondary ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/sidebar-subsidiary.php b/wp-content/themes/path/sidebar-subsidiary.php
new file mode 100644
index 0000000000000000000000000000000000000000..bffb5aced41cdccce530412e996b13f273ab97df
--- /dev/null
+++ b/wp-content/themes/path/sidebar-subsidiary.php
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Subsidiary Sidebar Template
+ *
+ * Displays any widgets for the Subsidiary dynamic sidebar if they are available.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+if ( is_active_sidebar( 'subsidiary' ) ) : ?>
+
+	<?php do_atomic( 'before_sidebar_subsidiary' ); // path_before_sidebar_subsidiary ?>
+
+	<div id="sidebar-subsidiary" class="sidebar">
+	
+		<?php do_atomic( 'open_sidebar_subsidiary' ); // path_open_sidebar_subsidiary ?>
+		
+		<div class="wrap">
+
+			<?php dynamic_sidebar( 'subsidiary' ); ?>
+			
+		</div><!-- .wrap -->
+		
+		<?php do_atomic( 'close_sidebar_subsidiary' ); // path_close_sidebar_subsidiary ?>
+
+	</div><!-- #sidebar-subsidiary -->
+	
+	<?php do_atomic( 'after_sidebar_subsidiary' ); // path_after_sidebar_subsidiary ?>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/sticky-slider.php b/wp-content/themes/path/sticky-slider.php
new file mode 100644
index 0000000000000000000000000000000000000000..ccbfcc25dd718adc19f9226e8e0f2462f920f628
--- /dev/null
+++ b/wp-content/themes/path/sticky-slider.php
@@ -0,0 +1,70 @@
+<?php
+/**
+ * Slider content
+ *
+ * Displays sticky posts in slider and newest posts after that in page template Slider.
+ *
+ * @package Path
+ * @subpackage Template
+ * @since 0.1.0
+ */
+
+
+/* Get the sticky posts. */
+$sticky = get_option( 'sticky_posts' );
+
+if ( ! empty( $sticky ) ) :
+ 
+/* Show sticky posts in the slider. */
+$args = array( 'post__in' => $sticky );
+	
+	$path_slider = new WP_Query( $args );
+
+	if ( $path_slider->have_posts() ) : ?>
+	
+	<div class="wrap">
+		
+		<div id="slider-content" class="flexslider">
+		
+			<ul class="slides">
+				
+			<?php while ( $path_slider->have_posts() ) : $path_slider->the_post(); ?>
+			
+				<li>
+				   
+					<article id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?> featured">
+						
+						<div class="slider-images">
+							<?php if ( current_theme_supports( 'get-the-image' ) ) get_the_image( array( 'meta_key' => 'Thumbnail', 'size' => 'path-slider-thumbnail', 'image_class' => 'path-slider', 'default_image' => trailingslashit( get_template_directory_uri() ) . 'images/path_default_slider_image.png', 'width' => 660, 'height' => 300 ) ); ?>	
+						</div>
+						
+						<div class="slider-title">
+						
+							<header class="entry-header">
+								<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
+								<?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'Published by [entry-author] on [entry-published] [entry-comments-link before=" | "] [entry-edit-link before=" | "]', 'path' ) . '</div>' ); ?>
+							</header><!-- .entry-header -->
+							
+							<div class="entry-summary">
+									<?php the_excerpt(); ?>
+							</div><!-- .entry-summary -->
+							
+						</div><!-- .slider-title -->
+						
+					</article><!-- .featured-post -->	
+				
+				</li>
+				
+			<?php endwhile; ?>
+			
+			<?php wp_reset_postdata(); // Reset Query ?>
+			
+			</ul>
+			
+		</div><!-- #slider-content -->
+			
+	</div><!-- .wrap -->
+	
+	<?php endif; ?>
+	
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/path/style.css b/wp-content/themes/path/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..01e866fbe3cafef180e0e1dedad66f772e04af9f
--- /dev/null
+++ b/wp-content/themes/path/style.css
@@ -0,0 +1,15 @@
+/**
+ * Theme Name: Path
+ * Theme URI: http://themehybrid.com/themes/path
+ * Description: Path is designed for multiauthor blogs and magazine style websites. But who am I to tell you what to do with the theme. Feel free to use it for whatever you like. It supports plenty of plugins like Gravity Forms, Co-Authors Plus, Smart Archives Reloaded and Social Path. It's responsive, it supports post formats, it's translation-ready and so much more. You can set global layout in theme settings: one column, two columns or three columns. You can have the content on the left, right or center. You can also set logo, background and footer text in theme settings. There are 5 widget areas, 3 menu locations and 9 page templates (most popular articles by comments or views in different time span, archives, authors, tag cloud and slider) in the theme. And guess what, sticky posts are in a cool FlexSlider. I hope you enjoy Path Theme as much I do. Cheers!
+ * Version: 0.1.4
+ * Author: Sami Keijonen
+ * Author URI: http://foxnet.fi/en
+ * Tags: post-formats, sticky-post, theme-options, threaded-comments, translation-ready, one-column, two-columns, three-columns, flexible-width, left-sidebar, right-sidebar, custom-background, custom-header, featured-images, editor-style, red, white, light
+ * License: GNU General Public License v2.0
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.html
+ * Copyright (c) Sami Keijonen.  All rights reserved.
+ * http://foxnet.fi
+ */
+ 
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:hover,a:active{outline:0}h1{font-size:2em;margin:0.67em 0}h2{font-size:1.5em;margin:0.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:0.83em;margin:1.67em 0}h6{font-size:0.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}pre,code,kbd,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.alignleft,.left{float:left;margin:1em 1.25em 0.5em 0}.alignright,.right{float:right;margin:1em 0 0.5em 1.25em}.aligncenter,.center{display:block;margin:1em auto}.alignnone,.block{clear:both;margin:1em 0}.clear{clear:both}blockquote.alignleft,blockquote.alignright{width:33%}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}div.menu ul,nav.menu ul{margin:0;padding:0;list-style:none;line-height:1.0}div.menu ul ul,nav.menu ul ul{position:absolute;top:-999em;width:10em}div.menu ul ul li,nav.menu ul ul li{width:100%}div.menu li:hover,nav.menu li:hover{visibility:inherit}div.menu li,nav.menu li{float:left;position:relative}div.menu a,nav.menu a{display:block;position:relative}div.menu li:hover ul,div.menu li.sfHover ul,nav.menu li:hover ul,nav.menu li.sfHover ul{left:0;top:2em;z-index:99}div.menu li:hover li ul,div.menu li.sfHover li ul,nav.menu li:hover li ul,nav.menu li.sfHover li ul{top:-999em}div.menu li li:hover ul,div.menu li li.sfHover ul,nav.menu li li:hover ul,nav.menu li li.sfHover ul{left:10em;top:0}div.menu li li:hover li ul,div.menu li li.sfHover li ul,nav.menu li li:hover li ul,nav.menu li li.sfHover li ul{top:-999em}div.menu li li li:hover ul,div.menu li li li.sfHover ul,nav.menu li li li:hover ul,nav.menu li li li.sfHover ul{left:10em;top:0}.gallery{display:block;clear:both;overflow:hidden;margin:0 auto}.gallery .gallery-row{display:block;clear:both;overflow:hidden;margin:0}.gallery .gallery-item{overflow:hidden;float:left;margin:0;text-align:center;list-style:none;padding:0}.gallery .gallery-item .gallery-icon img{width:auto;max-width:89%;height:auto;padding:1%;margin:0 auto}.gallery-caption{margin-left:0}.gallery .col-0{width:100%}.gallery .col-1{width:100%}.gallery .col-2{width:50%}.gallery .col-3{width:33.33%}.gallery .col-4{width:25%}.gallery .col-5{width:20%}.gallery .col-6{width:16.66%}.gallery .col-7{width:14.28%}.gallery .col-8{width:12.5%}.gallery .col-9{width:11.11%}.gallery .col-10{width:10%}.gallery .col-11{width:9.09%}.gallery .col-12{width:8.33%}.gallery .col-13{width:7.69%}.gallery .col-14{width:7.14%}.gallery .col-15{width:6.66%}.gallery .col-16{width:6.25%}.gallery .col-17{width:5.88%}.gallery .col-18{width:5.55%}.gallery .col-19{width:5.26%}.gallery .col-20{width:5%}.gallery .col-21{width:4.76%}.gallery .col-22{width:4.54%}.gallery .col-23{width:4.34%}.gallery .col-24{width:4.16%}.gallery .col-25{width:4%}.gallery .col-26{width:3.84%}.gallery .col-27{width:3.7%}.gallery .col-28{width:3.57%}.gallery .col-29{width:3.44%}.gallery .col-30{width:3.33%}body{font:normal normal normal 1em/1.5em Georgia,Palatino,"Palatino Linotype","Book Antiqua",serif;border-top:5px solid #ca4842;border-bottom:5px solid #ca4842;color:#666;width:100%;word-wrap:break-word}img,object,embed{max-width:100%}img{height:auto}a,a:visited{color:#ca4842;text-decoration:none}a:focus,a:active,a:hover{color:#b7322c;text-decoration:underline}a,input[type=submit],input[type=button],input[type=text],textarea{-webkit-transition:all 0.2s ease-out; -moz-transition:all 0.2s ease-out; -ms-transition:all 0.2s ease-out; -o-transition:all 0.2s ease-out; transition:all 0.2s ease-out}h1,h2,h3,h4,h5,h6{font-family:'Oswald',Georgia,sans-serif; font-style:normal; font-weight:normal;margin-top:0}h1{font-size:1.75em;line-height:1.1}h2{line-height:1.2}h4{font-size:1.0625em}h5{font-size:1em}h6{font-size:0.9375em}ul{list-style-type:circle}ul,ol{padding:0 0 0 2em}ol ol,ul ul{margin:0;padding:0 0 0 1.5em}dl dt{font-size:.95em;font-family:Arial,"Helvetica Neue",Helvetica,sans-serif}dl dd{color:#777}blockquote{background:#e9edf1;border:1px solid #e5e5e5;border-left:0.375em solid #70a0b2;color:#666;font-style:italic;margin:1em 0;padding:1% 2%}blockquote blockquote{padding:0.5% 2%}code{background:#f7f7f7;color:#555;padding:0 0.1875em}pre{background:#f7f7f7;border:1px solid #e5e5e5;color:#555;font-size:.9375em;padding:3%}pre code{padding:0}acronym,abbr{border-bottom:1px dotted #999}table{background:#fff;margin:0 0 1em 0;width:100%}th{background:#70a0b2;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;border-right:1px solid #f2f2f2;color:#fff;padding:.5em 2%;text-align:left}td,tbody th{border-bottom:1px solid #f2f2f2;border-left:1px solid #f2f2f2;border-right:1px solid #f2f2f2;font-size:.9375em;padding:.5em 2%}tr:hover td{background:#e9edf1}tr:hover th{background:#e9edf1;color:#666}thead th,tfoot th,thead tr:hover th,tfoot tr:hover th{background:#e9edf1;color:#666}#wp-calendar th,#wp-calendar td{font-weight:normal;text-align:center}#wp-calendar tr:hover td{background:transparent}#wp-calendar td.pad,#wp-calendar #prev,#wp-calendar #next{background:transparent}#wp-calendar #prev{text-align:left}#wp-calendar #next{text-align:right}hr{background:#e9edf1;height:1px}.hfeed img,.avatar{height:auto}.avatar{float:left;margin:0 1em .5em 0}.format-status .avatar{margin-bottom:1.5em;width:80px;height:80px}.wp-caption{max-width:100%;overflow:visible;padding:0}.wp-caption img{margin:0;width:100%}.wp-caption-text{background:#e9edf1;border-bottom:1px solid #e5e5e5;color:#555;font:normal normal normal 0.875em/1.6 "Helvetica Neue",Helvetica,sans-serif;margin:-0.357142857em 0 0 0;max-width:100%;padding:0.571428571em 0.714285714em;text-align:center}.thumbnail,.path-thumbnail{float:left;margin:0 1.5em .5em 0}.thumbnail{max-width:150px;max-height:150px}.path-smaller-thumbnail{float:left;margin:0 1em 0.5em 0;max-width:80px;max-height:80px}.gallery{margin-bottom:1.5em !important}.gallery-caption{color:#555;font:normal normal normal 0.875em/1.4 "Helvetica Neue",Helvetica,sans-serif;margin-bottom:0.357142857em}.singular-attachment .gallery-caption{display:none}.hentry .gallery .gallery-icon .attachment-thumbnail{padding:2%}.singular-attachment .hentry .gallery .gallery-icon .attachment-thumbnail{padding:3%}img.wp-smiley{background:transparent !important;border:none !important;margin:0 !important;max-height:0.75em !important;padding:0 !important}#container{}#menu-primary,#menu-secondary{display:none}nav#menu-primary-mobile ul,nav#menu-secondary-mobile ul{list-style-type:circle;margin-top:0.5em}nav#menu-primary-mobile ul ul,nav#menu-secondary-mobile ul ul{margin-top:0}nav#menu-primary-mobile li a,nav#menu-secondary-mobile li a{display:block;padding:0.625em 0}#menu-primary-mobile,#menu-secondary-mobile,#menu-primary-title,#menu-secondary-title{display:block}#menu-primary-mobile,#menu-secondary-mobile{margin-top:1em}#menu-primary-title{background:#404040;margin:0;padding:0 2%;position:relative;width:96%;height:2.25em}#menu-primary-title .wrap{padding-top:0.2em}h3.menu-primary-mobile-title,h3.menu-secondary-mobile-title{margin:0.5em 0 0 0}#menu-primary-title a{color:#f6f6e8;font:normal normal normal 0.75em/2em Arial,"Helvetica Neue",Helvetica,sans-serif;padding:0.75em 1.5em 1em}#menu-secondary-title{margin:0 0 0.825em 0;padding:0 2%;position:relative;width:96%}#menu-secondary-title a{background:#ca4842;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;font:normal normal normal 0.6875em/1.2em Arial,Verdana,sans-serif;letter-spacing:1px;padding:0.909090909em 1.81818182em;text-transform:uppercase}#menu-primary-title a:hover,#menu-secondary-title a:hover{text-decoration:none}.menu-primary-anchor:after,.menu-secondary-anchor:after,.search-primary-anchor:after{ content:" ▼"}.menu-secondary-anchor:after{font-size:1em}#search-primary-mobile .search{padding:1em 0 0.25em}#menu-primary-title,#menu-secondary-title,#header,#menu-primary-title .search{text-align:center}#header{margin:0 auto;padding:0 2% 0.25em;position:relative;overflow:hidden;width:96%;z-index:88}#branding{padding:0.5em 0 1em;position:relative;z-index:98}#site-title{font:1.25em/1.35 'Oswald',Georgia,sans-serif;margin:0}#site-title a{color:#70a0b2}#site-description{color:#70a0b2;font:italic 1em/1.25em Georgia,serif;margin:0;padding-top:0.5em;text-transform:none}.custom-header #site-title span{display:none}#sidebar-primary .widget,#sidebar-secondary .widget,#sidebar-before-content .widget,#sidebar-subsidiary .widget{color:#777;font-size:0.9375em;margin:0 0 1em 0}#sidebar-before-content{margin:0 0 0.825em 0}#sidebar-subsidiary{margin:0.825em 0 0 0}#sidebar-before-content .widget,#sidebar-subsidiary .widget{padding:1em 0 0 0}#main,#main .wrap{margin:0;overflow:hidden;padding:0 2%;width:96%}#main .wrap{background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}#sidebar-primary,#sidebar-secondary{margin:0 0 1em 0;padding:0}.breadcrumbs{color:#555;font-size:.875em;display:block;margin:0.5em 0}.breadcrumbs .trail-before{margin-right:0.5em}.breadcrumbs .trail-end{color:#999;font-style:italic}.hentry{border-bottom:1px solid #e9edf1;margin-bottom:1.5em;padding-bottom:1.5em}.singular .hentry{border-bottom:none;margin-bottom:2em;padding-bottom:0}.singular-attachment .hentry{text-align:center}.page-template-path-slider .hentry,.page-template-most-popular .hentry,.page-template-most-popular-last-30-days .hentry,.page-template-most-popular-by-comments .hentry,.page-template-most-popular-by-year .hentry,.page-template-most-popular-by-month .hentry{border-bottom:1px solid #e9edf1;margin-bottom:1.5em;padding-bottom:1.5em}.taxonomy-post_format-video .hentry{background:#e9edf1;padding:3%}.entry-title{margin-bottom:1em}.singular .entry-title,.error-404 .entry-title{margin-bottom:0;padding-bottom:.5em}.singular-post .entry-title,.format-standard .entry-title,.singular.attachment-image .entry-title{margin-bottom:.5em;padding-bottom:0}.singular .entry-title a{}.home .format-link .entry-title,.archive .format-link .entry-title{margin-bottom:1em}.singular-attachment .entry-title{text-align:center}.byline{color:#555;font:normal normal normal .875em/1.5 Georgia,serif;margin-bottom:1em}.hfeed-more-articles .byline{margin-bottom:0.25em}.entry-meta{clear:both;color:#555;font:normal normal normal .875em/1.5 Georgia,serif}.singular .entry-meta .category,.singular .entry-meta .post_tag{display:block}.loop-meta{border-bottom:1px solid #e9edf1;margin-bottom:1em;overflow:hidden}.blog .loop-meta{border-bottom:none;margin-bottom:0}.loop-meta .loop-title{color:#555}.loop-meta .loop-description{color:#999;font-style:italic}.pagination,.page-links,.comment-pagination{clear:both;font-size:0.875em;font-weight:bold;line-height:1em;margin:0 0 1.71428571em 0;overflow:hidden}.pagination{margin-bottom:1.71428571em;padding-bottom:0.142857143em;text-align:center}.page-links{padding:0.5em 0 0 0}.pagination .page-numbers,.page-links a{background:#ca4842;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;display:inline-block;font:normal normal bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;margin:0 0.714285714em 0 0;padding:0.857142857em 1.07142857em;text-transform:uppercase}.pagination .next{margin-right:0}.pagination .meta-nav,.loop-nav .meta-nav{font-size:0.875em}.page-links a{margin:0 0.214285714em;padding:1em 1.5em}.entry-summary .page-links a{padding:0.75em 1em}.pagination .page-numbers:hover,.page-links a:hover{background:#b7322c}.pagination .dots:hover{background:#b7322c}.pagination .current{background:#b7322c}.loop-nav,.loop-pagination{font-size:0.875em;font-weight:bold;line-height:1em;margin:1em 0 2em 0;overflow:hidden}.loop-nav .previous,.loop-nav .next{background:#ca4842;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;float:left;font:normal normal bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;margin:0;padding:1em 1.5em}.loop-nav .next{float:right;text-align:right}.loop-nav a:hover{text-decoration:none}.loop-nav a:hover span{background:#b7322c}.widget{color:#555}.widget-title{color:#555}.widget img{max-width:100%}.widget-search{padding-bottom:1.5em !important}#sidebar-header .widget-search{padding-bottom:1em !important}.widget-search input[type="text"],input[type="text"],input[type="password"]{background:#e9edf1;border:1px solid #e5e5e5;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#555;display:block;padding:0.5em;width:100%}#sidebar-header .widget-search input[type="text"],#sidebar-header input[type="text"]{border:1px solid #f2f2f2}.widget-search input[type="text"]:focus,input[type="text"]:focus,input[type="password"]:focus{background:#fff}.widget-search input[type="submit"],.widget-search label{display:none}input[type="submit"]{background:#ca4842;border:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff;display:block;font:normal normal bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;margin:0.714285714em 0;padding:0.857142857em 1.07142857em}input[type="submit"]:hover{background:#b7322c}.widget-most-viewed .hentry:after{ clear:both; content:""; display:table}.widget-most-viewed .byline{margin-top:1em}#comments-number{border-bottom:1px solid #e9edf1;padding-bottom:1em}.comments-closed{color:#555;padding:0 1.5em}.comments-nav{float:right;line-height:2em;margin:0 0 1em 0;position:relative}.comment-list,.comment-list ol.children{list-style:none;margin:0 0 2em 0}ol.comment-list{padding:0}.comment-list ol.children{margin-left:1%;margin-bottom:0;padding:0}.comment-list li.comment,.comment-list li.pingback,.comment-list li.trackback{border-bottom:1px solid #e9edf1;clear:both;margin-bottom:1.5em;overflow:hidden}.comment-list li li.comment{border-bottom:none;margin-bottom:0;padding:1.5em 0 0 0;overflow:hidden}.comment-list .avatar{float:none;margin:0 1.5em 1.5em 0;width:80px;height:80px}.comment-list li li .avatar{margin-bottom:0.375em;padding:0.175em;width:60px;height:60px}.comment-meta{color:#555;font:normal normal normal 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;margin-bottom:0.714285714em}.comment-list li.pingback .comment-meta,.comment-list li.trackback .comment-meta{margin-bottom:1.5em}.comment-meta .published abbr{font-style:italic}.comment-author{display:block}.comment-author cite{font-weight:bold}.pingback .comment-author cite,.trackback .comment-author cite{font-style:italic}.comment-reply-link{}.comment-text{overflow:hidden}.comment-list li li.comment .comment-text{overflow:visible}.comment-list li li.has-avatar .comment-text{margin-left:0}.comment-text .moderation{font-style:italic;color:#555}.comment-note{font-weight:bold}#sidebar-after-singular{border-top:1px solid #e9edf1;margin-bottom:1em;padding-top:1em}#respond{margin-bottom:1.5em;overflow:hidden}#reply-title small a{font:bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;margin-left:1em}#respond label{font:normal 1em/1.8 "Helvetica Neue",Helvetica,sans-serif}#respond p.form-email label{padding:0}#respond span.required{font-size:1em;font-weight:bold}#respond input[type="text"],#respond textarea{background:#e9edf1;border:1px solid #e5e5e5;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#555;display:block;padding:0.5em;width:100%}#respond input[type="text"]:focus,#respond textarea:focus{background:#fff}#respond #submit{background:#ca4842;border:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#fff;font:normal 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;float:right;margin:0 0 1em 1em;padding:1em 1.5em}#respond #submit:hover{background:#b7322c}#footer{font-size:.875em;margin:0;padding:0 2%;width:96%}#footer .wrap{margin:0 auto;overflow:hidden;padding:0 2%;width:96%}#footer .copyright,#footer .credit{text-align:center}.top:after{ content:" ▲"}#menu-subsidiary{background:#b2cecf;padding:0 2%;position:relative;margin:0;overflow:hidden;width:96%;z-index:98}#menu-subsidiary .wrap{margin:0 auto;width:100%}#menu-subsidiary .menu{    display:table;    margin:0 auto}#menu-subsidiary ul{padding:0}#menu-subsidiary li{display:inline}#menu-subsidiary li a{color:#069;font:normal normal normal 0.75em/1.5625em Arial,"Helvetica Neue",Helvetica,sans-serif;padding:0.5em 1em}#menu-subsidiary li.current-menu-item a{color:#ca4842}.singular-post .author-profile{border:1px solid #e9edf1;margin-bottom:2em;overflow:hidden;padding:4%}.singular-post .author-co-profile{overflow:hidden}p.twitter{margin:1em 0 0 0}p.multi-author{margin:1em 0}.gform_wrapper ul{background:transparent;list-style:none;margin:0;padding:0}body .gform_wrapper .gform_heading{margin-bottom:1em;width:100%}body .gform_wrapper .gform_heading .gform_title,body .gform_wrapper .gform_body .gform_fields .gsection .gsection_title{font-weight:normal;margin:0.625em 0}body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description,body .gform_wrapper .gform_body .gform_fields .gsection .gsection_description,body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex label{color:#555;font:normal normal normal 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;padding:0.625em 0 0}body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex label{padding:0.25em 0 0.625em}body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],body .gform_wrapper .gform_body .gform_fields .gfield textarea{background:#e9edf1;border:1px solid #e5e5e5;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#555;font-size:0.875em;display:block;padding:0.5em}body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,body .gform_wrapper .gform_body .gform_fields .gfield input[type=url]:focus,body .gform_wrapper .gform_body .gform_fields .gfield input[type=number]:focus,body .gform_wrapper .gform_body .gform_fields .gfield input[type=password]:focus,body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus{background:#fff}body .gform_wrapper .gform_body .gform_fields .gfield select{border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font:normal normal normal 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;padding:0.25em 0}body .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input[type=checkbox],body .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li input[type=radio]{margin-top:0.3125em}body .gform_wrapper table.gfield_list th,body .gform_wrapper table.gfield_list td{padding:0.5em 2%}body .gform_wrapper table.gfield_list tr:hover td{background:none}body .gform_wrapper .gform_body .gform_page_footer .gform_next_button,body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button{background:#ca4842;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none;color:#fff;font:normal normal bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;float:left;margin-bottom:0.625em;padding:1em 1.5em}body .gform_wrapper .gform_body .gform_page_footer .gform_next_button{float:right}body .gform_wrapper .gform_body .gform_page_footer .gform_next_button:hover,body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button:hover{background:#b7332c}body .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title{font-size:1.1em}body .gform_wrapper .gform_page_footer .button.gform_button{clear:both}body #gforms_confirmation_message{background:#e9edf1;border:1px solid #e5e5e5;padding:2em}body .ui-datepicker-div,body .ui-datepicker-inline,body #ui-datepicker-div{font:normal normal bold 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif}#social-media{margin:0.625em 0}.fb-like,.tweet,.google{display:inline;padding-right:0.625em}body .fb_edge_widget_with_comment{bottom:2px}.pullquote{border-top:1px solid #666;border-bottom:1px solid #666;color:#666;font-size:1.125em;font-style:italic;line-height:1.875em;margin:0.625em auto;padding:0.625em;text-align:center;max-width:12.5em}@media only screen and (min-width:49em){#sidebar-subsidiary #wp-calendar th,#sidebar-subsidiary #wp-calendar td{padding:2px 1px}#menu-primary{background:#404040;display:block;padding:0 2%;position:relative;margin:0;width:96%;height:2.25em;z-index:98}#menu-primary .wrap{margin:0 auto;width:100%}#menu-primary ul{padding:0}#menu-primary li{background:#404040;display:inline}#menu-primary li a{color:#fff;font:normal normal normal 0.75em/2em Arial,"Helvetica Neue",Helvetica,sans-serif;padding:0.416666667em 1.16666667em 0.583333333em}#menu-primary li.current-menu-item{background:#e9edf1;color:#ca4842}#menu-primary li.current-menu-item a{color:#ca4842}#menu-primary li a:hover,#menu-primary li.sfHover a{background:#e9edf1;color:#ca4842;text-decoration:none}#menu-primary li li a,#menu-primary li.sfHover li a,#menu-primary li li.sfHover li a{background:#fff;border-bottom:1px solid #f2f2f2;color:#ca4842;padding-left:1.16666667em;text-transform:none}#menu-primary li li.current-menu-item a,#menu-primary li li.sfHover li.current-menu-item a,#menu-primary li li a:hover,#menu-primary li li.sfHover a,#menu-primary li li.sfHover li a:hover{color:#404040}#menu-primary li:hover ul,#menu-primary li.sfHover ul{top:2.25em}#menu-primary li:hover li ul,#menu-primary li.sfHover li ul{top:-999em}#menu-primary li li:hover ul,#menu-primary li li.sfHover ul{margin-left:0;padding-bottom:0;top:0}#menu-primary a.sf-with-ul{padding-right:2.33333333em}#menu-primary li .sf-sub-indicator{background:url('images/menu-plus.png') no-repeat 0 0;overflow:hidden;position:absolute;top:1.16666667em;right:1em;width:6px;height:6px;text-indent:-9999em}#menu-primary li a:hover .sf-sub-indicator,#menu-primary li.sfHover .sf-sub-indicator,#menu-primary li.current-menu-item .sf-sub-indicator{background-position:0 -6px}#menu-primary li ul li .sf-sub-indicator,#menu-primary li ul li.current-menu-item li .sf-sub-indicator{background-position:0 -6px !important;top:1.41666667em;width:6px;height:6px}#menu-primary form{overflow:hidden;width:10.62500em;float:right;margin-top:0.3125em}#menu-primary input[type="text"]{float:right;width:9.16666667em;margin:0;padding:5px 0 6px 9px;font-style:italic;font-size:0.75em;background:#e9edf1;border:none}#menu-primary input[type="text"]:focus{width:14.1666667em;background-color:#fff}#menu-primary .search-submit{display:none}#menu-secondary{display:block;padding:0 2% 1em;width:96%;height:2em}#menu-secondary .wrap{margin:0 auto}#menu-secondary ul{padding:0}#menu-secondary li{display:inline;margin-left:1em}#menu-secondary li:first-child{margin-left:0}#menu-secondary li a{color:#ca4842;font:normal normal normal 0.6875em/1.2em Arial,Verdana,sans-serif;letter-spacing:1px;margin-bottom:0.363636364em;padding:0.909090909em 1.81818182em;text-transform:uppercase}#menu-secondary li li a{margin-bottom:0}#menu-secondary li li{margin-left:0}#menu-secondary li.current-menu-item a,#menu-secondary li a:hover,#menu-secondary li.sfHover a{background:#ca4842;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;color:#fff}#menu-secondary li a:hover,#menu-secondary li.sfHover a{text-decoration:none}#menu-secondary li li a,#menu-secondary li.sfHover li a,#menu-secondary li li.sfHover li a{background:#e9edf1;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;color:#ca4842;border-bottom:1px solid #fff;padding-left:1.81818182em}#menu-secondary li li.current-menu-item a,#menu-secondary li li.sfHover li.current-menu-item a{color:#404040}#menu-secondary li li a:hover,#menu-secondary li li.sfHover a,#menu-secondary li li.sfHover li a:hover{background:#fff;color:#404040}#menu-secondary li:hover ul,#menu-secondary li.sfHover ul{top:2.0625em}#menu-secondary li:hover li ul,#menu-secondary li.sfHover li ul{top:-999em}#menu-secondary li li:hover ul,#menu-secondary li li.sfHover ul{margin-left:0;padding-bottom:0;top:0}#menu-secondary a.sf-with-ul{padding-right:2.54545455em}#menu-secondary li .sf-sub-indicator{background:url('images/menu-plus.png') no-repeat 0 0;background-position:0 -6px;overflow:hidden;position:absolute;top:1.18181818em;right:1.09090909em;width:6px;height:6px;text-indent:-9999em}#menu-secondary li a:hover .sf-sub-indicator,#menu-secondary li.sfHover .sf-sub-indicator,#menu-secondary li.current-menu-item .sf-sub-indicator{background-position:0 -12px}#menu-secondary li ul li .sf-sub-indicator,#menu-secondary li ul li.current-menu-item li .sf-sub-indicator{background-position:0 -6px !important;top:1.18181818em;width:6px;height:6px}#menu-primary .wrap,#menu-secondary .wrap,#main .wrap,#header,#sidebar-subsidiary .wrap,#menu-subsidiary .wrap{max-width:60em}#footer .wrap{max-width:68.5714286em;padding-bottom:1em}#menu-primary-mobile,#menu-secondary-mobile,#menu-primary-title,#menu-secondary-title{display:none}#sidebar-description{float:right;padding:1em 0}#header{padding:1em 2%}.custom-header #header{padding:0.5em 2%}#header{text-align:left}#site-title{float:left;font-size:2em;line-height:1.125em;margin-right:4%;width:32%}#site-description{float:left;font-size:1em;line-height:1.25em;padding-top:0.8125em;width:64%}.custom-header #site-description{padding-top:1.375em}#sidebar-before-content{margin:3px 0 0.825em 0}#sidebar-before-content .widget{float:left;margin-right:4%;width:46%}.breadcrumbs{margin:1em 0 1.5em}img{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #e9edf1;padding:4px}.thumbnail{max-width:160px;max-height:160px}.path-smaller-thumbnail{max-width:90px;max-height:90px}#site-title img{border:none;padding:0}#content{float:left;width:64%}.hfeed-more-articles .byline{margin-bottom:0.8em}#main .wrap{-moz-box-shadow:0 1px 3px #8493a6;-webkit-box-shadow:0 1px 3px #8493a6;box-shadow:0 1px 3px #8493a6;margin:3px auto 2em}#sidebar-primary{float:right;margin:0;padding:0;width:32%}#respond p.form-author{float:left;width:50%}#respond p.form-email{float:right;overflow:hidden;width:50%}#respond p.form-author input[type="text"]{width:90%}#respond p.form-email input[type="text"],#respond p.form-email label{width:90%;float:right}#respond p.form-url{clear:both}#footer .copyright,#footer .credit{float:left;text-align:left;width:50%}#footer .credit{text-align:right}#footer p{ margin-top:0}.comment-list ol.children{margin-left:2%}#sidebar-subsidiary .widget{float:left;margin-right:4%;width:21%}.layout-1c #content{float:none;margin-right:0;width:100%}.layout-2c-l #content,.layout-default #content,.layout-3c-l #content,.layout-3c-c #content{float:left;width:64%}.layout-2c-l #sidebar-primary,.layout-default #sidebar-primary,.layout-2c-l #sidebar-secondary,.layout-default #sidebar-secondary,.layout-3c-l #sidebar-primary,.layout-3c-l #sidebar-secondary,.layout-3c-c #sidebar-primary,.layout-3c-c #sidebar-secondary{float:right;width:32%}.layout-2c-l #sidebar-secondary,.layout-default #sidebar-secondary,.layout-3c-l #sidebar-secondary,.layout-3c-c #sidebar-secondary{clear:right}.layout-2c-r #content,.layout-3c-r #content{ float:right;width:64%}.layout-2c-r #sidebar-primary,.layout-2c-r #sidebar-secondary,.layout-3c-r #sidebar-primary,.layout-3c-r #sidebar-secondary{ float:left;width:32%}.layout-2c-r #sidebar-secondary,.layout-3c-r #sidebar-secondary{clear:left}}@media only screen and (min-width:60em){.custom-header #site-description{padding-top:2.25em}.pullquote{float:right;margin:0.625em 0 0.625em 1.25em}}@media only screen and (min-width:70em){.comment-list ol.children{margin-left:1em}.comment-list .avatar{float:left}.comment-list li li.has-avatar .comment-text{margin-left:3.75em;overflow:hidden}.page-template-path-slider #content .hentry{float:left;border-bottom:none;margin:0 4% 0 0;width:48%}.page-template-path-slider #content .last{margin:0}.page-template-path-slider #content .path-line{border-bottom:1px solid #e9edf1;margin-bottom:1.5em}.page-template-path-slider #slider-content .hentry{float:none;margin:0;width:100%}.page-template-path-slider #content .path-thumbnail{float:none}.page-template-path-slider #content .entry-header{text-align:center}.page-template-path-slider #content .hfeed-more-articles .entry-header,.page-template-path-slider #slider-content .entry-header{text-align:left}.page-template-path-slider #content .hfeed-more-articles h2{font-size:1.25em}.layout-3c-l #content{float:left;width:46%}.layout-3c-l #sidebar-primary,.layout-3c-l #sidebar-secondary{float:left;width:23%;margin:0 0 0 4%}.layout-3c-l #sidebar-secondary{clear:none}.layout-3c-r #content{float:right;width:46%}.layout-3c-r #sidebar-primary,.layout-3c-r #sidebar-secondary{float:left;width:23%;margin:0 4% 0 0}.layout-3c-r #sidebar-secondary{clear:none}.layout-3c-c #content{float:left;margin-left:27%;width:46%}.layout-3c-c #sidebar-primary{float:left;margin-left:-73%;width:23%}.layout-3c-c #sidebar-secondary{float:right;width:23%}.layout-3c-c #sidebar-secondary{clear:none}.layout-3c-l #menu-primary .wrap,.layout-3c-r #menu-primary .wrap,.layout-3c-c #menu-primary .wrap,.layout-3c-l #menu-secondary .wrap,.layout-3c-r #menu-secondary .wrap,.layout-3c-c #menu-secondary .wrap,.layout-3c-l #main .wrap,.layout-3c-r #main .wrap,.layout-3c-c #main .wrap,.layout-3c-l #header,.layout-3c-r #header,.layout-3c-c #header,.layout-3c-l #sidebar-subsidiary .wrap,.layout-3c-r #sidebar-subsidiary .wrap,.layout-3c-c #sidebar-subsidiary .wrap,.layout-3c-l #menu-subsidiary .wrap,.layout-3c-r #menu-subsidiary .wrap,.layout-3c-c #menu-subsidiary .wrap{max-width:64em}.layout-3c-l #footer .wrap,.layout-3c-r #footer .wrap,.layout-3c-c #footer .wrap{max-width:73.1428571em;padding-bottom:1em}.layout-3c-l #sidebar-primary #wp-calendar th,.layout-3c-l #sidebar-secondary #wp-calendar th,.layout-3c-r #sidebar-primary #wp-calendar th,.layout-3c-r #sidebar-secondary #wp-calendar th,.layout-3c-c #sidebar-primary #wp-calendar th,.layout-3c-c #sidebar-secondary #wp-calendar th,.layout-3c-l #sidebar-primary #wp-calendar td,.layout-3c-l #sidebar-secondary #wp-calendar td,.layout-3c-r #sidebar-primary #wp-calendar td,.layout-3c-r #sidebar-secondary #wp-calendar td,.layout-3c-c #sidebar-primary #wp-calendar td,.layout-3c-c #sidebar-secondary #wp-calendar td{padding:2px 1px}}
\ No newline at end of file
diff --git a/wp-content/themes/path/style.dev.css b/wp-content/themes/path/style.dev.css
new file mode 100644
index 0000000000000000000000000000000000000000..884e7eedd225bb21cc101b89180ac6a24da6c713
--- /dev/null
+++ b/wp-content/themes/path/style.dev.css
@@ -0,0 +1,1797 @@
+/**
+ * Development stylesheet.  Use this file for development purposes by adding this to your 'wp-config.php' file:
+ * define( 'SCRIPT_DEBUG', true );
+ * This allows you to build large-sized stylesheets with plenty notes and comments. Before releasing, compress
+ * this file and replace the compressed CSS in the 'style.css' file.
+ * @link http://www.cssdrive.com/index.php/main/csscompressor
+ */
+ 
+/* =CSS Resets (Normalize). @link: https://raw.github.com/necolas/normalize.css/master/normalize.css
+-------------------------------------------------------------- */
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{ display:block}audio,canvas,video{ display:inline-block; *display:inline; *zoom:1}audio:not([controls]){ display:none; height:0}[hidden]{ display:none}html{ font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%}html,button,input,select,textarea{ font-family:sans-serif}body{ margin:0}a:focus{ outline:thin dotted}a:hover,a:active{ outline:0}h1{ font-size:2em; margin:0.67em 0}h2{ font-size:1.5em; margin:0.83em 0}h3{ font-size:1.17em; margin:1em 0}h4{ font-size:1em; margin:1.33em 0}h5{ font-size:0.83em; margin:1.67em 0}h6{ font-size:0.75em; margin:2.33em 0}abbr[title]{ border-bottom:1px dotted}b,strong{ font-weight:bold}blockquote{ margin:1em 40px}dfn{ font-style:italic}mark{ background:#ff0; color:#000}p,pre{ margin:1em 0}pre,code,kbd,samp{ font-family:monospace,serif; _font-family:'courier new',monospace; font-size:1em}pre{ white-space:pre; white-space:pre-wrap; word-wrap:break-word}q{ quotes:none}q:before,q:after{ content:''; content:none}small{ font-size:75%}sub,sup{ font-size:75%; line-height:0; position:relative; vertical-align:baseline}sup{ top:-0.5em}sub{ bottom:-0.25em}dl,menu,ol,ul{ margin:1em 0}dd{ margin:0 0 0 40px}menu,ol,ul{ padding:0 0 0 40px}nav ul,nav ol{ list-style:none; list-style-image:none}img{ border:0; -ms-interpolation-mode:bicubic}svg:not(:root){ overflow:hidden}figure{ margin:0}form{ margin:0}fieldset{ border:1px solid #c0c0c0; margin:0 2px; padding:0.35em 0.625em 0.75em}legend{ border:0; padding:0; white-space:normal; *margin-left:-7px}button,input,select,textarea{ font-size:100%; margin:0; vertical-align:baseline; *vertical-align:middle}button,input{ line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{ cursor:pointer; -webkit-appearance:button; *overflow:visible}button[disabled],input[disabled]{ cursor:default}input[type="checkbox"],input[type="radio"]{ box-sizing:border-box; padding:0; *height:13px; *width:13px}input[type="search"]{ -webkit-appearance:textfield; -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{ -webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{ border:0; padding:0}textarea{ overflow:auto; vertical-align:top}table{ border-collapse:collapse; border-spacing:0}.alignleft,.left{float:left;margin:1em 1.25em 0.5em 0}.alignright,.right{float:right;margin:1em 0 0.5em 1.25em}.aligncenter,.center{display:block;margin:1em auto}.alignnone,.block{clear:both;margin:1em 0}.clear{clear:both}blockquote.alignleft,blockquote.alignright{width:33%}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}
+
+
+/* =Layout for all devices
+-------------------------------------------------------------- */
+
+/* Drop-downs. */
+div.menu ul,nav.menu ul{margin:0;padding:0;list-style:none;line-height:1.0}div.menu ul ul,nav.menu ul ul{position:absolute;top:-999em;width:10em}div.menu ul ul li,nav.menu ul ul li{width:100%}div.menu li:hover,nav.menu li:hover{visibility:inherit}div.menu li,nav.menu li{float:left;position:relative}div.menu a,nav.menu a{display:block;position:relative}div.menu li:hover ul,div.menu li.sfHover ul,nav.menu li:hover ul,nav.menu li.sfHover ul{left:0;top:2em;z-index:99}div.menu li:hover li ul,div.menu li.sfHover li ul,nav.menu li:hover li ul,nav.menu li.sfHover li ul{top:-999em}div.menu li li:hover ul,div.menu li li.sfHover ul,nav.menu li li:hover ul,nav.menu li li.sfHover ul{left:10em;top:0}div.menu li li:hover li ul,div.menu li li.sfHover li ul,nav.menu li li:hover li ul,nav.menu li li.sfHover li ul{top:-999em}div.menu li li li:hover ul,div.menu li li li.sfHover ul,nav.menu li li li:hover ul,nav.menu li li li.sfHover ul{left:10em;top:0}
+
+/* Gallery. */
+.gallery{display:block;clear:both;overflow:hidden;margin:0 auto}.gallery .gallery-row{display:block;clear:both;overflow:hidden;margin:0}.gallery .gallery-item{overflow:hidden;float:left;margin:0;text-align:center;list-style:none;padding:0}.gallery .gallery-item .gallery-icon img{width:auto;max-width:89%;height:auto;padding:1%;margin:0 auto}.gallery-caption{margin-left:0}.gallery .col-0{width:100%}.gallery .col-1{width:100%}.gallery .col-2{width:50%}.gallery .col-3{width:33.33%}.gallery .col-4{width:25%}.gallery .col-5{width:20%}.gallery .col-6{width:16.66%}.gallery .col-7{width:14.28%}.gallery .col-8{width:12.5%}.gallery .col-9{width:11.11%}.gallery .col-10{width:10%}.gallery .col-11{width:9.09%}.gallery .col-12{width:8.33%}.gallery .col-13{width:7.69%}.gallery .col-14{width:7.14%}.gallery .col-15{width:6.66%}.gallery .col-16{width:6.25%}.gallery .col-17{width:5.88%}.gallery .col-18{width:5.55%}.gallery .col-19{width:5.26%}.gallery .col-20{width:5%}.gallery .col-21{width:4.76%}.gallery .col-22{width:4.54%}.gallery .col-23{width:4.34%}.gallery .col-24{width:4.16%}.gallery .col-25{width:4%}.gallery .col-26{width:3.84%}.gallery .col-27{width:3.7%}.gallery .col-28{width:3.57%}.gallery .col-29{width:3.44%}.gallery .col-30{width:3.33%}
+
+/* Body. */
+body {
+	font: normal normal normal 1em/1.5em Georgia, Palatino, "Palatino Linotype", "Book Antiqua", serif;
+	border-top: 5px solid #ca4842;
+	border-bottom: 5px solid #ca4842;
+	color: #666;
+	width: 100%;
+	word-wrap: break-word;
+}
+
+/* Images, embed. */
+img,
+object,
+embed {
+	max-width: 100%;
+}
+img {
+	height: auto;
+}
+
+/* Links. */
+a,
+a:visited {
+	color: #ca4842;
+	text-decoration: none;
+}
+a:focus,
+a:active,
+a:hover {
+	color: #b7322c;
+	text-decoration: underline;
+}
+
+/* Transitions. */
+a,
+input[type=submit],
+input[type=button],
+input[type=text],
+textarea {
+	-webkit-transition: all 0.2s ease-out;
+    -moz-transition: all 0.2s ease-out;
+    -ms-transition: all 0.2s ease-out;
+    -o-transition: all 0.2s ease-out;
+    transition: all 0.2s ease-out;
+}
+
+/* Headers. */
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	font-family: 'Oswald', Georgia, sans-serif;
+    font-style: normal;
+    font-weight: normal;
+	margin-top: 0;
+}
+h1 {
+	font-size: 1.75em; /* 28px / 16px = 1.75  */
+	line-height: 1.1;
+}
+h2 {
+	line-height: 1.2;
+}
+h4 {
+	font-size: 1.0625em; /* 17px / 16px = 1.0625 */
+}
+h5 {
+	font-size: 1em;
+}
+h6 {
+	font-size: 0.9375em; /* 15px / 16px = 0.9375 */
+}
+
+/* Lists. */
+ul {
+	list-style-type: circle;
+}
+ul,
+ol {
+	padding: 0 0 0 2em;
+}
+ol ol,
+ul ul {
+	margin: 0;
+	padding: 0 0 0 1.5em;
+} 
+dl dt {
+	font-size: .95em;
+	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
+}
+dl dd {
+	color: #777;
+}
+
+/* Blockquotes. */
+blockquote {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	border-left: 0.375em solid #70a0b2;
+	color: #666;
+	font-style: italic;
+	margin: 1em 0;
+	padding: 1% 2%;
+}
+blockquote blockquote {
+	padding: 0.5% 2%;
+}
+
+/* Code */
+code {
+	background: #f7f7f7;
+	color: #555;
+	padding: 0 0.1875em;
+}
+pre {
+	background: #f7f7f7;
+	border: 1px solid #e5e5e5;
+	color: #555;
+	font-size: .9375em;
+	padding: 3%;
+}
+pre code {
+	padding: 0;
+}
+
+/* Acronyms and abbreviations */
+acronym,
+abbr {
+	border-bottom: 1px dotted #999;
+}
+
+/* Tables. */
+table {
+	background: #fff;
+	margin: 0 0 1em 0;
+	width: 100%;
+}
+th {
+	background: #70a0b2;
+	border-top: 1px solid #f2f2f2;
+	border-bottom: 1px solid #f2f2f2;
+	border-right: 1px solid #f2f2f2;
+	color: #fff;
+	padding: .5em 2%;
+	text-align: left;
+}
+td,
+tbody th {
+	border-bottom: 1px solid #f2f2f2;
+	border-left: 1px solid #f2f2f2;
+	border-right: 1px solid #f2f2f2;
+	font-size: .9375em;
+	padding: .5em 2%;
+}
+tr:hover td {
+	background: #e9edf1;
+}
+tr:hover th {
+	background: #e9edf1;
+	color: #666;
+}
+thead th,
+tfoot th,
+thead tr:hover th,
+tfoot tr:hover th {
+	background: #e9edf1;
+	color: #666;
+}
+
+/* WP calendar. */
+#wp-calendar th,
+#wp-calendar td {
+	font-weight: normal;
+	text-align: center;
+}
+#wp-calendar tr:hover td {
+	background: transparent;
+}
+#wp-calendar td.pad,
+#wp-calendar #prev,
+#wp-calendar #next {
+	background: transparent;
+}
+#wp-calendar #prev {
+	text-align: left;
+}
+#wp-calendar #next {
+	text-align: right;
+}
+
+/* Horizontal rule. */
+hr {
+	background: #e9edf1;
+	height: 1px;
+}
+
+
+/* =Images
+-------------------------------------------------------------- */
+
+.hfeed img,
+.avatar {
+	height: auto;
+}
+
+/* Avatars. */
+.avatar {
+	float: left;
+	margin: 0 1em .5em 0;
+}
+.format-status .avatar {
+	margin-bottom: 1.5em;
+	width: 80px;
+	height: 80px;
+}
+
+/* Captions. */
+.wp-caption {
+	max-width: 100%;
+	overflow: visible;
+	padding: 0;
+}
+.wp-caption img {
+	margin: 0;
+	width: 100%;
+}
+.wp-caption-text {
+	background: #e9edf1;
+	border-bottom: 1px solid #e5e5e5;
+	color: #555;
+	font: normal normal normal 0.875em/1.6 "Helvetica Neue", Helvetica, sans-serif;
+	margin: -0.357142857em 0 0 0; /* 5px / 14px = 0.357142857 */
+	max-width: 100%;
+	padding: 0.571428571em 0.714285714em;
+	text-align: center;
+}
+
+/* Thumbnails. */
+.thumbnail,
+.path-thumbnail {
+	float: left;
+	margin: 0 1.5em .5em 0;
+}
+.thumbnail {
+	max-width: 150px;
+	max-height: 150px;
+}
+.path-smaller-thumbnail {
+	float: left;
+	margin: 0 1em 0.5em 0;
+	max-width: 80px;
+	max-height: 80px;
+}
+
+/* Galleries. */
+.gallery {
+	margin-bottom: 1.5em !important;
+}
+.gallery-caption {
+	color: #555;
+	font: normal normal normal 0.875em/1.4 "Helvetica Neue", Helvetica, sans-serif;
+	margin-bottom: 0.357142857em;
+}
+.singular-attachment .gallery-caption {
+	display: none; /* Hides gallery captions on singular-attachment views. */
+}
+.hentry .gallery .gallery-icon .attachment-thumbnail {
+	padding: 2%;
+}
+.singular-attachment .hentry .gallery .gallery-icon .attachment-thumbnail {
+	padding: 3%;
+}
+
+/* WP smiley. */
+img.wp-smiley {
+	background: transparent !important;
+	border: none !important;
+	margin: 0 !important;
+	max-height: 0.75em !important;
+	padding: 0 !important;
+}
+
+/* Container. */
+#container {
+}
+
+/* Primary and secondary menu. */
+#menu-primary,
+#menu-secondary {
+	display: none;
+}
+
+/* Mobile menus. */
+nav#menu-primary-mobile ul,
+nav#menu-secondary-mobile ul {
+	list-style-type: circle;
+	margin-top: 0.5em;
+}
+nav#menu-primary-mobile ul ul,
+nav#menu-secondary-mobile ul ul {
+	margin-top: 0;
+}
+nav#menu-primary-mobile li a,
+nav#menu-secondary-mobile li a {
+	display: block;
+	padding: 0.625em 0;
+}
+#menu-primary-mobile,
+#menu-secondary-mobile,
+#menu-primary-title,
+#menu-secondary-title {
+	display: block;
+}
+#menu-primary-mobile,
+#menu-secondary-mobile {
+	margin-top: 1em;
+}
+#menu-primary-title {
+	background: #404040;
+	margin: 0;
+	padding: 0 2%;
+	position: relative;
+	width: 96%;
+	height: 2.25em; /* 36px / 16px = 2.25 */
+}
+#menu-primary-title .wrap {
+	padding-top: 0.2em;
+}
+h3.menu-primary-mobile-title,
+h3.menu-secondary-mobile-title {
+	margin: 0.5em 0 0 0;
+}
+#menu-primary-title a {
+	color: #f6f6e8;
+	font: normal normal normal 0.75em/2em Arial, "Helvetica Neue", Helvetica, sans-serif; /* 12px / 16px = 0.75 */
+	padding: 0.75em 1.5em 1em;
+}
+#menu-secondary-title {
+	margin: 0 0 0.825em 0;
+	padding: 0 2%;
+	position: relative;
+	width: 96%;
+}
+#menu-secondary-title a {
+	background: #ca4842;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #fff;
+	font: normal normal normal 0.6875em/1.2em Arial, Verdana, sans-serif;
+	letter-spacing: 1px;
+	padding: 0.909090909em 1.81818182em; /* 10px / 11px = 0.909090909 and 20px / 11px = 1.81818182  */
+	text-transform: uppercase;
+}
+#menu-primary-title a:hover,
+#menu-secondary-title a:hover {
+	text-decoration: none;
+}
+	
+.menu-primary-anchor:after,
+.menu-secondary-anchor:after,
+.search-primary-anchor:after {
+    content: " ▼";
+}
+.menu-secondary-anchor:after {
+	font-size: 1em;
+}
+
+/* Mobile search. */
+#search-primary-mobile .search {
+	padding: 1em 0 0.25em;
+}
+
+/* Center. */
+#menu-primary-title,
+#menu-secondary-title,
+#header,
+#menu-primary-title .search {
+	text-align: center;
+}
+
+/* Header. */
+#header {
+	margin: 0 auto;
+	padding: 0 2% 0.25em;
+	position: relative;
+	overflow: hidden;
+	width: 96%;
+	z-index: 88;
+}
+
+/* Branding. */
+#branding {
+	padding: 0.5em 0 1em;
+	position: relative;
+	z-index: 98;
+}
+
+/* Site title and description. */
+#site-title {
+	font: 1.25em/1.35 'Oswald', Georgia, sans-serif;
+	margin: 0;
+}
+#site-title a {
+	color: #70a0b2;
+}
+#site-description {
+	color: #70a0b2;
+	font: italic 1em/1.25em Georgia,serif;
+	margin: 0;
+	padding-top: 0.5em;
+	text-transform: none;
+}
+.custom-header #site-title span {
+	display: none;
+}
+
+/* Sidebars. */
+#sidebar-primary .widget,
+#sidebar-secondary .widget,
+#sidebar-before-content .widget,
+#sidebar-subsidiary .widget {
+	color: #777;
+	font-size: 0.9375em;
+	margin: 0 0 1em 0;
+}
+#sidebar-before-content {
+	margin: 0 0 0.825em 0;
+}
+#sidebar-subsidiary {
+	margin: 0.825em 0 0 0;
+}
+#sidebar-before-content .widget,
+#sidebar-subsidiary .widget {
+	padding: 1em 0 0 0;
+}
+	
+/* Main. */
+#main,
+#main .wrap {
+	margin: 0;
+	overflow: hidden;
+	padding: 0 2%;
+	width: 96%;
+}
+#main .wrap {
+	background: #fff;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	border-radius: 4px;
+}
+
+/* Primary and secondary sidebar. */
+#sidebar-primary,
+#sidebar-secondary {
+	margin: 0 0 1em 0;
+	padding: 0;
+}
+
+/* Breadcrumbs. */
+.breadcrumbs {
+	color: #555;
+	font-size: .875em;
+	display: block;
+	margin: 0.5em 0;
+}
+.breadcrumbs .trail-before {
+	margin-right: 0.5em;
+}
+.breadcrumbs .trail-end {
+	color: #999;
+	font-style: italic;
+}
+
+
+/* =Posts
+-------------------------------------------------------------- */
+
+.hentry {
+	border-bottom: 1px solid #e9edf1;
+	margin-bottom: 1.5em;
+	padding-bottom: 1.5em;
+}
+.singular .hentry {
+	border-bottom: none;
+	margin-bottom: 2em;
+	padding-bottom: 0;
+}
+.singular-attachment .hentry {
+	text-align: center;
+}
+.page-template-path-slider .hentry,
+.page-template-most-popular .hentry,
+.page-template-most-popular-last-30-days .hentry,
+.page-template-most-popular-by-comments .hentry,
+.page-template-most-popular-by-year .hentry,
+.page-template-most-popular-by-month .hentry {
+	border-bottom: 1px solid #e9edf1;
+	margin-bottom: 1.5em;
+	padding-bottom: 1.5em;
+}
+.taxonomy-post_format-video .hentry {
+	background: #e9edf1;
+	padding: 3%;
+}
+
+/* Post titles. */
+.entry-title {
+	margin-bottom: 1em;
+}
+.singular .entry-title,
+.error-404 .entry-title {
+	margin-bottom: 0;
+	padding-bottom: .5em;
+}
+.singular-post .entry-title,
+.format-standard .entry-title,
+.singular.attachment-image .entry-title {
+	margin-bottom: .5em;
+	padding-bottom: 0;
+}
+.singular .entry-title a {
+}
+.home .format-link .entry-title,
+.archive .format-link .entry-title {
+	margin-bottom: 1em;
+}
+.singular-attachment .entry-title {
+	text-align: center;
+}
+
+/* Bylines. */
+.byline {
+	color: #555;
+	font: normal normal normal .875em/1.5 Georgia, serif;
+	margin-bottom: 1em;
+}
+.hfeed-more-articles .byline {
+	margin-bottom: 0.25em;
+}
+	
+/* Entry meta. */
+.entry-meta {
+	clear: both;
+	color: #555;
+	font: normal normal normal .875em/1.5  Georgia, serif;
+}
+.singular .entry-meta .category,
+.singular .entry-meta .post_tag {
+	display: block;
+}
+
+/* Loop meta. */
+.loop-meta {
+	border-bottom: 1px solid #e9edf1;
+	margin-bottom: 1em;
+	overflow: hidden;
+}
+.blog .loop-meta {
+	border-bottom: none;
+	margin-bottom: 0;
+}
+.loop-meta .loop-title {
+	color: #555;
+}
+.loop-meta .loop-description {
+	color: #999;
+	font-style: italic;
+}
+
+
+/* =Pagination and prev/next links
+-------------------------------------------------------------- */
+
+.pagination, .page-links, .comment-pagination {
+	clear: both;
+	font-size: 0.875em;
+	font-weight: bold;
+	line-height: 1em;
+	margin: 0 0 1.71428571em 0;
+	overflow: hidden;
+}
+.pagination {
+	margin-bottom: 1.71428571em;
+	padding-bottom: 0.142857143em;
+	text-align: center;
+}
+.page-links {
+	padding: 0.5em 0 0 0;
+}
+.pagination .page-numbers,
+.page-links a {
+	background: #ca4842;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #fff;
+	display: inline-block;
+	font: normal normal bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	margin: 0 0.714285714em 0 0;
+	padding: 0.857142857em 1.07142857em;
+	text-transform: uppercase;
+}
+.pagination .next {
+	margin-right: 0;
+}
+.pagination .meta-nav,
+.loop-nav .meta-nav {
+	font-size: 0.875em;
+}
+.page-links a {
+	margin: 0 0.214285714em;
+	padding: 1em 1.5em;
+}
+.entry-summary .page-links a {
+	padding: 0.75em 1em;
+}
+.pagination .page-numbers:hover,
+.page-links a:hover {
+	background: #b7322c;
+}
+.pagination .dots:hover {
+	background: #b7322c;
+}
+.pagination .current {
+	background: #b7322c;
+}
+.loop-nav,
+.loop-pagination {
+	font-size: 0.875em;
+	font-weight: bold;
+	line-height: 1em;
+	margin: 1em 0 2em 0;
+	overflow: hidden;
+}
+.loop-nav .previous,
+.loop-nav .next {
+	background: #ca4842;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #fff;
+	float: left;
+	font: normal normal bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	margin: 0;
+	padding: 1em 1.5em;
+}
+.loop-nav .next {
+	float: right;
+	text-align: right;
+}
+.loop-nav a:hover {
+	text-decoration: none;
+}
+.loop-nav a:hover span {
+	background: #b7322c;
+}
+
+
+/* =Widgets
+-------------------------------------------------------------- */
+
+.widget {
+	color: #555;
+}
+.widget-title {
+	color: #555;
+}
+.widget img {
+	max-width: 100%;
+}
+
+/* Search widget. */
+.widget-search {
+	padding-bottom: 1.5em !important;
+}
+#sidebar-header .widget-search {
+	padding-bottom: 1em !important;
+} 
+.widget-search input[type="text"],
+input[type="text"],
+input[type="password"] {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	-moz-box-sizing: border-box; 
+	-webkit-box-sizing: border-box; 
+	box-sizing: border-box;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #555;
+	display: block;
+	padding: 0.5em;
+	width: 100%;
+}
+#sidebar-header .widget-search input[type="text"],
+#sidebar-header input[type="text"] {
+	border: 1px solid #f2f2f2;
+}
+.widget-search input[type="text"]:focus,
+input[type="text"]:focus,
+input[type="password"]:focus {
+	background: #fff;
+}
+.widget-search input[type="submit"],
+.widget-search label {
+	display: none;
+}
+input[type="submit"] {
+	background: #ca4842;
+	border: none;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #fff;
+	display: block;
+	font: normal normal bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	margin: 0.714285714em 0;
+	padding: 0.857142857em 1.07142857em;
+}
+input[type="submit"]:hover {
+	background: #b7322c;
+}
+
+/* For most viewed widget */
+.widget-most-viewed .hentry:after {
+    clear: both;
+    content: "";
+    display: table;
+}
+.widget-most-viewed .byline {
+	margin-top: 1em;
+}
+
+
+/* =Comments
+-------------------------------------------------------------- */
+
+#comments-number {
+	border-bottom: 1px solid #e9edf1;
+	padding-bottom: 1em;
+}
+
+/* Comments closed. */
+.comments-closed {
+	color: #555;
+	padding: 0 1.5em;
+}
+
+/* Comment pagination. */
+.comments-nav {
+	float: right;
+	line-height: 2em;
+	margin: 0 0 1em 0;
+	position: relative;
+}
+
+/* Comment list. */
+.comment-list,
+.comment-list ol.children {
+	list-style: none;
+	margin: 0 0 2em 0;
+}
+ol.comment-list {
+	padding: 0;
+}
+.comment-list ol.children {
+	margin-left: 1%;
+	margin-bottom: 0;
+	padding: 0;
+}
+.comment-list li.comment,
+.comment-list li.pingback,
+.comment-list li.trackback {
+	border-bottom: 1px solid #e9edf1;
+	clear: both;
+	margin-bottom: 1.5em;
+	overflow: hidden;
+}
+.comment-list li li.comment {
+	border-bottom: none;
+	margin-bottom: 0;
+	padding: 1.5em 0 0 0;
+	overflow: hidden; /* IE7 */
+}
+
+/* Avatars. */
+.comment-list .avatar {
+	float: none;
+	margin: 0 1.5em 1.5em 0;
+	width: 80px;
+	height: 80px;
+}
+.comment-list li li .avatar {
+	margin-bottom: 0.375em;
+	padding: 0.175em;
+	width: 60px;
+	height: 60px;
+}
+
+/* Comment meta. */
+.comment-meta {
+	color: #555;
+	font: normal normal normal 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	margin-bottom: 0.714285714em;
+}
+.comment-list li.pingback .comment-meta,
+.comment-list li.trackback .comment-meta {
+	margin-bottom: 1.5em;
+}
+.comment-meta .published abbr {
+	font-style: italic;
+}
+.comment-author {
+	display: block;
+}
+.comment-author cite {
+	font-weight: bold;
+}
+.pingback .comment-author cite,
+.trackback .comment-author cite {
+	font-style: italic;
+}
+.comment-reply-link {
+}
+
+/* Comment text. */
+.comment-text {
+	overflow: hidden;
+}
+.comment-list li li.comment .comment-text {
+	overflow: visible;
+}
+.comment-list li li.has-avatar .comment-text {
+	margin-left: 0;
+}
+.comment-text .moderation {
+	font-style: italic;
+	color: #555;
+}
+
+/* Comment note. */
+.comment-note {
+	font-weight: bold;
+}
+
+/* After singular sidebar. */
+#sidebar-after-singular {
+	border-top: 1px solid #e9edf1;
+	margin-bottom: 1em;
+	padding-top: 1em;
+}
+
+
+/* =Comment form
+-------------------------------------------------------------- */
+
+#respond {
+	margin-bottom: 1.5em;
+	overflow: hidden;
+}
+
+/* Cancel reply link. */
+#reply-title small a {
+	font: bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	margin-left: 1em;
+}
+
+/* Comment form labels. */
+#respond label {
+	font: normal 1em/1.8 "Helvetica Neue", Helvetica, sans-serif;
+}
+#respond p.form-email label {
+	padding: 0;
+}
+#respond span.required {
+	font-size: 1em;
+	font-weight: bold;
+}
+
+/* Comment form inputs and textarea elements. */
+#respond input[type="text"],
+#respond textarea {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	-moz-box-sizing: border-box; 
+	-webkit-box-sizing: border-box; 
+	box-sizing: border-box;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #555;
+	display: block;
+	padding: 0.5em;
+	width: 100%;
+}
+#respond input[type="text"]:focus,
+#respond textarea:focus {
+	background: #fff;
+}
+
+/* Submit button. */
+#respond #submit {
+	background: #ca4842;
+	border: none;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	border-radius: 4px;
+	color: #fff;
+	font: normal 0.875em/1.2 "Helvetica Neue",Helvetica,sans-serif;
+	float: right;
+	margin: 0 0 1em 1em;
+	padding: 1em 1.5em;
+}
+#respond #submit:hover {
+	background: #b7322c;
+}
+
+
+/* =Footer area
+-------------------------------------------------------------- */
+
+/* Footer. */
+#footer {
+	font-size: .875em;
+	margin: 0;
+	padding: 0 2%;
+	width: 96%;
+}
+#footer .wrap {
+	margin: 0 auto;
+	overflow: hidden;
+	padding: 0 2%;
+	width: 96%;
+}
+/* Copyright and credit in footer. */
+#footer .copyright,
+#footer .credit {
+	text-align: center;
+}
+.top:after {
+    content: " ▲";
+}
+
+/* Subsidiary menu. */
+#menu-subsidiary {
+	background: #b2cecf;
+	padding: 0 2%;
+	position: relative;
+	margin: 0;
+	overflow: hidden;
+	width: 96%;
+	z-index: 98;
+}
+#menu-subsidiary .wrap {
+	margin: 0 auto;
+	width: 100%;
+}
+#menu-subsidiary .menu {
+    display: table;
+    margin: 0 auto;
+}
+#menu-subsidiary ul {
+	padding: 0;
+}
+#menu-subsidiary li {
+	display: inline;
+}
+#menu-subsidiary li a {
+	color: #006699;
+	font: normal normal normal 0.75em/1.5625em Arial, "Helvetica Neue", Helvetica, sans-serif; /* 12px / 16px = 0.75 and 25px / 16px = 1.5625 */
+	padding: 0.5em 1em;
+}
+#menu-subsidiary li.current-menu-item a {
+	color: #ca4842; 
+}
+
+/* Author profile. */
+.singular-post .author-profile {
+	border: 1px solid #e9edf1;
+	margin-bottom: 2em;
+	overflow: hidden;
+	padding: 4%;
+}
+.singular-post .author-co-profile {
+	overflow: hidden;
+}
+p.twitter {
+	margin: 1em 0 0 0;
+}
+p.multi-author {
+	margin: 1em 0;
+}
+
+
+/* =Gravity Forms CSS. @link: http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/
+-------------------------------------------------------------- */
+
+.gform_wrapper ul {
+	background: transparent;
+	list-style: none;
+	margin: 0;
+	padding: 0;
+}
+body .gform_wrapper .gform_heading {
+	margin-bottom: 1em;
+	width: 100%;
+}
+body .gform_wrapper .gform_heading .gform_title,
+body .gform_wrapper .gform_body .gform_fields .gsection .gsection_title {
+	font-weight: normal;
+	margin: 0.625em 0; /* 10px / 16px = 0.625 */
+}
+body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description,
+body .gform_wrapper .gform_body .gform_fields .gsection .gsection_description,
+body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex label {
+	color: #555;
+	font: normal normal normal 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	padding: 0.625em 0 0; /* 10px / 16px = 0.625 */
+}
+body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex label {
+	padding: 0.25em 0 0.625em; /* 4px / 16px = 0.25 and 10px / 16px = 0.625 */
+}
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
+body .gform_wrapper .gform_body .gform_fields .gfield textarea {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	-moz-box-sizing: border-box; 
+	-webkit-box-sizing: border-box; 
+	box-sizing: border-box;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	border-radius: 4px;
+	color: #555;
+	font-size: 0.875em; /* 14px / 16px = 0.875 */
+	display: block;
+	padding: 0.5em;
+}
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=url]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=number]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield input[type=password]:focus,
+body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
+	background: #fff;
+} 
+body .gform_wrapper .gform_body .gform_fields .gfield select {
+	border: 1px solid #e5e5e5;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	border-radius: 4px;
+	font: normal normal normal 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	padding: 0.25em 0; /* 4px / 16px = 0.25 */
+}
+body .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox li input[type=checkbox],
+body .gform_wrapper .gform_body .gform_fields .gfield .gfield_radio li input[type=radio] {
+	margin-top: 0.3125em; /* 5px / 16px = 0.3125 */
+}
+body .gform_wrapper table.gfield_list th,
+body .gform_wrapper table.gfield_list td {
+	padding: 0.5em 2%;
+}
+body .gform_wrapper table.gfield_list tr:hover td {
+	background: none;
+}
+body .gform_wrapper .gform_body .gform_page_footer .gform_next_button,
+body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button {
+	background: #ca4842;
+	-webkit-border-radius: 4px;
+	-moz-border-radius: 4px;
+	border-radius: 4px;
+	border: none;
+	color: #fff;
+	font: normal normal bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+	float: left;
+	margin-bottom: 0.625em; /* 10px / 16px = 0.625 */
+	padding: 1em 1.5em;
+}
+body .gform_wrapper .gform_body .gform_page_footer .gform_next_button {
+	float: right;
+}
+body .gform_wrapper .gform_body .gform_page_footer .gform_next_button:hover,
+body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button:hover {
+	background: #b7332c;
+}
+body .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
+	font-size: 1.1em;
+}
+body .gform_wrapper .gform_page_footer .button.gform_button {
+	clear: both;
+}
+body #gforms_confirmation_message {
+	background: #e9edf1;
+	border: 1px solid #e5e5e5;
+	padding: 2em;
+}
+body .ui-datepicker-div,
+body .ui-datepicker-inline,
+body #ui-datepicker-div {
+	font: normal normal bold 0.875em/1.2 "Helvetica Neue", Helvetica, sans-serif;
+}
+
+
+/* =Social Path Plugin CSS 
+-------------------------------------------------------------- */
+
+#social-media {
+	margin: 0.625em 0;
+}
+.fb-like, .tweet, .google {
+	display: inline;
+	padding-right: 0.625em;
+}
+body .fb_edge_widget_with_comment{
+	bottom: 2px;
+}
+
+
+/* =Pullquote Shortcode Plugin CSS
+-------------------------------------------------------------- */
+
+.pullquote {
+	border-top: 1px solid #666;
+	border-bottom: 1px solid #666;
+	color: #666;
+	font-size: 1.125em; /* 18px / 16px = 1.125 */
+	font-style: italic;
+	line-height: 1.875em; /* 18px / 16px = 1.875 */
+	margin: 0.625em auto; 
+	padding: 0.625em;
+	text-align: center;
+	max-width: 12.5em; /* 200px / 16px = 12.5 */
+}
+
+
+/* =Layout for tablets version 
+-------------------------------------------------------------- */
+
+@media only screen and (min-width: 49em) {
+
+/* WP calendar. */
+#sidebar-subsidiary #wp-calendar th,
+#sidebar-subsidiary #wp-calendar td {
+	padding: 2px 1px;
+}
+
+/* Primary menu. */
+#menu-primary {
+	background: #404040;
+	display: block;
+	padding: 0 2%;
+	position: relative;
+	margin: 0;
+	width: 96%;
+	height: 2.25em; /* 36px / 16px = 2.25 */
+	z-index: 98;
+}
+#menu-primary .wrap {
+	margin: 0 auto;
+	width: 100%;
+}
+#menu-primary ul {
+	padding: 0;
+}
+#menu-primary li {
+	background: #404040;
+	display: inline;
+}
+#menu-primary li a {
+	color: #fff;
+	font: normal normal normal 0.75em/2em Arial, "Helvetica Neue", Helvetica, sans-serif; /* 12px / 16px = 0.75 */
+	padding: 0.416666667em 1.16666667em 0.583333333em; /* 7px / 12px = 0.583333333 and 14px / 12px = 1.16666667 */
+}
+#menu-primary li.current-menu-item {
+	background: #e9edf1;
+	color: #ca4842;
+}
+#menu-primary li.current-menu-item a {
+	color: #ca4842;
+}
+#menu-primary li a:hover,
+#menu-primary li.sfHover a {
+	background: #e9edf1;
+	color: #ca4842;
+	text-decoration: none;
+}
+#menu-primary li li a,
+#menu-primary li.sfHover li a,
+#menu-primary li li.sfHover li a {
+	background: #fff;
+	border-bottom: 1px solid #f2f2f2;
+	color: #ca4842;
+	padding-left: 1.16666667em; /* 14px / 12px = 1.16666667 */
+	text-transform: none;
+}
+#menu-primary li li.current-menu-item a,
+#menu-primary li li.sfHover li.current-menu-item a,
+#menu-primary li li a:hover,
+#menu-primary li li.sfHover a,
+#menu-primary li li.sfHover li a:hover {
+	color: #404040;
+}
+
+/* Drop-down styles */
+#menu-primary li:hover ul,
+#menu-primary li.sfHover ul {
+	top: 2.25em; /* 36px / 16px = 2.25 */
+}
+#menu-primary li:hover li ul,
+#menu-primary li.sfHover li ul {
+	top: -999em;
+}
+#menu-primary li li:hover ul,
+#menu-primary li li.sfHover ul {
+	margin-left: 0;
+	padding-bottom: 0;
+	top: 0;
+}
+	
+/* Sub-nav indicator. */
+#menu-primary a.sf-with-ul {
+	padding-right: 2.33333333em; /* 28px / 12px = 2.33333333 */
+}
+#menu-primary li .sf-sub-indicator {
+	background: url('images/menu-plus.png') no-repeat 0 0;
+	overflow: hidden;
+	position: absolute;
+	top: 1.16666667em; /* 14px / 12px = 1.16666667 */
+	right: 1em; /* 12px / 12px = 1 */
+	width: 6px;
+	height: 6px;
+	text-indent: -9999em;
+}
+#menu-primary li a:hover .sf-sub-indicator,
+#menu-primary li.sfHover .sf-sub-indicator,
+#menu-primary li.current-menu-item .sf-sub-indicator {
+	background-position: 0 -6px;
+}
+#menu-primary li ul li .sf-sub-indicator,
+#menu-primary li ul li.current-menu-item li .sf-sub-indicator {
+	background-position: 0 -6px !important;
+	top: 1.41666667em; /* 17px / 12px = 1.41666667 */
+	width: 6px;
+	height: 6px;
+}
+
+/* Search form. */
+#menu-primary form {
+	overflow: hidden;
+	width: 10.62500em; /* 170px / 16px = 10.62500 */
+	float: right;
+	margin-top: 0.3125em; /* 5px / 16 px = 0.3125 */
+}
+#menu-primary input[type="text"] {
+	float: right;
+	width: 9.16666667em; /* 110 px / 12 px = 9.16666667 */
+	margin: 0; /* Chrome */
+	padding: 5px 0 6px 9px;
+	font-style: italic;
+	font-size: 0.75em; /* 12 px / 16 px = 0.75 */
+	background: #e9edf1;
+	border: none;
+}
+#menu-primary input[type="text"]:focus {
+	width: 14.1666667em; /* 170 px / 12 px = 14.1666667 */
+	background-color: #fff;
+}
+#menu-primary .search-submit {
+	display: none;
+}
+
+/* Menu secondary. */
+#menu-secondary {
+	display: block;
+	padding: 0 2% 1em;
+	width: 96%;
+	height: 2em; /* 32px / 16px = 2 */
+}
+#menu-secondary .wrap {
+	margin: 0 auto;
+}
+#menu-secondary ul {
+	padding: 0;
+}
+#menu-secondary li {
+	display: inline;
+	margin-left: 1em;
+}
+#menu-secondary li:first-child {
+	margin-left: 0;
+}
+#menu-secondary li a {
+	color: #ca4842;
+	font: normal normal normal 0.6875em/1.2em Arial, Verdana, sans-serif;
+	letter-spacing: 1px;
+	margin-bottom: 0.363636364em; /* 4px / 11px = 0.363636364 */
+	padding: 0.909090909em 1.81818182em; /* 10px / 11px = 0.909090909 and 20px / 11px = 1.81818182  */
+	text-transform: uppercase;
+}
+#menu-secondary li li a {
+	margin-bottom: 0;
+}
+#menu-secondary li li {
+	margin-left: 0;
+}
+#menu-secondary li.current-menu-item a,
+#menu-secondary li a:hover,
+#menu-secondary li.sfHover a {
+	background: #ca4842;
+	-webkit-border-radius: 3px;
+	-moz-border-radius: 3px;
+	border-radius: 3px;
+	color: #fff;
+}
+#menu-secondary li a:hover,
+#menu-secondary li.sfHover a {
+	text-decoration: none;
+}
+#menu-secondary li li a,
+#menu-secondary li.sfHover li a,
+#menu-secondary li li.sfHover li a {
+	background: #e9edf1;
+	-webkit-border-radius: 0;
+	-moz-border-radius: 0;
+	border-radius: 0;
+	color: #ca4842;
+	border-bottom: 1px solid #fff;
+	padding-left: 1.81818182em; /* 20px / 11px = 1.81818182 */
+}
+#menu-secondary li li.current-menu-item a,
+#menu-secondary li li.sfHover li.current-menu-item a {
+	color: #404040;
+}
+#menu-secondary li li a:hover,
+#menu-secondary li li.sfHover a,
+#menu-secondary li li.sfHover li a:hover {
+	background: #fff;
+	color: #404040;
+}
+
+/* Drop-down styles. */
+#menu-secondary li:hover ul,
+#menu-secondary li.sfHover ul {
+	top: 2.0625em; /* 33px / 16px = 2.0625 */
+}
+#menu-secondary li:hover li ul,
+#menu-secondary li.sfHover li ul {
+	top: -999em;
+}
+#menu-secondary li li:hover ul,
+#menu-secondary li li.sfHover ul {
+	margin-left: 0;
+	padding-bottom: 0;
+	top: 0;
+}
+	
+/* Sub-nav indicator. */
+#menu-secondary a.sf-with-ul {
+	padding-right: 2.54545455em; /* 28px / 11px = 2.54545455 */
+}
+#menu-secondary li .sf-sub-indicator {
+	background: url('images/menu-plus.png') no-repeat 0 0;
+	background-position: 0 -6px;
+	overflow: hidden;
+	position: absolute;
+	top: 1.18181818em; /* 13px / 11px = 1.18181818 */
+	right: 1.09090909em; /* 12px / 11px = 1.09090909 */
+	width: 6px;
+	height: 6px;
+	text-indent: -9999em;
+}
+#menu-secondary li a:hover .sf-sub-indicator, 
+#menu-secondary li.sfHover .sf-sub-indicator,
+#menu-secondary li.current-menu-item .sf-sub-indicator {
+	background-position: 0 -12px;
+}
+#menu-secondary li ul li .sf-sub-indicator,
+#menu-secondary li ul li.current-menu-item li .sf-sub-indicator {
+	background-position: 0 -6px !important;
+	top: 1.18181818em; /* 13px / 11px = 1.18181818 */
+	width: 6px;
+	height: 6px;
+}
+
+/* Width. */
+#menu-primary .wrap,
+#menu-secondary .wrap,
+#main .wrap,
+#header,
+#sidebar-subsidiary .wrap,
+#menu-subsidiary .wrap {
+	max-width: 60em;
+}
+#footer .wrap {
+	max-width: 68.5714286em; /*60 * ( 16 px / 14 px ) = 68.5714286 */
+	padding-bottom: 1em;
+}
+
+/* Mobiles menus. */
+#menu-primary-mobile,
+#menu-secondary-mobile,
+#menu-primary-title,
+#menu-secondary-title {
+	display: none;
+}
+
+#sidebar-description {
+	float: right;
+	padding: 1em 0;
+}
+
+/* Header. */
+#header {
+	padding: 1em 2%;
+}
+.custom-header #header {
+	padding: 0.5em 2%;
+}
+
+/* Center to left align. */
+#header {
+	text-align: left;
+}
+
+/* Site title. */
+#site-title {
+	float: left;
+	font-size: 2em; /* 32px / 16px = 2 */
+	line-height: 1.125em; /* 36px / 32px = 1.12500 */
+	margin-right: 4%;
+	width: 32%;
+}
+#site-description {
+	float: left;
+	font-size: 1em;
+	line-height: 1.25em; /* 20px / 16px = 1.25 */
+	padding-top: 0.8125em; /* 13px / 16px = 0.8125 */
+	width: 64%;
+}
+.custom-header #site-description {
+	padding-top: 1.375em;
+}
+
+/* Before content sidebar. */
+#sidebar-before-content {
+	margin: 3px 0 0.825em 0;
+}
+#sidebar-before-content .widget {
+	float: left;
+	margin-right: 4%;
+	width: 46%;
+}
+
+/* Breadcrumbs. */
+.breadcrumbs {
+	margin: 1em 0 1.5em;
+}
+
+/* Image. */
+img {
+	-moz-box-sizing: border-box; 
+	-webkit-box-sizing: border-box; 
+	box-sizing: border-box;
+	border: 1px solid #e9edf1;
+	padding: 4px;
+}
+.thumbnail {
+	max-width: 160px; /* 4px padding and 1px border left and right. */
+	max-height: 160px;
+}
+.path-smaller-thumbnail {
+	max-width: 90px; /* 4px padding and 1px border left and right. */
+	max-height: 90px;
+}
+#site-title img {
+	border: none;
+	padding: 0;
+}
+
+#content {
+	float: left;
+	width: 64%; /* 4% for margin */
+}
+
+/* Byline. */
+.hfeed-more-articles .byline {
+	margin-bottom: 0.8em;
+}
+
+#main .wrap {
+	-moz-box-shadow: 0 1px 3px #8493a6;
+	-webkit-box-shadow: 0 1px 3px #8493a6;
+	box-shadow: 0 1px 3px #8493a6;
+	margin: 3px auto 2em;
+}
+
+/* Sidebars. */
+#sidebar-primary {
+	float: right;
+	margin: 0;
+	padding: 0;
+	width: 32%;
+}
+
+/* Comment form paragraphs. */
+#respond p.form-author {
+	float: left;
+	width: 50%;
+}
+#respond p.form-email {
+	float: right;
+	overflow: hidden;
+	width: 50%;
+}
+#respond p.form-author input[type="text"] {
+	width: 90%;
+}
+#respond p.form-email input[type="text"],
+#respond p.form-email label {
+	width: 90%;
+	float: right;
+}
+#respond p.form-url {
+	clear: both;
+}
+
+/* Copyright and credit in footer. */
+#footer .copyright, #footer .credit {
+	float: left;
+	text-align: left;
+	width: 50%;
+}
+#footer .credit {
+	text-align: right;
+}
+
+#footer p {
+    margin-top: 0;
+}
+
+/* Comments. */
+.comment-list ol.children {
+	margin-left: 2%;
+}
+
+/* Subsidiary. */
+#sidebar-subsidiary .widget {
+	float: left;
+	margin-right: 4%;
+	width: 21%;
+}
+
+/* =Layouts
+-------------------------------------------------------------- */
+
+/* One column. */
+.layout-1c #content {
+	float: none;
+	margin-right: 0;
+	width: 100%;
+}
+
+/* Two columns. */
+.layout-2c-l #content,
+.layout-default #content,
+.layout-3c-l #content,
+.layout-3c-c #content {
+	float: left;
+	width: 64%; /* 4% for margin */
+}
+.layout-2c-l #sidebar-primary,
+.layout-default #sidebar-primary,
+.layout-2c-l #sidebar-secondary,
+.layout-default #sidebar-secondary,
+.layout-3c-l #sidebar-primary,
+.layout-3c-l #sidebar-secondary,
+.layout-3c-c #sidebar-primary,
+.layout-3c-c #sidebar-secondary {
+	float: right;
+	width: 32%;
+}
+.layout-2c-l #sidebar-secondary,
+.layout-default #sidebar-secondary,
+.layout-3c-l #sidebar-secondary,
+.layout-3c-c #sidebar-secondary {
+	clear: right;
+}
+.layout-2c-r #content,
+.layout-3c-r #content {
+    float: right;
+	width: 64%; /* 4% for margin */
+}
+.layout-2c-r #sidebar-primary,
+.layout-2c-r #sidebar-secondary,
+.layout-3c-r #sidebar-primary,
+.layout-3c-r #sidebar-secondary {
+    float: left;
+	width: 32%;
+}
+.layout-2c-r #sidebar-secondary,
+.layout-3c-r #sidebar-secondary {
+	clear: left;
+}
+
+}
+
+/* =Layout for somewhere in the middle version 
+-------------------------------------------------------------- */
+
+@media only screen and (min-width: 60em) {
+
+.custom-header #site-description {
+	padding-top: 2.25em;
+}
+
+/* Pullquote Shortcode Plugin CSS. */
+.pullquote {
+	float: right;
+	margin: 0.625em 0 0.625em 1.25em;
+}
+
+}
+
+/* =Layout for desktop version 
+-------------------------------------------------------------- */
+
+@media only screen and (min-width: 70em) {
+
+/* Comments for desktop. */
+.comment-list ol.children {
+	margin-left: 1em;
+}
+.comment-list .avatar {
+	float: left;
+}
+.comment-list li li.has-avatar .comment-text {
+	margin-left: 3.75em;
+	overflow: hidden;
+}
+
+/* Slider Page Template. */
+.page-template-path-slider #content .hentry {
+	float: left;
+	border-bottom: none;
+	margin: 0 4% 0 0;
+	width: 48%;
+}
+.page-template-path-slider #content .last {
+	margin: 0;
+}
+.page-template-path-slider #content .path-line {
+	border-bottom: 1px solid #e9edf1;
+	margin-bottom: 1.5em;
+}
+.page-template-path-slider #slider-content .hentry {
+	float: none;
+	margin: 0;
+	width: 100%;
+}
+.page-template-path-slider #content .path-thumbnail {
+	float: none;
+}
+.page-template-path-slider #content .entry-header {
+	text-align: center;
+}
+.page-template-path-slider #content .hfeed-more-articles .entry-header,
+.page-template-path-slider #slider-content .entry-header {
+	text-align: left;
+}
+.page-template-path-slider #content .hfeed-more-articles h2 {
+	font-size: 1.25em;
+}
+
+/* layout-3c-l. */
+.layout-3c-l #content {
+	float: left;
+	width: 46%;
+}
+.layout-3c-l #sidebar-primary,
+.layout-3c-l #sidebar-secondary {
+	float: left;
+	width: 23%;
+	margin: 0 0 0 4%;
+}
+.layout-3c-l #sidebar-secondary {
+	clear: none;
+}
+
+/* layout-3c-r. */
+.layout-3c-r #content {
+	float: right;
+	width: 46%;
+}
+.layout-3c-r #sidebar-primary,
+.layout-3c-r #sidebar-secondary {
+	float: left;
+	width: 23%;
+	margin: 0 4% 0 0;
+}
+.layout-3c-r #sidebar-secondary {
+	clear: none;
+}
+
+/* layout-3c-c. */
+.layout-3c-c #content {
+	float: left;
+	margin-left: 27%;
+	width: 46%;
+}
+.layout-3c-c #sidebar-primary {
+	float: left;
+	margin-left: -73%;
+	width: 23%;
+}
+.layout-3c-c #sidebar-secondary {
+	float: right;
+	width: 23%;
+}
+.layout-3c-c #sidebar-secondary {
+	clear: none;
+}
+
+/* Width. */
+.layout-3c-l #menu-primary .wrap,
+.layout-3c-r #menu-primary .wrap,
+.layout-3c-c #menu-primary .wrap,
+.layout-3c-l #menu-secondary .wrap,
+.layout-3c-r #menu-secondary .wrap,
+.layout-3c-c #menu-secondary .wrap,
+.layout-3c-l #main .wrap,
+.layout-3c-r #main .wrap,
+.layout-3c-c #main .wrap,
+.layout-3c-l #header,
+.layout-3c-r #header,
+.layout-3c-c #header,
+.layout-3c-l #sidebar-subsidiary .wrap,
+.layout-3c-r #sidebar-subsidiary .wrap,
+.layout-3c-c #sidebar-subsidiary .wrap,
+.layout-3c-l #menu-subsidiary .wrap,
+.layout-3c-r #menu-subsidiary .wrap,
+.layout-3c-c #menu-subsidiary .wrap {
+	max-width: 64em;
+}
+.layout-3c-l #footer .wrap,
+.layout-3c-r #footer .wrap,
+.layout-3c-c #footer .wrap {
+	max-width: 73.1428571em; /* 64 * ( 16 px / 14 px ) = 73.1428571 */
+	padding-bottom: 1em;
+}
+
+/* WP calendar. */
+.layout-3c-l #sidebar-primary #wp-calendar th,
+.layout-3c-l #sidebar-secondary #wp-calendar th,
+.layout-3c-r #sidebar-primary #wp-calendar th,
+.layout-3c-r #sidebar-secondary #wp-calendar th,
+.layout-3c-c #sidebar-primary #wp-calendar th,
+.layout-3c-c #sidebar-secondary #wp-calendar th,
+.layout-3c-l #sidebar-primary #wp-calendar td,
+.layout-3c-l #sidebar-secondary #wp-calendar td,
+.layout-3c-r #sidebar-primary #wp-calendar td,
+.layout-3c-r #sidebar-secondary #wp-calendar td,
+.layout-3c-c #sidebar-primary #wp-calendar td,
+.layout-3c-c #sidebar-secondary #wp-calendar td {
+	padding: 2px 1px;
+}
+
+}
\ No newline at end of file