/*
 ________________________________________________________________________
|                  |                                                     |
|          Title:  |  Highlight Every Focused Element (HighlightFocus)   |
|    Description:  |  Custom Text Color for Currently Focused Web objects|
|         Author:  |  -=Ben=-                                            |
|   Date Created:  |  December 15, 2008                                  |
|   Last Updated:  |  December 15, 2008                                  |
|        Version:  |  1.0.0.0                                            |
|__________________|_____________________________________________________|

*/



@-moz-document url-prefix(http://), url-prefix(https://), url-prefix(ftp://) 
{


input:focus,
select:focus,
a:focus,
span:focus,
div:focus
{
  /* -moz-appearance: none !important; */
  border-color: #00FF00 !important;
  /* border-style: ridge !important; */
  /* border-width: 1px !important; */
  color: #00FF00 !important;
  background: #000000 !important;
}


select:focus, input:not([type="checkbox"]):not([type="radio"]):focus
{
  -moz-appearance: none !important;
}

}