/* styling of the container. */ 
a.myPlayer { 
    display:block; 
    width: 319px; 
    height:240px;  
    text-align:center; 
    margin:10px 20px 10px 0; 
    float:left; 
    border:1px solid #999; 
} 
 
/* play button */ 
a.myPlayer img { 
    margin-top:70px; 
    border:0px; 
} 
 
/* when container is hovered we alter the border color */ 
a.myPlayer:hover { 
    border:1px solid #BA213E;
}

div.myPics { 
    display:block; 
    width: 450px; 
    height:240px;  
    text-align:center; 
    margin:10px 20px 10px 150px; 
    float:left; 
    border:1px solid #999; 
} 


/* play button */ 
a.myPics img { 
    margin-top:35px; 
    border:0px; 
} 

 
/* when container is hovered we alter the border color */ 
a.myPics {
    border-bottom:1px solid #999; 
}

a.myPics:hover{ 
    border-bottom:1px solid #BA213E;
}
