﻿@charset "utf-8";



/* =======================================



	CommonElements



======================================= */

.tickercontainer { /* the outer div with the black border */



margin: 0px 0px 0px 0px;

padding: 0px 4px 0px 4px;

background: #;position: relative;

}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */

position: absolute;

top: 163px;

height: 24px;

line-height: px;

width:512px;

overflow: hidden;

}

ul.newsticker { /* that's your list */

position: relative;

/*left: 750px;*/

font-size: 15px;

font-family : "メイリオ","ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";

color:#fff000;

list-style-type: none;

margin: 0;

padding: 0;

}

ul.newsticker li {

float: left; /* important: display inline gives incorrect results when you check for elem's width */

margin: 0;

padding-right: 15px;

background-image: url(https://www.keibnande.net/i/blackdot.gif);

}



.tickercontainer

//width of the original container in which the ticker appears

.tickercontainer .mask

//can be used to achieve padding within the container

ul.newsticker {

    //important to enable css3 transitions properly 

    -webkit-transition: all 0s linear;

    -moz-transition: all 0s linear;

    -o-transition: all 0s linear;

    transition: all 0s linear;

    list-style:none;

    margin:0;

}



