@font-face {
	font-family: 'Akagi';
	font-style: normal;
	font-weight: 400;
	font-stretch: 100%;
	src: url('../fonts/akagi_w05_book.woff2') format('woff2');
}
@font-face {
	font-family: 'Akagi';
	font-style: normal;
	font-weight: 700;
	font-stretch: 100%;
	src: url('../fonts/akagi_w05_bold.woff2') format('woff2');
}
:root {
	--font-name: 'Akagi', Arial;	/*Arial is for Firefox's missing support of loaded fonts in select options*/
	--font-family-body: 'Akagi', sans-serif;
	--font-family-head: 'Akagi', sans-serif;
	--font-family-footer: 'Akagi', sans-serif;

	--font-size: 14px;
	--font-size-footer: 12px;
	--main-color: #000;
	--text-color: #000;
	--link-color: #000;
	--button-background-color: #03303e;
	--hover-background-color: #054b61;	/*#03303e;*/
	--hover-color: #fff;	/*#ffaf5e;*/
	--hover-link-color: #03303e;
	--bg-color-light: #cfe2f6;
	--active-color: #b9e1eb;
	--bg-color: #03303e;
	--bg-color-warning: #b10f1e;
	--disabled-color: #000;
	--height-header: 69px;
	--height-header-sticky: 40px;
	--height-footer: 60px;
}

h1, h2, h3,
h1 *, h2 *, h3 * {
	font-weight: bold;
}
:focus {
	outline: none;
}
input[type="button"], 
input[type="submit"], 
button {
	background: var(--button-background-color);
}
input[type="button"]:hover, 
input[type="submit"]:hover, 
button:hover *,
button:hover {
	color: var(--hover-color);
	background: var(--hover-background-color);
}
button.secondary {
	background: var(--bg-color-light);
}
button.secondary:hover {
	background: var(--hover-background-color);
	color: var(--hover-color) !important;
}
a:hover {
	color: var(--hover-link-color);
	text-decoration: underline;
}
a.btn_icon:hover {
	text-decoration: none;
}
a.btn_icon:hover:before {
	color: var(--hover-link-color);
}
a.btn_icon.active, 
a.btn_icon.active:before {
    color: var(--main-color);
}
a.underlinedotted {
	border-bottom: var(--main-color) dotted 1px;
	cursor: pointer;
}
a.underlinedotted:hover {
	text-decoration: none;
}

#btn_Search {
	width: unset;
	min-width: 80px;
}
button.animated {
	position: relative;
}
button.animated:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--active-color);	/*rgba(153,255,153,0.4);*/
	opacity: 0.5;
	transition: none;
}
button.animated.animation-active:after{
	width: 100%;
	transition: width 2.5s;
}
@media (max-width:768px) {
	button.animated.animation-active:after{
		transition: width 1.2s;
	}
}

#header {
	border-bottom: 1px solid #eee;
}

#toplogo, #topmenu, #topnav {
	position: absolute
}
#topmenu, #topnav {
	right: 340px;
	top: 40px;
}

#toplogo {
	top: 10px;
	right: 10px;
	left: unset;
}

#toplogo img {
	max-height: 80px;
}
#header.fixed:not(:hover) #toplogo {
	top: 0;
}
#header.fixed:not(:hover) #toplogo img {
    max-height: var(--height-header-sticky);
    transition: all .7s ease-in;
}
#header.fixed:not(:hover) #topnav, 
#header.fixed:not(:hover) #topmenu {
	top: 15px;
}
#topnav a:hover,
#topmenu a:hover {
	text-decoration: none;
}
.btn-topmenu {
	width: 30px;
	height: 30px;
	padding: 4px;
	position: absolute;
	top: -3px;
	left: 20px;
}
.pane-topmenu-inner {
	z-index: 999;
	position: relative;
	background: #fff;
	margin-top: 40px;
	padding: 2px 8px 16px;
	border: 1px solid #ccc;
	box-shadow: 0 0 5px #ddd;
	text-align: left;
	left: -110px;
}
.pane-topmenu-inner:before {
	border: 1px solid #ccc;
	box-shadow: 0 0 5px #ddd;
	z-index: -1;
	content: '';
	display: block;
	position: absolute;
	top: -30px;
	left: 111px;
	height: 30px;
	width: 38px;
}
.pane-topmenu-inner:after {
	background: #fff;
	content: '';
	position: absolute;
	z-index: -1;
	top: -4px;
	left: 112px;
	height: 20px;
	width: 36px;
}
#warningbanner {
	margin: calc(var(--height-header) + 30px) 0 0;
}
#content {
	margin: 100px 0 60px;
}
#footer {
	text-align: center;
	box-shadow: none;
}
.footer-links {
    margin-top: 5px;
    float: left;
}
.mcPane {
	width: 298px;
	height: 286px;
	position: relative;
	display: inline-block;
	margin: 0 40px 20px 0;
	cursor: pointer;
	overflow: hidden;
}
	.mcPane img {
		max-height: 224px;
	}
	.mcPane-Title {
		font-size: 16px;
		line-height: 24px;
		font-weight: bold;
	}
#lbl_resultcnt {
	font-weight: bold;
}

div.mediaheader-mediatype {
	display: inline;
}
div.mediaheader-license {
	float: right;
	height: 25px;
	margin-top: 2px;
	margin-right: 10px;
}
.mediaheader-license img {
	height: 25px;
}

#pane_DetailDataCtrls {
	background: none;
}
.interactive_listitem {
	text-decoration: underline;
}