audio{
	width:100%;
}
table{

}
.flashing{
  border-width: 1px;
  border-style:solid;
   -webkit-animation: flash 1s infinite;
   -webkit-transition-timing-function: ease-out;
   animation: flash 1s infinite;
   transition-timing-function: ease-out;
}

@-webkit-keyframes flash {
    0%   {border-color: black;}
    50%  {border-color: white;}
    100% {border-color: black;}
} 

@keyframes flash {
    0%   {border-color: black;}
    50%  {border-color: white;}
    100% {border-color: black;}
} 
img{
	border:0px;
}
a img { border: none; }