
/*  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: 178px;
        height: 400px;
        
    }
        .mis-slider li a {
            text-decoration: none;
            color: #666;
            display: block;
        }  
        .mis-slider li figcaption {
            font-size: 0em;
        }
        .mis-slider li img {
            /*  make max-width of image a little less than width of slide
                to avoid some browser shinking bugs */
            max-width: 260px;
            /*  for really small screens make width 100% */
            width: 100%;
            /*  make image round */
            border: none;
            -webkit-box-shadow:0px 5px 15px #e5e5e5;
    -moz-box-shadow:0px 5px 15px #e5e5e5;
    box-shadow:0px 5px 15px #e5e5e5;
        }
        .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: 260px;
            height: 340px;
            padding: 0px;
	     
            /*  undo the margin added by slider element */
            margin-top: -138px
        }
    .mis-nav-buttons a {
        color: #fff; 
    }
