/* Makes posts full length */
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.page-content {
	max-width: 800px;
}
/* Slider grey area remove crap */


@media screen and (min-width: 673px) {
.slider .featured-content .hentry, .featured-content .slider-viewport {
height: 400px!important;
}
}
.featured-content .entry-header {
	height: relative;
} 


.featured-content, .featured-content .entry-header, .slider-direction-nav a {
    background-color: rgb(060606); 
}

/* summery */

<?php if ( is_single() ) : // Only display full content for Single page ?>
	<div class="entry-content">
		<?php
			the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyfourteen' ) );
			wp_link_pages( array(
				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfourteen' ) . '</span>',
				'after'       => '</div>',
				'link_before' => '<span>',
				'link_after'  => '</span>',
			) );
		?>
	</div><!-- .entry-content -->
	<?php else : ?>
	<div class="entry-summary">
		<?php the_excerpt(); ?>
	</div><!-- .entry-summary -->
	<?php endif; ?>

/* end word wrap hyphen */
