<style style="text/css">
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}
  a.link    {color:#131032; background-color:transparent;}
  a.visited {color:#35023D; background-color:transparent;}
  a.std:link    {color:#131032; background-color:transparent;}
  a.std:visited {color:#35023D; background-color:transparent;}
  a.std:hover   {color:red; background-color:transparent;}
  a.std:active   {color:red; font-weight:bold;background-color:transparent;}
  a.inline:link    {color:#131032; background-color:transparent; font-family:arial black; text-decoration:none;font-size: 15px}
  a.inline:visited {color:#35023D; background-color:transparent; text-decoration:none;font-size: 15px}
  a.inline:hover   {color:#c4002e; background-color:transparent; text-decoration:none;font-size: 15px}
  a.inline:active   {color:red; font-weight:bold;background-color:transparent;font-size: 15px}
  a.banner:link    {color:yellow; background-color:transparent; font-family:arial black; text-decoration:none;font-size: 20px}
  a.banner:visited {color:yellow; background-color:transparent; font-family:arial black; text-decoration:none;font-size: 15px}
  a.banner:hover   {color:red; background-color:transparent; font-family:arial black; text-decoration:none;font-size: 20px}
  a.banner:active   {color:red; font-weight:bold;background-color:transparent;}
  a.menu:link    {color:#131032; background-color:transparent; font-family:arial black; display:block;text-decoration:none;font-size: 15px}
  a.menu:visited {color:#35023D; background-color:transparent; text-decoration:none;display:block;font-size: 15px}
  a.menu:hover   {color:#c4002e; background-color:transparent; text-decoration:none;display:block;font-size: 15px}
 body {background-color: black;color: black;font-family:arial;font-size: 16px;}
</style>
<style style="text/css">
.example1 {
height: 30px;
overflow: hidden;
position: relative;
}
.example1 h2 {
font-size: 20px;
color: darkred;
position: absolute;
width: 100%;
height: 100%;
margin: 0;
line-height: 20px;
text-align: center;
/* Starting position */
-moz-transform:translateX(100%);
-webkit-transform:translateX(100%);
transform:translateX(100%);
/* Apply animation to this element */
-moz-animation: example1 15s linear infinite;
-webkit-animation: example1 15s linear infinite;
animation: example1 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes example1 {
0%   { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes example1 {
0%   { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes example1 {
0%   {
-moz-transform: translateX(100%); /* Firefox bug fix */
-webkit-transform: translateX(100%); /* Firefox bug fix */
transform: translateX(100%); 
