body {
	background-color: #fff;
	color: #000;
	margin: 0;
	font-family: helvetica, ariel, sans-serif;
	font-size: 18pt;

	background-image: url(/images/background-1.jpeg);
	background-repeat: no-repeat;
	background-position: center 350px;
	background-attachment: fixed;
}

header {
	background-color: #2e6ab6;
	color: #fff;
	min-height: 5ex;
	display: block;
	margin-bottom: 1ex;
	font-size: 16pt;
	
	/*
	background-image: url(images/logo-1250.png);
	background-repeat: no-repeat;
	background-size: 625px 200px;
	background-position: center;
	*/
}
header nav {
	display: block;
}
/*

header nav.right {
	position: absolute;
	right: 0px;
}
*/

header ul {
	margin: 0;
	text-align: left;
	padding-top: 1em;
	padding-left: 1em;
	padding-right: 1em;
	display: flex;
	justify-content: space-around;
}

header li {
	list-style: none;
	display: inline-block;
/* 	width: 8em; */
	padding-left: .5em;
	padding-right: .5em;
}

header a {
	color: #fff;
	text-decoration: none;
}

header a:hover {
	text-decoration: underline;
}

.float-left { float: left !important; }
.float-right { float: right !important; }


img.float-right { margin-left: 1em; margin-bottom: 1ex; }
img.float-left { margin-right: 1em; margin-bottom: 1ex; }

.center {
	text-align: center;
}
.flex {
	display: flex;
}

ul.ppt li::marker {
	color: red;
}
ul.ppt {
	margin-top: auto;
	margin-bottom: auto;
}

h1 {
	text-align: center;
}


div#logo {
	background-image: url(/images/logo-1250.png);
	background-size: 625px 250px;
	background-repeat: no-repeat;
	background-position: center;
	height: 250px;
	padding-bottom: 2ex;
}

div#byline {
	text-align: center;
	color: #7F7F7F;
}

h2 {
	font-weight: bold;
	font-size: 150%;
}


h3 {
	font-weight: bold;
	font-size: 150%;
}


h4 {
	margin-bottom: 0;	
}

footer {
	text-align: center;
	font-style: italic;
}

article {
	margin-right: auto;
	margin-left: auto;
	max-width: 8in;
	padding-left: 1em;
	padding-right: 1em;
	text-align: justify;

}

img.founder {
	float: right;
	box-shadow:1px 1px 4px black;
	margin-left: 1em;
	margin-bottom: 1ex;
	/* border: 1px solid #000; */
	max-width: 165px;
	object-fit: scale-down;
}

.shadow {
	box-shadow:1px 1px 4px black;
	
}

article.frontpage p {
	display: block;
	margin-bottom: 4em;	
}

article.frontpage p.right {
	width: 60%;

	margin-left: 40%;
	text-align: right;
}
article.frontpage p.left {
	width: 60%;

	text-align: left;
}

article.frontpage p.full {
	width: 100%;
}



article.frontpage li {
	margin-bottom: 1ex;
}

img.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

p.title {
	font-style: italic;
	margin-top: 0;
}
article.founders h2 {
	margin-bottom: 0;
}

a {
	color: #2e6ab6;
}


.publications em {
	font-weight: bold;
	font-style: italic;
}

.publications ul {
	list-style: none;
}

.publications li {
	padding-bottom: 2ex;
}

.publications h2 {
	color: #380FFF;
}
.publications h3 {
	color: #0070C0;
}

figure {
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

form#contact {

}
form#contact {
	font-size: 18pt;
}
form#contact input {
	font-size: 18pt;
	display: block;
	width: 100%;
	margin-bottom: 1ex;
}

form#contact textarea {
	font-size: 18pt;
	width: 100%;
	display: block;
	margin-bottom: 1ex;
}


form#contact input.submit {
	display: inline-block;
	width: auto;
	background-color: #2e6ab6;
	color: #fff;
	padding-left: .5em;
	padding-right: .5em;
	padding-top: .25ex;
	padding-bottom: .25ex;
	border:none;
	border-radius: 4px;
}

.red {
	color: rgb(117, 15, 20);
}

img.linked-in {
	position: relative;
	height: 18pt;
	bottom: -3pt;
}


/* animation */

.animate-scale {
	animation:0.5s ease-in-out 0s forwards  animate-scale;

}
.pre-animage-scale {
	opacity: 0;
	transform: scale(.25);	
}

@keyframes animate-scale {
	from {
		opacity: 0;
		transform: scale(.25);
	}
	to {
		opacity: 1;
		transform: scale(1.0);
	}
}

.pre-animate-nudge {
	opacity: 0;
	transform: translateY(1ex);
}

.animate-nudge {
	animation: 2.0s ease-in-out 0s forwards  animate-nudge;
}

@keyframes animate-nudge {
	from {
		opacity: 0;
		transform: translateY(1ex);
	}
	to {
		opacity: 1;
		transform: none;
	}
}



.pre-animate-slide {
	opacity: 0;
	transform: translateX(-50%);
	overflow: hidden;
}


.pre-animate-slide:nth-child(even) {
	opacity: 0;
	transform: translateX(+50%);
	overflow: hidden;
}


.animate-slide {
	animation:0.5s ease-in-out 0s forwards  animate-slide;
	overflow: hidden;
}

@keyframes animate-slide {

	to {
		opacity: 1;
		transform: none;
	}
}


