/* CSS Document */
/* links on video display pages (to close the window);
create each to make it look like a button at the bottom */
a { background-color: #999999;
    text-decoration: none;
	padding: 2px 5px 2px 5px;
	border-top: 1px solid white;
	border-bottom: 1px solid #333333;
	border-right: 1px solid white;
	border-left: 1px solid #333333;
  }
/* button changes colour on mouseover */
a:hover { background-color: #666666;
           color: #ffffff; }
