/*
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.
*/
/*** Blockquote Fix ***/
blockquote {
	float: none;
	width: 90%;
}

/*** Fix for blockquote paragraph spacing ***/
article#omc-full-article blockquote p {
	margin-bottom: 20px;
}

/*** fix for link color on dark author bio's ***/
#omc-author-page a {
	color: #fff;
}

/*** fix for left aligned images ***/
.alignleft {
	height: 15%;
	width: 15%;
}

/*** fix for link color in articles.. makes links shade of grey instead of black ***/
article#omc-full-article > p a {
	color: #7EC6DE;
}

/*** fix for category tags that overflow on the homepage.. makes tags smaller ***/
h3.omc-blog-one-cat a {
	font-size: .75em;
}

/*** fix for images in Gumgum ***/
.featuredpost img {
	max-width: 100%;
	height: auto;
}

/*** fix for excerpts two column***/
p.omc-blog-two-exceprt {
	overflow: hidden;
	height: 75px;
}

/*** fix for title... limits title to two lines in two column ***/
article.omc-blog-two h2 {
	overflow: hidden;
	height: 45px;
}

/*** fix for images in two column, sets height ***/
img.omc-image-resize {
	width: 100%;
	height: 97.5%;
}

/*** fix for related posted over running ***/
.omc-quarter-width-category {
	width: 150px;
	height: 150px;
	margin-right: 10px;
}

div.omc-related-posts {
	margin-bottom: 125px;
}

/*** removes auto inserted image at top of articles ***/
#omc-inner-placeholder {
	display: none;
}
