

	/**** slider ****/
#slider, ul
{
	height: 200px;
}

#slider
{
	
	overflow: hidden;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background-color: oldlace;
	border-radius: 10px;
	box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.25);
	position: relative;
	width: 400px;
}
img{width: 25%; height: 25%;  float: left;
  margin-right: 15px;}
#slider li
{
	float: left;
	position: relative;
	width: 600px;
	display: inline-block;
	height: 200px;
}

#slider ul
{
	list-style: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 9000px;
	transition: left .3s linear;
	
	margin-left: -25px;
  font-family: century gothic;
  color: #666666;
}

/*** Content ***/

.slider-container
{
	margin: 0 auto;
	padding: 0;
	width: 550px;
  min-height: 180px;
  border-bottom: 1px solid #cccccc;
 
 
}

.slider-container h4
{
 	color: #0A7FAD;
 
}

.slider-container  p
{
	margin: 10px ;
	font-weight: semi-bold;
	line-height: 150%;
	text-align: justify;
}

/*** target hooks ****/

@-webkit-keyframes slide-animation {
	0% {opacity:0;}
	2% {opacity:1;}
	8% {left:0px; opacity:1;}
	20% {left:0px; opacity:1;}
	22.5% {opacity:0.6;}
	25% {left:-600px; opacity:1;}
	45% {left:-600px; opacity:1;}
	47.5% {opacity:0.6;}
	50% {left:-1200px; opacity:1;}
	70% {left:-1200px; opacity:1;}
	72.5% {opacity:0.6;}
	75% {left:-1800px; opacity:1;}
	95% {opacity:1;}
	98% {left:-1800px; opacity:0;} 
	100% {left:-600px; opacity:0;}
}

#slider ul
{
	animation: slide-animation 25s infinite;
	
}

/* use to paused the content on mouse over */

#slider ul:hover
{animation-play-state: paused;
	
}

div.reset {
  clear: both;
}
.el_enlace {
 position: absolute;
 bottom: 15px;
 color: #0A7FAD;
 padding: 10px 25px;
 
}