 
.scroll-left {
 height: 20px;  
 overflow: hidden;
 position: relative;
 color: white;
 background-color: #FF0000;
}
.scroll-left p {
 position: absolute;
 width: 130%;
 height: 100%;
 margin: 0;
 line-height: 20px;
 text-align: center;
 font-weight: bold;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);    
 transform:translateX(100%);
 /* Apply animation to this element */  
 -moz-animation: scroll-left 15s linear infinite;
 -webkit-animation: scroll-left 15s linear infinite;
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%);       
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}



.blinking{
    animation:blinkingTextsatu 0.8s infinite;
    text-align: center;
    background-color: #f1f1f1;
    color: white;
    display: block;
    border: 1px solid #555;
    border-radius: 6px 6px 6px 6px;
}
.blinking:hover {
    animation:blinkingTextdua 0.8s infinite;
    background-color: #79bd9a;
    border: 1px solid red;
}
@keyframes blinkingTextsatu{
    0%{     color: #000;    }
    50%{    color: transparent; }
    100%{   color: #188a6d;    }
}
@keyframes blinkingTextdua{
    0%{     color: white;    }
    50%{    color: transparent; }
    100%{   color: white;    }
}
.menux{
    position: relative;
    }
    
.menux ul{
    width: 100%;
    list-style-type: none;
    margin: none;
    padding: none;
}

.menux li a {
    background-color: #f1f1f1;
    color: #000;
    padding: 8px;
    text-decoration: none;
    text-align: left;
    border: 1px solid #555;
    border-radius: 6px 6px 6px 6px;
    display: block;
}

.menux li {
    border-bottom: none;
}

.menux li:last-child {
    border-bottom: none;
}

.menux li a.active {
    text-align: center;
    background-color: #79bd9a;
    color: white;
}

.menux li a:hover:not(.active) {
    background-color: #79bd9a;
    color: white;
}

 table {
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  text-shadow: 1px 1px 0px #fff;
  background: #eaebec;
  border: #ccc 1px solid;
}
 
table th {
  padding: 10px 25px;
  border-left:1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background: #ededed;
}
 
table th:first-child{  
  border-left:none;  
}
 
table tr {
  text-align: center;
  padding-left: 10px;
}
 
table td:first-child {
  text-align: left;
  padding-left: 10px;
  border-left: 0;
}
 
table td {
  padding: 10px 25px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  background: #fafafa;
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
  background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}
 
table tr:last-child td {
  border-bottom: 0;
}
 
table tr:last-child td:first-child {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
 
table tr:last-child td:last-child {
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
 
table tr:hover td {
  background: #f2f2f2;
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
  background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}