/* *************************************************************************
 *  Author: Adam Bourg
 *  Date: May 15, 2011
 *  Project: Portfolio site
 *  Notes: 
	 - The block: behavior: url(PIE.htc); is the call to the PIE CSS 
		to add CSS support for CSS 3 properties to IE
/* ************************************************************************/

/* ***************** Body Styles ****************** */
html{
	background:#000;
}
body{
	background:url("images/spaceShot.jpg") repeat-y;
	background-position:-40px -40px;
}
.centerRound
{
	text-align:center;
	margin:auto;
}
#contentArea{
	background:#fff;
	padding:10px;
	-moz-box-shadow: 0px 10px 100px #fff;
	-webkit-box-shadow: 0px 10px 100px #fff;
	box-shadow: 0px 10px 100px #fff;
	-moz-border-radius:30px;
	-webkit-border-radius:30px;
	border-radius:30px;
	margin-bottom:100px;
	margin-top:20px;
}
#footer{
	text-align:center;
}
/* ***************** Name Styles ****************** */
#name{
	font-size:4.2em;
}
#subName{
	font-size:1.2em;
}

/* ***************** Navigation ****************** */
#navigation{
	list-style:none;
	display:inline;
}
	#navigation li{
		display:inline;
		padding-left:10px;
		padding-right:10px;
	}
		#navigation li a{
			color:#000;
			font-size:1.2em;
			text-decoration:none;
		}
			#navigation li a:hover{
				color:#399edb;
				text-decoration:none;
			}

/* ***************** Portfolio Items ****************** */
.portfolioItem{
	
}
	.portfolioThumbs{
	/*	-moz-box-shadow: 3px 3px 3px #000;
		-webkit-box-shadow: 3px 3px 3px #000;
		box-shadow: 3px 3px 3px #000;
		behavior:url(scripts/PIE.htc);
	*/	
	}
		.portfolioThumbsList{
			list-style:none;
			margin-left:0px;
			padding-bottom:5px;
		}
	.portfolioDescription{
		line-height:1.2em;
	}
	
/* ***************** General/Misc ****************** */	
hr{
	border:1px gray dotted;
}
.imageFloat{
	float:right;
}
#aboutMe{
	width:300px;
}
