   /* CSS to control the visibility of the inline players */   /* show the button by default */   .mp3button {	  visibility: visible;		 width: 17;		 height: 17;	  }   .slimmp3player {	  visibility: hidden;	  width: 0;	  height: 0;	  }   .pixeloutmp3player {	  visibility: hidden;	  width: 0;	  height: 0;	  }   /* conditionally, show the slim player */   #showslim .slimmp3player {		 visibility: visible;		 vertical-align: text-bottom;		 width: 220;		 height: 17;		 }   #showslim .mp3button {		 visibility: hidden;	     width: 0;	     height: 0;		 }   #showslim .pixeloutmp3player {		 visibility: hidden;		 width: 0;		 height: 0;		 }   /* conditionally, show the 1pixelout player */   #showpixelout .pixeloutmp3player {		 visibility: visible;		 vertical-align: text-bottom;		 width: 290;		 height: 24;		 }   #showpixelout .mp3button {		 visibility: hidden;		 width: 0;		 height: 0;		 }   #showpixelout .slimmp3player {		 visibility: hidden;		 width: 0;		 height: 0;		 }