@charset "UTF-8";
/* CSS Document */
body {
  /* Location of the image */
  background-image: url();
  
  /* 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: #ffffff;
}
@media only screen and (max-width: 767px) {
	body {
	background-image: url();
	}
}
.thumbnail{
     border:none !important;
     background: transparent !important;
     box-shadow:none !important;
  }
.image-wrapper {
  margin-left: auto;
  margin-right: auto}
.img-responsive {
  width: 100;
  height: 100;
  vertical-align: middle;
}
body { background-color:transparent; }