.bannerholder{
  position:relative;
  width:100%;
  height:100px;
}

.mini-banner{
  position:absolute;
  background: url("/images/BANNER.png") center center no-repeat fixed;
  width:inherit;
  height:100px;
  border:6px double;
}

@media only screen and (max-width: 600px){
  .bannerholder{
    height:150px;
  }
  .mini-banner{
    height:150px;
    background-size:cover;
    background-origin:border-box;
    background-position:center center;
    background-attachment: scroll;
    margin-bottom:50px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 900px){
  .bannerholder{
    height:150px;
  }
  .mini-banner{
    height:150px;
    background-size:cover;
    background-origin:border-box;
    background-position:center center;
    background-attachment: scroll;
  }
}

@media only screen and (min-width: 901px){
  .mini-banner{
    background-size:72%;
    background-position:left center;
  }  
}


.descrip{
  font-size:12px;
  font-style:italic;
  text-align:center;
}