<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  :root {
	--text-color: #333;
	--link-inactive-color: #b00;
	--link-active-color: red;
}
html {
	font-family: 'EB Garamond', serif;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.35;
	color: #333;
	background-color: rgb(238, 238, 238);
}
body {
	margin: 0;
}
h1, h2 {
	font-weight: 300;
}
h1 {
	font-size: 2rem;
	margin-top: 0;
}
a {
	color: var(--link-inactive-color);
	text-decoration: none;
}
a:hover, a:active {
	color: var(--link-active-color);
	text-decoration: underline;
}
.outer-wrapper {
	display: grid;
	grid-gap: 0;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		"header"
		"inner-wrapper"
		"footer";
	min-height: 100vh;
}
.main-header {
	grid-area: header;
	display: grid;
	grid-gap: 0;
	grid-template-rows: auto auto;
	grid-template-areas:
		"cmu-header"
		"lab-header";
}
.cmu-header {
	grid-area: cmu-header;
	position: relative;
	display: flex;
	flex-flow: nowrap row;
	align-items: stretch;
	justify-content: flex-start;
	padding: 0 2%;
	color: #b00;
}
a#cmu-wordmark {
	background: url(/dietrich/psychology/nozarilab/images/cmu-wordmark-red.png) no-repeat left center scroll transparent;
	background-size: contain;
	height: 1.5rem;
	margin: 6px 0 2px;
	text-indent: -9999px;
	width: 25%;
	min-width: 300px;
}
.lab-header {
	grid-area: lab-header;
	padding: .5rem 2%;
	margin: 0;
	font-size: 2.5rem;
	font-weight: 300;
}
.no-lab-header .lab-header {
	display: none;
}
.lab-header a {
	color: var(--text-color);
	text-decoration: none;
}
.lab-header  a:hover, .lab-header  a:focus {
	color: var(--link-inactive-color);
	text-decoration: none;
}
.lab-header.centered {
	text-align: center;
}
.inner-wrapper {
	grid-area: inner-wrapper;
}
.main-footer {
	grid-area: footer;
	background-color: #333;
	color: rgba(255, 255, 255, .5);
	padding: 1rem 2%;
	font-size: .9rem;
}
.main-footer p {
	margin: 0;
}
.main-footer a {
	color: rgba(255, 255, 255, .5);
}
.inner-wrapper {
	display: grid;
	grid-gap: 1rem;
	grid-template-rows: auto auto auto;
	grid-template-areas:
		"nav"
		"content"
		"sidebar";
	margin: 1rem 2%;
}
.main-nav {
	grid-area: nav;
}
.main-nav ul {
	clear: both;
	display: flex;
	flex-flow: nowrap column;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav ul li {
	clear: both;
	text-align: left;
	padding: .5rem .35rem;
	padding-left: 0;
	display: flex;
	align-items: left;
	flex: 1 1 auto;
}
.main-nav ul li a {
	display: block;
	text-align: left;
	width: 100%;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
	text-decoration: none;
}
.main-nav .nav-current a {
	font-weight: 700;
}
.nav-buttons {
	clear: both;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	list-style: none;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	max-width: 800px;
}
.nav-buttons li {
	padding: .5rem .5rem;
	display: flex;
	align-items: left;
}
.content {
	grid-area: content;
}
.no-sidebar .content {
	grid-area: content / content / sidebar / sidebar;
}
.content-only .content {
	grid-area: nav / nav / sidebar / sidebar;
}
.sidebar {
	grid-area: sidebar;
	display: flex;
	justify-content: start;
	flex-direction: column;
}
.sidebar img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}
.sidebar-contact-info {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.sidebar-contact-info p {
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
	text-align: center;
}
a[href^="tel:"] {
	color: var(--text-color);
}
a[href^="tel:"]:hover, a[href^="tel:"]:active {
	text-decoration: none;
}
.sidebar .btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
}
.big-quote {
	text-align: center;
	margin-top: 0;
	margin-bottom: 2rem;
}
.big-quote p {
	font-size: 1.25rem;
}
blockquote footer {
	font-style: italic;
}
.bio-wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}
.bio-image img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	margin: 0;
}
.bio-image {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}
.bio-text p:last-child {
	margin-bottom: 0;
}
.lab-member-name {
	margin: 0;
}
.lab-member-title {
	margin-top: 0;
	margin-bottom: 0;
	font-style: italic;
}
.lab-member-email {
	margin-top: 0;
	margin-bottom: 0;
}
@media (min-width: 700px) {
	.cmu-header {
		padding: 0 9%;
	}
	.lab-header {
		padding: .5rem 9%;
	}
	.main-footer {
		padding: 1rem 9%;
	}
	.inner-wrapper {
		grid-template-rows: auto;
		grid-template-columns: 2fr 6fr 3fr;
		grid-template-areas:
			"nav content sidebar";
		margin: 1rem 9%;
	}
	.bio-wrapper {
		flex-direction: row;
	}
	.bio-image {
		margin-left: 0;
		margin-right: 1rem;
		margin-bottom: 0;
	}
}
a.pdf-link:hover, a.pdf-link:focus {
	text-decoration: none;
}
a.btn {
	background-color: #666;
	color: white;
	display: inline-block;
	padding: 1rem 1.35rem;
	border-top: 2px solid transparent;
	border-bottom: 2px solid #333;
}
a.btn:hover, a.btn:focus {
	background-color: #333;
	text-decoration: none;
}
.big-quote p {
	font-size: 1.5rem;
}
.big-quote {
	margin-bottom: 2rem;
}
.sidebar .btn {
	margin-left: auto;
	margin-right: auto;
}</pre></body></html>