body {
	background-color: #fff;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 0px;
	padding: 0;
	font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
	font-size: 13px;
}
table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 0px;
	padding: 0px;
	border: 0px;
}
a img {
	border: none;
}
div {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
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, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	outline: 0;
	margin: 0;
	padding: 0;
}

input[type=text]{
	border-style:solid; 
	border-width:1px;
	border-color:#999;
	height: 18px;
	font-size: 13px;
	padding-left:3px;
}

select{
	border-style:solid; 
	border-width:1px;
	border-color:#999;
	height: 20px;
	font-size: 13px;
	padding-left:3px;
}

input[type=password]{
	border-style:solid; 
	border-width:1px;
	border-color:#999;
	height: 18px;
	font-size: 13px;
	padding-left:3px;
}

input[type=submit]{
	border-width:1px;
	border-color:#999;
	background-color:#222;
	color:#fff;
	padding-bottom:2px;
	padding-left:10px;
	padding-right:10px;
	height: 22px;
	font-size: 13px;
}

input[type=button]{
	border-width:1px;
	border-color:#999;
	background-color:#222;
	color:#fff;
	padding-bottom:2px;
	padding-left:10px;
	padding-right:10px;
	height: 22px;
	font-size: 13px;
}

input[type=file]{
	border-width:1px;
	border-color:#fff;
	background-color:#fff;
	color:#fff;
	padding-bottom:2px;
	padding-left:10px;
	padding-right:10px;
	height: 22px;
	font-size: 13px;
}

.pager_clickable {
	padding-left:2px;
	padding-right:2px;
	padding-top:3px; 
	padding-bottom:3px;
}

.pager {
	padding-left:6px;
	padding-right:6px;
	padding-top:3px; 
	padding-bottom:3px;
	margin-left:1px;
	margin-right:1px;
}

submit{
	height: 30px;
}

A:link {text-decoration: underline; color : black}
A:visited {text-decoration: underline; color : black}
A:active {text-decoration: underline; color : black}
A:hover {text-decoration: underline; color: grey;}

/* Style for modal pop up window */
.modal { 
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: black;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: all 0.35s ease-in;
}

.modal-dialog {
	position: relative;
	max-width: 75vw;
	max-height: 20vh;
	border-radius: 5px;
	background: white;
	cursor: default;
}

.modal-dialog-details {
	position: relative;
	max-width: 75vw;
	max-height: 20vh;
	border-radius: 5px;
	background: white;
	cursor: default;
}

.modal-dialog > * {
	padding: 1rem;
}

.modal-header,
.modal-footer {
	background: lightgray;
}
   
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}
   
.modal-header .modal-close {
	font-size: 1.5rem;
}

.modal-text {
	font-size: 18px;
}

.modal p + p {
	margin-top: 1rem;
}

.modal.is-visible {
	visibility: visible;
	opacity: 1;
}

button#close-modal{
	margin-top: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	border: hidden;
	background: lightgray;
	cursor: pointer;
	font-size: x-large;
	font-weight: bold;
}

p#log-text{
	overflow: auto;
	height: 50vh;
	white-space: pre-wrap;
}