@charset "utf-8";
@import url("colors.css");
@import url("header.css");
@import url("menu.css");
@import url("messages.css");
@import url("buttons.css");
@import url("forms.css");
@import url("search.css");
@import url("tree.css");
@import url("contact.css");

:root {
	--padding-normal: 1em;
	--content-width: 1230px;
}

html.wide {
	--content-width: 98vw;
}

* {
	margin: 0;
	padding: 0;
	/*box-sizing: border-box;*/
}

#monty {
	position: absolute;
	top: -100px;
}

.hidden {
	display: none;
}

.placeholder {
	display: none;
}

.invisible {
	visibility: hidden;
}

.offscreen {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 1px;
	height: 1px;	
}

.squashed {
	height: 0;
	width: 0;
	line-height: 0;
}

.borderless {
	border: none;
}

.missing {
	border: 1px solid red;
}

.clearboth {
	clear: both;
}

.pointer {
	cursor: pointer;
}

.hint {
	font-weight: bold;
}

.container {
	display: flex;
	place-content: center;
}

.content {
	width: var(--content-width);
}

body {
	background-color: var(--background);
	color: var(--dark);
	font-family: arial, tahoma, verdana, sans-serif;
	/*font-family:"Source Sans Pro", Arial, sans-serif;*/
	font-size: 12px;
}

body.ghp {
	background-color: var(--background);
	color: var(--dark);
	font-family:"Source Sans Pro",Arial,sans-serif;
	/*font-size:1.0625rem;*/
	/*font-weight:400;*/
	/*line-height:1.765;*/
}

body.smallView {
	background: none;
}

main {
	padding-top: var(--padding-normal);
	background-color: white;
	clear: both;
}

a,
a:link,
a:visited {
	color: #333C7A;
}

a,
a:link a:visited {
	background-color: transparent;
}

h1,
h2,
h3 {
	color: var(--base);
	line-height: 1.2em;
	font-weight: bold;
	margin: 0.8em 0;
}

h1 {
	font-size: 16px;
}

h2 {
	font-size: 14px;
}

p {
	margin: 0.8em 0;
}

ul, ol, dl {
	margin: 1lh 1em;
}

tr:hover {
	background-color: #eeeeff;
}

th,
td {
	text-align: left;
}

th {
	font-size: 12px;
}

#oid_application {
	clear: both;
	width: 100%;
	text-align: left;
}

.wide #oid_open table,
.wide #oid_pending table,
.wide #sv_open table {
	width: max-content;
}

#oid_open th,
#oid_open td,
#oid_pending th,
#oid_pending td,
#sv_open th,
#sv_open td {
	border-color: #efefef;
	border-style: solid;
	border-width: 1px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 1em;
	padding-right: 1em;
}

#close_detail {
	position: absolute;
	right: 550px;
	background: url(../js/fancybox/fancybox.png) repeat scroll -40px 0 transparent;
	cursor: pointer;
	height: 30px;
	right: -35px;
	top: -15px;
	width: 30px;
}

#ajaxLoader {
	font-size: 12px;
	float: right;
	visibility: hidden;
	margin-top: calc(var(--header-height) - 6em);
}