/**
 * Custom CSS Code by Theme User
 *
 * NOTE: This file only work if it's in the theme root directory.
 */

/* Getting rid of top search bar*/
#top-search
{
	visibility: hidden;
	display: none;
}

/* Centering logo*/
#branding
{
	width:100%;
}
#site-logo
{
	width:100%;
}
#site-logo img
{
	margin-left:auto;
	margin-right:auto;
}

/* Relocating account-nav after centering logo*/
#account-nav
{
	float:none;
	position:absolute;
}

/* Getting rid of views, likes, and comments indicator on front page*/
.stats
{
	visibility:none;
	display:none;
}

/* Remove the added by x for all posts*/
.meta
{
	visiblity:none;
	display:none;
}
#meta
{
	visibility:none;
	display:none;
}

/* Add ellipses to title */
.title
{
	white-space:nowrap;
	text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
	overflow:hidden;
}

/* Get rid of the plus sign*/
.thumb .overlay
{
	background-image:none		!important;
	/* Apologies for the !important, but custom.css was being overriden*/
}

/* Add excerpts to front page*/
.desc
{
	display:block			!important;
	/* Apologies for the !important, but custom.css was being overriden*/
	height:15em;
}