/********************
 * FEATURE CAROUSEL *
 ********************/
#featureCarousel {
    height: 450px;
    width:100%;
    background-color:white;
	border-radius: 25px;
	border:1px solid #eeeeee;
	-moz-box-shadow:2px 2px 5px #959595; 
	-webkit-box-shadow:2px 2px 5px #959595; 
	box-shadow:2px 2px 5px #959595;
    position:relative;
}
#featureCarousel img {
    border:0;
	
}
#featureCarousel .feature {
    position:absolute;
    top:-1000px;
    left:-1000px;
    
	height:100%;
    cursor:pointer;
}
#featureCarousel .feature > div {
    position:absolute;
    bottom:0px;
    left:0px;
    background-color:black;
    width:auto;
}
#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:400px;
    padding:0;
    margin:0;
}
#featureCarousel .blipsContainer .blip {
    margin:3px;
    height:6px;
    width:6px;
    color:white;
    text-align:center;
    font-size:0px;
    
}
#featureCarousel .blipsContainer .blipSelected {
    color:white;
    font-weight:light;
    background-color:white;
}
