/*
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.
*/
/* -- remove byline from news post title on home page -- */
.content-item-byline {
	display: none;
}

/* Tablepress */
.tablepress tfoot th,
.tablepress thead th {
	background-color: #981e32;
	color: #FFF;
}

.tablepress img {
	width: 110px;
	padding-right: 20px;
}

.tablepress td.column-1 {
	width: 40%;
}

/* **************formatting text ************ */
/* remove upper case text transform from headers */
h1, h2, h3, h4, h5, h6 {
	text-transform: none;
	color: #a60f2d;
}

body {
	color: #4d4d4d;
}

/* bullets - from circles to squares, increase padding */
ul li {
	list-style: square outside none;
	padding: 0 10px .8em;
}

/* horz rules - lighter, thinner */
hr {
	height: 1px;
	background-color: #e9e9e9;
}

/* paragraphs in smaller indented text */
.smalltext-indent p {
	font-size: .8em;
	line-height: 1.25em;
	margin-left: 2em;
}

/* caption text smaller */
figcaption {
	font-size: .9em;
	color: #000;
}

/* ****************** skeleton header color *************** */
.main-header {
	background-color: #981E32;
}

/* ***********formatting posts ***************** */
/* removing posted by, date, etc from posts */
.article-header hgroup.source, .article-header .hgroup.source {
	display: none;
}

article footer {
	display: none;
}

/* hiding excerpts in posts */
.article-summary {
	display: none;
}

/* *************** homepage slideshow ************** */
.builder-banner-content:after {
	vertical-align: bottom;
}

/* homepage slideshow link color */
.builder-banner-content a {
	color: #2a3033;
}

.builder-banner-content a:hover {
	color: #000;
}