/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable go to your theme settings and
 * look under the "CSS" settings tab.
 */

/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */

/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */

/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region Blocks - custom media query CSS example:
   * 
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}

/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */

/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

.block.blue-box {
   background-color: #557eb3;
   padding: 4px;
   width: auto;
   margin: 0 auto;
   display:block;
   display:inline-block;
   margin-left: auto;
   margin-right: auto;
   position:relative;
   text-align:center;
   margin-bottom: 10px;
        }
.block.picture-box {
   background-color: #ffffff;
   border:none;   
   padding: 1px;
   margin: 0 auto;
#   display:block;
#   display:inline-block;
   text-align:center;
   margin-bottom: 10px;
   width: 100%;
padding-right: 10px solid #bbb;
padding-bottom: 10px solid #bbb;
padding-left: 10px solid #ddd;
padding-top: 10px solid #ddd;
border-right: 1px solid #bbb;
border-bottom: 1px solid #bbb;
border-left: 1px solid #ddd;
border-top: 1px solid #ddd;
}

#block-block-6 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-18 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-19 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-20 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-21 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-22 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}
#block-block-23 .content {background-color: #ffffff; margin-top:0px; margin-bottom: 0px;}

.imagepad {padding: 1em;}

.node.text-box {
   background-color: #ffffff;
   padding: 20px;
   width: auto;
   margin-bottom: 0px;
   overflow: visible;

  }
.block.ddblock-contents {
   background-color: #557eb3;
   padding: 4px;
   text-align:center;
   background-position: center;
   display:block;
   margin-left: auto;
   margin-right: auto;
   width: auto;
   margin: 0 auto;
}
.ddblock-contents {
  display: block;
  text-align:center;
  margin: 0 auto;
}
.ddblock-14 {
  display: block;
  margin:0 auto;
}

.responsiveCal {
 
position: relative; padding-bottom: 75%; height: 0; overflow: hidden;
 
}
 
.responsiveCal iframe {
 
position: absolute; top:0; left: 0; width: 100%; height: 100%;
 
}
