/* 
    Created on : 20/01/2016, 16:48:17
    Author     : Henrique Neves
*/

.slideshow{
    width: 100%; /* Definir width do slideshow. Default: 100% */
}

/* ----- Definições da coluna das imagens ----- */
.col-imagem{ 
    height: 240px; 
    padding: 0px;
}

.img-noticia{
    width: 100%;
    height: 100%;
    
}

#img-noticia-1{
transition: background-color 0.35s linear 0.12s;
}

#img-noticia-2{
    display: none;
    
}

#img-noticia-3{
    display: none;
    
}

/* ----- Definições da coluna das notícias ----- */

.col-noticia{
    min-height: 240px;
}

@media(min-width: 768px){
    .col-noticia{
        height: 240px; /* height do slideshow */
    }
}

.div-noticias{
    padding: 10px;
    height: 33.33%;
}

.div-noticias p{
    text-align: justify;
    margin-right: 15px;
}

/* Noticia 1 */
#not-1{
    border-left: 10px solid #c1db9e;
}

.not-1-ativado{
    background-color: #F2F2F2;
    transition: background-color 0.35s linear 0.12s;
    border-left-color: #61a409 !important;
}

/* Noticia 2 */
#not-2{
    border-left: 10px solid #9ac7dc;
}

.not-2-ativado{
    background-color: #F2F2F2;
    transition: background-color 0.35s linear 0.12s;
    border-left-color: #0372a6 !important;
}

/* Noticia 3 */
#not-3{
    border-left: 10px solid #ff9999;
}

.not-3-ativado{
    background-color: #F2F2F2;
    transition: background-color 0.35s linear 0.12s;
    border-left-color: #FF4848 !important;
}


