  #tabsJ {
    width: 100%;
    background: #D3DAD8;
    position: fixed;
    top: 0;
    font-size: 103%;
    font-weight: bold;
    border-bottom: 1px solid #9D8B47;
    padding: 0 0;
  }

  #tabsJ ul {
    margin: 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 3px;
	margin-left: 25px;
  }

  #tabsJ li {
    display: inline;
  }

  #tabsJ a {
    display: inline-block;
    padding: 6px 6px;
    background-color: #668290;
    color: #fff;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    transition: background-color 0.3s, color 0.3s;
  }

  #tabsJ a:hover {
    background-color: #9D8B47;
    color: #fff;
  }

  #tabsJ #current a {
    background-color: #002F47; 
    color: #fff;
  }