/*----------Slideshow----------------*/
#home_slideshow {
	position: relative;
	/*height: 340px;*/
	margin: 0 auto;
}
.slideshow-cycle,
.slideshow-cycle li {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slideshow-cycle li {
	display: none;
	/*overflow: hidden;*/
}
.slides-control-prev {
	position: absolute;
	top: 45%;
	left: 40px;
	z-index: 3;
}
.slides-control-next {
	position: absolute;
	top: 45%;
	right: 40px;
	z-index: 3;
}
/*-----Navagation for the slides ----*/

.shownav {
	/* you can add positioning properties here if needed */
	position: absolute;
	margin: auto;
	z-index: 450;
	padding: 0;
	width: 100%;
	display: block;
	text-align: center;
	top: 324px;
}
.shownav a {
	width: 50px;
	height: 5px;
	color: transparent;
	background: none;
	margin-right: 10px;
	display: inline-block;
}
.shownav a {
	background: #ffffff; /* optional: color when hovered */
}
.shownav a.activeSlide {
	background: #CC0033; /* color when active */
}
#slide-text {
	display: block;
	margin: auto;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: white;
}
.slideshow-cycle {
	width: 100% !important;
	overflow: hidden;
	position: relative;
	height: 375px;
}
.slideshow-cycle li {
	position: absolute;
	top: -100% !important;
	bottom: -100%;
	left: -100% !important;
	right: -100%;
	margin: auto;
	background-color: transparent!important;
	display: flex!important;
	align-items: center;
}
.slideshow-cycle li img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	max-height: 365px; /* Whatever your containing div's height is set to */
	margin: 0 auto;
	left: 0;
	right: 0;
}
#home_slideshow {
	height: 375px;
}
