/*
 * 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) {} */
/*
 * Smalltouch sizes and up
 */
@media only screen and (min-width: 320px) {
	
	div#block-block-8 {
    width: 15em;
    float: right;
    margin: -8em 1em;
	font-size: 1.2em;
	}
	
	#branding {
    	margin: 1em 2em;
	}
	.flexslider {
    	margin: 0em;
		border: 0em;
	}
	#block-menu-menu-top-menu li{
		display: inline;
		padding: 1em;
	}

	#flexslider-1 ul.slides {
    padding: 0px !important; 
	}
	
	#footer {
    background-color: #155194;
	}
	
	li.node-readmore a {
	}
	h1.node-title a{
		font-size: .5em;
		text-transform:uppercase;
		text-decoration: none;
		color: #155194;
	}
	.region-sidebar-first img{
	    max-width: 100%;	
	}
	.tagline {
		position: absolute;
    	font-size: .5em;
    	background: #fff;
    	z-index: 9;
    	margin: .5em;
    	padding: 0.5em;
    	border: 1px solid #efefef;
	}
	.location {
    	position: relative;
		float: right;
    	font-size: .5em;
    	background: #fff;
    	z-index: 9;
    	margin: .5em;
    	padding: 0.5em;
    	border: 1px solid #efefef;
	}
}
/*
 * 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.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
	
	
}
/*
 * Tablet sizes and up
 */

@media only screen and (min-width: 768px) {
	.field-type-image.view-mode-teaser {
    	float: left;
    	padding: 0em 1.5em;
	}
	.field-type-image.view-mode-full {
    	float: left;
    	padding: 0em 1.5em;
	}
	.tagline {
		position: absolute;
    	font-size: 1.4em;
    	background: #fff;
    	z-index: 9;
    	margin: 1em;
    	padding: 0.5em 1em .5em 1em;
    	border: 1px solid #efefef;
	}
	.location {
    	position: relative;
		float: right;
    	font-size: 1.4em;
    	background: #fff;
    	z-index: 9;
    	margin: -5em 1em 0em 0em;
    	padding: 0.5em 1em .5em 1em;
    	border: 1px solid #efefef;
	}
	
} 
/*
 * Desktops/laptops and up
 */
@media only screen and (min-width: 1025px) {

	.container {
		width: 100%;
    	max-width: 100%;
	}	
	
	#logo {
    	padding: 1em 0;
    	height: 8em;
	}
	#block-views-header-slides-block {
    	margin: 0em;
    	z-index: -9;
	}
	.headerimage {
	    margin: -.5em;
	}
	
	#block-menu-menu-top-menu {
    	float: right;
    	margin: -5em 2em 0em 0em;
	}
	#block-menu-menu-top-menu li{
		display: inline;
		padding: 1em;
	}
	#block-menu-menu-top-menu a{
		font-size: 1.1em;
    	color: #155194;
	}
	#menu-bar {
    	margin: 0em 0em 3em 0em;
		z-index: 9;
		position:relative;
	}
	h1.node-title a{
		margin: 1em;
	}
	blockquote {
		width: 75%	;
		background: #f9f9f9;
		border-left: 10px solid #ccc;
		margin: 1.5em 10px;
		padding: 0.5em 10px;
		quotes: "\201C""\201D""\2018""\2019";
	}
	blockquote:before {
		color: #ccc;
 		content: open-quote;
		font-size: 4em;
		line-height: 0.1em;
		margin-right: 0.25em;
		vertical-align: -0.4em;
	}
	blockquote p {
		display: inline;
	}
	.field-type-text-with-summary.view-mode-teaser {
    margin: 1.5em;
	}
}

li.node-readmore.first.last {
    float: right;
}

/*# sourceMappingURL=responsive.custom.css.map */

