body {
    background-color: #EFEFEF;
    background-image: url("../../images/bg.jpg");
}

.film { 
    padding: -1px; 
    transition: 0.1s ease;
    }

.film:hover { 
    position: relative;
    transform: scale(1.1, 1.1); 
    opacity: 1; 
    z-index: 1;
    }
	
.film:active {  
    position: relative;
    top: 1px;
    transform: scale(50, 50); 
    opacity: 1; 
    z-index: 1; 
    }

.filmbot { 
    padding: -1px; 
    transition: 0.1s ease;
    }

.filmbot:hover { 
    position: relative;
    top: 1px;
    transform: scale(1.1, 1.1); 
    opacity: 1; 
    z-index: 1;
    }
	
.filmbot:active {  
    position: relative;
    top: -150px;
    transform: scale(50, 50); 
    opacity: 1; 
    z-index: 1;
    }
	
.filmtop { 
    padding: -1px; 
    transition: 0.1s ease;
    }

.filmtop:hover { 
    position: relative;
    top: 1px;
    transform: scale(1.1, 1.1); 
    opacity: 1; 
    z-index: 1;
    }
	
.filmtop:active {  
    position: relative;
    top: 150px;
    transform: scale(50, 50); 
    opacity: 1; 
    z-index: 1;
    }
	


.link:link {color:#0000ff;text-decoration: none;}
.link:visited {color:#29088A;text-decoration: none;}
.link:hover {color:#ff0000;text-decoration: underline;}
.link:active {color:#ff0000;text-decoration: none;}

.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 1px 6px;
    border: 2px solid #ededed;
    border-radius: 5px;
    background: #3c9fe9;
    background: -webkit-gradient(linear, left top, left bottom, from(#3c9fe9), to(#25628f));
    background: -moz-linear-gradient(top, #3c9fe9, #25628f);
    background: linear-gradient(to bottom, #3c9fe9, #25628f);
    font: normal normal bold 13px arial;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 2px solid #ededed;
    background: #48bfff;
    background: -webkit-gradient(linear, left top, left bottom, from(#48bfff), to(#2c76ac));
    background: -moz-linear-gradient(top, #48bfff, #2c76ac);
    background: linear-gradient(to bottom, #48bfff, #2c76ac);
    text-shadow: #ffffff 1px 1px 1px;
    color: #000000;
    text-decoration: none;
}
.button:active {
    background: #25628f;
    background: -webkit-gradient(linear, left top, left bottom, from(#25628f), to(#25628f));
    background: -moz-linear-gradient(top, #25628f, #25628f);
    background: linear-gradient(to bottom, #25628f, #25628f);
}