/* two different list types */

@-webkit-keyframes colorPulse {
      0% {background-color: #036;}
    100% {background-color: #09f;}
}

ul.flat {
 list-style-type:none;
 padding-left:0px;
}

ul.flat li,
ul.graphic li {
 padding-bottom:0px;
}

ul.flat li a {
 display:inline-block;
 padding:2px 4px 2px 4px;
}

ul.graphic {
 list-style-type:none;
 padding-left:0px;
 margin-left:0px;
}

/* background-image-based CSS3 example */

ul.graphic {
 list-style-type:none;
 margin:0px;
 padding:0px;

}

ul.graphic li {
 padding: 5px;
 display:inline-block;
*display:inline;
_vertical-align:top;
_height:50px;
_text-align:left;

}

ul.graphic li a,
ul.graphic li 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:22px;
 vertical-align: middle;
 background-color: #222;
 border-radius: 5px;
 text-align: center;
 padding: 10px 10px 3px 42px;
 min-width:120px;
 _width:190px; /* IE 6 */
 _height: 36px;
 font-size: 1em;
 line-height: 1.2em;
 text-decoration:none;
 font-weight:normal;
 color:#eee;
 border: 1px solid #333;
 box-shadow: 0px 2px 5px #333;
}

ul.graphic li a.sm2_link {
 /* safari 3.1+ fun (or, proprietary crap. TBD.) */
 -webkit-transition-property: hover;
 -webkit-transition: background-color 0.15s linear;
 -moz-transition: background-color 0.15s linear 0s; /* firefox 4 */
  -o-transition-property: background-color; /* opera 10.5 */
  -o-transition-duration: 0.15s;
}

ul.graphic li a, /* use a.sm2_link {} if you want play icons showing only if SM2 is supported */
ul.graphic li a.sm2_paused:hover,
ul.graphic li a.sm2_link:hover {
 background-size: 24px !important;
 background-image:url(/ajax/images/icon_play.svg);
 background-position:10px 50%;
 background-repeat:no-repeat;
 _background-image:url(/ajax/images/icon_play.png); /* IE 6 */
 border: 1px solid #555;
}

ul.graphic li a.sm2_link:hover {
 /* default hover color, if you'd like.. */
 background-color:#09f;
 color:#fff;
}

ul.graphic li a.sm2_paused {
 background-color:#222;
 color:#fff;
}

ul.graphic li a.sm2_paused:hover {
 background:#36c url(/ajax/images/icon_play.svg) no-repeat 10px 50%;
 _background-image:url(/ajax/images/icon_play.gif);
 color:#fff;
}

ul.graphic li a.sm2_playing,
ul.graphic li a.sm2_playing:hover {
 background:#09f url(/ajax/images/icon_pause.svg) no-repeat 10px 50%;
 _background-image:url(/ajax/images/icon_pause.gif);
 text-decoration:none;
 color:#fff;
 -webkit-animation: colorPulse 1s infinite alternate;
}

/* hide button while playing?
ul.graphic li a.sm2_playing {
 background-image:none;
}
*/

body #sm2-container object,
body #sm2-container embed {
 /*
  flashblock handling: hide SWF off-screen by default (until blocked timeout case.)
  include body prefix to ensure override of flashblock.css.
 */

 left:-9999em;
 top:-9999em;
}

/* flat CSS example */

ul.flat a.sm2_link {
 /* default state: "a playable link" */
 border-left:6px solid #999;
 padding-left:4px;
 padding-right:4px;
}

ul.flat a.sm2_link:hover {
 /* default (inactive) hover state */
 border-left-color:#333;
}


ul.flat a.sm2_playing {
 /* "now playing" */
 border-left-color:#6666ff;
 color:#fff;
 text-decoration:none;
}

ul.flat a.sm2_playing:hover {
 /* "clicking will now pause" */
 border-left-color:#cc3333;
}

ul.flat a.sm2_paused {
 /* "paused state" */
 background-color:#666;
 color:#fff;
 text-decoration:none;
}

ul.flat a.sm2_paused:hover {
 /* "clicking will resume" */
 border-left-color:#33cc33;
}