/*
 * 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, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smartphone sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smartphone sizes and down
 */
@media only screen and (max-width: 480px) {
  /* 
   * Float Region blocks example:
   * In smaller screen sizes we can remove the float and widths so all blocks
   * stack instead of displaying horizonally. The selector used here 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.
   * 
   * "Float Region blocks" is an extension for floating blocks in regions, see
   * your themes appearance settings, under the Extensions tab.
   */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
  
#block-views-11d349391bc21b83628b9c2ffe717e92, #block-views-43640358fef8504e27b43ab72ba0c27d, #block-views-3a17ebc83dc9d0a56eba885e8b600ede 

    {
    width: 100%;
    float: left;
    overflow: hidden;
    font-size: 1em;
    }

#content-column .content-inner .region-secondary-content
	{
	display: block;
	width: 100%;
	clear: both;
	float: none;
	}

section .main-content {
	display: block;
	width: 100%;
	clear: both;
	}

.front .columns .content-colums .region-highlighted  {
	display: none;
	}

}


/*
 * Tablet sizes and up
 */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  h2 { font-size: 1em}

ul.nice-menu a {
  font-size: 0.9em;
}

#geocenterblock img {
 height: 50px;
 width: auto;
}
.view-latest-items .newstextblock p {
  font-size: 0.8em;
}

.view-latest-items .newstextblock a {
  font-size: 0.7em;
}

.views-field-field-target-page {
/*  font-size: 70%; */
}
  
.views-field-field-target-page a {
  font-size: 1em;
  line-height: 1.3em;
  }

.frontpageblock h2
  {
    font-size: 70%;
  }
  
.frontpageblock p
  {
    font-size:80%;
  }
  
}
/*
 * Desktops/laptops and up
 */
@media only screen and (min-width: 1025px) {
  
  .node-type-geoscience-currents .field-name-body {
    column-count: 2;
    column-gap: 10px;
    column-width: auto;
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    -webkit-column-width: auto;
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    -moz-column-width: auto;
  }


  } 
