/*
 * 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%;
}
}

@media only screen and (min-width: 1025px) {
.page-what-where div.pro-staff-view {
	padding-left: 43.7%; 
}
div.contact-box {
	width: 175px;
	text-align: center;
}
}

@media only screen and (min-width: 768px) and (max-width: 992px){
 .page-what-where div.pro-staff-view {padding-left: 15%;}
}

@media only screen and (min-width: 993px) and (max-width: 1024px){
 .page-what-where div.pro-staff-view {padding-left: 25%;}
}

@media only screen and (max-width: 1024px) {
	body{background:rgba(0, 0, 0, 0) url("../images/fishbrook-background.jpg") repeat fixed 65% bottom / cover ;}

}

@media only screen and (max-width: 630px) {
#name-and-slogan > h1 {
	max-width: 250px;
}
}

@media only screen and (max-width: 480px) {
#name-and-slogan {
	display: inline-block;
	float: none;
	margin: 0;
	padding: 0 ;
	max-width: 238px;
}
#header{text-align:center;}
div#branding.branding-elements hgroup#name-and-slogan ul.menu{padding-left:0px !important;}
#site-name {
	max-width: 120px !important;
	padding-left: 0px !important;
	text-align: left;
}
div#branding.branding-elements hgroup#name-and-slogan ul.menu li.first{padding-left:0px;}
div#branding.branding-elements hgroup#name-and-slogan ul.menu li.last{padding-right:0px;}
#logo{position:absolute;}
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */
@media only screen and (min-width:769px){
	#site-name {
    padding-left: 16.2%;
}}
@media only screen and (min-width: 641px) and (max-width: 768px){
	#site-name{
		 padding-left: 12.3%;
	}
}