	/* background-color: transparent; has been used in some of the selectors, this is the default and it is not strictly necessary to declare this info - it does serve a purpose in that it supplies information for you to see */
	body {/* set everything to zero for a good cross-browser starting point */
		margin: 0; /* zeroes the margins on the body */
		padding: 0; /* zeroes the padding on the body ** Opera carries a default padding and requires this zeroing */
		border: 0; /* zeroes off any existing border */
		background-color: #FAF4E8; /* sets the body background colour */
		color: #92846A; /* set the default text color */
		text-align: center; /* Hack to centre the wrapper in IE5.x pc */
		font-family: Garamond, Verdana, Arial, Helvetica, sans-serif; /* set the default fonts */
		font-size: 100.01%; /* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
		min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
	}
	
	#wrapper {
		margin: 5px auto; /* centers the wrapper first value - 5px is applied to the top and bottom margins, auto sets the excess space on the view port evenly to the left and right */
		width: 770px; /* sets the width of the wrapper */
		position: relative; /* important to position it relatively */
		background-color: #FAF4E8; /* sets the wrappers background color */
		text-align: left; /* Realigns the text to the left after the IE hack in the body rule */
	}
	
	#banner {
		background-image: url(images/banner_bg.jpg); /* sets the background image for the banner div */
		background-repeat: repeat-x; /* tiles the background image on the x-axis - From left to right on the horizontal plane */
		width: 770px; /* Provides a width for the banner div */
		position: relative; /* Allows us to set the navcontainer div absolutely within the banner div */
	}
	
	#banner .right { /* Float the right hand image to the right in the banner */
		float: right; /* Floats the image to the right */
	}
	
	#content .left { /* Floats the images in the main content area to the left */
		float: left; /* Floats the image to the left */
		margin: 5px 20px 2px 0; /* sets the margins so the image sits nicely in the p elements */
		border: none; /* sets a border on the image */
	}
	
	#content .right { /* Floats the images in the main content area to the right */
		float: right; /* Floats the image to the right */
		margin: 5px 0 2px 20px; /* sets the margins so the image sits nicely in the p elements */
		border: none; /* sets a border on the image */
	}
	
	/* Set the navigation container */
	/* The relative positioning on the banner allows us to set this div absolutely in relation to its containing element - the banner div. This div holds the image tabs */
	#banner #navcontainer {
		position: absolute; /* absolute positioning takes this element out of the document flow and places it in relation to the containing element by using top & left values in this instance */
		top: 103px; /* set the distance from the top of the containing element - in this case the banner div */
		left: 85px; /* set the distance from the right edge of the containing element */
		background-color: transparent; /* allows the banner image to show through */
		font-family: Garamond, Verdana, Arial, Helvetica, sans-serif;
		
	}
	
	
	#banner #navcontainer p {
		padding: 2px 2px 4px 10px; /* sets the padding values */
		margin: 0; /* zeroes off the margins */
		background-color: #FAF4E8;
		color:#92846A;	
		margin-left: 50px;
	}
	
	#banner #navcontainer ul {
		list-style:none;
		margin: 0;
		padding: 4px 0 0 0;
		background-color: #FAF4E8; /* sets the background colour */
	
		
	}
	
	#banner #navcontainer li {
	display:inline;
	background-color: #FAF4E8; /* sets the background colour */
	color: #92846A;
	}
	
	#banner #navcontainer a { /* Styles the links within the footer */
		color: #92846A; /* sets the text to white */
		text-decoration: none; /* removes the underline */
		margin-right:30px;
	
	
	
	}
	
	#banner #navcontainer a:hover, #footer a:focus {
		text-decoration: underline; /* keeps the underline */
	}
	
	
	#contact { /* Begin laying out the contact div */
	    float: right; /* Floats the div to the left to make a column */
	    margin-right: 15px; /* creates a margin on the right to move the div away from the page edge */
	    background-color: transparent; /* no colour required for the bg colour */
	    display: inline; /* overcomes an IE bug with floats and margins */ 
	}
	
	* html>#contact {width: 169px;} /* only IE5/Mac sees this selector. The width on the float is imperative for this browser */ 
	
	#navigation {
	    background-image: url(images/navigation.gif); /* sets the "tab" navigation image */
		background-repeat: no-repeat; /* prevents our image from repeating - it aligns to the top and left by default so need to position it */
		margin-top: 33px;  /* sets a margin on the top to move the div down from the banner */ 
		background-color: transparent; /* no background colour required */
		padding-top: 19px; /* moves the content of the div down and allows the "tab" bg image to show above it */
		line-height: 100%; /* helps out IE 5.01 pc */
		width: 169px; /* sets a width for the div */
	}
	
	#navigation ul {
		background-color: transparent; /* no background colour required */
		list-style-type: none; /* removes the bullets from our list navigation */
		margin: 0 0 40px 0; /* Moves the "add" div down 40px from the bottom of the navigation list */
		padding: 0; /* zeroes off the padding */
		font-size: 80%; /* scales the font to 80% of the body font declaration */
		border-bottom: 3px solid #A37752; /* These borders create the box affect on the navigation */
		border-left: 3px solid #A37752; /* These borders create the box affect on the navigation */
		border-right: 3px solid #A37752; /* These borders create the box affect on the navigation */
	 }
	
	#navigation ul li {
		padding: 0; /* zeroes off the padding */
		margin: 0; /* zeroes off the margins */
		background-color: #CDC7C2; /* sets a background colour */
	}
	
	.first {/* Adds a border to the top of the first link - apply to the first link in the list */
		border-top: 1px solid #000; /* provides a border for the top of our first list navigation link - we don't want double borders where the links join in the list navigation, this negates that problem */
	}
	
	/* Begin styling the link lists - visited is styled the same as link, not absolutely necessary to decalre visited but its there.
	Note that the reference is to "a" and not "a:link". This makes the link act as a button in a cross-browser way. */
	/* You will notice that I have set two selectors on this rule. This is fine when the occasion arises - saves time and space */
	#contact #navigation a, #contact #navigation a:visited { /* use dual selectors if the properties and values are the same for each */
		background-color: #F0AA76; /* provides a background for the link */
		border-bottom: 1px solid #000000; /* sets the bottom border */
		border-left: 1px solid #323C55; /* sets the left border */
		border-right: 1px solid #000000; /* sets the right border */
		color: #000; /* changes the default text colour to black */
		display: block; /* required to make the links act like a button */
		padding: 4px 0 6px 4px; /* sets padding values to give the link text some "air" */
		text-decoration: none; /* removes the underline */
		width: 163px; /* sets the width for IE5.x */
		w\idth: 157px; /* resets the width for IE6 and compliant browsers - regarding the position of the escape \ character - the escape character must not come immediately before the letters a,b,c,d,e or f. If it does it will be seen as a hex character and the hack will fail */
	}
	
	/* sets the link styles for hover and focus */
	/* You will notice that I have set two selectors on this rule, this is fine when the occasion arises - saves time and space */
	#contact #navigation a:hover, #contact #navigation a:focus { /*use dual selectors if the properties and values are the same for each */
		background-color: #A47040; /* sets the background colour */
		border-right: 1px solid #fff; /* changes the right border to white to give the hover state an indented look */
		border-bottom: 1px solid #fff; /* changes the bottom border to white to give the hover state an indented look */
		color: #FFFFFF; /* changes the hover and focus text to white */
	}
	
	/* Begins laying out the address */
	#add { /* Set the containing add div */
		padding: 18px 0 0 0; /* sets the padding values - the 18px value allows the "tab" background image to show above the content */
		width: 169px; /* sets a width for the div */
		background-color: transparent; /* no background colour required */
		background-image: url(images/address.gif); /* sets the "tab" background image for the div*/
		background-repeat: no-repeat; /* no repeating required */
	}
	
	#contact #navigation h3 { /* Sets the title on the navcontainer and the add divs */
		font-size: 70%; /* scales the font size */
		background-color: #A37752; /* sets the background colour */
		padding: 5px 3px 3px 7px; /* sets the padding values - the 7px aligns this header with the text in the "tab" image */
		color: #fff; /* sets the text colour to white */
		margin: 0; /* zeroes off the margins */
		border-left: 2px solid #A37752; /* Blends the left edge into the tab highlight */
	}
		
	#contact #navigation #add h3 {
	    font-size: 70%; /* Sets the font size */
		background-color: #A37752; /* sets the background colour */
		padding: 5px 3px 3px 7px; /* sets the padding values - the 7px aligns this header with the text in the "tab" image */
		color: #fff; /* sets the text colour to white */
		margin: 0; /* zeroes off the margins */
		border-bottom: 1px solid #A37752; /* adds a bottom border to give some definition between the h3 and the address element */
	}
	
	#contact #navigation #add address { /* Sets the styling for the address element */
		font-size: 70%; /* scales the font size */
		padding: 7px 5px 5px 5px; /* sets the padding */
		border-right: 3px solid #A37752; /* These borders create the box affect on the address */
		border-left: 3px solid #A37752; /* These borders create the box affect on the address */
		border-bottom: 3px solid #A37752; /* These borders create the box affect on the address */
		margin: 0; /* zeroes off the margins */
		color: #333; /* changes the default text colour */
		font-style: normal; /* removes the default italic style for address */
		background-color: #F0AA76; /* sets the background colour */
	}
	
	#content { /* Begin laying out and styling the content div */
		background-color: transparent; /* no background colour required */
		width: 670px; /* sets the width of our content */
		margin-right: 90px; /* this margin leaves room for the contact div and creates another column */
		margin-left: 50px;
		padding-bottom: 20px; /* sets a padding clearance on the bottom of the div */
		margin-bottom: 20px; /* sets a margin below the div and above the footer */
	}
	
	#content h1 {
		font-size: 120%; /* scales the main content title */
		font-family: Georgia, "Times New Roman", Times, serif; /* sets the default fonts for h1 ** Notice that fonts that consist of more than word are surrounded in quotes */
		margin: 0 0 10px 30px; /* sets the margins*/
		padding-top: 40px; /* adds padding to the top to give a little clearance below the banner */
		color: #7D7360; /* set the colour for the text */
		font-style: italic; /* set the font style */
		font-weight: 500; /* sets the font weight to slightly less than bold - Where this isn't supported it seems mainly to default to normal - to make the text bold, if that is your wish, you can simply remove this property */
	}
	
	#content h2 {
		font-size: 110%; /* scale the font size */
		font-family: Garamond, Verdana, Arial, Helvetica, sans-serif;
		margin: 0 0 10px 30px; /* set the margins */
		padding-top: 20px; /* adds the top padding to move it down from elements above - could be done with a top margin */
		color: #7D7360; /* sets the font colour */
		font-style: italic; /* sets the font style */
		font-weight: 500; /* sets the font weight to slightly less than bold - Where this isn't supported it seems mainly to default to normal - to make the text bold, if that is your wish, you can simply remove this property */
	}
	
	#content p {

		margin: 10px 0 5px 30px; /* sets the margins on the p element with the content div */
		font-size: 95%; /* scales the font size - no family declared, we are using the default from the body rule */
		padding: 10px 10px 0 0; /* sets the padding on the p element when it is within the content div */
		width: 390px;
	}
	
	#content ul {
		list-style:disc;
		margin: 0 0 5px 55px; /* sets the margins on the p element with the content div */
		font-size: 95%; /* scales the font size - no family declared, we are using the default from the body rule */
		padding: 5px 0 0 0;
		background-color: #FAF4E8; /* sets the background colour */
		
	}
	
	#content li {
		display:none;
		background-color: #FAF4E8; /* sets the background colour */
		color: #92846A;
	}
	
	#content #gallery { /* Begin laying out and styling the content div */
		float: right;
		width: 390px;
		margin-left: 20px;
		margin-bottom: 10px;
		margin-right 10px ;
	}
	
	#content #gallery .galright { /* Floats the images in the main content area to the right */
		margin-bottom: 3px;
		margin-right: 3px;
		border: none; /* sets a border on the image */
	}
	
	#content #gallery  img {
	    margin: 0;
	}
	
	#content .clearit {
	 	clear:right;
	 }

	#footer { /* Begin laying out and styling the footer div */
		background-color: #fff; /* sets a background colour for the footer */
		width: 670px; /* Sets the footers width */
		border-top: 1px solid #92846A; /* sets the top border to define the beginning of the footer */
		font-size: 90%; /* sets the footer text size */
		text-align: right; /* aligns the text to the right */
		clear: right; /* Keeps the contact div above the footer */
		margin-top: 10px; /* Adds a margin to the top of the footer */
		margin-left: 75px;
	}
	/* The contact div is outside the flow of the document and won't respect the footer;
	it would, if it's content was great enough, poke through the bottom of the layout.
	The clear right ensures the footer is always moved beyond the contact div and our design
	remains intact. The content div is within the flow of the document and will therefore
	push the footer div down as it's content dictates. */
	
	#footer p {
		background-color: #52828C; /* sets the background colour for the p element when it is in the footer div */
		padding: 2px 2px 4px 4px; /* sets the padding values */
		margin: 0; /* zeroes off the margins */
		background-color: #FAF4E8;
		color:#92846A;	
		text-align: center;
	}
	
	#footer ul {
		list-style:none;
		margin: 0;
		padding: 4px 0 0 0;
		background-color: #FAF4E8; /* sets the background colour */
		text-align: center;
		
	}
	
	#footer li {
	display:inline;
	background-color: #FAF4E8; /* sets the background colour */
	color: #92846A;
	}
	#footer li.designer { /* Styles the bottom P in the footer that gives the validation and designer info */
	
		background-image:none;
		background-color: #FAF4E8; /* sets the background colour */
		padding: 4px 4px 4px 10px; /* sets the padding values */
		margin: 0; /* zeroes off the margins */
		color: #92846A; /* sets the text colour to white */
		border-top: 1px solid #000; /* gives a top border to separate it from the other content in the footer, this should be the last item in the footer */
	}
	
	#footer a { /* Styles the links within the footer */
		color: #92846A; /* sets the text to white */
		text-decoration: underline; /* keeps the underline */
	}
	
	#footer a:hover, #footer a:focus {
		text-decoration: none; /* removes the underline */
	}
	
	#navcontainer a img {
	    border: none; /* removes the default link border from around the navigation images */
	}
	
	/* sets the inline links in the #content div if required */
	#content a:link, #content a:visited {
		color: #996666; /* sets the link and visited text color */
		background-color: transparent; /* no background color required */
	}
	
	#content a:hover, #content a:focus {
		background-color: #999999; /* sets the background color for hover and focus */
		color: #fff; /* sets the text color for hover and focus */
		text-decoration: none; /* removes the underline */
	}
	
	/********* Begin styling the form ****************/
	
	#content form {
		margin: 30px 30px 0 30px; /* Sets the margins on the form - bottom is zero, feel free to change as required */
	}
	
	#content fieldset fieldset {
		width: 195px; /* Set the width of the fieldset that contains the form inputs */
		padding: 0; /* zero the padding on the nested fieldset */
		border: none; /* remove the borders */
	}
	
	#content input {
		background-color: #FAE1CF; /* Set the background colour of the form inputs */
		color: #414F4B; /* Set the text colour */
		border: 1px solid #4C5854; /* add a border around them */
		margin: 0; /* Zero off any margins */
		width: 150px; /* Specifically set the width */
		display: block; /* force the inputs to stack */
	}
	
	#content textarea {
		background-color: #FAE1CF; /* set the background colour */
		color: #556660; /* set the text colour */
		border: 1px solid #4C5854; /* set a border around the element */
		margin: 0 20px 0 0; /* set a margin on the right only */
		height: 200px; /* specifically set a height for the textarea, tends to vary somewhat cross browser */
		scrollbar-3dlight-color: #ffffff;
		scrollbar-arrow-color: #A47040;
		scrollbar-base-color: #F5C7A5;
		scrollbar-darkshadow-color: #634427;
		scrollbar-face-color: #F0AA76;
		scrollbar-highlight-color: #FDF2EA;
		scrollbar-shadow-color: #634427;
		scrollbar-track-color: #F5C7A5;
		width: 200px;
	}
	
	.labelfloat {
		float: right; /* float the textarea's label and the textarea within it */
		padding-top: 20px; /* set a top padding to align it */
	}
	
	#content label {
		color: #634832; /* set the label text colour */
		font-size: 75%; /* set the label font size */
		padding-top: 5px; /* set alittle padding on the top */
		display: block; /* display it as a block level element */
	}
	
	#content fieldset {
		margin: 0; /* zero off any existing margine */
		border: none; /* remove the default borders */
		padding: 5px 5px 20px 20px; /* give a little "air" inside the parent fieldset */
		width: 450px; /* set a width against it */
	}
	
	#content .button {
	  background-color: #A37752; /* changes the default background colour from the input styling */
	  color: #fff; /* changes the default colour from the input styling */
	  width: 80px; /* changes the default width colour from the input styling */
	  margin-top: 20px; /* adds a little space between the bottom input and the buttons */
	  display: inline; /* allows the buttons to sit side by side by, over ruling the display: block; on the input selctor */
	}
