﻿/**********   Zonas colapsables   ***/
.colapsa
{
	display: block;
    margin-bottom: 15px;
}

.uccolapsatitulo
{
	background-image:url("images/plus.png");
	background-color:#f3f3f3;
	background-repeat:no-repeat;
    color: #5B5B5D;
    cursor: pointer;
    display: block;
    /*font-size: 10px;*/
    outline: medium none;
    padding: 0;
    padding: 5px 15px 4px 35px;
    text-decoration: none;
}

.activa
{
	background-image: url("images/minus.png");
	color: #333;
	background-color: #f1f1f1;
}

.colapsa .panel{
  border-top: none;
  overflow: hidden;
  clear: both;
  border:1px solid #e9e9e9;
}

.colapsa .panelcontenido{
  padding: 15px;
}

/********* pestañas *********/
ul.pestanas {
    border: medium none;
    float: left;
    height: auto;
    list-style: none outside none;
    margin: 0 0 5px;
    padding: 0;
    width: 100%;
    z-index: 99;
}

ul.pestanas li {
    float: left;
    line-height: 25px;
    /*margin: 0 5px 0 0;*/
    margin:0!important;
    width:33%;
    border-bottom: 1px solid #153560;
    overflow: hidden;
    padding: 0;
}

ul.pestanas li a {
	background: none repeat scroll 0 0 #f3f3f3;
    color: #153560/*5B5B5D*/;
    display: block;
    font-family: 'ColaborateLight',Arial,sans-serif;
    font-size: 12px;
    font-weight: normal;
    padding: 0 10px;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0 none;
}

ul.pestanas li a:hover {
	background: none repeat scroll 0 0 #9c9b9b;
    color: #FFF;
}

ul.pestanas a.actual, ul.pestanas a.actual:hover, ul.pestanas li.actual a {
    background: none repeat scroll 0 0 #153560/*035d67*/;
    color: #FFFFFF;
    cursor: default !important;
}

.panelpestana {
    border: 1px solid #E9E9E9;
    float: left;
    overflow: hidden;
    width: auto;
}
.panelpestana div {
    border: 1px solid #FFFFFF;
    padding: 15px 15px 5px;
	display:block;
}
/*********** Acordeon  ***********/
#acordeon {
    height: auto;
    margin: 0;
    padding: 0;
    width: 99.9%;
}
#acordeon h6 {
    background: url("images/plus.png") no-repeat scroll left center #f3f3f3;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 5px;
    padding: 4px 35px;
    width: 92%;
}
#acordeon h6.actual {
    background: url("images/minus.png") no-repeat scroll left center #9c9b9b;
    color: #FFFFFF;
}
#acordeon h6.actual {
    cursor: default;
}
#acordeon .panel {
    border: 1px solid #E9E9E9;
    display: none;
    margin: 5px 0;
    padding: 15px;
    display: block;
}

/******* mensajes de aviso *********/
p.mensaje {
    font-size: 12px;
    margin: 2px 0 15px;
    padding: 10px 15px 10px 75px;
}

p.mensajeverde {
    background: url("images/success.png") no-repeat scroll 15px center #E6FBBC;
    border: 1px solid #B1D66A;
    color: #4E710A;
}

p.mensajeamarillo
{
	background: url("images/failed.png") no-repeat scroll 15px center #FFFDE1;
    border: 1px solid #c89200;
    color: #c89200;
}

p.mensajerojo
{
	background: url("images/error.png") no-repeat scroll 15px center #FDD2D1;
    border: 1px solid #F6988F;
    color: #883333;
}

p.mensajeinfo
{
	background: url("images/download.png") no-repeat scroll 15px center #F0F9FE;
    border: 1px solid #0880C6;
    color: #0880C6;
}

p.mensajebloque
{
	background: url("images/locked.png") no-repeat scroll 15px center #FCEEC6;
    border: 1px solid #998B64;
    color: #633401;
}

/******** codigo *********/
code, pre {
    background: none repeat scroll 0 0 #FEFEFE;
    border-color: #E9E9E9;
    border-style: solid;
    border-width: 1px 1px 1px 10px;
    color: #858585;
    display: block;
    font-size: 11px;
    margin-bottom: 10px;
    padding: 7px 10px;
}

/******** tablas  **********/
table {
    border: 1px solid #E9E9E9;
    margin: 0 0 10px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table th {
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 23px;
    text-align: center;
    background: none repeat scroll 0 0 #f3f3f3;
    border: 1px solid #E9E9E9;
    padding: 10px 15px;
	color: #333333;
}

table td {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E9E9E9;
    padding: 10px 15px;
    text-align: center;
	color: #333333;
}

/********** botones *********/
.boton {
    border: 0 none;
    cursor: pointer;
    display: inline-block;
    font-family: Tahoma,Arial,sans-serif;
    padding: 7px 14px;
    transition: all 0.1s ease-in-out 0s;
	  outline: 0 none;
    text-decoration: none;
}

.boton.gris {
    background: none repeat scroll 0 0 #9C9B9B;
    color: #FFFFFF;
}

.boton.claro {
    background: none repeat scroll 0 0 #AAAAAA;
    color: #FFFFFF;
}

.boton.nohover {
    background: none repeat scroll 0 0 #035d67;
    color: #FFFFFF;
}

.boton.gris:hover,  .boton.claro:hover{
    background: none repeat scroll 0 0 #185f97; /*#035d67;*/
}

/********* tooltip  ******/
.tooltip {
  position: absolute;
  z-index: 1020;
  display: block;
  padding: 5px;
  font-size: 11px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
}

.tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.tooltip.top {
  margin-top: -2px;
}

.tooltip.right {
  margin-left: 2px;
}

.tooltip.bottom {
  margin-top: 2px;
}

.tooltip.left {
  margin-left: -2px;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top: 5px solid #555;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #555;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #555;
  border-left: 5px solid transparent;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-right: 5px solid #555;
  border-bottom: 5px solid transparent;
}

.tooltip-inner {
  max-width: 200px;
  padding: 1px 10px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #555;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
   border-radius: 3px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
     -moz-transition: opacity 0.15s linear;
      -ms-transition: opacity 0.15s linear;
       -o-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}
/******** listas *****/
.lista-check
{
	border: 0 none;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
	list-style: none outside none;
}
.lista-check li
{
	border: 0 none;
    background: url("images/list_check.png") no-repeat scroll 0 50% transparent;
    padding: 0 0 0 18px;
	list-style: none outside none;
    margin: 8px 0;
	line-height: 18px;
    vertical-align: baseline;
}

/*********** bloque texto con icono   ********/

/********* iconos (aqui irían clases como la que hay pero con otra imagen de fondo)  *********/
[class^="icono-"],
[class*=" icono-"]{
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("images/iconossprite.png");
  background-repeat: no-repeat; 
  background-position: 14px 14px;
  opacity: 0.8;
}

[class^="icono-"]:last-child,
[class*=" icono-"]:last-child{
  *margin-left: 0;
}

.icono-blancos {
    background-image: url("images/iconossprite.png");
    opacity: 1;
}

.icono-check{
	background-position: -288px 0;
}

.bloqueicono
{
 margin: 0 0 20px;
}

.bloqueicono.contendor
{
 margin: 0 0 25px;
}
.bloqueicono h4 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.5px;
	line-height: 30px;
	margin: 0;
    padding: 0;
    vertical-align: baseline;
}

.bloquetexto{margin-left: 45px;}

.circulo{
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	-moz-border-radius: 50px; 
	-webkit-border-radius: 50px; 
	border-radius: 50px;
	float: left;
	margin-bottom: 10px;
	border: 0 none;
	font-family: "open sans", sans-serif;
}

.circulo i {margin: 9px 0 0 1px;}
.circulo.verde {background: #035d67;}
.circulo.gris {background: #9C9B9B;}

/********************** bloque texto resaltado *****************/
.bloqueresaltado
{
	background: none repeat scroll 0 0 #f3f3f3;
    border: 1px solid #DEDEDE;
    padding: 32px;
}

/************* cita ********************/
blockquote:before, blockquote:after, q:before, q:after {
    content: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none;
}
blockquote {
    border-left: 3px solid #E1E1E1;
    padding-left: 20px;
}
blockquote, q {
    quotes: none;
}

/************* vídeos ********************/
.play-button {
 width:90px;
 height:60px;
 background-color:#333;
 box-shadow:0 0 30px rgba(0,0,0,.6);
 z-index:1;
 opacity:.8;
 border-radius:6px;
 cursor:pointer
}
.play-button:before {
 content:"";
 border-style:solid;
 border-width:15px 0 15px 26px;
 border-color:transparent transparent transparent #fff
}
.play-button,
.play-button:before {
 position:absolute;
 top:50%;
 left:50%;
 transform:translate3d(-50%,-50%,0)
}
.videoWrapper {
	position:relative;
	padding-bottom:56.25%; /* 16:9 */
	padding-top:25px;
	height:0;
	break-inside:avoid-column;
    -webkit-column-break-inside:avoid;
    clear:both;
}
.videoWrapper iframe, .videoWrapper object{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}