div.bgcarousel{ /* CSS for main carousel container */
background: #2C2827 url(images/ajaxload.gif) center center no-repeat; /* loading gif while caoursel is loading */
width:609px; /* default dimensions of carousel */
height:284px;
}

img.navbutton{ /* CSS for the nav buttons */
margin:5px;
opacity:0.7;
width: 1px;
}

div.slide{ /* CSS for each image's DIV container within main container */
background-color: #CCCCCC;
background-position: center center; /* center image within carousel */
background-repeat: no-repeat;
background-size: cover; /* CSS3 property to scale image within container? "cover" or "contain" */
color: black;
}

div.selectedslide{ /* CSS for currently selected slide */
}

div.slide div.desc{ /* DIV that contains the textual description inside .slide */
position: absolute;
color: white;
left: 2px;
top: 222px;
bottom: 10 px;
width:300px;
padding: 10px;
font: bold 16px sans-serif, Arial;
text-shadow: 0 -1px 1px #8a8a8a; /* CSS3 text shadow */
z-index:5;
}
div.desc{
opacity:0.7;
background-color: #2C2827;
margin-left: -2px;
}

div.selectedslide div.desc{ /* CSS for currently selected slide's desc div */
}

div.slide div.desc h2{
font-size:150%;
margin:0;
}

div.slide div.desc a{
color:yellow;
text-decoration:none;
}
