div.news { 	
 	display: flex;
}

div.new { 	
	margin-bottom: 20px;
 	flex: 1;
}

div.new > div {
	padding: 10px 40px;
	background: #eeeeee;
	height: 100%;
}

@keyframes breath {
  0%   { transform: scale(1,1); }
  50% { transform: scale(1.2,1.2); }
  100% { transform: scale(1,1); }
}

i.pulsing {
	margin-top: 20px;
	font-size: 200%;
	color: White;
	display: block;
	animation: breath 1s linear infinite;
}

#myCarousel {
	clear: both;
	margin-bottom: 40px;
}

.carousel {
    overflow: hidden;
}



.carousel .item {
	
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.carousel .bgr {
	background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.carousel .active.left, .carousel .active.right {
    left:0;
    opacity:0;
    z-index:2;
}
.carousel-control.left, .carousel-control.right {
   background-image:none !important;
   filter:none !important;
   width: 10%;
}

.carousel-indicators {
	bottom: 50px;
}

.carousel-indicators li {
	border: 2px solid White;
  background-color: transparent !important;
}

.carousel-indicators .active {
  background-color: White !important;
}

div.carousel-caption {
	background-color: rgba(0,0,0,0.5);
	bottom: 200px;
	text-shadow: none;
	text-align: center;
	font-size: 120%;
	text-shadow: 0px 0px 5px Black;
	width: auto;
	padding: 20px;
	right: 25%;
	left: 25%;
}

div.carousel-caption h1 {
	margin: 0px 0px 10px 0px;
	font-size: 2.5rem;
	color: White;
	font-weight: 500;
	text-align: center;
}

div.carousel-caption h2 {
	margin: 0px 0px 10px 0px;
	font-size: 1.8rem;
	color: White;
	font-weight: normal;
	text-align: center;
}

div.carousel-caption a {
	background-color: #B02123;
	border: 1px solid White;
	margin-bottom: 20px;
	padding: 10px;
	color: White;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	font-size: 150%;
}

div.carousel-caption a:hover {
	background-color: #64030A;
	text-decoration: none;
}