﻿/***********************************************************
************      screen-accessibility.css      ************
************                                    ************
************   Adds accessibility to the        ************
************   site via "Skip to [x]" links.    ************
***********************************************************/

/******** SKIPLINKS: Makes the "Skip to [x]" links hidden unless they have focus.  ********/
    
    #skipLinks a, #skipLinks a:hover, #skipLinks a:visited {
        background: transparent;
        border: none;
        height: 1px;
        left: 0px;
        position: absolute;
        top: -500px;
        width: 1px;
    }
    
    #skipLinks a:active, #skipLinks a:focus {
        background: #900;
        color: #fff;
        height: auto;
        margin-left: 0 !important;
        padding: 3px;
        position: static;
        width: auto;
    }