/* index - carousel */
#carousel {
    padding: 0;
}
#carousel img {
    width: 100%;
}
#carousel .fa {
    top: 50%;
    position: absolute;
}
.carousel-control.left {
    text-align: left;
    padding-left: 16px;
}
.carousel-control.right {
    text-align: right;
    padding-right: 50px;
}

/* index - lead */
#lead {
    text-align: center;
    padding:8px;
}
#lead > img {
    width: 80%;
    max-width: 417px;
    max-height: 102px;
}

/* index - news */
#news > div > div {
    background-color: #fff;
    border-radius: 5px;
    font-size: 12px;
    line-height: 2em;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
}
#news img {
    margin-bottom: 10px;
}
#news table {
    width: 100%;
}
#news tr {
    border-bottom: 1px dashed #ccc;
}
#news th, #news td {
    padding: 2px 8px;
}
@media (max-width: 767px) {
    #news {
        /* display: none; */
    }
}

/* index - information */
.information {
    margin-bottom: 24px;
}

/* index - blog headline */
.blog {
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.blog a {
    content: "";
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.blog:hover {
    opacity: 0.9;
}
.blog a:hover {
    background: initial;
    cursor: pointer;
    text-decoration: none;
}
.blog .date {
    color: #fff;
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 50;
}
.blog .title {
    margin-top: 50%;
    width: 100%;
    height: 50%;
    z-index: 50;
}
.blog .title div {
    color: #fff;
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    box-sizing: border-box;
    font-size: 25px;
    text-align: left;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .blog .title div {
        font-size: 16px;
    }
}

.important {
    margin: 20px 0;
    padding: 30px 20px 0;
    border: 3px solid #f33;
    position: relative;
    border-radius: 4px;
    background-color: #fff;
}
.important div {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 0 8px;
    font-size: 16px;
    background-color: #f33;
    border: 1px solid #f33;
    color: #fff;
    border-radius: 4px;
}
.important div .fa {
    margin-right: 6px;
    font-size: 16px;
}
.important p {
    margin: 0 0 10px;
    position: relative;
    top: -4px;
}
