
.program {
    display: inline-block;
    width: 300px;
    height: 300px;
    overflow: hidden;
    margin-right: 14px;
    background: #002F61;
}

.box_programs_navs {
    position: relative;

}

.box_programs {
    display: block;
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* set border-box so that percents can be used for width, padding, etc (personal preference) */
#carousel .cycle-slideshow, #carousel .cycle-slideshow * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }


#carousel .cycle-slideshow { position: relative;}

/* slideshow images (for most of the demos, these are the actual "slides") */
#carousel .cycle-slideshow img {
    /*
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
    position: absolute; top: 0; left: 0;
    width: 100%; padding: 0; display: block;
}

/* in case script does not load */
#carousel .cycle-slideshow img:first-child {
    position: static; z-index: 100;
}

/* pager */
.cycle-pager {
    text-align: right; width: 100%; z-index: 500; overflow: hidden;
}
.cycle-pager span {
    font-size: 16px; width: 16px; height: 16px; border-radius: 50%;
    display: inline-block; background: #002F61; cursor: pointer; color: #002F61;
    margin-left: 7px;
}
.cycle-pager span.cycle-pager-active { background: #D90F3A; color: #D90F3A;}
.cycle-pager > * { cursor: pointer;}


/* prev / next links */
.cycle-prev, .cycle-next {
    color: #002F61;
    font-size: 1.4rem;
}
.cycle-prev a, .cycle-next a {color: #002F61;}

.cycle-prev:hover, .cycle-next:hover { opacity: .7; filter: alpha(opacity=70) }

.disabled { opacity: .5; filter:alpha(opacity=50); }

.program_title {
    margin-top: 5px;
    font-size: 1.8rem;
    color: #002F61;
    font-weight: 700;
    margin-bottom: 7px;
    color: white;
}

.program_author {
    font-size: 1.3rem;
    color: #002F61;
    font-weight: 400;
    margin-bottom: 5px;
    color: white;
}

.program_time {
    font-size: 1.2rem;
    color: #D90F3A;
    font-weight: 400;
    margin-bottom: 7px;
}

.program_episodes {
    font-size: 1.4rem;
    color: #002F61;
    font-weight: 400;
    padding: 10px 20px;
    border: 1px solid #BACDE0;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    width: 100%;
}

.program_episodes:hover {
    background: #002F61;
    color: white;
    border: 1px solid #D90F3A;
}