/* ----------------------------------------------------------------- Pestañas */

.pestanas {
    display: block;
    margin-bottom:5px;
}

.pestanas .pestanas_grupo{
    text-align: left;
    border-bottom: 1px solid #666;
}

.pestanas .pestana{
    background-color: #e7e8e8;
    background-image: linear-gradient(to bottom, #fff, #ccc);
    background-repeat: repeat-x;
    border: 1px solid #666;
    border-radius: 10px;
    padding: 2px 10px 2px 10px;
    display: inline-block;
    margin-right: 0;
    cursor: pointer;
    opacity: .5
}

.pestanas .pestana:hover{
    opacity: 1;
}

.pestanas .pestana.pestana_selected{
    opacity: 1;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
    padding-bottom: 3px;
}

.pestanas .pestana_contenidos{
    border-radius: 2px;
    overflow: hidden;
}

.pestanas .pestana_contenido{
    float: left;
}

/* --------------------------------------------------------- Pestañas simples */

.pestanas_simple {
    display: block;
}

.pestanas_simple .pestanas_grupo{
    text-align: center;
    margin-top: 5px;
}

.pestanas_simple .pestana{
    background-color: #e7e8e8;
    background-image: linear-gradient(to bottom, #fff, #ccc);
    background-repeat: repeat-x;
    border: 1px solid grey;
    border-radius: 7px 7px 0 0;
    padding: 2px 10px 2px 10px;
    display: inline-block;
    cursor: pointer;
    margin-right: -4px;
    opacity: .7;
}

.pestanas_simple .pestana:hover{
    opacity: 1;
    background-color: #e7e8e8;
    background-image: linear-gradient(to bottom, #444, #222);
    background-repeat: repeat-x;
    border: 1px solid #333;
    color: white;
}

.pestanas_simple .pestana.pestana_selected{
    opacity: 1;
    background-color: #e7e8e8;
    background-image: linear-gradient(to bottom, #444, #222);
    background-repeat: repeat-x;
    border: 1px solid #333;
    color: white;
}

.pestanas_simple .pestana_contenidos{
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid grey;
    margin-bottom: 5px;
}

.pestanas_simple .pestana_contenido{
    float: left;
    overflow: auto !important;
}