
body {
  /* Location of the image */
  background-image: url(../images/bg.jpg);
  background-position: center center; /* Image is centered vertically and horizontally at all times */
  background-repeat: no-repeat; /* Image doesn't repeat */  
  background-attachment: fixed;/* Makes the image fixed in the viewport so that it doesn't move when the content height is greater than the image height */   
  background-size: cover; /* This is what makes the background image rescale based on its container's size */  
  background-color:#D8D8D9;/* Pick a solid background color that will be displayed while the background image is loading */  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {    
    background-image: url(../images/bg_mobile.jpg);/* The file size of this background image is 93% smaller to improve page load speed on mobile internet connections */
  }
	}
	
	
html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  font: 18px/23px "PT Sans", sans-serif;
  color: #444444;
}



h1 {
  color:#444444;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

blockquote {
  display: block;
  max-width: 550px;
  margin: 15px auto;
  padding: 0 15px;
  color: #444444;
  font-family: "PT Sans", serif;
  font-size: 18px;
  line-height: 22px;
  text-align:left
}

blockquote cite {
  display: block;
  font: 18px/23px 'PT Sans', sans-serif;
  font-size: 16px;
  margin-top: 16px;
  color: #444444;
  text-transform: uppercase;
}

/* Layout */



.container {
  display: table;
  padding-top: 80px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.content  .logo{
	padding-left:37%;
	padding-top:9.5%;
	width:25%;
	}

/* Special */
.sub-title {
  margin: 10px auto 0;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 2px 10px;
  color: #FF9900;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
}
.button:hover{ text-decoration:underline}


/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  

  
  body h1 {
    font-size: 18px;
    line-height: 23px;
  } 
  
  .content, blockquote {  
    display: inline;
    margin: 0 auto;
    /*padding-top: 80px;*/
    vertical-align: baseline;
  }
  
  .content .logo{
	padding-left:25%;
	padding-top:9.5%;
	width:50%;
	}

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px; 
  }

  html, body, .container {
    height: auto;
  }
}