/*
* Two-sidebars.css -- The CSS file for the two sidebars layout.
*/
/* Sidebars */
.left-sidebar{
	display: block;
	width: 225px;
	padding-right: 10px;
	padding-top: 15px;
	border-right: 1px #000000 solid;
	float: left;
	position: relative;
	min-height: 100%;
}

.right-sidebar{
	display: block;
	width: 225px;
	padding-left: 10px;
	padding-top: 15px;
	border-left: 1px #000000 solid;
	float: right;
	position: relative;
	min-height: 100%;
}

/* Home */
.home-post-area{
	width: 530px;
	float: left;
	position: relative;
	padding-right: 5px;
	padding-left: 5px;
}

.home-center{
	width: 525px;
}

.top-story {
	width: 520px;
	margin-left: 5px; 
}

.top-story .featured-photo {
	width: 100%;
	height: 300px;
}

.column-one {
	padding-left: 5px;
	padding-right: 15px;
	width: 265px;
}

.column-two {
	padding-right: 0px;
	padding-left: 5px;
}

.column-three {
	display: none !important;
}

/* Single Post */
.post-single {
	width: 530px;
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

.post-single .featured-photo {
	width: 520px;
	height: 312px;
	margin: auto;
}

.post-single .featured-photo img{
	width: 520px;
	height: 312px;
	margin: auto;
}

.related-stories .story, .latest-category .story{
	margin-left: 25px;
}

.related-stories .story:last-child, .latest-category .story:last-child {
	display: none;
}

/* Index */
.index {
	width: 530px;
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

/* Page */
.page-single {
	width: 530px;
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

/* Staff */
.staff {
	width: 530px;
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

/* 404*/
.post-404 {
	width: 530px;
	float: left;
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
}

/* Media Queries */
@media only screen and (max-width: 979px) {
	.left-sidebar {
		display: none !important;
	}
	.right-sidebar {
		display: none !important;
	}
	.mobile-sidebar .left-sidebar {
    	display: block !important;
    	width: 100%;
	}
	.mobile-sidebar .right-sidebar {
		display: block !important;
    	width: 100%;
	}
}