@charset "UTF-8";
/* CSS Document */
html, body, div, p, form, input, ul, li, h1, h2, h3, table, th, td {
	margin: 0px;
	padding: 0px;
}
#slider {
	width: 797px;
	height: 511px;
	position:relative;
	overflow:hidden;
}
#slider .contenControlGen{
    position: relative;
    padding: 6px;
    width: 100%;
    height: 60px;
}
#slider .tabs {
  height: 60px;
  position: absolute;
  top: 27px;
  left: 42px;
}
#slider .tabs a {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #DBDBDB;
  padding: 18px 67px;
}
#slider .tabs a.current{
	opacity: 1;
}
#slider .controls ul {
	list-style: none;
	float:right;
}
#slider .controls li a {
	text-align: center;
	cursor: pointer;
	right:37px;
}
#slider .controls li a.backward {
    background-image: url(img/rw.png);
    background-repeat: no-repeat;
    height: 60px;
    width: 30px;
    overflow: hidden;
    position: absolute;
    left: 6px;
    opacity: 0.4;
    transition: 1s ease;
}
#slider .controls li a.forward {
    background-image: url(img/fw.png);
    background-repeat: no-repeat;
    height: 60px;
    width: 30px;
    overflow: hidden;
    position: absolute;
    right: 6px;
    opacity: 0.4;
    transition: 1s ease;
}
#slider .controls li a.forward:hover, #slider .controls li a.backward:hover{
    opacity: 1;
}
#slider .items {
	position: relative;
}
#slider .item {
	display: none;
	position: absolute;
}
#slider .disabled {
	visibility: hidden !important;
}
/*       ///////------ END SLIDER ------////////          */

/*       ///////------ START DEMO ------////////          */
#contenedor{
    position: relative;
    max-width: 797px;
}
#contenedor #slider .items .item h1{
    font-size: 16px;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 12px;
}
#contenedor #slider .items .item p{
  position: absolute;
  top: 24px;
  width: 250px;
  font-size: 14px;
  left: 12px;
    color: black;
}
#contenedor #slider .items .floatElement{
    position: absolute;
}
#contenedor #slider .items .item p.infoPlus{
    left: 380px;
    top: 100px;
    font-size: 12px;
    color: #FFFFFF;
    width: 140px;
}
h1 {
	font-family: Arial, sans-serif;
	font-size: 33px;
	color: #000;
	margin: 0 12px;
	line-height: 24px;
	font-weight: 900;
}
h2 {
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #6C8192;
	text-transform: uppercase;
	margin: 0 0 8px 12px;
	font-weight: 100;
}
p {
	font-family: Arial, sans-serif;
	font-size: 15px;
	color: #5f5f5f;
	margin: 10px;
	font-weight: 100;
}
#titulares {
	width: 100%;
	margin: 0;
	padding: 21px 0 19px 0;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #d8d8d8;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #d8d8d8;
	position: relative;
}
.senefa {
	width: 200px;
	height: 7px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
}
#bajada {
	width: 100%;
	margin: 10px 0 0 0;
}
#cierre {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #d8d8d8;
	margin-top: 5px;
}
#cierre p {
	text-transform: uppercase;
	font-size: 10px;
	margin: 2px;
	color: #383838;
}
#cierre p span {
	color: #818181;
}
#credito{
    float: left;
}
#phone_chart{
    display: none;
}
@media (max-width: 700px) {
  #slider {
    display: none;
    }
    #phone_chart{
    display: inline;
    }
    h1{
    font-size: 25px;
    }
    h2{
    font-size: 13px;
    }
}
/*  ANIMATION   */
.InAnimate{
  animation: InAnimate linear 0.8s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: InAnimate linear 0.8s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: InAnimate linear 0.8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: InAnimate linear 0.8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: InAnimate linear 0.8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes InAnimate{
  0% {
    transform:  translate(0px,0px)  ;
  }
  15% {
    transform:  translate(0px,-25px)  ;
  }
  30% {
    transform:  translate(0px,0px)  ;
  }
  45% {
    transform:  translate(0px,-15px)  ;
  }
  60% {
    transform:  translate(0px,0px)  ;
  }
  75% {
    transform:  translate(0px,-5px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes InAnimate{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  15% {
    -moz-transform:  translate(0px,-25px)  ;
  }
  30% {
    -moz-transform:  translate(0px,0px)  ;
  }
  45% {
    -moz-transform:  translate(0px,-15px)  ;
  }
  60% {
    -moz-transform:  translate(0px,0px)  ;
  }
  75% {
    -moz-transform:  translate(0px,-5px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes InAnimate {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  15% {
    -webkit-transform:  translate(0px,-25px)  ;
  }
  30% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  45% {
    -webkit-transform:  translate(0px,-15px)  ;
  }
  60% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  75% {
    -webkit-transform:  translate(0px,-5px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes InAnimate {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  15% {
    -o-transform:  translate(0px,-25px)  ;
  }
  30% {
    -o-transform:  translate(0px,0px)  ;
  }
  45% {
    -o-transform:  translate(0px,-15px)  ;
  }
  60% {
    -o-transform:  translate(0px,0px)  ;
  }
  75% {
    -o-transform:  translate(0px,-5px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes InAnimate {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  15% {
    -ms-transform:  translate(0px,-25px)  ;
  }
  30% {
    -ms-transform:  translate(0px,0px)  ;
  }
  45% {
    -ms-transform:  translate(0px,-15px)  ;
  }
  60% {
    -ms-transform:  translate(0px,0px)  ;
  }
  75% {
    -ms-transform:  translate(0px,-5px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}