/*
 ____________________________________________________________________________
|                  |                                                         |
|          Title:  |  Add Your Own Name in Firefox's Credits (FUN!!)         |
|    Description:  |  You can Add yourself as a developer in the credits lol |
|         Author:  |  -=Ben=-                                                |
|   Date Created:  |  August 6, 2008                                         |
|   Date Updated:  |  August 6, 2008                                         |
|        Version:  |  1.0.0.0                                                |
|__________________|_________________________________________________________|

*/

@-moz-document url-prefix(about:credits), url(chrome://browser/content/credits.xhtml)
{



/* The names below will appear if you go to about:credits - on each letter.  
Please make sure to have a comma and a space after your name: */

p:before
{
  content: "-=Ben=-, " !important;
}


/* The names below will appear if you go to about:credits - in the title.  
Please make sure to have a comma and a space after your name: */
body:before
{
  content: "Listing of Credits, custom by -=Ben=-" !important;
}


/* The names below will appear if you go to Help/About Firefox and click on Credits.  
Please make sure to have "and" and a space after your name: */
li:before
{
  content: "-=Ben=- and " !important;
}

/* The names below will appear after the Version of the credits.  
Please make sure to have "and" and a space after your name: */




h2:after
{
  content: " -=Ben=- h2 Edtion" !important;
}

/* The names below will appear after the MOTTO on the Credits scrolldown.  
Please make sure to have a funny saying and a space after your name: */
.motto:after
{
  content: "... -=Ben=- Style!! " !important;
}

.title:after
{
  content: " -=Ben=- Edtion" !important;
}

}