﻿#linetime {
    position:fixed;
    top:240px;
    left: 580px;
    margin: 40px auto;
    width: 750px;  /* Ancho del linetime */
box-sizing: border-box;
-moz-box-sizing: border-box;
box-shadow: 10px 10px 18px #888888;
}

#linetime input {
height: 30px;
visibility: hidden;
}

#linetime label {
float: left;
cursor: pointer;
font-size: 14px;  /* Tamaño del texto de las pestañas */
line-height: 40px;
height: 38px;
padding: 0 20px;
display: block;
color: #888;  /* Color del texto de las pestañas */
text-align: center;
border-radius: 5px 5px 0 0;
background: #eee;  /* Fondo de las pestañas */
margin-right: 5px;
}

#linetime input:hover + label {
background: #ddd;  /* Fondo de las pestañas al pasar el cursor por encima */
color: #666;  /* Color del texto de las pestañas al pasar el cursor por encima */
}

#linetime input:checked + label {
background: #DAD0FF;  /* Fondo de las pestañas al presionar */
color: #444; /* Color de las pestañas al presionar */
z-index: 6;
line-height: 45px;
height: 43px;
position: relative;
top: -5px;
-webkit-transition: .1s;
-moz-transition: .1s;
-o-transition: .1s;
-ms-transition: .1s;
}

.content {
background: #DAD0FF;  /* Fondo del contenido */
position: relative;
width: 100%;
height: 300px;  /* Alto del contenido */
padding: 20px;
z-index: 5;
border-radius: 0 5px 5px 5px;
}

.content div {
position: absolute;
z-index: -100;
opacity: 0;
transition: all linear 0.1s;
}

#linetime input.tab-selector-1:checked ~ .content .content-1,
#linetime input.tab-selector-2:checked ~ .content .content-2,
#linetime input.tab-selector-3:checked ~ .content .content-3,
#linetime input.tab-selector-4:checked ~ .content .content-4,
#linetime input.tab-selector-5:checked ~ .content .content-5{
    z-index: 100;
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.1s;
-moz-transition: all ease-out 0.2s 0.1s;
-o-transition: all ease-out 0.2s 0.1s;
-ms-transition: all ease-out 0.2s 0.1s;
}