@charset "utf-8";
/* CSS Document */

div.bgcarousel{ /* CSS for main carousel container */
background: white center center no-repeat; /* loading gif while caoursel is loading */
width:984px; /* default dimensions of carousel */
height:336px;
text-align:center;
z-index:0;
}

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

div.slide{ /* CSS for each image's DIV container within main container */
background-color: white;
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: #ffffff;
}

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

}

div.slide div.desc{ /* DIV that contains the textual description inside .slide */
position: absolute;
color: #9d2c2c;
left: 10px;
top: 350px;
width:989px;
padding: 10px;
font: bold 18px  Arial;
font-stretch:expanded;
/*text-shadow: 0 -1px 1px #FFFFFF; /* CSS3 text shadow */
text-shadow: -1px 0 white, 0 1px white,
      1px 0 white, 0 -1px white;
z-index:0;
}

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

div.slide div.desc h2{
font-size:160%;
margin:0;
color:#333;
}

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