/* ADA Button */
 .ada-button {
      background-color:#003366;
      color: white;
      padding: 10px;
      border-radius: 6px;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      transition-duration: 0.4s;
      cursor: pointer;
      Height: 2.75em;/* ADA Recommended height for buttons = 44X44px */
}
.ada-button a{
    color: white;
    word-wrap: break-word;
 }
.ada-button:hover {
    background-color:#ff6600;
    color: #000000;
    font-weight: bold;
}

.ada-button-link:hover{
    color: white;
    font-weight: bold;
    text-decoration: underline;
}
.ada-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);    
    }