@import url("hdft.css");
@import url("font.css");
@import url("table.css");
@import url("runner.css");
/*ltrtbg*/
#bgleft {
	background-image: url('../images/bg_left.png');
	background-repeat: repeat-y;
	width: 7px;
	background-position:  left 50%;
}
#bgright {
	background-image: url('../images/bg_right.png');
	background-repeat: repeat-y;
	width: 7px;
	background-position:  right 50%;
}
/**/
.marquee_td {
    position: relative;
}
.marqueebox{
    overflow: hidden;
    width: 541px;
    display: block;
}
.marqueebox.en {
    position: absolute;
    right: 0;
    top: -10px;
    display: block;
    width: 600px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: #3e7801;
    padding: 0px;
}
.marqueebox.en .marquee {
    display: inline-block;
    padding: 0 0rem 0 0em;
    width: 300px;
}
.marqueebox.en .marquee-content{
    animation: marquee 15s linear infinite;
}
.marquee-container-about {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: #3e7801;
    padding: 0;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee {
    display: inline-block;
    padding: 0 0rem 0 2em;
}
.tw .marquee{
    font-size: 15px;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}