/* Giving all the avatars in the comment box a custom background */ 
td.avibox { background-image: url(spotlight.png); } 

/* hiya */ 
#text {} 

/* The box containing your profile avatar */ 
#profile_avi {} 

/* Custom boxes */ 
/* (created by typing [block=newname]text[/block] in your profile text) */ 
#newname {} 

/* Your Easter egg (will show when wearing one) */ 
#egg {} 

/* The list of layer icons of worn items */ 
#equipped {} 

/* Online/offline indicator (add a background image if you want it to show) */ 
#online { background: url(online.png); width: 100px; height: 100px; } 
#offline { background: url(offline.png); width: 100px; height: 100px; } 

/* Item artist indicator (add a background image if you want it to show) */ 
#booth_link { background: url(booth.png); width: 100px; height: 100px; } 

/* The list of artists of worn items */ 
#equipped_text {} 

/* The text saying whether you're online/offline */ 
#online_text { color: #00FF00; } 
#offline_text { color: #FF0000; } 

/* The text showing the link to your booth*/ 
#booth_text {} 

/* The following code can be used to hide an element: */ 
{ display: none; } 

/* The following code can be used to remove the background image of an element: */ 
{ background-image: none; } 

