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


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 Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  color: #ffffff;
}

h1 {
  color: #efecec;
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

/* Layout */

.navbar {
  width: 100%;
  background-color: #cd0021;
  height: 50px;
  z-index: 9999;
  position: fixed;
	margin-top: 50px;
}

.footer {
  width: 100%;
  background-color: #000000;
  height: 150px;
  z-index: 9999;
  position: absolute;
  padding: 30px 0px 0px 0px;
  bottom:0;
}

.footerText{
	font-size: 12px;
	padding: 30px 0px 0px 0px
}

  .inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
	  height: 50px;
	  padding: 10px 0px 0px 0px;
  }


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

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
	  padding: 10px 0px 170px 0px;
}

/* Special */
.sub-title {
  margin: 15px auto;
  font-size: 18px;
  line-height: 23px;
}
