/*
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.
*/

/*style all images - CSS -NOT USED
img {
	margin: 5px;
	padding: 0;
	border: solid black 5px;
}
*/
/*
CSS like this would set the line height for all of your header tags:
*/
h4, h5 {
  line-height: 30px; 
}
/*add styling for a button
*/
.button {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  border: 0;
  font-weight: bold;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  background: #ceb49b  ;
  color: #fff;
}
/* Add a rollover background colour but keep the text white */
.button:hover,
.button:focus,
.button:active {
  background: #9bceb4    ;
  color: #fff;
}

#page { 
	margin-left: auto; 
	margin-right: auto; 
}

img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*change font in table*/
.content-wrap table td {
	font-style: normal;
}

#sidebar a,
#sidebar a:visited,
#sidebar-right a,
#sidebar-right a:visited {
	color: #336666;
}

.widget-area .widget a {
	color: #336666;
}

.content-wrap .page-title {
	font-size: 50px;
}

.display-posts-listing li {
	display: inline-block;
	list-style-type: none;
	min-height: 175px;
	overflow: hidden;
	padding-left: 175px;
	position: relative;
	width: inherit;
}

.display-posts-listing .title {
	font-size: 1.2em;
	font-weight: bold;
	vertical-align: top;
	color: #336666;
}

.display-posts-listing .listing-item {
	clear: both;
}

.display-posts-listing img {
	float: left;
	margin: 0 10px 10px 0;
}

/*CSS -NOT USED
stops the featured image appearing inside the post

body.single-post .entry-thumb {
	display: none;
}

body.single article.post .featured-img {
	height: auto;
	width: 0;
	margin: 0;
}
*/
.featured img {
	display: none;
}