/*************************************************************************
 * 
 * CONFIDENTIAL
 * __________________
 * 
 *  [2015] - [2016] Andrea Parma
 *  All Rights Reserved.
 * 
 * NOTICE:  All information contained herein is, and remains
 * the property of Andrea Parma and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Andrea Parma
 * and its suppliers are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Andrea Parma.
 */

table {
	height: 97.5%;
	width: 95%;
	margin: auto;
	padding-top: 2%;
	z-index: 0;
}

td {
	background-size: cover;
	background-size: 100% 100%;

	transition-duration: 1s;
	-ms-transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-property: transform;
	-ms-transition-property: -ms-transform;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	overflow:hidden;
}

td:hover {
	-ms-transform: scale(1.5,1.5);
	-webkit-transform: scale(1.5,1.5);
	-moz-transform: scale(1.5,1.5);
	-o-transform: scale(1.5,1.5);
}

body {
	overflow: hidden;
	height:100%;
	min-height: 100%;
	margin: 0;
	background: url("sfondo.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

html {
	height: 100%;
	min-height: 100%;
	margin: 0;
}

#videoDiv {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0);
    text-align: center;
    z-index: 1;
}

#player {
	width: 80%;
	height: 80%;
	top: 50%;
	position: relative;
	transform: translateY(-50%);
	visibility: visible;
	z-index: 1;
}