/* reset
---------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	}

body {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background-color: #f4f4f4;
}

h2 {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 2em;
}

p {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.8em;
	line-height: 1.5;
	margin: .8em 0 .8em 0;
}

/* layout
---------------------------------------------*/
#tortilla {
	max-width: 48.75em;
	margin: 1.6em auto;
}

#beans {
	clear: both;
	max-width: 48.75em;
}

#header {
	padding: 0 .3125em 1.5em .3125em;
	height: 2em;
	margin-bottom: 2.5em;
}

#logo {
	float: left;
	height: 53px;
	width: 30%;
}

#logo a {
	display: block;
	width: 100px;
	height: 53px;
	background: url(../images/jw_logo.png) no-repeat top left;
}

#logo img {
	display: block;
	height: 0;
}

#logo a:hover {
	background-position: 0 -53px;
}

#nav { 
	float: right;
	padding: 1em 0 0 0;
	text-align: right;
}

#bttm_border {
	display: block;
	border-bottom: 2px solid #3c3c3c;
	padding-top: 1.5em;
	clear: both;
}

#about a {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #cd090a;
}

#about a:hover {
	text-decoration: underline;
}

footer {
	padding: 1.5em .3125em 0 .3125em;
	clear: both;
}

.copy {
	font-size: 1em;
	text-align: center;
}

/* navigation
---------------------------------------------*/
#nav li {
	list-style: none;
	display: inline-block;
	margin-left: 3em;
}

#nav a {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-decoration: none;
	font-size: 1.2em;
	color: #000;
	-webkit-transition:color 0.2s ease-in-out;
	-moz-transition:color 0.2s ease-in-out;
	-ms-transition:color 0.2s ease-in-out;
	-o-transition:color 0.2s ease-in-out;
	transition:color 0.2s ease-in-out;
}

#nav a:hover { 
	color: #cd090a;
}

/* portfolio gallery
---------------------------------------------*/
.work li {
	list-style: none;
	float: left;
	width: 250px;
	height: 200px;
	padding: .3125em;
}

.work img {
	display: block;
	position: absolute;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.work a:hover img {
	opacity: 0;
}

.work div {
	width: 250px;
	height: 200px;
	background-color: #f4f4f4;
	z-index: -1;
	opacity: 0;
}

.work a:hover div {
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.work a {
	color: #cd090a;
	padding: 0;
	text-decoration: none;
}

.work span {
	font-family: 'Roboto Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.3em;
	position: relative;
	top: 2em;
	left: 1em;
}

.work p {
	font-size: 1.1em;
	display: block;
	margin-top: 1.6em;
	padding: 1em;
	color: #000;
}

.hidden { display: none;}