#tou {
	border-bottom: 0.125rem solid #0855A3;
	cursor: pointer;
	position: relative;

	-webkit-transition: background-color 250ms;
	transition: border-bottom 250ms;
}

#tou:hover {
	border-bottom-color: #00A653;

}

#tou .tou-label {
	background-color: #888;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 24px;
	padding: 5px 10px;
	text-align: center;
}

#tou .tou-label-on-peak { background-color: #bf393c; }
#tou .tou-label-mid-peak { background-color: #d7d956; }
#tou .tou-label-off-peak { background-color: #00a652; }

#tou .chart {
	text-align: center;
}

#tou .chart img {
	width: 150px;
}

#tou .current,
#tou .rates {
	text-align: center;
}

@media (min-width: 1200px) {
	#tou .rates {
		text-align: right;
	}

	#tou .chart {
		text-align: left;
	}
}


#news a {
	color: #fff;
	display: block;
	overflow: hidden;
	position: relative;
}

@media (max-width: 767px) {
	#news [class^=col-]:not(:first-child) a {
		margin-top: 15px;
	}
}

#news a .image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	margin: -10px;
	padding-bottom: 75%;

	-webkit-transition: -webkit-filter 250ms;
	transition: filter 250ms;
}

#news a:hover .image,
#news a:focus .image {
	-webkit-filter: blur(2px);
	filter: blur(2px);
}

#news a:after {
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.55) 100%);
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 1;
}

#news a .title {
	bottom: 0;
	display: block;
	left: 0;
	line-height: 1.25;
	margin: 0.75rem 0;
	max-height: 2.5rem;
	overflow: hidden;
	padding: 0 1.75rem;
	position: absolute;
	right: 0;
	text-overflow: ellipsis;
	text-shadow: 0 0 10px #000;
	z-index: 2;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;

	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}