/**
 * Items based off the US Web Design Standards.
 */
.usa-button,
.usa-button:link,
.usa-button:visited
{
    -moz-osx-font-smoothing: grayscale; 
    -webkit-font-smoothing: antialiased; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0.5em auto;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background-color: #0071bc;
    display: inline-block;
    font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    outline: none;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.usa-button:hover { color: #fff; background-color: #205493; }
.usa-button:active { color: #fff; background-color: #112e51; }
