/*

 SoundManager 2: In-page MP3 player example

*/

ul.flat {
 list-style-type:none;
 padding-left:0px;
}

ul.flat li
{
 padding: 0;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 9px;
 
}

ul.flat li a {
 display:inline-block;
 padding:2px 4px 2px 4px;
}

/* hide button while playing?
ul.graphic li a.sm2_playing {
 background-image:none;
}
*/

/* flat CSS example */

ul.flat a.sm2_link {
 /* default state: "a playable link" */
 background: black;
 color: rgb(0,176,216);
 text-decoration: none;
 padding-left:4px;
 padding-right:4px;
}

ul.flat a.sm2_link:hover {
 /* default (inactive) hover state */
 color: rgb(191,215,91);
}


ul.flat a.sm2_playing {
 /* "now playing" */
 background-color: black;
 color: rgb(191,215,91);
 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: black;
 color: rgb(0,176,216);
 text-decoration:none;
}

ul.flat a.sm2_paused:hover {
 /* "clicking will resume" */
 color: rgb(0,176,216);
}

