.anuncios-maquetados .anuncio{
    width: 330px;
    height: 300px;
    border: 1px solid #cccccc;
    display: inline-block;
    vertical-align: top;
    margin: 10px 0;
}
.anuncios-maquetados .anuncio:nth-child(1){
    margin-right: 16px;
}
/* Imagen del curso */
.anuncios-maquetados .anuncio .img-curso{
    width: 330px;
    height: 160px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

/* Contenedor Cupón Dto. */
.anuncios-maquetados .anuncio .img-curso .contenedor-cupon-dto{
    width: 290px;
    height: 132px;
    padding: 14px 20px;
    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(255, 255, 255);
    /* RGBa with 0.6 opacity */
    background-color: rgba(255, 255, 255, 0.7);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
    text-align: center;
    font-weight: bold;
    display: none;
    cursor: pointer;
}
.anuncios-maquetados .anuncio .img-curso:hover .contenedor-cupon-dto{
    display: block;
}
.anuncios-maquetados .anuncio .img-curso .contenedor-cupon-dto .texto-cupon-dto{
    font-size: 16px;
}
.anuncios-maquetados .anuncio .img-curso .contenedor-cupon-dto .btn-cupon-dto{
    width: 240px;
    margin: 16px auto;
    padding: 10px 0;
    background-color: #ffd800;
    border-bottom: 4px solid #ffae00;
    font-size: 18px;
    font-style: italic;
}

/* Info sobre el curso */
.anuncios-maquetados .anuncio .info-curso{
    background-color: #1e72bd;
    height: 116px;
    padding: 12px 22px;
    color: #ffffff;
    position: relative;
}
.anuncios-maquetados .anuncio .info-curso .nombre a{
    color: #ffffff;
    font-weight: bold;
}

/* Valoracion, Modalidad y Duracion */
.anuncios-maquetados .anuncio .info-curso .info-inferior{
    width: 286px;
    position: absolute;
    bottom: 10px;
}
.anuncios-maquetados .anuncio .info-curso .info-inferior .valoracion{
    display: inline-block;
    float: left;
}
.anuncios-maquetados .anuncio .info-curso .info-inferior .valoracion .estrella-pequenia{
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 2px;
}
.anuncios-maquetados .anuncio .info-curso .info-inferior .valoracion .estrella-pequenia.estrella-completa{
    background-image: url(../img/estrella_full.png);
}
.anuncios-maquetados .anuncio .info-curso .info-inferior .valoracion .estrella-pequenia.estrella-media{
    background-image: url(../img/estrella_middle.png);
}
.anuncios-maquetados .anuncio .info-curso .info-inferior .valoracion .estrella-pequenia.estrella-vacia{
    background-image: url(../img/estrella_empty.png);
}

.anuncios-maquetados .anuncio .info-curso .info-inferior .modalidad{
    display: inline-block;
    float: right;
    font-size: 13px;
    margin-top: 1px;
}