@charset "utf-8";
/* Margin resets and box sizing  */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
p {
	margin-bottom: 1em;
}
li, dd {
	margin-left: 2em;
}
/* background */
html {
	overflow: scroll;
	overflow-x: hidden;
}
body {
	background-color: #949494;
	background-repeat: repeat-x;
	background-image: url(../images/background_bar.png);
}
/* Colors and fonts */
#txtPageTitle {
	font-size: xx-large;
	font-family: "Limelight", Palatino Linotype, Book Antiqua3, Palatino, serif;
	color: #000;
	font-weight: bold;
	font-weight: 900;
	text-align: center;
	border-bottom: 1px dotted #000;
}
.txtSpecialNotes {
	font-style: italic;
	font-family: "Abel", "Tahoma", "Geneva", sans-serif;
	font-weight: bold;
	font-weight: 700;
	color: #000;
	font-size: medium;
}
.txtContent {
	font-family: "Abel", "Tahoma", "Geneva", sans-serif;
	font-size: medium;
}
.txtFooter {
	font-family: "Abel", "Tahoma", "Geneva", sans-serif;
	font-size: small;
}
/* link styles */
a:link {
	color: #00c
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #008;
}
a:hover {
	text-decoration: underline;
	color: #007;
}
a:active {
	text-decoration: none;
	color: #007;
}
#topLink {
	text-align: right;
}
/* layout styles */
#wrapper {
	background: #fff;
	margin: 5px 2% 0 2%;
	border: 0;
}
#sectMain, footer {
	width: 100%;
	padding: 1em;
	display: block;
}
footer {
	border-top: solid 4px #000;
	display: block;
	padding: 0;
}
footer nav {
	text-align: center;
	font-size: small;
}
footer nav a {
	display: inline-block;
	margin: 0 .5em;
}
footer address {
	display: inline-block;
	width: 79%;
	padding: 0;
}
footer aside {
	display: inline-block;
	width: 20%;
	padding: 0;
}

.bioImage {
	text-align: center;
}

.bioImage img {
	max-width: 100%;
	height: auto;
}


/* Project page styles */

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.websiteButton img {
	max-width: 100%;
	height: auto;
}

 @media screen and (max-width: 999px) {
 #sectSidebar {
	 display: none;
 }
 
 }
 @media screen and (min-width: 1000px) {
/* layout styles for devices at least 1000px */
#wrapper {
	width: 1000px;
	min-height: 100vh;
	margin: 5px auto 0 auto;
}
#splitSection {
	display: table-row;
}
#sectSidebar {
	display: table-cell;
	padding-right: 5px;
	width: 250px;
}
#sectContent {
	display: table-cell;
	width: 750px;
	padding-left: 5px;
	vertical-align: top;
}
#sectFooter {
	height: 30px;
	vertical-align: bottom;
}
#topLink {
	text-align: right;
}

/* Team Page styles */
.websiteButton {
	float: left;
}

.teamBlurb {
	margin-left: 315px;
}
 }