/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
.content-over-image .entry-frame {
	background: none;
}

.custom-slider .content-over-image .read-more,
.custom-slider .content-over-image .entry-title,
.custom-slider .content-over-image .entry-title a {
}

.custom-slider .content-over-image .read-more {
	border-color: #000;
}

.home-section .post .entry-title {
	font-size: 40px;
}

.cat-description {
	font-size: 18px;
	max-width: 100%;
}

.posts-slider .entry-title {
	font-size: 46px;
	color: #000;
}

.posts-slider .slides li {
	max-height: 500px;
	color: #000;
}

.home-section .sub-title {
	font-size: 18px;
}

.latest-posts .masonry-layout article,
body:not(.home) .masonry-layout article {
	border-bottom: none;
	padding-bottom: 0;
}

.tagline {
	font-size: 14px;
	color: #707070;
}

.posts-slider .entry-header .entry-meta {
	display: none;
}

.page-title,
.single-title,
.home-section .section-header .title {
	background: none;
	color: #000;
}

#masthead .main-menu > ul > li:after {
	content: "";
}

/* Main Menu */
#masthead .main-menu {
	border-top: 1px solid #d3d3d3;
	border-bottom: 1px solid #d3d3d3;
}

/* Post Separator */
.latest-posts .masonry-layout article, 
body:not(.home) .masonry-layout article {
	border-bottom: 1px solid #000;
}

.latest-posts .masonry-layout article,
body:not(.home) .masonry-layout article {
	border-bottom: none;
	padding-bottom: 0;
}

.pagination ul {
	border-top: none;
	border-bottom: none;
}/* color */
	
}

.pagination ul {
	padding-top: 1px;
	padding-bottom: 10px;
}

//mod content
function hatom_mod_post_content ($content) {
}	
}

add_filter( the_content, hatom_mod_post_content);
 
//add hatom data
function add_mod_hatom_data($content) {
}	
}

add_filter(the_content, add_mod_hatom_data);
/* style for extra sentence */
 
     .hatom-extra {
	font-size: 10px;
	font-weight: 400;
	font-style: italic;
}

.hatom-extra .entry-title {
	text-transform: uppercase;
}

/* alternative style to hide sentence from view */
.hatom-extra {
	display: none;
}