/***** RESET *****/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/***** COLORS
	
pink = #00b7aa
turquoise = #ea048b
orange = #f8513c
dark grey = #4c4c4c	
	
*****/

/***** GENERAL  *****/
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #333333;
	width: 100%;
	background-color: white;
}

title {
	text-transform: capitalize;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	margin-bottom: .5em;
}

h1 {
	font-size: 2.5em;
	font-weight: bold;
}

h2 {
	font-size: 2em;
	font-weight: bold;
	color: #00b7aa;
}

h3 {
	font-size: 1.6em;
	font-weight: bold;
}

h4 {
	font-size: 1.6em;
	line-height: 1.5em;
	margin-bottom: 1em;
}

h5 {
	font-size: 1.15em;
	line-height: 1.3em;
	font-weight: bold;
	font-style: italic;
	color: #00b7aa; 
}

h6 {
	font-size: 1.15em;
	line-height: 1.3em;
	font-style: italic;
}

p {
	line-height: 1.5em;
	margin-bottom: 1em;
}

small {
	font-size: .9em;
}

a {
	color: #7c7c7c;
	text-decoration: none;
}

a:hover, a.current-page {
	color: #00b7aa;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

sup {
	vertical-align: top;
	font-size: .8em;
	position: relative;
	top: -0.4em;
}


sub {	
	vertical-align: sub;
}

ul {
	list-style: none;
}

td {
	vertical-align: top;
}

#masthead {
	margin: 0 15px 15px;
	display: block;
	height: 209px;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
}

#main-wrapper {
	display: block;
	width: 1020px;
	margin: 0 auto;
}

#logo {
	display: block;
	float: left;
}

#logo .small {
	display: none;
}

.divider {
	background: url(../images/interface/divider.gif) repeat-x transparent;
	margin: 0 15px;
	height: 1px;
	display: block;
	clear: both;
}

.onecol {
	width: 225px;
	float: left;
}

.twocol {
	width: 480px;
	float: right;
}

.threecol {
	width: 735px;
	float: left;
}

.left-middle-wrapper {
	display: block;
	float: left;
	width: 255px;
}

.left, .middle {
	display: block;
	float: left;
	margin: 15px;
	width: 225px;
}

.middle-right-wrapper {
	display: block;
	float: left;
	width: 765px;
}

.right {
	display: block;
	float: right;
	margin: 15px;
	width: 735px;
}

.block {
	position: relative;
	margin: 15px;
	display: block;
	float: left;
	overflow: hidden;
}

img {
	border: none;
}

img.shadow {
  	-moz-box-shadow: 5px 5px 5px #ccc;
  	-webkit-box-shadow: 5px 5px 5px #ccc;
  	box-shadow: 5px 5px 5px #ccc;
}

.thumb .info-content h2 {
	display: inline;
	padding-right: 30px;
	background: url(../images/interface/green-strip.gif) no-repeat right bottom;
	color: #ffffff;
}

.thumb .info-content h3 {
	margin-bottom: 0;
}

.thumb .info-content h5 {
	font-weight: normal;
	line-height: 1em;
	margin: .25em 0 1em;
}

.clear {
	clear: both;
}

.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

/***** NAVIGATION  *****/

#navicon {
	display: none;
}

#navigation {
	width: 480px;
	display: block;
	float: right;
	font-size: 1.4em;
	margin-top: 50px;
}

#navigation .parentnav {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	width: 100%;
}

#navigation .parentnav .subnav {
	padding: 2px 0;
	display: block;
	float: left;
	width: 20%;
}

#navigation .subnav ul {
	padding-top: 4px;
}

#navigation .subnav.projects {
	width: 60%;
}

#navigation .subnav .nav-block {
	width: 100%;
	display: block;
	float: left;
}

#navigation .subnav.projects .nav-block {
	width: 50%;
}

#navigation .subnav li {
	padding: 4px 0;
	display: block;
	float: left;
	width: 100%;
}

#navigation .subnav li.current a {
	color: #00b7aa;
}

/***** FORM  *****/

form p {
	display: block;
	width: 100%;
	margin: 5px 0;
	clear: both;
}

form label {
	width: 125px;
	height: 25px;
	display: block;
	float: left;
	line-height: 25px;
	margin-bottom: 15px;
}

form label.error {
	margin: -10px 0 0 125px;
	color: #00b7aa;
	line-height: 1em;
	width: 350px;
}

form label.error.success {
	display: none!important;
}

form input {
	font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
	font-size: 1em;
	line-height: 1.5em;
	height: 25px;
	margin-bottom: 15px;
	display: block;
	float: left;
}

form p.attachment input {
	margin-bottom: 2px;
	width: 350px;
}

form .note {
	display: block;
	width: 350px;
	margin-bottom: 15px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #cccccc;
	width: 350px;
	display: block;
	float: left;
}

form input[type="file"] {
	font-family: Arial,'Helvetica Neue',Helvetica,sans-serif;
}

form input.captcha {
	width: 195px;
	margin-right: 15px;
}

form label.checkbox {
	width: 80px;
}

form input[type="checkbox"] {
	margin: 0 10px 0 0;
}

form select {
	display: block;
	float: left;
	width: 270px;
	height: 25px;
	margin-bottom: 15px;
	background: none;
	border: 1px solid #cccccc;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1em;
	color: #333333;
	line-height: 25px;
}

form textarea {
	font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
	font-size: 1em;
	width: 348px;
	height: 180px;
	display: block;
	float: left;
	border: 1px solid #cccccc;
	margin-bottom: 15px;
}

form input[type="submit"] {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	font-weight: bold;
	font-style: italic;
	font-size: 1.4em;
	color: #999999;
	background: none;
	border: none;
	float: right;
	margin-top: 15px;
}

form input[type="submit"]:hover {
	color: #00b7aa;
	cursor: pointer;
}

form span.required {
	color: #00b7aa;
}


/***** PAGES  *****/

#people {
	padding-bottom: 30px;
}

#people .thumb {
	float: left; 
	width: 162px;
	height: 210px;
	display: block;
	position: relative;
	margin: 0 28px 78px 0;
}

#people .thumb.last-col {
	margin-right: 0;
}

#people .thumb .info-wrapper {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #262626;
	color: #ffffff;
}

#people .thumb .info-content {
	margin: 20px 10px;
}

#people .thumb .info-content p {
	line-height: 1em;
	font-size: .9em;
	margin-bottom: .5em;
}

#people .thumb img {
	position: absolute;
	top: 0;
}

#people .thumb .title {
 	background-color: #FFFFFF;
    	display: block;
    	width: 100%;
    	height: 40px;
	padding-top: 10px;
    	position: absolute;
    	top: 210px;
	font-weight: normal;
}

/** PEOPLEDEV **/
/*#people {
	padding-bottom: 30px;
}

#people .people-thumb {
	float: left; 
	width: 225px;
	height: 300px;
	display: block;
	position: relative;
	margin: 0 28px 78px 0;
}

#people .people-thumb.last-col {
	margin-right: 0;
}

#people .people-thumb .info-wrapper {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #262626;
	color: #ffffff;
}

#people .people-thumb .info-content {
	margin: 20px;
}

#people .people-thumb .info-content p {
	margin-bottom: .5em;
}

#people .people-thumb img {
	position: absolute;
	top: 0;
}

#people .people-thumb .instagram-id {
	position: absolute;
	bottom: 35%;
	left: -10%;
	opacity: 0;
}

#people .people-thumb .instagram-id .triangle {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #262626;
	margin-left: 30%;
}

#people .people-thumb .instagram-id a {
	display: block;
	background-color: #262626;
	color: white;
	padding: 8px;
	border-radius: 4px;
	font-size: 1.3em;
}


#people .people-thumb .title {
 	background-color: #FFFFFF;
    	display: block;
    	width: 100%;
    	height: 40px;
	padding-top: 10px;
    	position: absolute;
    	top: 300px;
	font-weight: normal;
}
*/
/** PEOPLE TOO **/
#people-too {
	padding-bottom: 30px;
}

#people-too .people-too-thumb {
	float: left; 
	width: 225px;
	height: 300px;
	display: block;
	position: relative;
	margin: 0 28px 78px 0;
}

#people-too .people-too-thumb.last-col {
	margin-right: 0;
}

#people-too .people-too-thumb .info-wrapper {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #262626;
	color: #ffffff;
}

#people-too .people-too-thumb .info-content {
	margin: 20px;
}

#people-too .people-too-thumb .info-content p {
	margin-bottom: .5em;
}

#people-too .people-too-thumb img {
	position: absolute;
	top: 0;
}

#people-too .people-too-thumb .instagram-id {
	position: absolute;
	top: 2.5em;
	left: -5%;
	opacity: 0;
}

#people-too .people-too-thumb .instagram-id .triangle {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #262626;
	margin-left: 30%;
}

#people-too .people-too-thumb .instagram-id a {
	display: block;
	background-color: #262626;
	color: white;
	padding: 8px;
	border-radius: 4px;
	font-size: 1.3em;
}


#people-too .people-too-thumb .title {
 	background-color: #FFFFFF;
    	display: block;
    	width: 100%;
    	height: 60px;
	padding-top: 10px;
    	position: absolute;
    	top: 300px;
	font-weight: normal;
}

#people-too .people-too-thumb .title h5 {
	font-weight: normal;
}

/*****************************************/

#pages .middle {
	width: 735px;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
	position: relative;
}

#pages .middle #connect {
	position: absolute;
	top: 0;
	left: 480px;
}

#pages .static-thumb {
	display: block;
	float: left;
	margin: 0 30px 30px 0;
}

#pages .right .static-thumb.last-col {
	margin-right: 0;
}

#pages .right .static-thumb img {
	width: 225px;
	height: auto;
}

#pages h1 {
	color: #00b7aa;
}

#pages .entry {
	width: 100%;
	margin-bottom: 30px;
}

#pages .entry .divider {
	padding: 0 15px;
	height: 1px;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
}


/***** PROJECTS LIST  *****/

#projects-list .block {
	height: 350px;
}

#projects-list .block.onecol {
	width: 225px;
}

#projects-list .block.twocol {
	width: 480px;
}

#projects-list .block .thumb {
	position: relative;
	display: block;
	height: 330px;
	overflow: hidden;
}

#projects-list .block .thumb .info-wrapper {
	display: block;
	width: 100%;
	height: 300px;
	position: absolute;
	top: 0; 
	left: 0;
	background-color: #262626;
	color: #ffffff;
	overflow: hidden;
}

#projects-list .block .thumb .info-content {
	margin: 20px;
}

#projects-list .block .thumb .info-content p {
	color: #cccccc;
	margin-top: 1em;
}

#projects-list .block .thumb .info-content strong {
	color: #ffffff;
}

#projects-list .block .thumb img {
	display: block;	
	position: absolute;
	top: 0;
}

#projects-list .block .thumb.magazine img {
	top: 22px;
}

#projects-list .title {
	background-color: #ffffff;
	width: 100%;
	height: 50px;
	font-size: 1em;
	line-height: 40px;
	display: block;
	position: absolute;
	top: 300px;
}

/***** PROJECT DETAIL *****/

#project-detail {
	border-bottom: 6px solid #000000;
}

.project-meta {
	display: block;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
	padding-bottom: 20px;
}

.more-info {
	display: none;
}

.project-description,
.project-utilities,
.project-share {
	display: block;
	background: url(../images/interface/divider.gif) repeat-x top left;
	padding-top: 20px;
	margin-top: 20px;
}

.project-tags {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	font-size: 2em;
	line-height: 1.5em;
	font-style: italic;
	font-weight: bold;
	color: #cccccc;
	text-transform: capitalize;
}

#project-images {
	width: 100%;
	display: block;
}

#project-images li {
	float: left;
	margin: 0px 0 15px;
}

#project-images li.landscape img {
	width: 735px;
	height: auto;
}

#project-images li.portrait img {
	width: 360px;
	height: auto;
	margin-right: 15px;
}

#project-images li.portrait.even img {
	margin-right: 0;
}

.project-utilities li a {
	line-height: 1.5em;
}

.project-share li {
	list-style: none;
	display: block;
	margin-bottom: 5px;
}

#breadcrumbs {
	border-top: 6px solid #000000;	
	display: block;
	margin: 0 15px 15px;
	padding: 25px 0 1px;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
}

/***** SUBSCRIBE FORM  *****/

.subscribe-wrapper {
	width: 100%;
	height: 273px;
	padding: 27px 0 0;
	background: url(../images/interface/black-strips.gif) repeat-x;
}

.subscribe-wrapper h3 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 300;
	font-size: 2.6em;
}

.subscribe-wrapper form {
	display: block;
	margin: 2em 0;
}

.subscribe-wrapper form label, 
.subscribe-wrapper form input[type="email"] {
	width: 100%;
	display: block;
	margin-bottom: 0;
}

.subscriber-wrapper p {
	margin-top: 0;
}

.subscribe-wrapper #connect {
	position: absolute;
	top: 255px;
	height: 30px;
	display: block;
}

.subscribe-wrapper #connect span {
	display: block;
	line-height: 15px;
	float: left;
	margin-right: 10px;
}

#connect a {
	display: block;
	float: left;
	margin-right: 5px;
	width: 25px;
	height: 25px;
}

#connect a#facebook {
	background: url(../images/interface/facebook-sprite.gif) no-repeat left center;
}

#connect a#facebook:hover {
	background: url(../images/interface/facebook-sprite.gif) no-repeat right center;
}

#connect a#flickr {
	background: url(../images/interface/flickr-sprite.gif) no-repeat left center;
}

#connect a#flickr:hover {
	background: url(../images/interface/flickr-sprite.gif) no-repeat right center;
}

#connect a#instagram {
	background: url(../images/interface/instagram-sprite.gif) no-repeat left center;
}

#connect a#instagram:hover {
	background: url(../images/interface/instagram-sprite.gif) no-repeat right center;
}

#connect a#rss {
	background: url(../images/interface/rss-sprite.gif) no-repeat left center;
}

#connect a#rss:hover {
	background: url(../images/interface/rss-sprite.gif) no-repeat right center;
}

#blog #blog-subscribe.sidebar-block {
	background: none;
}

.sidebar-block .subscribe-wrapper {
	background: url(../images/interface/pink-strips.gif) repeat-x;
}

/***** QUOTES *****/

#quotes.block {
	padding-top: 30px;
}

#quotes h5 {
	margin-bottom: 0;
}

/***** BLOG  *****/

#blog #masthead {
	background: none;
}

#masthead .right {
	margin: 0;
	height: 158px;
	border-bottom: 6px solid #ea048b;
}

#blog h5 {
	color: #ea048b;
}	

#blog .sidebar-block {
	display: block;
	padding-bottom: 15px;
	margin-bottom: 30px;
	width: 100%;
	position: relative;
	background: url(../images/interface/divider.gif) repeat-x left bottom;
}

#blog .sidebar-block li {
	margin-bottom: .5em;
}

#blog-search.sidebar-block {
	background: none;
}

#blog-search form input[type="text"] {
	width: 100%;
}

#blog-search form input[type="submit"] {
	margin-top: 0;
}

#blog .search-result {
	display: block;
	margin-bottom: 30px;
	padding-bottom: 5px;
	background: url(../images/interface/divider.gif) repeat-x bottom left;
}

#blog form input[type="submit"]:hover {
	color: #ea048b; 
}

#blog a:hover {
	color: #ea048b;
}

#blog .entry-date {
	display: block;
	float: left;
	width: 70px;
	height: 70px;
	overflow: hidden;
	background-color: #ea048b;
	color: #ffffff;
	text-align: center;
	margin-right: 30px;
}

#blog .entry-date .date {
	display: block;
	width: 100%;
	margin: 7px 0 2px;
	font-weight: bold;
	font-size: 3.4em;
}

#blog .entry-date .month-year {
	display: block;
	width: 100%;
	text-transform: uppercase;
	font-size: .9em;
}

#blog .entry-content {
	display: block;
	float: left;
	width: 635px;
	margin-bottom: 90px;
}

#blog .entry-title {
	margin-bottom: .25em;
}

#blog .entry-tags {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	margin-bottom: 1em;
}

#blog .entry-images {
	margin-bottom: 1em;
}

#blog .entry-media {
	clear: both;
}

#blog .entry-images img {
	width: 635px;
	height: auto;
}

#blog .entry-content .entry-body {
	display: block;
	float: left;
	/*width: 505px;*/
	width: 100%;
	padding-bottom: 15px;
	margin-right: 30px;
	background: url(../images/interface/pink-strip.gif) no-repeat left bottom;
}

	#blog .entry-content .entry-body img {
		width: 100%;
		height: auto;
	}

#blog .entry-content .entry-share {
	display: block;
	float: left;
	/*width: 100px;*/
	width: 100%;
	clear: right;
}

#blog .entry-content .entry-share li {
	list-style: none;
	margin-bottom: 5px;
	display: block;
}

#blog .pagination {
	display: block;
	width: 635px;
	float:right;
}

#blog .prev {
	float: right;
}

#blog .next {
	float: left;
}

#blog #footer {
	border-top: 6px solid #ea048b;
}

/***** PROCESS  *****/
/*
#process #masthead {
	background: none;
}

#process h2, #process a:hover {
	color: #f8513c;
}

#process #masthead .right {
	border-bottom: 6px solid #f8513c;	
}

#process-list .block {
	width: 480px;
	display: flex;
  	background-color: #262626;
}

#process-list .block .info-wrapper {
  	color: #FFFFFF;
  	width: 100%;
  	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#process-list img {
	margin: 15px;
}

#process-list .block .info-content {
 	margin: 20px;
}

#process-list .info-content h2 {
	display: inline;
	padding-right: 30px;
	background: url(../images/interface/orange-strip.gif) no-repeat right bottom;
	color: #ffffff;
}

#process #footer {
	border-top: 6px solid #f8513c;
}
*/
/***** EATAGRAM  *****/

#eatagram #masthead {
	background: none;
}

#eatagram h2, #eatagram a:hover, #eatagram a.current {
	color: #f8513c;
}

#eatagram #masthead .right {
	border-bottom: 6px solid #f8513c;
}

#eatagram #userfilter a {
	margin-right: 20px;
}

#eatagram-list .block {
	display: flex;
  	background-color: #262626;
}

#eatagram-list .onecol {
	width: 225px;
	height: 225px;
}

#eatagram-list .twocol {
	width: 480px;
	height: 480px;
}

#eatagram-list .block .info-wrapper {
  	color: #FFFFFF;
  	width: 100%;
  	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#eatagram-list .block .info-content {
 	margin: 20px;
 	color: white;
}

#eatagram-list .block .info-content .likes {
	margin-right: 25px;
 	padding-left: 18px;
 	background: url(../images/interface/likes-orange.png) no-repeat left center;
}

#eatagram-list .block .info-content .comment-count {
 	padding-left: 18px;
 	background: url(../images/interface/comment-orange.png) no-repeat left center;
}


#eatagram-list .block .thumb a img {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

#eatagram-list .info-content h2 {
	display: inline;
	padding-right: 30px;
	background: url(../images/interface/orange-strip.gif) no-repeat right bottom;
	color: #ffffff;
}

#eatagram-list .info-content .profilepic {
	margin-right: 5px;
}

#eatagram #footer {
	border-top: 6px solid #f8513c;
	clear: both;
}


/***** FOOTER  *****/

#footer {
	font-family: Georgia, Didot, Palatino Lynotype, Times, serif;
	border-top: 6px solid #000000;
	margin: 15px;
	padding: 15px 0;
	display: block;
	float: none;
}

#footer .contact {
	display: block;
	width: 75%;
	float: left;
}

#footer .credit {
	display: block;
	width: 25%;
	float: left;
	text-align: right;
}



/* FOR SCREENS ABOVE 1549 PIXELS WIDE - 6 COLUMN VIEW */
@media screen and (min-width:1549px) {

	#main-wrapper {
		width: 1530px;
	}

	.left-middle-wrapper {
		/*width: 765px;*/
		width: 495px;
	}

	.middle-right-wrapper {
		width: 1275px;
	}

	.middle {
		/*width: 480px;*/
		margin-left: 0;
	}

	#projects-detail .right {
		width: 990px;
	}

	#pages .middle {
		width: 480px;
		background: none;
	}

	#pages .middle img {
		max-width: 480px;
		height: auto;
	}
	
	.project-meta {
		background: none;
	}

	#project-images li.landscape img {
		width: 990px;
		height: auto;
	}

	#project-images li.portrait img {
		width: 487px;
		height: auto;
		margin-right: 15px;
	}

	#pages .middle #connect {
		position: relative;
		left: 0;
	}

	#blog #main-wrapper {
		width: 1020px;
	}
	
	#blog .right {
		width: 735px;
	}
	
	/*#process .right {
		width: 1260px;
		margin-left: 0;
	}*/
	
	#eatagram #masthead .right,
	#eatagram .right {
		width: 1245px;
	}
	
}
