/* per lo zoom di immagini, da https://www.rickypaxs.com/blog/sviluppo-web/css-10-effetti-di-immagini-al-passaggio-del-mouse/ */
* {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
}
.pic {
      border: 5px solid #717377;
      float: left;
      height: 300px;
      width: 300px;
      margin: 20px;
      overflow: hidden;
}
/*ZOOM*/
 .zoom img {
       height: 300px;
       width: 300px;
       -webkit-transition: all 1s ease;
       -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
       -ms-transition: all 1s ease;
       transition: all 1s ease;
 }
 .zoom img:hover {
       width: 400px;
       height: 400px;
 } 
/* per lo zoom di immagini - FINE */
/* per NEWS */
#content_news {
position:relative;
float:left;
left:3px;
top:0px;
width:175px;
margin:0px;
border: 2px solid #fff;
background-color:#db2911;
background-image:url('../images/brusasorci_per_sfondo01.jpg');
background-repeat:no-repeat;
overflow:hidden;
}

#news {
padding:5px;
position:relative;
left:0px;
top:0px;
width:168px;
height:410px;
margin:0px;
background-image:url('../images/sfondo_red_opcty80.png');
overflow:auto;
z-index:3;
}

#news a
{
   color: #fff338;
   text-decoration:none;
}
#news a:visited
{
   color: #fff338;
}
#news a:active
{
   color: #4fae1b;
}
#news a:hover
{
   color: #4fae1b;
   text-decoration:underline;

}
/*FINE news*/
/* per avere righe a colori alternati*/
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
/* ---- */

/*button cookie policy*/
.button_cp {
  background-color: white;
  color: #465052;
  border: 0px;
  padding: 2px 18px 4px;
  /*border: 2px solid #555555;*/
  border-radius: 3px; 
  font-weight: bold; 
  font-size: 11px; 
  transition: .3s ease;
}

.button_cp:hover {
  background-color: #465052;
  color: white;
  font-weight: bold;
  border: 1px;
  border-color: #555555;
}
/*END button cookie policy*/