#WoTEHeader {
    height: 70px;	
    overflow: hidden;
    position: relative;
    background: gray;
    color: white;
}   
#WoTEHeader p {
    position: absolute;
    font-size: 30px;
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%);	
    transform:translateX(100%);
    /* Apply animation to this element */	
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s 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%); 
    }
}
/* Add a black background color to the top navigation */
#topBarDiv {
    background-color: #333;
    overflow: hidden;
    padding: 10px;
}

#WoTELogoDiv {
    float:left;
    width: 80px;
    text-align: center;
}
/* Style the links inside the navigation bar */
#topBarDiv a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
}

/* Change the color of links on hover */
#topBarDiv a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
#topBarDiv a.active {
    background-color: #04AA6D;
    color: white;
}
#OrteliusWorldMapDiv {
    width: 100%;
    height: auto;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: black;
}
