@charset "utf-8";

#spiffySlides {
    position: relative;
    overflow: hidden;
    display: inline-block;
    zoom: 1; *display: inline;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* - S L I D E S - */
#spiffySlides .slides {
    margin: 0;
    padding: 0;
    width: 950px;
    height: 300px;
    position: relative;
    box-shadow: 0 0 3px hsla(250, 40%, 30%, 0.8);
}
#spiffySlides .slides li {
    position: absolute;
    left: 0;
    top: 0;
    list-style: none;
    display: inline;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition:    opacity 0.3s ease-out;
    -o-transition:      opacity 0.3s ease-out;
    transition:         opacity 0.3s ease-out;
}
#spiffySlides .slides .active {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition:    opacity 0.3s ease-out;
    -o-transition:      opacity 0.3s ease-out;
    transition:         opacity 0.3s ease-out;
}


/* - C O N T R O L S - */
#spiffySlides .controls {
    width: 950px;
    text-align: right;
    margin: 3px 0 0;
    padding: 8px 0 0;
    position: relative;
    z-index: 1;
}
#spiffySlides .controls li {
    list-style: none;
    display: inline;
}
#spiffySlides .controls a {
    display: inline-block;
    zoom: 1; *display: inline;
    padding: 0 10px;

    border: solid 1px #CBCBCB;
    text-decoration: none;
    line-height: 1.7em;
    color: #4A4A4A ;
    font-family: arial,san-serif;
}
#spiffySlides.circles .controls a {
    text-indent: 100px;
    overflow: hidden;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    padding: 0;
}
#spiffySlides .controls a:hover {
    background-color: #bfdaff;
    color: #ffffff;
}
#spiffySlides .controls .active a,
#spiffySlides .controls .active a:hover {
    background: #000000;
    color: #ed2024;
}


/* - P A U S E   M E S S A G E - */
#spiffySlides .paused {
    opacity: 0;
    filter: alpha(opacity=0);
    bottom: 5px;
    left: -130px;
    letter-spacing: 18px;
    position: absolute;
    color: #ffffff ;
    width: 950px;
    line-height: 1.8em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition:    all 0.3s ease-out;
    -o-transition:      all 0.3s ease-out;
    transition:         all 0.3s ease-out;
}
#spiffySlides:hover .paused {
    opacity: 1;
    filter: alpha(opacity=100);
    left: 30px;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition:    all 0.3s ease-out;
    -o-transition:      all 0.3s ease-out;
    transition:         all 0.3s ease-out;
}

