/* Global */

html {
	height: 100%;
}

body, p, span, div, h1, h2 {
	font-family: 'Open Sans', sans-serif;
	color: black;
}

body {
	text-align: center;
	background: url(../images/furley_bg.png);
	padding: 0;
	margin: 0;
	height: 100%;
}

h2 {
	color: rgba(0, 0, 0, 0.75);
	font-size: 32px;
	margin: 0;
}

a, a:visited {
	text-decoration: none;
	color: blue;
}

.shadow {
	-moz-box-shadow:    0px 0px 20px 0 #ccc;
	-webkit-box-shadow: 0px 0px 20px 0 #ccc;
	box-shadow:         0px 0px 20px 0 #ccc;
}

.woolBorder {
	background: url(../images/light_wool.png);
	border: 1px solid #ccc;
	padding: 10px;
}

/* header */

#header {
	z-index: 1000;
	position: absolute;
	width: 100%;
	height: 80px;
	border-bottom: 1px solid #ccc;
}

#header h1 {
	color: rgba(0, 0, 0, 0.75);
	margin: 0;
	padding: 20px 0;
}

/* footer */

#footer {
	position: absolute;
	padding: 20px 0;
	bottom: 0;
	margin: 0;
	width: 100%;
	height: 20px;
	border-top: 1px solid #ccc;
}

/* content */

div#contentWrapper {
	position: relative;
	z-index: 100;
	min-height: 100%;
}

div#content {
	margin-top: 80px;
	margin-bottom: 60px;
	max-width: 960px;
	display: inline-block;
}

/* Works */

#works {
	padding: 20px 20px 10px 20px;
	text-align: left;
}

#works p {
	margin-left: 10px;
}

#works ul {
	padding-left: 0;
}

#works li {
	border-left: 3px solid transparent;
	padding: 0;
}

#works li:hover {
	border-left: 3px solid orange;
}

#works ul {
	list-style: none;
}

#works p.title {
	margin-bottom: 0;
	color: blue;
}

#works p.desc {
	margin-top: 0;
}

/* images */

#me {
	float: right;
	margin-left: 10px;
	margin-top: 0;
}

#meImg {
	width: 121px;
	height: 400px;
	background: url(../images/iojess.jpg);
	background-position: 100% 100%;
	transition: background-position 0.5s linear;
	-webkit-transition: background-position 0.5s linear;
	-moz-transition: background-position 0.5s linear;
}

#meImg:hover {
	background-position: 0% 100%;
}