/* -----

style_asian_B.css

- redirect to BillSeymour.com, started 151019

- ref: http://www.heliomedia.com/tutorials/building-a-basic-html5-template-using-php-includes/

141018
 URL path to current directory (so I don't need to state it explicitly)
'http://' . $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']) . '/';
------------------------------ */


/* Box-Sizing:Border-Box - now my basic style
- Width now includes contained element Width, Pad-LR, and Border-LR
- ref: http://www.paulirish.com/2012/box-sizing-border-box-ftw/
*/
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}


/* fr Stargazer, Chun, etc */
.clearfix::after {
	content:    ".";
	display:    block;
	height:     0;
	clear:      both;
	visibility: hidden;
}

/* Browser Width Value
- Class of span for my JS function */
.browser-width-value {

  position: absolute;
  top:4px;
  right:10px;
  font-family: Arial, sans-serif;
  font-size: 14px;

  padding: 1px 4px;
  background: #ffcccc;
  border: 1px solid #999999;
}

p { margin-bottom: 12px; }

/* basic link */
a {
  color: #000000;
  text-decoration: underline;
}

a:hover {
  color: #ffffff;
  background:   #252525; /* bNote: I have both BG and Bdr in a-link */
  text-decoration: none;
}

/* #container */
#container {
  padding-top: 55px; /* use padding rather than margin */
}

/* BG tiled image */
body {
  font-family: 'Open Sans', arial, sans-serif;
  line-height: 1.25;
  
  word-wrap: break-word; 

  background-color: #f5f1ed; /*wgray4 */
  background-image: url('images/Leather_Transp_v09b_033_c1_126x.png');
}

#main {
  margin-bottom: 30px;
}

/* -----
Master Width set here
- using border-box:box-sizing
----- */
#main > .wrap,
#footer > .wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-left:  5%;
  padding-right: 5%;
}

/* .Breadcrumb-here
- a 'Landing Breadcrumb'
- shift it depending where Helicoptor Man is
- 150802 larger font-size
*/
.breadcrumb-here {
  font-size: 16px; 
  margin-left: 0px;
  margin-bottom: 24px;
}

.breadcrumb-here span {
  font-size: 19px;
  padding: 2px 4px;
  border: 1px solid #999794; /* gray40 */
  border-radius: 6px;
}

.breadcrumb-here p {
  margin-bottom: 8px;
}

#content {
  position: relative; /* for the Absolute positioned img within */

  margin: 0 auto;
  padding: 50px 0;
  
  background-color: #fcf9f5; /* wgray1, lighter than BG color  */
  background-image: url('images/Leather_Transp_v09b_033_c1_126x.png');
  
  border: 1px solid #999794; /* wgray40 */
  border-radius: 6px;
}

.content-inner {}

.hello-banner {
  font-size: 28px;
  text-align: center;
  margin-bottom: 28px;
}

.redirect-link {
  font-size: 34px;
  line-height: 1.125;
  text-align: center;
  margin-bottom: 48px;
}

  .redirect-link a {
    color: #000000;
    text-decoration: underline;
  }

  .redirect-link a:hover {
    color: #ffffff;
    background:   #252525;
    text-decoration: none;
  }

.bottom-img-div {
  text-align: center;
}

.bottom-img {
  width: 95%; /* so will always have some LR spacing */
  max-width: 600px;
}

#footer {
  clear: both;
  font-size: 17px;
}

.copyright { float: left; }
.credit    { float: right; }


/* MQ (all MQ are here) === */

@media only screen and (max-width: 700px) {

  .copyright,
  .credit {
    clear: both;
    float: none;
    text-align: center;
  }

} /* end MQ */


@media only screen and (max-width: 575px) {

  #main > .wrap {
    padding-left:  1.75%; /* minimal outside Pad-LR */
    padding-right: 1.75%;
  }
  
  .hello-banner {
    font-size: 26px;
  }

  .redirect-link {
    font-size: 32px;
  }

} /* end MQ */


@media only screen and (max-width: 425px) {

  .breadcrumb-here {
    font-size: 15px;
  }
  
  .breadcrumb-here span {
    font-size: 17px;
  }
 
  .hello-banner {
    font-size: 24px;
  }
  
  .redirect-link {
    font-size: 29px;
  }
  
  #footer {
    font-size: 15px;
  }
  
} /* end MQ */

/* ---------- */

