/* CSS Reset */

body, div, h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, img, form, fieldset, blockquote {
    margin: 0px; padding: 0px; border: 0px;
}

body {
	font-family: Helvetica, Arial, sans-serif; /* Set the global font */
	background: #e8e5de url(../assets/body-bg-repeat.png); /* Add the repeating texture file */
	list-style: none;
}

#page-wrap {
	background: url(../assets/body-bg.jpg) center top no-repeat; /* An extra DIV allows us to attach the larger background image and position centrally on the page */
}

#container {
	width: 900px; /* Width of the container minus the left padding below */
	margin: 0 auto; /* Aligns the container to the centre of the page */
	padding: 0px 0 0 0px; /* Add some top and left padding */
}



	#header h1 a {
	display: block; /* Anchors are inline by default, change it to block... */
	width: 872px;
	height: 213px; /*...Which then allows us to specify width and height (according to the image) */
	color: #6b5c4e;
	margin: 0 0 0px 0;
	text-indent: -9999px; /* Add the background image as part of the CSS Image Replacement and shift the text out of the way */
	background-image: url(../assets/body-bg-repeat.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	}
#header h2 {
		width: 872px; height: 108px;
		background: url(../assets/email_link.png); text-indent: -9999px;
	}
	

#portfolio {
	margin: 0 0 40px 0;
}
	
	#portfolio h2 {
		width: 192px; height: 0px; margin: 0 0 0px 0;
		background: url(); text-indent: -9999px;
	}
	
	#portfolio ul {
		list-style: none; /* Remove the bullet points from the list */
	}
		#portfolio ul li {
			float: left; /* Float the lists to the left, laying them out side by side */
			padding: 10px; margin: 0 0px 0px 0;
			background: url(../assets/body-bg-repeat.png); /* Add the semi-transparent background, used along with padding to give the impression of a see-through border */
			/* Let's get fancy with some CSS3, only visible in Firefox, Safari & Chrome. Other browsers simply revert to square corners */
			border-radius: 10px; 
			-moz-border-radius: 10px;
			-webkit-border-radius: 10px;
		}

#footer {
	margin: 0 0 0px 0;
}

	#footer h2 {
		width: 200px; height: 0px; margin: 0 0 0px 0;
		background: url(../assets/body-bg-repeat.png); text-indent: -9999px;
	}
	
		#footer p.copyright {
		clear: both; /* The links above were floated, so clear the float on the copyright text */
		float: right; margin: 0 45px 0 0; /* Add a new float to the right and shift into place with some right margin */
		font-size: 11px; color: #827161; /* Style up the text */
	}

/* A handy 'Clearfix' technique to clear floats in order to avoid affecting page elements further down the document */		
.clear:after {
	content: "";
	display: block; visibility: hidden; clear: both;
}
	.clear { zoom: 1; } /* Clearfix IE fix */






		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
