/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
/*  background-image: url(images/background-photo.jpg);*/
 background:url(../images/bodyBG.jpg);
  background-position: center center;
  
  background-repeat: no-repeat;
  
  background-attachment: fixed;
  
  background-size: cover;
  
  background-color:#fefefe;
  

/* background: url(../images/bodyBG.jpg) center center cover no-repeat fixed;
*/ 
}






/* For mobile devices */
@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);*/
   background-image: url(../images/responsve-bodyBG.jpg);

  }
	}



/* For mobile devices */
@media only screen and (max-width: 480px) {
  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);*/
   background-image: url(../images/responsve-bodyBG.jpg);

  }
	}
