#timeline {
    width: 100%;
    height: 470px;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
}
#dates {
    width: 100%;
    height: 60px;
    overflow: hidden;
    padding-left: 0;
    display: table;
}
#dates > li {
    list-style: none;
    display: table-cell;
    height: 60px;
    font-size: 21px;
    font-family: 'Dosis';
    text-align: center;
}
#dates a:after{
    background: url('../img/cabril_punto_timeline.png') center center no-repeat;
    height: 12px;
    width: 12px;
    content: '';
    position: absolute;
    bottom: -6px;
    margin-left: -6px;
    left: 50%;
    z-index: 2;
}
#dates a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #757575;
    padding-right: 2px;
    padding-left: 2px;
    border-top: 1px solid #757575;
    border-bottom: 1px solid #757575;
    position: relative;
    z-index: 1;
}
#dates .selected {
    color: #07836C;
}

#dates .selected:after{
    background-color: #07836C;
    background-image: none;
    border-radius: 100%;
}

#issues {
    width: 800px;
    height: 400px;
    overflow: hidden;
    padding-left: 0;
}
#issues ul {
	padding-left: 25px;
}
#issues > li {
    width: 300px;
    height: 400px;
    list-style: none;
    float: left;
    color: #000;
    position: relative;
    font-size: 17px;
}

#issues > li h4 {
    font-size: 48px;
    margin: 10px 0;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
}
#issues > li p {
    font-family: 'Lato';
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
}

#issues li.selected{
    background-color: #07836C;
    color: #fff;
}

#issues li.selected h4,
#issues li.selected p{
    color: #fff;
}

#issues .abrir_info{
    border: 1px dashed #fff;
    border-radius: 6px;
    color: #fff;
    background-color: #07836C;
}

#issues .ampliar_info{
    display: none;
    width: 650px;
    height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: -175px;
    background-color: #07836C;
    color: #fff;
    position: absolute;
    top: 0px;
    z-index: 2;
}

#issues .cerrar_info{
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    vertical-align: middle;
}

#issues .ampliar_info h3,
#issues .ampliar_info p{
    color: #fff;
    margin-top: 0;
}

#fade-prev,
#fade-next{
    position: absolute;
    top: 60px;
    height: 420px;
    width: 250px;
}
#fade-prev{
    left: 0px;
    background: linear-gradient(to right, #fff, transparent);
    background-image: -webkit-linear-gradient(left, #fff, transparent);
    background-image: -moz-linear-gradient(left, #fff, transparent);
    background-image: -o-linear-gradient(left, #fff, transparent);
    background-image: linear-gradient(to right, #fff, transparent);
}
#fade-next{
    text-align: right;
    right: 0px;
    background: linear-gradient(to left, #fff, transparent);
    background-image: -webkit-linear-gradient(right, #fff, transparent);
    background-image: -moz-linear-gradient(right, #fff, transparent);
    background-image: -o-linear-gradient(right, #fff, transparent);
    background-image: linear-gradient(to left, #fff, transparent);
}

#next,
#prev {
    position: absolute;
    font-size: 40px;
    top: 150px;
    color: #07836C;
}
#next{
    right: 0px;
}
#prev{
    left: 0px;
}
#next.disabled,
#prev.disabled {
    opacity: 0.2;
}


@media screen and (max-width: 767px){
    #fade-prev,
    #fade-next{
        width: 20%;
    }
	#issues .ampliar_info{
		width: 100%;
		margin-left: 0px;
		overflow: auto;
	}
}

@media screen and (max-width: 499px){
    #fade-prev,
    #fade-next{
        width: 60px;
		background: transparent;
    }
	#next,#prev{
		background: rgba(255,255,255,0.5);
	}
}