@charset "UTF-8";
/* CSS Document */

html{
	/* This image will be displayed fullscreen */
	background:url('background.jpg') no-repeat center center;

	/* Ensure the html element always takes up the full height of the browser window */
	min-height:100%;

	/* The Magic */
	background-size:cover;
}

body{
	/* Workaround for some mobile browsers */
	min-height:100%;
}

#container {
    margin: 100px auto 0;
    max-width: 900px;
    padding: 10px;
}

#left {

  width: 300px;
  height: 256px;
 
}



#right {

  width: 300px;
  height: 256px;
     
}

