/*
    Document   : layout
    Created on : 8-mrt-2013, 16:54:46
    Author     : Rogier van Onna, ELONISAS.nl
    Description: Default layout style
*/
#page {
  width: auto;
}

/*--------------------------- MEDIA QUERIES ---------------------------*/
@media screen and (max-width: 240px){
  .content_part_content .part-content {
    width: 180px;
    font-size: 0.65em !important;
    padding:15px;
  }
}

@media screen and (max-width: 480px) and (min-width: 241px) {
  .content_part_content .part-content{
    font-size: 0.75em !important;
    padding: 15px;
    overflow: hidden;
  }
}

@media screen and (max-width:900px) and (min-width: 481px) {
  .content_part_content .part-content {
    padding:15px;
    overflow:hidden;
  }
  #logo img {
    width:100%;
  }
}

@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px){
  .content_part_content {
   -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
  }
}

