/* 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: #fff; /* Add the repeating texture file */
}

#page-wrap {
	background: url(images/sketch.jpg) center top no-repeat; /* An extra DIV allows us to attach the larger background image and position centrally on the page */
}

#featured	{
	display: block;
	text-align: left;
	margin-left: -20 px;
	padding-left: -40 px;
	
	}

#latest h2 {
		width: 276px; height: 54px; 
		margin-left: 0px;
		background: url(images/latest.png); text-indent: -9999px;
	}
		
/* Portfolio Image Slider */

	#folio_scroller_container						{margin-top:-70px; margin-left:-600px; margin-bottom:80px; height:auto;}
	#folio_scroller_container .roundabout-holder	{list-style:none; height:400px; margin: 1px auto 20px auto;}
	

	
#spacer	{
	display:block;
	height: 300 px;
	padding-top: 200px;
	}
/* Lay out the page structure with a container */
#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: 60px 0 0 40px; /* Add some top and left padding */
}

#header {
	margin: 0 0 40px 0;	/* Bottom margin on the header */
}

	#header h1 a {
		display: block; /* Anchors are inline by default, change it to block... */
		width: 872px; height: 114px; /*...Which then allows us to specify width and height (according to the image) */
		color: #6b5c4e; margin: 0 0 20px 0; /* the color can't actually be seen on the text, but it avoids a blue dotted border in Firefox */
		background: url(images/header.png); text-indent: -9999px; /* Add the background image as part of the CSS Image Replacement and shift the text out of the way */
	}
	
	#header h2 {
		width: 872px; height: 108px;
		margin-left: -29px;
		margin-top: -5px;
		background: url(images/introtext.jpg); text-indent: -9999px;
	}
	
	#header h3 {
		margin-top: 150px;
		text-align: center;
		font-family: "Comic Sans MS";
		font-size: x-large;
		}

#portfolio {
	margin: 0 0 40px 0;
}
	
	#portfolio h2 {
		width: 284px; height: 58px; margin: -40px 0 30px -61px;
		background: url(images/me.png); 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 23px 23px 0;
			background: url(images/img-bg.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 40px 0;
}

	#footer h2 {
		width: 240px; height: 34px; 
		margin-left: -60px;
		background: url(images/contact.png); text-indent: -9999px;
	}
	
	#footer ul {
		list-style: none; margin: 0 0 60px 0;
	}
		#footer ul li {
			display: inline; /* IE6 fix to prevent the step down bug */
		}
			#footer ul li a {
				display: block; /* Make the anchors a block element, allowing the width and height to be specified and increasing the clickable area */
				float: left; /* Float them side by side */
				height: 40px; /* 40px is the height of the icon */
				margin: 0 89px 0 0; /* Space out the links with some right margin */
				padding: 10px 0 0 60px; /* Align the text to the icon with top padding and move it away from the icon with left padding */
				color: #FFFFFF; text-decoration: none; font-size: 30px; /* Style up the link text, remove the default underline */
				/* background-image: url(../images/contact-icons.jpg);  Add the icon sprite */
				background-repeat: no-repeat; 
			}
			/* Reposition the sprite background image for each of the links according to their class name */
			#footer ul li a.email { height: 80px; 
								width : 150px; 
								background-image: url(images/email.png); 
								background-position: 20px 50px; 
								padding-right: -50px;
								padding-top: 50px;
								text-indent: -9999px;
							  }
			#footer ul li a.twitter { background-position: 50px 50px; 
								  height:63px;
								  width: 150px;
								  background-image: url(images/twitter.png); 
								  margin-left: -150px;
								  margin-top: 20px;
								  padding-top: 80px;
								  padding-right: -80px;
								  text-indent: -9999px;
								}
			#footer ul li a.facebook { background-position: 50px 50px; 
								   height: 60px;
								   width: 150px;
								   background-image: url(images/facebook.jpg);
								   padding-top: 60px;
								   margin-top: 10px;
								   text-indent: -9999px;
								   margin-left: -110px;
								   }
			#footer ul li a.digg { background-position: 50px 50px; 
							   height: 97px;
							   width: 150px;
							   background-image: url(images/99.jpg);
							   margin-left: 100px;
							   margin-top: -130px;
							   padding-top: 30px;
							   text-indent: -9999px;
							   }
			
			#footer ul li a:hover {
				color: #993300; /* 746150 Change the color of the link text on hover */
			}
	
	#footer p.copyright {
		clear: both; /* The links above were floated, so clear the float on the copyright text */
		float: right; margin: -100px 40px -100px 0; /* Add a new float to the right and shift into place with some right margin */
		font-size: 11px; color: #000000; /* #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 */
	
	
