.navbar .nav > li > a {
    color: #ddd;    /*  Bootstrap colors these links quite dark: rgb(119,119,119) */
}                 /* (This change makes the 'hover' highlight much less noticable...) */
.newslist {
    font-size: 8pt;
    padding-left: 0;
    list-style-type: none;
}
.newslist li {
    line-height: 15px;
}
.sidebrbtn {
    margin: 0.5em 0;
    width: 180px;
    font-weight: bold;
}
.navbar-nav { margin: 0 -15px }
.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

a.FBiconLink {
    font-size: 9pt;
    font-weight: bold;
    text-align: center;  /* extraneous */
    min-width:  80px;
    width: 15%;
    height: 90px;
    margin: 0 0.5em 2em;
    border: none;
}
.FBicon {
    text-align: center;
    height: 60px;
}
.FBiconText {
    display: block;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 -1em;
}
a.FBiconLink:hover {
    background-color: #cee;
}
a.FBiconLink,
a.FBiconLink:hover,
a.FBiconLink:visited,
a.FBiconLink:active {
    text-decoration: none;
    color: black;
}
.FBiconLink img {
    width:  60px;
    cursor: pointer;
}

/**
 * Use the :target pseudo-element to apply
 * styles to the element with the same ID as
 * the fragment identifier.
 * (e.g. `#target-section`)
 *
 * The pseudo-element can also be used in
 * conjunction with another selector to
 * define a variety of target styles.
 * (e.g. `#target-section:target)
 */

:target {
    -webkit-animation: target-fade 3s;
    -moz-animation: target-fade 3s;
    -o-animation: target-fade 3s;
    animation: target-fade 3s;
}


/**
 * Keyframe animation definition
 * Change background-color as desired
 */

@-webkit-keyframes target-fade {
    from { background-color: #c6d9eb; }
    to { background-color: transparent; }
}

@-moz-keyframes target-fade {
    from { background-color: #c6d9eb; }
    to { background-color: transparent; }
}

@-o-keyframes target-fade {
    from { background-color: #c6d9eb; }
    to { background-color: transparent; }
}

@keyframes target-fade {
    from { background-color: #c6d9eb; }
    to { background-color: transparent; }
}
