﻿
/*  Cameo Skin CSS ========================================= */

.mis-stage {
    
}
    .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: 60px;
        background-color: #fff;
    }
        .mis-slider li a {
            text-decoration: none;
            color: #333;
			font-size:18px;
			font-weight:bold;
            display: block;
			letter-spacing:0.5px;
			line-height:30px;
        }  
        .mis-slider li figcaption {
            font-size:22px;
			text-transform:capitalize;
        }
        .mis-slider li img {
            /*  Make max-width of image a little less than width of slide
                to avoid some browser shinking bugs */
            max-width: 250px;
            /*  for really small screens make width 100% */
            width: 100%;
            /*  Make image round */
            border-radius: 135px;
            border: none;
        }
		
		.mis-slider li img:hover  {
	 transition: 0.7s ease all;
	 

-moz-transition: 0.7s ease all;
-webkit-transition: 0.7s ease all;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  
}
		
		
		
		
        .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: 300px;
            height:300px;
	        padding: 40px;
            /*  Undo the margin added by slider element */
            margin-top: -138px
        }
    .mis-nav-buttons a {
        color: #fff; 
    }
