/* CSS Document */

/* styling of the container. */
a.myPlayer {
	display:block;
	width: 395px;
	height:240px; 
	text-align:center;
	margin:0 0px 0px 0;
	border:1px solid #999;
}
 
/* play button */
a.myPlayer img {
	margin-top:100px;
	border:0px;
	filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    -khtml-opacity: 0.7;
}
 
/* when container is hovered we alter the border color */
a.myPlayer img:hover {
    filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    -khtml-opacity: 0.7;
}