        #scroller .frame {
            height: 309px;
            overflow: hidden;
        }

        #scroller .frame ul {
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
        }

        #scroller .frame ul li {
            float: left;
            width: 280px;
            height: 100%;
            margin: 0 25px 0 0;
            padding: 0;
            cursor: pointer;
        }
		#scroller .frame ul li > a {display: block;}
		
        #scroller .scrollbar {
            margin: 32px 0 0 0;
            height: 8px;
            background: #e7e8e9;
            line-height: 0;
        }

        #scroller .scrollbar .handle {
            width: 100px;
            height: 15px;
            position: relative;
            top: -4px;
            cursor: pointer;
            background: #d2232a;
            border-radius: 2px;
        }

        #scroller .scrollbar .handle .mousearea {
            position: absolute;
            left: 0;
            width: 100%;
            height: 15px;
        }

        #scroller .scrollbar .handle .icon {
            width: 12px;
            height: 7px;
            margin: auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        #scroller .scrollbar .handle .icon span {
            background-color: #fff;
            width: 2px;
            height: 7px;
            margin: 0 1px;
            display: block;
            float: left;
        }

        #scroller {
            font-size: 13px;
            margin-bottom: 40px;
            text-decoration: none!important;
        }

        .frontpage #scroller {
            margin-bottom: 80px;
        }

        #scroller .thumb {
			display:flex;
            margin-bottom: 10px;
            position: relative;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
			background-color:#000;
			height:200px;
        }

        #scroller .social-icon {
            position: absolute;
            left: 15px;
            top: 15px;
            width: 45px;
            height: 45px;
            background-color: #d2232a;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 50%;
        }
        #scroller .social-icon img{
            filter: invert(100%);
            -webkit-filter: invert(100%);
            width: 100%;
            height: auto;
        }

        #scroller .thumb > img {
            width: 100%;
        }

        #scroller .text-wrap {
            position: relative;
            color: #111;
            overflow: hidden;
			height: 112px;
        }

        #scroller p {
            text-decoration: none;
            line-height: 1.4;
        }
		a:hover, a:visited, a:link, a:active {text-decoration: none;}
        #scroller .text-wrap:after {
            position: absolute;
            content: '';
            bottom: 0;
            left: 0;
            width: 100%;
            height: 42px;
            z-index: 1;
			background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 58%, rgba(255,255,255,1) 100%); 
			background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 58%,rgba(255,255,255,1) 100%); 
			background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 58%,rgba(255,255,255,1) 100%);
        }