<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* This is base of css to set html */


html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, optgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-family:myFirstFont;*/
    /*vertical-align: baseline;*/
    text-decoration: none;
}
@font-face
{
    /*font-family: myFirstFont;*/
    /*src: url('../fonts/LetterGothicStd.ttf' ),*/
    /*url('../fonts/LetterGothicStd.otf');  //IE9+*/
}
.width960{
    width: 960px;
}

.width1070{
    width: 1070px;
}
.width_100{
    width: 100%;
}
.displaynone{
    display: none;
}
body{
    background: url("../images/backgroung_img.jpg");
    overflow:scroll;
    overflow-x: hidden;
}
.head_ul&gt; li &gt; a{
    color: #000000;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.en_class_font{
    font-family: "Courier New", Courier, monospace;
}
.font_color_white{
    color:#ffffff;
}
video:hover{
    /*cursor: url("images/cursor_hover.cur"),auto;*/
    /*cursor: url("../images/cursor_hover.ico"),-moz-zoom-out;*/
    cursor: pointer;
}
.work_video &gt; img:hover{
    /*cursor: url("images/cursor_hover.cur"),auto;*/
    /*cursor: url("../images/cursor_hover.ico"),-moz-zoom-out;*/
    cursor: pointer;
}
a:hover{
    /*cursor: url("images/cursor_hover.cur"),auto;*/
    /*cursor: url("../images/cursor_hover.ico"),-moz-zoom-out;*/
    cursor: pointer;
}
.modal-open{
    overflow: scroll;
}
.test1{
    animation:myfirst 2s;
    -moz-animation:myfirst 2s; /* Firefox */
    -webkit-animation:myfirst 2s; /* Safari and Chrome */
    -o-animation:myfirst 2s; /* Opera */
    /*animation-direction: alternate;*/
    /*animation-play-state: running;*/

    -moz-animation-iteration-count:infinite;
    -moz-animation-direction:alternate;
    -moz-animation-play-state:running;

}
@keyframes myfirst {
    0%   {background:red;}
    25%  {background:yellow;}
    50%  {background:blue;}
    75%  {background:green;}
    100% {background:red;}
}
/*div{*/
    /*border: solid red 1px;*/
/*}*/
/*img{*/
    /*border: solid red 1px;*/
/*}*/
</pre></body></html>