div.syminline a.sm2_link {
 /* assume all items will be sounds rather than wait for onload etc. in this example.. may differ for your uses. */
 display:inline-block;
 padding-left:22px;
 min-height:16px;
 border:3px solid #666;
 background-color:#666;
 -moz-border-radius:3px;
 -webkit-border-radius:3px;
 border-radius:3px;
 padding:0px 3px 0px 20px;
 min-width:19em;
 _width:19em;
 text-decoration:none;
 font-weight:bold;
}

div.syminline a.sm2_link {
 /* safari 3.1+ fun (or, proprietary crap. TBD.) */
 -webkit-transition-property: hover;
 -webkit-transition: all 0.15s ease-in-out;
}

div.syminline a.sm2_link,
div.syminline a.sm2_paused:hover,
div.syminline a.sm2_link:hover {
 background:#333 url(../images/icon_play.png) no-repeat 0px 50%;
 _background-image:url(../images/icon_play.gif); /* IE 6 */
 border-color:#333;
}

div.syminline a.sm2_paused {
 background-color:#999;
 border-color:#999;
}

div.syminline a.sm2_paused:hover {
 background:#999 url(../images/icon_play.png) no-repeat 0px 50%;
 _background-image:url(../images/icon_play.gif);
 border-color:#999;
}

div.syminline a.sm2_playing,
div.syminline a.sm2_playing:hover {
 background:#336699 url(../images/icon_pause.png) no-repeat 0px 50%;
 _background-image:url(../images/icon_pause.gif);
 border-color:#336699;
 text-decoration:none;
}

div.syminline a.sm2_link {
 /* default state: "a playable link" */
 border-left:1px solid #999;
 padding-left:20px;
 padding-right:4px;
 border: 1px solid #999;
 margin-bottom: 2px;
}

div.syminline a.sm2_link:hover {
 /* default (inactive) hover state */
 border-left-color:#333;
}


div.syminline a.sm2_playing {
 /* "now playing" */
 border-left-color:#6666ff;
 background-color:#000;
 color:#fff;
 text-decoration:none;
}

div.syminline a.sm2_playing:hover {
 /* "clicking will now pause" */
 border-left-color:#cc3333;
}

div.syminline a.sm2_paused {
 /* "paused state" */
 background-color:#666;
 text-decoration:none;
}

div.syminline a.sm2_paused:hover {
 /* "clicking will resume" */
 border-left-color:#33cc33;
}

