/* -----

style1c_dandrewplus.css


Gfont - added in Index.php above stylesheet

use the 2 columns
- image in left column
- text in rt column

$_SERVER['HTTP_HOST']   - ServerName   (www.abc.com)
$_SERVER['REQUEST_URI'] - further path (.../bleh.php)

$_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']   - Servername + remain path (www.abc.com/bleh.php)
preg_replace('/^www\./','',$_SERVER['HTTP_HOST']) - Servername w/out 'www.'  (abc.com)
------------------------------ */

/* Reset */
* { margin:0; padding:0;}

/* font-size base, first top-bdr line */
html { 
  font-size: 16px;
  border-top: 12px solid #8c8c8c; /* gray45 */
}


body {
  margin: 0px;
  width: 100%;
  
  font-family: 'Roboto Slab', arial, sans-serif;
  
  font-size: 16px;
  font-size: 1rem;
  
  font-weight: normal;
  letter-spacing: 0px;

  line-height: 24px;
  line-height: 1.5rem;

  border-top: 5px solid #252525; /* gray85 - second top-bdr line */

  background: #d9d9d9 url('images/Leather_Transp_v09a_931_c2_230x.png') repeat; /* gray15 */
}

.clear { clear: both; }
 
img { border: none; }

p{ 
  margin: 0 0 10px 0;
  margin: 0 0 0.625rem 0;
}


#page-wrap {

	margin: 125px auto 0;
  margin: 7.8125 auto 0;
  
  
	padding: 0;
  
	width: 704px;
	width: 44rem;
}

/* A-wrap includes site title */
#A-wrap {
  margin: 0;
  padding: 0;
  border-top: 3px solid #808080;
  /* border-bottom: 3px solid #808080; */
}

.sitename-title {


  font-size: 40px;
  font-size: 2.5rem;
  
  
  font-weight: normal;
  text-align: center;
  
  margin: 0;
  
  padding: 55px 0 40px 0;
  padding: 3.4375rem 0 2.5rem 0;
}

.blurb-title { 
  font-size: 34px;
  font-size: 2.125rem;
  
  margin: 56px 0 0 0;
  margin: 3.5rem 0 0 0;
}

.blurb-text  {

  font-size: 26px;
  font-size: 1.625rem;
  
  
  margin: 35px 0 0 0;
  margin: 2.1875rem 0 0 0;
}

/* B-wrap includes col1 and col2 */
#B-wrap {
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
  
  border-bottom: 3px solid #808080;
}

#four-oh-four-wrap {
  margin: 0 auto;
  
  padding-top: 55px;
  padding-top: 3.4375rem;
  
  width: 600px;
  width: 37.5rem;

  font-family: arial, sans-serif;
  
  
  font-size: 24px;
  font-size: 1.5rem;
  
  line-height: 30px;
  line-height: 1.875rem;
}

.error-bg {
  background: #e5e5e5; /* gray10 */
}

#col1 {
  float: left;
  width: 45%;
}

#col1 img { float: right; }

#col2 {
  float: right;
  width: 45%;
}

/* ------------------------------------------------ */

/* Lines */
#thick-horiz-line { height: 60px; background: #e5c5c3 repeat-x; }
#thin-horiz-line  { height: 3px;	background: red repeat-x; }
/* * { border: 1px solid #7cbf97; )  --1px border around each element, desat teal */

