﻿#photoCarouselContainer {
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: block;
    position: relative;
    background: white;
}
.photoCarousel {

	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center center;
}

@media (max-width:1023px){
        #photoCarouselContainer {
            height: 400px;
        }
        .photoCarousel {
        	height: 400px;
        }
}
@media (max-width:767px){
        #photoCarouselContainer {
            height: 300px;
        }
        .photoCarousel {
        	height: 300px;
        }
}
#photoCarouselDots {
	position: absolute;
	width: 100%;
	right: 25px;
	display: block;
	bottom: 15px;
	z-index: 19;
	text-align: right;
}
.photoCarouselDot {
	display: inline-block;
	height: 10px;
	width: 10px;
	border: 1px solid white;
	background: url('../images/transparent.gif');
	margin-right: 1px;
	overflow: hidden;
}
.photoCarouselDot .active {
	display: inline-block;
	height: 10px;
	width: 10px;
	border: 1px solid #d3006e;
	background: #d3006e;
}