/*
__________              .__      ________                                  
\______   \_____   __ __|  |    /  _____/  ____  ___________  ____   ____  
 |     ___/\__  \ |  |  \  |   /   \  ____/ __ \/  _ \_  __ \/ ___\_/ __ \ 
 |    |     / __ \|  |  /  |__ \    \_\  \  ___(  <_> )  | \/ /_/  >  ___/ 
 |____|    (____  /____/|____/  \______  /\___  >____/|__|  \___  / \___  >
                \/                     \/     \/           /_____/      \/

www.paulgeorge.me

I assume since you are looking at this that you are either work in the industry or a potential employer, so, hi...

I have used some CSS3 selectors that makes this stylesheet invalid, I could not resist that beautiful text shadow property that is being used on iPhone apps and the likes. Of course in a professional environment I would make sure my site validates and also take MS IE into consideration to.

*/

html {
	
}

body {
	font: 1em Palatino, Georgia, Times, serif;
	color: #666;
	text-shadow: white 1px 1px 1px;
	padding: 0;
	margin: 0;
	font-weight: bold;
}

img { /* Firefox adds borders to images with links, annoying */
	border: none;
}

.wrapper {
	margin: 0 auto;
	width: 960px;
	overflow: hidden;
}

/* ================================= */
/* ! Header and Navigation Section   */
/* ================================= */
#header {
	background: url(../imgs/navBar_bg.jpg) repeat-x;
	width: 100%;
	height: 100px;
	overflow: hidden;
	border-bottom: 1px solid #666;
}

	#logo {
		float: left;
		width: 115px;
		height: 78px;
		margin-top: 8px;
	}
	
		#navBar {
			float: right;
			font-size: 1.3em;
		}
		
			#navBar ul {
				padding: 0;
				margin: 0;
			}
			
				#navBar li {
					display: inline;
					line-height: 100px;
					padding: 0 10px 0 10px;
				}
				
					#navBar li a {
						color: #43423e;
						text-decoration: none;
						text-shadow: white 2px 2px 1px;
					}
					
						#navBar li a:hover {
							color: #9b164f;
							text-shadow: #bbb 2px 2px 1px;
						}
/* ================================= */
/* ! Header and Navigation Section   */
/* ================================= */

/* ================= */
/* ! Stage Section   */
/* ================= */
#stage {
	background: url(../imgs/stage_bg.jpg) repeat-x;
	width: 100%;
	height: 435px;
	overflow: hidden;
	border-top: 1px solid #a7a49b;
	border-bottom: 1px solid #a7a49b;
}

	#stageText {
		float: left;
		margin-top: 30px;
		width: 350px;
		font-size: 1.2em;
		color: #fff1e0;
		text-shadow: black 2px 2px 1px;
		text-align: justify;
	}
	
		#stageText h1 {
			text-align: left;
			font-size: 1.8em;
		}
	
			#slideShow {
				background: url(../imgs/slideshow/slideshow_bg.png) no-repeat;
				float: right;
				margin-top: 50px;
				position: relative;
				overflow: hidden;
				width: 580px;
				height: 400px;
			}
			
				.slides {
					position: absolute;
					overflow: hidden;
					padding: 5px 0 0 30px;
				}
/* ================= */
/* ! Stage Section   */
/* ================= */

/* ================ */
/* ! Page Content   */
/* ================ */
#pageContent {
	background: url(../imgs/content_bg.jpg);
	position: relative;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	padding-bottom: 20px;
}

	.showcaseHolder { /* Might be able to consolidate this into one class */
	padding: 20px 0 20px 0;
	overflow: hidden;
	border-bottom: 1px solid #666;
	}

		.text {
			float: right;
			width: 290px;
			text-align: justify;
		}
		
			.text h2 {
				text-align: center;
			}
		
				.images {
					float: left;
					width: 665px;
				}
				
					.img_bg {
						background: url(../imgs/image_holder.gif) no-repeat;
						-moz-box-shadow: 3px 3px 5px #bbb;
						-webkit-box-shadow: 3px 3px 5px #bbb;
						float: left;
						width: 202px;
						height: 152px;
						margin: 5px;
					}
					
						.img_bg:hover {
							background: url(../imgs/image_holder_rollover.gif) no-repeat;
							-moz-box-shadow: 3px 5px 10px #666;
							-webkit-box-shadow: 3px 5px 10px #666;
						}
					
							.img_holder {
								width: 190px;
								height: 138px;
								padding-left: 8px;
								padding-top: 8px;
							}
							
								.img_holder img {
									border: 1px solid #bbb;
								}
								
									.img_holder img:hover {
										border: 1px solid #fa9d3a;
									}

/* Back to top tab */									
#top_tab {
	background: url(../imgs/backtotop.gif) no-repeat;
	text-align: center;
	width: 131px;
	height: 39px;
	position: absolute;
	z-index: 1;
	bottom: -20px;
	left: 940px;
	padding-top: 20px;
}

	#top_tab a {
		text-decoration: none;
		line-height: 0;
		font-size: 1.2em;
		color: #fff1e0;
		text-shadow: black 2px 2px 2px;
	}
/* Back to top tab */

/* ================ */
/* ! Page Content   */
/* ================ */

/* ================== */
/* ! Footer Section   */
/* ================== */
#footer {
	background: url(../imgs/page_bg.jpg);
	overflow: hidden;
	border-top: 1px solid #a7a49b;
	font-size: 1em;
	color: #fff1e0;
	text-shadow: black 2px 2px 1px;
	text-align: justify;
}

#about {
	float: left;
	width: 630px;
	padding-right: 15px;
}

#socialNetworks {
	float: right;
	text-align: center;
	width: 290px;
}

.smallPrint {
	font-size: 0.6em;
	text-align: justify;
	clear: both;
}

	.smallPrint a {
		text-decoration: none;
		color: #fff1e0;
	}
	
		.smallPrint a:hover {
			color: #fa9d3a;
		}
/* ================== */
/* ! Footer Section   */
/* ================== */
