@charset "UTF-8";
/* CSS Document */
#news{
    height: auto !important;
	overflow:hidden;
}
.newsThumb{
    width: 100%;
    list-style: none;
    float: left;
}
.newsTitles{
    display: block;
    text-decoration: none;
    color: black;
    height: 100px;
    
    padding-bottom: 5px;
    background-color: #FFF;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(0, 0, 0, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(0, 0, 0, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.1, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.1, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}
.newsTitles:hover {
    color: white;
    background-color: #FFF;
    background-position: -100% 100%;
}
.newsArrow{
    float: right;
    margin-top:-60px;
    margin-right:30px;
    background-image: none;
    display: block;
    width: 30px;
    height: 30px;
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0.75;
}
