@charset "utf-8";
/* CSS Document */

.breakingNews {
    width: 100%;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.breakingNews > .bn-title {
    width: auto;
    height: 30px;
    display: inline-block;
    background: #FDFC47;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24FE41, #FDFC47);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24FE41, #FDFC47); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    position: relative;
}

.breakingNews > .bn-title > h2 {
    display: inline-block;
    margin: 0;
    padding: 0 10px 0 10px ;
    line-height: 30px;
    font-size: 14px;
    color: #000;
    height: 32px;
    box-sizing: border-box;
}

.breakingNews > .bn-title > span {
    width: 0;
    position: absolute;
    right: -8px;
    top: 5px;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #FAFC47;
}

.breakingNews > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    left: 210px;
    top: 0;
    right: 40px;
    height: 40px;
    font-size: 12px;
}

.breakingNews > ul > li {
    position: absolute;
    height: 30px;
    width: 100%;
    line-height: 30px;
    display: none;
}

.breakingNews > ul > li > a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
}

.breakingNews > ul > li > a > span {
    color: #ddd;
}

.breakingNews > ul > li > a:hover {
    color: #FFC635;
}

.breakingNews > .bn-navi {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
}

.breakingNews > .bn-navi > span {
    width: 10px;
    height: 30px;
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0.7;
    background-image: url(../news/bn-arrows.png);
    background-repeat: no-repeat;
}

.breakingNews > .bn-navi > span:hover {
    opacity: 1;
}

.breakingNews > .bn-navi > span:first-child {
    background-position: left center;
    left: 0;
}

.breakingNews > .bn-navi > span:last-child {
    background-position: right center;
    right: 0;
}

.breakingNews:hover .bn-navi {
    opacity: 1;
}

