@font-face {
	font-family: Roboto-Light;
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('myfont-webfont.woff') format('woff'), 
	     url('Roboto-Light.ttf')  format('truetype'),
	     url('myfont-webfont.svg#svgFontName') format('svg');
	}
	
@font-face {
	font-family: Roboto-Thin;
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('myfont-webfont.woff') format('woff'), 
	     url('Roboto-Thin.ttf')  format('truetype'),
	     url('myfont-webfont.svg#svgFontName') format('svg');
	}
	
@font-face {
	font-family: Roboto-Regular;
	src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
	     url('myfont-webfont.woff') format('woff'), 
	     url('Roboto-Regular.ttf')  format('truetype'),
	     url('myfont-webfont.svg#svgFontName') format('svg');
	}

html, body, #a {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
	font-family: Roboto-Thin, sans-serif;
	color: #FFF;
	font-size:30px;
	text-decoration:none;

	/* Location of the image */
  background-image: url(background-photo.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
}
body a:link {
	text-decoration: none;
	color: #FFF;
}
body a:visited {
	text-decoration: none;
	color:#FFF;
}
body a:hover {
	text-decoration: none;
	color: #FFF;
}
body a:active {
	text-decoration: none;
	color: #FFF;
}

#a {
    display: table;
}

#b {
    display: table-cell;
    margin: 0;
    padding: 0;

    text-align: center;
    vertical-align: middle;
}

#content {
    margin: auto;
	width:70%;
}

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