
/*  cameo skin css ========================================= */

.mis-stage {
    /*background-color: #fff;*/
}
    .mis-slider {
        /*  slider element does not need to be a specific height
            here we use it to create a stylish bar behind slides */
        margin-top: 138px;
        height: 80px;
        /*background-color: #eee;*/
    }
        .mis-slider li a {
            text-decoration: none;
            color: #666;
            display: block;
        }  
        .mis-slider li figcaption {
            font-size: 1.125em;
        }
        .mis-slider li img {
            /*  make max-width of image a little less than width of slide
                to avoid some browser shinking bugs */
            max-width: 270px;
            /*  for really small screens make width 100% */
            width: 100%;
            /*  make image round */
            /*border-radius: 135px;*/
            border: none;
        }
        .mis-slide {
            /*  set width in pixels to restrict width of slides 
                for multi-item slider, default width is 100%
                for single-item slider. use padding to add space 
                between slides */
	        width: 360px;
            height: 360px;
	        padding: 40px;
            /*  undo the margin added by slider element */
            margin-top: -138px
        }
    .mis-nav-buttons a {
        color: #fff; 
    }
