/* CSS Document */
body {
	background-color: #000000;
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	color: #FFFFFF;
}
a:link {
	color: #FFFFFF;
}
a:visited {
	color: #FFFFFF;
}
body,td,th {
	font-size: 20px;
}

.player {
    position: absolute;
    max-width: 300px;
    left: -300px;
    transition: all 0.3s;
}

.player:hover {
	left:0px;
}

.player:after {
	content: '\1F56A';
    font-size: 2em;
    text-align: center;
    width: 60px;
    display: inline-block;
    position: absolute;
    cursor: pointer;
}