/*This sets the text font and size*/
body {
	font-family: lucida console, Arial, sans-serif;
	font-size: large;
	}
/*this sets the main container for the gallery*/	
#gallerywrap {
  	float: left;
  	width: 100%;
		padding: 0px;
  	}
		
h1  {
  	font-size:200%;
    padding-top: 120px;
		}
		
h2  {
		text-align: center;
		}		
img.left  {
    float: left;
		margin-right: 20px;
		}	
/*This positions the text in the pop up window containing the full size image*/		
p.win  {
    padding: 300px 0 0 0;
		}		
/*this block creates the width of the container for the gallery pictures*/		
/*change the width if you need a few extra pixels to fit in a landscape image*/
div.container1 {
  clear:both;
  margin: auto;
	overflow: hidden;
	width: 670px; 
  background-color: transparent;
  }	
	
/*This creates the positioning for the thumbnails*/	
/*change the width if you have a particularly wide image, but you may also need to change 
the width of container1 or lose some of the padding*/
div.float1 {
  width: 220;
  float: left;
  padding: 10px;
  }

div.float1 p {
/*this centres the text under the image if you want a title for the image*/
   text-align: center;
   }