/* fade slider */
.slides {
	z-index: 10;
    height:300px;
    margin:0 auto;
    overflow:hidden;
    position:relative;
    width:100%;
	background-color: none;
	border-bottom: solid #f39426 32px;
	-moz-box-shadow: 1px 6px 10px #333; 
	-webkit-box-shadow: 1px 6px 10px #333; 
	box-shadow: 1px 6px 10px #333;
}
.slides ul {
	font-size: 12px;
    list-style:none;
    position:relative;
}

/* keyframes #anim_slides */
@-webkit-keyframes anim_slides {
    0% {
        opacity:0;
    }
    6% {
        opacity:1;
    }
    24% {
        opacity:1;
    }
    30% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}
@-moz-keyframes anim_slides {
    0% {
        opacity:0;
    }
    6% {
        opacity:1;
    }
    24% {
        opacity:1;
    }
    30% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}

.slides ul li {
    opacity:0;
    position:absolute;
    top:0;


    /* css3 animation */
    -webkit-animation-name: anim_slides;
    -webkit-animation-duration: 24.0s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: anim_slides;
    -moz-animation-duration: 24.0s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
}

/* css3 delays */
.slides ul  li:nth-child(2), .slides ul  li:nth-child(2) div {
    -webkit-animation-delay: 6.0s;
    -moz-animation-delay: 6.0s;
}
.slides ul  li:nth-child(3), .slides ul  li:nth-child(3) div {
    -webkit-animation-delay: 12.0s;
    -moz-animation-delay: 12.0s;
}
.slides ul  li:nth-child(4), .slides ul  li:nth-child(4) div {
    -webkit-animation-delay: 18.0s;
    -moz-animation-delay: 18.0s;
}
.slides ul li img {
    display: block;
	margin: -12px 0 0 -38px;
	}

@media screen and (max-width: 1224px) {

.slides {
	z-index: 10;
    height:200px;
    margin:0 auto;
    position:relative;
    width:100%;
	background-color: none;
	border-bottom: solid #f39426 32px;
	-moz-box-shadow: 1px 6px 10px #333; 
	-webkit-box-shadow: 1px 6px 10px #333; 
	box-shadow: 1px 6px 10px #333;
}

}

@media screen and (max-width: 1024px) {

.slides {
	z-index: 10;
    margin:0 auto;
	height:130px;
    overflow:hidden;
    position:relative;
    width:100%;
	background-color: none;
	border-bottom: solid #f39426 32px;
	-moz-box-shadow: 1px 6px 10px #333; 
	-webkit-box-shadow: 1px 6px 10px #333; 
	box-shadow: 1px 6px 10px #333;
}

.slides ul li img {
    display: block;
	margin: -12px 0 0 -38px;
	width: 110%;
	height: auto;
	}
	
}