/* Change javascript URLs to be green in colour, for easier identification */ 
a[href^="javascript:"] { 
        color: green !important; 
} 
/* Disable blinking and moving text, cuz its just annoying */ 
blink { 
        text-decoration: none ! important; 
} 
marquee { 
        -moz-binding: none ! important; 
} 
/* This one will display the accesskey after any element its set for. You can change it to only apply to links by changing 
the * to a 'a' */ 
*[accesskey]:after { 
        content: " {" attr(accesskey) "}"; 
} 
/* This will change the cursor to a crosshair when it moves over a link that opens in a new window */ 
:link[target="_blank"], :visited[target="_blank"], 
:link[target="_new"],   :visited[target="_new"] { 
        cursor:  crosshair !important; 
 } 
/* These are settings that make it more obvious which element has the focus */ 
a:focus { 
         -moz-outline: 2px dotted ! important; 
} 
button:-moz-focus-inner, 
input[type="reset"]::-moz-focus-inner, 
input[type="button"]::-moz-focus-inner, 
input[type="submit"]::-moz-focus-inner { 
        border: 2px dotted transparent; 
} 
button:focus::-moz-focus-inner, 
input[type="reset"]:focus::-moz-focus-inner, 
input[type="button"]:focus::-moz-focus-inner, 
input[type="submit"]:focus::-moz-focus-inner { 
        border-color: ButtonText; 
} 
