@charset "utf-8";
/* CSS Document */

.audiocss {
	border:inset;
	border-radius: 15px; 
	color: red;
	-moz-border-radius: 15px; 
	-webkit-border-radius: 15px;  
	box-shadow: 10px 10px 5px #666;
	border:1px solid black;
	background: red; /* For browsers that do not support gradients */
    background: repeating-linear-gradient(red, yellow 10%, green 20%);	/* Standard syntax */
    background: -webkit-repeating-linear-gradient(red, yellow 10%, green 20%);   /* Safari 5.1 to 6.0 */ 
    background: -o-repeating-linear-gradient(red, yellow 10%, green 20%);    /* Opera 11.1 to 12.0 */
    background: -moz-repeating-linear-gradient(red, yellow 10%, green 20%);    /* Firefox 3.6 to 15 */
  }  

