/********************
 * FEATURE CAROUSEL *
 ********************/
#featureCarousel {
    width:1000px;
    height: 420px;
    margin: 20px 0px;
    position:relative;
}
#featureCarousel .feature {
    position:absolute;
    top:-1000px;
    left:-1000px;
    cursor:pointer;
}
#featureCarousel .feature > div {
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    background-color:rgba(0,0,0,.7);
}
#featureCarousel .feature > div p {
    font-size:14px;
    color:#fff;
    text-align: center;
}
#featureCarousel .blipsContainer {
    display: none;
    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;
}

#featureCarousel .prev {
    position: absolute;
    top: 180px;
    left: 170px;
    z-index: 9;
    display: block;
    width: 44px;
    height: 44px;
    background: url(../images/prev1.png) no-repeat center;
    cursor: pointer;
}
#featureCarousel .next {
    position: absolute;
    top: 180px;
    right: 170px;
    z-index: 9;
    display: block;
    width: 44px;
    height: 44px;
    background: url(../images/next1.png) no-repeat center;
    cursor: pointer;
}