body {
	margin: 0;
	border: 0;
	padding: 0;
	background-color: #fff;
	color: #444;
	vertical-align: baseline;
	line-height: 1.3em;
	font-size: 11pt;
	font-family: Arial, Helvetica, sans-serif;
}

a {
	color: #49bf9d;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

button {
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	background-color: #666666;
	border-radius: 4px;
	border: 0;
	color: #ffffff !important;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	height: 2.85em;
	line-height: 2.95em;
	padding: 0 1.5em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

button:hover {
	background-color: #737373;
}

select {
    background: rgba(200, 200, 200, 1);
    border-radius: 4px;
    border: solid 1px rgba(144, 144, 144, 0.25);
    color: inherit;
    outline: 0;
    padding: 0 0 0 1em;
	height: 2.75em;
	line-height: 1.65em;
}

select:hover, select:active {
	background: rgba(240, 240, 240, 1);
}

h1, h2 {
	color: #666;
	font-weight: bold;
	font-size: inherit;
	line-height: 1em;
	margin: 0 0 1em 0;
}

h2 {
	font-size: 1.75em;
	line-height: 1.5em;
}

h1 a, h2 a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 2em 0;
}

hr {
	border: 0;
	border-bottom: solid 1px rgba(144, 144, 144, 0.25);
	margin: 2em 0;
}

header {
	display: block;
}

#header {
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10000;
	width: 100%;
	height: 3.25em;
	line-height: 3.25em;
	background: #444;
	color: #fff;
	cursor: default;
}

#header h1 {
	top: 0;
	left: 1.25em;
	position: absolute;
	margin: 0;
	width: 600px;
	line-height: inherit;
	color: inherit;
	font-size: 1.25em;
}

#header .about {
	top: 0;
	right: 0;
	position: absolute;
	margin: 0;
	padding: 0;
	padding-right: 1.25em;
	width: auto;
	background-color: inherit;
	white-space: nowrap;
}

#header .about li {
	padding-left: 1.25em;
	display: inline-block;
	list-style: none;
}

#header .about a {
	color: #ccc;
	text-decoration: none;
}

#header .about a:hover {
	color: #fff;
}

#banner {
	top: 3.25em;
	left: 0;
	position: fixed;
	z-index: 10001;
	width: 100%;
	height: 4em;
	background-color: inherit;
	background-image: url("CMI-logo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left;
	text-align: right;
	white-space: nowrap;
}

#banner .years {
	margin: 0.8em 1em 0.8em 0;
	width: 7em;
}

#banner .Supervisors {
	margin: 0.8em 0 0.8em 0;
	width: 16em;
}

#banner .DOI_Registrant {
	margin: 0.8em 1em 0.8em 0;
	width: 36em;
}

#main.container {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

#main.container img {
	width: 20px;
	height: auto;
}

#main.container p.year {
	margin: 0;
	padding: 7.25em 0 0 0;
}

#main.container p.nr-1000 {
	padding-left: 3em;
	text-indent: -3em;
}

#main.container p.nr-100 {
	padding-left: 3em;
	text-indent: -2.5em;
}

#main.container p.nr-10 {
	padding-left: 3em;
	text-indent: -2em;
}

#main.container p.nr-1 {
	padding-left: 3em;
	text-indent: -1.5em;
}

#main.container p.entry {
	padding-left: 1.5em;
	text-indent: 0em;
}

footer {
	display: block;
}

#footer {
	padding: 4em 0;
	background: #f2f2f2;
}

#footer .copyright {
	margin: 2em 0 0 0;
	padding: 0;
	text-align: center;
	color: #bbb;
	font-size: 0.9em;
}

#footer .copyright li {
	margin-left: 1.5em;
	padding-left: 1.5em;
	border-left: solid 1px rgba(144, 144, 144, 0.25);
	display: inline-block;
	list-style: none;
}

#open_modal.modalbg {
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
}

#open_modal.modalbg .dialog {
  top: -1000px;
  max-width: 400px;
  position: relative;
  margin: auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: linear-gradient(#ffffff, #ffff00);
  box-shadow: 0 0 10px #000000;
}

#open_modal.modalbg:target {
  pointer-events: auto;
  background: rgba(4, 10, 30, 0.4);
  transition: all 0.5s ease-out;
}

#open_modal.modalbg:target .dialog {
  top: 25px;
  transition: all 0.8s ease-out;
}

#open_modal .close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 0 10px #000000;
  transition: all 0.5s ease-out;
}

#open_modal .close:hover {
  background: #00d9ff;
  transition: all 0.5s ease-out;
}
