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

/* 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;
	background-color:#000
}

#page-wrap {
	background-image: url(images/site_images/rfc_background.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #000;
	height: auto;
}

/* Lay out the page structure with a container */
#container {
	width: 1035px; /* Width of the container minus the left padding below */
	margin: 0 auto; /* Aligns the container to the centre of the page */
	padding: 22px 0 0 0; /* 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: 1060px;
	height: 230px; /*...Which then allows us to specify width and height (according to the image) */
	color: #6b5c4e;
	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(images/site_images/rfc_banner.jpg);
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 50px;
	background-repeat: no-repeat;
	}
	

#portfolio {
	margin: 0px 0px 40px 90px;
}
	
	#portfolio h2 {
		width: 192px; height: 57px; margin: 0 0 10px 0;
		background: url(../images/site_images/rfc_my_work.jpg); 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-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 90px;
}

	#footer h2 {
	width: 750px;
	height: 0px;
	text-indent: 0px;
	color: #e7941c;
	font-size: 12px;
	text-decoration: none;
	float: none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	background-image: none;
	padding-top: 0px;
	}
	
	#footer ul {
		list-style: none; margin: 0 0 0 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: 61px; /* Align the text to the icon with top padding and move it away from the icon with left padding */
	color: #827161;
	text-decoration: none;
	font-size: 30px; /* Style up the link text, remove the default underline */
	background-image: url(images/site_images/email_icon.jpg); /* Add the icon sprite */
	background-repeat: no-repeat;
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
	width: 61px;
	background-color: #000;
			}
			/* Reposition the sprite background image for each of the links according to their class name */
			#footer ul li a.email { background-position: 0 0; }
			
			#footer ul li a:hover {
				color: #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: left; /* Add a new float to the right and shift into place with some right margin */
	font-size: 12px;
	color: #996600; /* Style up the text */
	padding-bottom: 10px;
	margin-top: 10;
	margin-right: 40px;
	margin-bottom: 0;
	margin-left: 0;
	}

/* 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 */
}
