/********************
 * FEATURE CAROUSEL *
 ********************/
#featureCarousel {
	margin-top:30px;
    width:1200px;
	height:364px;
	position:relative;
}
#featureCarousel img {
	padding:7px;
	border-radius:3px;
	box-sizing:border-box;
	border:1px solid #dcdcdc;
	background-color:#fff;
}
#featureCarousel .feature {
    position:absolute;
    top:-1000px;
    left:-1000px;
	font-size:0px;
    cursor:pointer;
}
#featureCarousel .feature:after {
	position:absolute;
	top:8px;
	left:8px;
	z-index:2;
	width:calc(100% - 16px);
	height:calc(100% - 16px);
	content:"";
	background-color:rgba(0,0,0,0.3);
}
#featureCarousel .active:after {display:none;}
#featureCarousel .feature > div {
    position:absolute;
    bottom:0px;
    left:0px;
    background-color:black;
    width:100%;
}
#featureCarousel .feature > div p {
    margin:0;
    padding:5px;
    font-weight:bold;
    font-size:12px;
    color:white;
}
#featureCarousel .blipsContainer {
    position:absolute;
    color:white;
    right:25px;
    top:210px;
    padding:0;
    margin:0;
}
#featureCarousel .blipsContainer .blip {
    margin:3px;
    height:14px;
    width:14px;
    color:white;
    text-align:center;
    font-size:10px;
    border:1px dotted black;
}
#featureCarousel .blipsContainer .blipSelected {
    color:white;
    font-weight:bold;
    background-color:black;
}