/** BLOG LIST **/
.blog-list {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.blog-list li {
	position: relative;
	margin: 0px 0px 40px 0px;
	display: block;
	padding: 0px 0px 40px 0px;
	border-bottom: 1px dotted #CCCCCC;
}

.blog-list .post-image {
	float: left;
	width: 300px;
	border: 1px solid #CCCCCC;
}

.blog-list .no-image .post-image {
	display: none;
}

.blog-list .post-image a {
	display: block;
	padding: 75% 0px 0px 0px;
}

.blog-list .post-content {
	margin: 0px 0px 0px 330px;
}

.blog-list .no-image .post-content {
	margin: 0px 0px 0px 0px;
}

.post-content .title {
	font-size: 1.4em;
	color: #263581;
}

.post-content .text {
	font-size: 1.1em;
	line-height: 1.3em;
	color: #777777;
}

.post-content .link {
	text-transform: uppercase;
}

.post-content .time {
	color: #777777;
}

@media screen and (max-width: 760px){
	.blog-list .post-image {
		float: none;
		width: auto;
		margin-bottom: 20px;
	}
	
	.blog-list .post-content,
	.blog-list .no-image .post-content {
		margin: 0px 0px 0px 0px;
	}
}



/** LIST PAGINATION**/
.shr-numbers {
	list-style-type: none;
	padding: 0;
	overflow: hidden;
	float: left;
	margin: 0;
	text-transform: uppercase;
}

.shr-numbers li {
	display: inline-block;
	margin-right: 0.2em;
	position: relative;
}

.shr-numbers .shr-numbers-page {
	background: #EC008C;
}

.shr-numbers .shr-numbers-page a,
.shr-numbers .shr-numbers-page span {
	display: block;
	padding: 10px;
	min-width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
}

.shr-nav {
	float: right;
}

.shr-nav a {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	background: #EC008C;
	color: #FFFFFF;
}

.shr-max660 .shr-numbers {
	display: block;
	float: none;
	text-align: center;
	margin: 0 auto 1em auto;
	text-transform: uppercase;
}

.shr-max660 .shr-nav {
	float: none;
	text-align: center;
	margin: 1em auto 0 auto;
	text-transform: uppercase;
}

.shr-numbers .shr-numbers-page a:hover,
.shr-nav a:hover,
.shr-numbers .shr-numbers-page.shr-numbers-current {
	color: #FFFFFF;
	background-color: #262626;
}



/** SINGLE POST **/
.single-post-page .post-back {
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 20px 0px;
	text-transform: uppercase;
	border-bottom: 1px dotted #CCCCCC;
}

.BlogCol {
	display: block;
}

.BlogCol--left {
	float: left;
	width: calc(100% - 540px);
}

.BlogCol--right {
	float: right;
	width: 500px;
}

.BlogCol--left.BlogCol--full {
	float: none;
	width: 100%;
}

.single-image-link {
	display: block;
	position: relative;
}

.single-image-link .Icon,
.single-image-link:after {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
}

.single-image-link:hover .Icon,
.single-image-link:hover:after {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
}

.single-image-link .Icon {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	margin: -17px 0px 0px -20px;
	font-size: 40px;
	color: #FFFFFF;
}

.single-image-link:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 50%;
	bottom: 50%;
	left: 50%;
	right: 50%;
	background: rgba(0, 0, 0, 0.2);
}

.single-image-link:hover:after {
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
}

.single-image-link img {
	display: block;
	width: 100%;
}

@media screen and (max-width:1040px){
	.BlogCol--left {
		width: calc(100% - 380px);
	}
	
	.BlogCol--right {
		width: 360px;
	}
	
	.BlogCol--left.BlogCol--full {
		width: 100%;
	}
}

@media screen and (max-width:840px){
	.BlogCol--left,
	.BlogCol--right,
	.BlogCol--left.BlogCol--full {
		width: 100%;
	}
}



/** GALLERY **/
.gallery-wrapper {
	padding: 40px 0px;
	text-align: center;
	font-size: 1.3em;
	text-transform: uppercase;
}

.gallery-wrapper .post-gallery {
	list-style: none;
	margin: 0px;
	padding: 0px;
	font-size: 0px;
}

.gallery-wrapper .post-gallery li {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
}

.gallery-wrapper .post-gallery a {
	display: block;
	position: relative;
	padding: 75% 0px 0px 0px;
}

.gallery-wrapper .post-gallery a .Icon,
.gallery-wrapper .post-gallery a .Border {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
}

.gallery-wrapper .post-gallery a:hover .Icon,
.gallery-wrapper .post-gallery a:hover .Border {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
}

.gallery-wrapper .post-gallery a .Icon {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	margin: -17px 0px 0px -20px;
	font-size: 40px;
	color: #FFFFFF;
}

.gallery-wrapper .post-gallery a .Border {
	position: absolute;
	z-index: 1;
	top: 50%;
	bottom: 50%;
	left: 50%;
	right: 50%;
	background: rgba(0, 0, 0, 0.2);
}

.gallery-wrapper .post-gallery a:hover .Border {
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
}