﻿/* roboto-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('font/roboto.woff2') format('woff2');
}

*{line-height: 200%;font-family:'Roboto', tahoma;}



.lineHeigh100,.lineHeigh100 * {
	line-height:100%;
}
.lineHeigh150,.lineHeigh150 * {
	line-height:150%;
}

html {
	height:100%;
	min-height: 100%;
	background: #efefef;
}

body {
	-webkit-font-smoothing: antialiased;
	margin: 0;
	color: #000000;
	font-size: 11pt;
	min-height: 100%;
	background:#ffffff;
}

.white,
.white *,
.white a {
	color: white;
}

#mobileHeader {
	display: none;
}

#mobileMenuBar {
	text-align: center;
	direction: ltr;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	;
	left: 0;
	background: #ffbb00;
	width: 100%;
	min-height: 50px;
	padding-right: 13px;
	padding-left: 13px;
	z-index: 1998;
	border-bottom: 1px solid #555555;
}

.mobileMenuTitle {
	line-height: 50px;
	display: inline-block;
	white-space: nowrap;
	color: #ffffff;
	font-size: 9pt;
}

#mobilemenu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	width: 220px;
	margin-right: -220px;
	background: #222222;
	direction: ltr;
	padding-top: 50px;
	box-sizing: border-box;
	;
	z-index: 2000;
}

.mobileMenuSignin {
	font-size: 10pt;
	color: #ffffff;
	display: block;
	width: 100%;
	line-height: 35px;
	padding-right: 10px;
	border-bottom: 1px solid #555555;
}

.mobileMenuItem {
	font-size: 10pt;
	color: #ffffff;
	display: block;
	width: 100%;
	line-height: 35px;
	padding-right: 10px;
	border-bottom: 1px solid #555555;
}

a.mobileMenuItem:hover {
	font-size: 10pt;
	background: #555555;
	color: #ffffff;
}

.mobileSubMenuItem {
	font-size: 10pt;
	color: #ffffff;
	display: block;
	width: 100%;
	line-height: 35px;
	padding-right: 30px;
}

.mobileSubMenuItem:hover {
	font-size: 10pt;
	color: #ffffff;
	background: #333333;
}

.mobileMenuItem:before {
	font-family: 'Times New Roman';
	display: inline-block;
	content: '◄';
	font-size: 6pt;
	margin-left: 5px;
}

.mobileMenuItem.changed:before {
	font-family: 'Times New Roman';
	display: inline-block;
	content: '▼';
	font-size: 6pt;
	margin-left: 5px;
}

#mobileMenuMask {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	opacity: 0.5;
	background-image: none !important;
	background-color: #000;
	z-index: 1999;
	display: none;
}

#backButton {
	width: 60px;
	height: 50px;
	position: fixed;
	top: 0;
	left: 15px;
	z-index: 2000;
	;
	box-sizing: border-box;
	background: url('template/back.png') no-repeat left center;
	background-size: 8px 12px;
}

#humburger {
	width: 48px;
	height: 48px;
	position: fixed;
	top: 0;
	right: 15px;
	z-index: 2002;
	;
	box-sizing: border-box;
}

.c-hamburger {
	display: block;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 48px;
	height: 48px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	background: transparent;
}

.c-hamburger:focus {
	outline: none;
}

.c-hamburger span {
	display: block;
	position: absolute;
	top: 22px;
	left: 9px;
	right: 9px;
	height: 4px;
	background: white;
	border-radius: 2px;
}

.c-hamburger span::before,
.c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	border-radius: 2px;
	height: 4px;
	background-color: #ffffff;
	content: "";
}

.c-hamburger span::before {
	top: -10px;
}

.c-hamburger span::after {
	bottom: -10px;
}

.c-hamburger--htx {}

.c-hamburger--htx span {
	transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
	transition-property: top, transform;
}

.c-hamburger--htx span::after {
	transition-property: bottom, transform;
}

.c-hamburger--htx.is-active {
	background-color: transparent;
}

.c-hamburger--htx.is-active span {
	background: none;
}

.c-hamburger--htx.is-active span::before {
	top: 0;
	transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
	transition-delay: 0s, 0.3s;
}

@media all and (max-width:768px) {
	#mobileHeader {
		display: block;
	}
}

.rtl {
	direction: rtl;
}

.ltr {
	direction: ltr;
}

.block{
	display:block;
}
.displayNone {
	display: none;
}

.inline {
	display: inline-block;
}

.inlineBlock {
	display: inline-block;
}

.alignCenter {
	text-align: center;
}

.alignRight {
	text-align: right;
}

.alignLeft {
	text-align: left;
}

.alignJustify {
	text-align: justify;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.marginAuto {
	margin: auto;
}

.pointer {
	cursor: pointer;
}

.pt9 {
	font-size: 9pt;
}

.pt8 {
	font-size: 8pt;
}

.grid {
	display: flex;
	flex-wrap: wrap;
}


.gridBordered .div{
	border:1px solid #aaaaaa;
	margin:-1px;
	padding:2px;
}

.gridBordered {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.gridBordered>div {
	border: 1px solid #aaaaaa;
	margin: 2px;
	padding: 5px;
	margin-left: -1px;
	margin-right: 0;
}

.input100 input:not([type=checkbox]):not([type=radio]),.input100 select,.input100 textarea{
	width:100%;
	max-width:100%;
}

.centerH {
	justify-content: center;
}

.centerV {
	align-items: center;
}

.reverse {
	flex-direction: row-reverse;
}

.col100 {
	flex: 0 0 100%;
	box-sizing: border-box;
}

.col6 {
	flex: 0 0 16.66%;
	box-sizing: border-box;
}

.col125 {
	flex: 0 0 12.5%;
	box-sizing: border-box;
}

.col25 {
	flex: 0 0 25%;
	box-sizing: border-box;
}

.col20 {
	flex: 0 0 20%;
	box-sizing: border-box;
}

.col33 {
	flex: 0 0 33%;
	box-sizing: border-box;
}

.col50 {
	flex: 0 0 50%;
	box-sizing: border-box;
}

.col100 {
	flex: 0 0 100%;
	box-sizing: border-box;
}

.rightDiv {
	flex: 0 0 80%;
	box-sizing: border-box;
}

.leftDiv {
	flex: 0 0 20%;
	box-sizing: border-box;
}

@media all and (max-width:768px) {
	.col6 {
		flex: 0 0 33.33%;
		box-sizing: border-box;
	}

	.col125 {
		flex: 0 0 50%;
	}

	.col25 {
		flex: 0 0 50%;
	}



	.col50 {
		flex: 0 0 100%;
	}

	.rightDiv {
		flex: 0 0 100%;
		box-sizing: border-box;
	}

	.leftDiv {
		flex: 0 0 100%;
		box-sizing: border-box;
	}
}

@media all and (max-width:640px) {
	.col6 {
		flex: 0 0 12.5%;
	}

	.col125 {
		flex: 0 0 50%;
	}

	.col20 {
		flex: 0 0 33%;
		box-sizing: border-box;
	}

	.col50 {
		flex: 0 0 100%;
	}

	.col33 {
		flex: 0 0 100%;
	}

}

.fp20 {
	flex: 0 0 20%;
	box-sizing: border-box;
	padding-right: 10px;
}

.fp80 {
	flex: 0 0 80%;
	box-sizing: border-box;
}

@media all and (max-width:768px) {
	.fp20 {
		flex: 0 0 100%;
		padding-right: 0px;
	}

	.fp80 {
		flex: 0 0 100%;
	}
}

.max100 {
	max-width: 100%;
}

.max440 {
	max-width: 440px;
}

.padding20 {
	padding: 20px;
}

h1 {
	font-size: 13pt;
	padding: 0;
	margin: 0;
}

h2 {
	font-size: 14pt;
	font-weight: bold;
}

.contentBody img,
.contentBody table {
	max-width: 100%;
}

.treeDiv {
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	font-size: 9pt;
	color: #555555;
	background: #e8eded;
	border: 1px solid #aaaaaa;
	margin-bottom: 10px;

}

.treeDiv a {
	font-size: 9pt;
	color: #555555;
	line-height: 50px;
}

.treeDiv a:hover {
	color: #f4c813;
}

.billboardHolder {
	width: 100%;
	padding-top: 40%;
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	display: block;
}

.billboard {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 1;
}

.billboardbullet {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #ffffff;
	cursor: pointer;
	margin-right: 5px;
	box-sizing: border-box;
	cursor: pointer;
	border-radius: 20px;
}

.billboardText {
	display: none;
	position: absolute;
	top: 0;
	right: 10%;
	z-index: 2;
	width: 40%;
	height: 100%;
}

.hr_orange {
	line-height: 30px;
}

.billboardText0 {
	max-width: 280px;

}

.billboardText1 {
	font-size: 44pt;
	color: #FFFFFF;
	line-height: 70px;
}

.billboardText2 {
	font-size: 24pt;
	color: #DDDDDD;
	line-height: 70px;
}

.billboardText3 {
	font-size: 14pt;
	color: #DDDDDD;
}

.billboardReadMore {
	display: inline-block;
	background: #ffffff;
	border-radius: 20px;
	width: 120px;
	line-height: 40px;
	text-align: center;
	color: #000000;
	font-size: 12pt;
	font-weight: bold;
	margin-top: 30px;
}

.billboardtext a:hover {
	background: #fcaf17;
}

.billboardIcon {
	position: absolute;
	left: -100%;
	z-index: 2;
	display: none;
	top: 10%;
	height: 80%;
}

@media all and (max-width:900px) {
	.billboardText {
		right: 10%;
		width: 80%;
	}

	.hr_orange {
		line-height: 20px;
	}

	.billboardText0 {
		max-width: 120px;
	}

	.billboardText1 {
		font-size: 10pt;
		color: #ffffff;
		line-height: 30px;
	}

	.billboardText2 {
		font-size: 10pt;
		color: #ffffff;
		line-height: 30px;
	}

	.billboardText3 {
		font-size: 10pt;
		color: #ffffff;
	}

	.billboardReadMore {
		display: inline-block;
		background: #ffffff;
		border-radius: 20px;
		width: 80px;
		line-height: 30px;
		text-align: center;
		color: #000000;
		font-size: 9pt;
		font-weight: bold;
		margin-top: 20px;
	}
}


.specialbox {
	overflow: auto;
}

.specialbox p:empty {
	margin: 0;
	padding: 0;
}

.specialbox p:empty {
	margin: 0;
	padding: 0;
}

.noselect,
.noselect * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.max440 {
	width: 440px;
	max-width: 100%;
	box-sizing: border-box;
}

.max220 {
	width: 220px;
	max-width: 100%;
	box-sizing: border-box;
}

.full {
	direction: ltr;
	width: 98%;
	max-width: 1200px;
	;
	margin: auto;
	box-sizing: border-box;
}

.inner {
	padding: 20px;
	box-sizing: border-box;
}

.inner img,
.inner table,
.inner div {
	max-width: 100%;
}

.innerMargin {
	margin: 5px;
	width: calc(100% - 10px);
}

table {
	border-collapse: collapse;
}

.table-bordered td {
	border: 1px solid #efefef;
}

.table-padded td {
	padding: 4px;
}

.table-striped tr:nth-child(even) {
    background: #f9f9f9;
}
.table-striped tr:hover{
    background: #eeeeee;
}


.table-padding-5 td {
	padding: 5px
}

.table-padding-10 td {
	padding: 10px
}

.table-padding-15 td {
	padding: 15px
}

.table-padding-20 td {
	padding: 20px
}

.clear {
	clear: both;
}

a {
	color: #4861c2;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #e98f00;
}

.bordered {
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.bold{font-weight:bold}
.strong{font-weight:bold}
.gray{color:gray}
.pt8{font-size:8pt;}
.pt9{font-size:9pt;}
.pt10{font-size:10pt;}

.photothumb {
	border: 1px solid #aaaaaa;
	border-radius: 2px;
	vertical-align: top;
}

.titles {
	display: block;
	padding: 15px;
	background: #236a93;
	color: #ffffff;
	line-height: 40px;
	width: 100%;
	box-sizing: border-box;
	font-size: 14pt;
	font-weight: bold;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;

}

.titleOnImage {
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
	min-height: 180px;
	top: -180px;
	margin-bottom: -170px;
	padding-top: 100px;
	box-sizing: border-box;
}

.titleOnImage .titles {
	background: none;
	color: #222222;
	font-size: 18pt;
}

@media all and (max-width:800px) {
	.titleOnImage {
		background: none;
		min-height: auto;
		margin-bottom: 0;
		top: 0;
		padding-top: 0;
		box-sizing: border-box;
	}

	.titleOnImage .titles {
		background: #236a93;
		color: #ffffff;
		font-size: 16pt;
	}
}


.clear {
	clear: both;
	display: block;
}

form {
	margin: 0;
}

button,
input,
select,
textarea {
	font-size: 10pt;
	outline: 0;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	padding: 2px;
	padding-left: 5px;
	padding-right:5px;
	box-sizing: border-box;
}

select {
	min-height: 32px;
}

.topmenu {
	position: relative;
	top: 0;
	left: 0;
}

.menu {
	color: #000000;
	display: inline-block;
	min-width: 140px;
}

.brief{
	
	color: #dddddd;
	font-size: 8pt;
	display: block;
}

.myhr {
	height: 1px;
	background: #999999;
}

.paging {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #05465a;
	border: 1px solid #666666;
	vertical-align: middle;
	line-height: 33px;
	text-align:center;
	border-radius:4px;
	margin-bottom:5px;
	color:#ffffff;
}

.pagingActive,
.paging:hover {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #ffd403;
	border: 1px solid #666666;
	vertical-align: middle;
	color: #000000;
	line-height: 33px;
}

.listitem {
	transition: box-shadow 0.5s linear;
	box-shadow: 0 0 2px 0 rgba(80, 80, 80, 0.2);
	width: 19%;
	margin-right: 0.5%;
	margin-left: 0.5%;
	margin-bottom: 20px;
	vertical-align: top;
	display: inline-block;
	background: #ffffff;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
	border: 1px solid #999999;
	float: right;
	padding: 10px;
	border-radius: 5px;
}

.listitem:hover {
	box-shadow: 0 0 12px 0 rgba(80, 80, 80, 0.7);
}

@media all and (max-width:800px) {
	.listitem {
		width: 24%;
	}
}

@media all and (max-width:600px) {
	.listitem {
		width: 49%;
		;
	}
}

@media all and (max-width:450px) {
	.listitem {
		width: 100%;
		margin-right: 0;
	}
}

.listthumb {
	width: 100%;
	vertical-align: top;
	box-sizing: border-box;
}

.listLink {
	display: block;
	width: 100%;
	height: calc(100% - 10px);
	color: #000000;
	background: #ffffff;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.listLink:hover {
	background: #dddddd;
}

.listLink img {
	width: 100%;
	vertical-align: top;
}

.pagerinactive {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #888888;
	cursor: pointer;
	border-radius: 10px;
	margin: 0;
	padding: 0;
}

.pageractive {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 10px;
	background: #0082c5;
	margin: 0;
	padding: 0;
}

@media all and (max-width:760px) {
	#mobileMenuIcon {
		display: block;
	}

	#topmenu {
		display: none;
	}

	#mobilemenu {
		display: block;
	}
}

.adminDelete {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/delete.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminLinkout {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/linkout.svg') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminDeleteGray {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/delete-gray.png') no-repeat;
	background-size: contain;
}

.adminArchive {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/archive.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminAdd {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/add.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminSub {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/sub.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminEdit {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/edit.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminEditWhite {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/editWhite.svg') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminUp {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/up.svg') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminVisible {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/visible.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminHidden {
	width: 22px;
	height: 22px;
	display: inline-block;
	background: url('template/admin/hidden.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminUpload {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/upload.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}


.adminData {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/data.png') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.adminSettings {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: url('template/admin/settings.svg') no-repeat;
	background-size: contain;
	cursor:pointer;
}

.folder {
	background: url('template/folder.png');
	background-repeat: no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 5px;
	vertical-align: middle;
	background-size: contain;
}

.file {
	background: url('template/file.png');
	background-repeat: no-repeat;
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 5px;
	vertical-align: middle;
	background-size: contain;
}




@media print {

	@page{
		margin-left: 10px;
		margin-right:10px;
		margin-top: 10px;
		margin-bottom: 10px;
		size: A3;
	}

	*{
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	body {
		background: none;
	}
	.page-break {
		page-break-after: always;
	}

	.noprint{
		display:none
	}
	iframe {
		display: block;
		width: 100%;
		height: auto;
		page-break-before: avoid;
	}
	.autoGrow{
		overflow:hidden;
		border:0;
		resize: none;
	}
	input{
		border:0;
	}

	input[type="submit"],
	input[type="button"],
	button {
	  display: none !important;
	}

	* {
		box-shadow: none !important;
	}

	.selectPritable {
		display: none;
	  }
	  /* Show the selected value in print */
	.selectPritable option:checked {
		display: block;
	}
	
}

.membersLink {
	font-size: 9pt;
	padding-left: 10px;
	padding-right: 10px;
	color: #ffffff;
}

.membersLink:hover {
	color: #eeeeee;
}

.membersMenu {
	margin: 5px;
	background: #ffffff;
	border-radius: 5px;
	font-size: 9pt;
	padding: 10px;
	text-align: center;
	border: 1px solid #aaaaaa;
	display: block;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	box-sizing: border-box;
}

.box {
	background: #ffffff;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #dddddd;
}

.semiSubmit {
	display: inline-block;
	padding: 8px;
	border-radius: 4px;
	background: #0c1214;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	box-sizing: border-box;
}

.wow {
	line-height: 20px;
	font-weight: bold;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: red;
	border-radius: 50%;
	color: white;
	text-align: center;
}

/* Style for top menu */
ul.drop {
	font-size: 10pt;
	z-index: 10;
	margin: auto;
	direction: ltr;
	display: inline-block;
	position: relative;
	vertical-align: bottom;
	box-sizing: border-box;
}

ul.drop>li {
	display: inline-block;
	min-width: 120px;
	border-left: 0px solid #aaaaaa;
	vertical-align: bottom;
	text-align: center;
	box-sizing: border-box;
	float: left;
}

ul.drop li a span {
	font-size: 7pt;
	padding-let: 5px;
}

ul.drop>li:first-child {
	border-right: 0px solid #aaaaaa;
}

ul.drop>li a {
	text-decoration: none;
	text-align: center;
	color: #222222;
	padding-right: 10px;
	padding-left: 10px;
	display: block;
	vertical-align: top;
	line-height: 35px;
	font-weight: normal;
	box-sizing: border-box;
	border: 1px dotted #efefef;
}

ul.drop>li:hover {
	background: rgba(255, 255, 255, 0.3);
}

ul.drop>li:hover a {
	color: #222222;
}

ul.drop,
ul.drop li,
ul.drop ul {
	list-style: none;
	padding: 0;
}

ul.drop>li.hover,
ul.drop>li:hover {
	position: relative;
	z-index: 599;
	cursor: default;
}

ul.drop ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: -1px;
	z-index: 80;
}

ul.drop ul li {
	border-bottom: 1px solid #dddddd;
}

ul.drop ul li a {
	margin-top: 1px;
	color: #000000;
	display: block;
	line-height: 35px;
	text-align: right;
	box-sizing: border-box;
	background: #eeeeee;
}

ul.drop ul li a:hover {
	background: #dddddd;
}

ul.drop ul li {
	position: relative;
}

ul.drop ul ul {
	position: absolute;
	top: 0px;
	left: 100%;
	z-index: 1;
}

ul.drop li:hover>ul {
	visibility: visible;
	opacity: 1;
}

ul.drop li ul li a {
	color: #000000;
	min-width: 220px;
	max-width: 300px;
	text-align: right;
	white-space: nowrap;
}

/* End of Style for top menu */
.paperOptions {
	float: left;
	display: inline-block;
	padding: 5px;
	padding-right: 10px;
	padding-left: 10px;
	margin: 2px;
	background: #eeeeee;
	border: 1px solid #dddddd;
	text-align: center;
}

.progress {
	display: none;
	position: relative;
	width: 400px;
	border: 1px solid #ddd;
	padding: 1px;
	border-radius: 3px;
	margin: auto;
}

.bar {
	background-color: #B4F5B4;
	width: 0%;
	height: 20px;
	border-radius: 3px;
}

.percent {
	position: absolute;
	display: inline-block;
	top: 0px;
	left: 48%;
}

.red {
	color: red;
}

#mobileSearch input[type=submit] {
	background-color: #ffbb00;
	background-image: url('template/leftArrow.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 16px;
	width: 40px;
	height: 26px;
	vertical-align: middle;
	box-sizing: border-box;
	border: 0;
}

#mobileSearch input[type=text] {
	vertical-align: middle;
	height: 26px;
	width: 150px;
	font-size: 9pt;
	border: 0;
}

.social {
	zoom: 0.5;
	position: relative;
	top: 0;
	left: 0;
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	background: #eeeeee;
}

.socialHover {
	background-color: #888888;
	transition: background-color 1s ease-out;
}

.social img:first-child {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.social img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#fplinks {
	background: #ffffff;
	padding-top: 40px;
}

@media all and (max-width:760px) {
	#fplinks {
		padding-top: 20px;
	}

	.fpLinkBody {
		display: none;
	}
}

.fpLinkTitle {
	color: #000000;
	font-weight: bold;
}

.fpLinkBody {
	color: #444444;
}

.fpLinkMore {
	display: inline-block;
	border: 1px solid #ffbb00;
	border-radius: 10px;
	min-width: 80px;
	text-align: center;
	color: #444444;
	background: #ffffff;
	transition-duration: 0.5s;
	height: 100%;


}

.fpLinkMore:hover {
	color: #444444;
	box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);

}

.fadeToGray {
	background: #ededed;
	-moz-transition: background .2s ease-in;
	-o-transition: background .2s ease-in;
	-webkit-transition: background .2s ease-in;
	transition: background .2s ease-in;
}

.fadeToGray:hover {
	background: #dddddd;
}

.rasquo {

	display: inline-block;
	width: 23px;
	height: 23px;
	vertical-align: middle;
	background: url('template/rasquo.svg');
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center 9px;
	margin-bottom: 5px;
}

.lang {
	display: inline-block;
	float: left;
	margin-right: 5px;
	font-size: 8pt;
	min-width: 50px;
	text-align: center;
	color: #666666;
	border: 1px solid #aaaaaa;
}

.langActive,
lang:hover {
	background-color: navajowhite;
	color: #444444;
}


.dashboardHeadline {
	background-color: #04243d;
    background: linear-gradient(to bottom, #05465a 0%, #032e3d 100%);

	font-size: 16pt;
	padding-left: 20px;
	border: 1px solid #aaaaaa;
	border-bottom: 0;
	color: #ffffff;
	user-select: none;
	display:block;
}

.dashboardItem {
	display: block;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	background-color: #e8eded;
	color: #444444;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 10px;
	height:calc(100% - 10px);
	margin-bottom:10px;
}


.dashboard_icons {
	display: inline-block;
	width: 45px;
	height: 45px;
	background-size: contain;
	background-repeat: no-repeat;
}

.dashboard_users {background-image: url('template/dashboard/users.svg')}
.dashboard_map {background-image: url('template/dashboard/map.svg')}
.dashboard_signout {background-image: url('template/dashboard/signout.svg')}
.dashboard_profile {background-image: url('template/dashboard/profile.svg')}
.dashboard_places {background-image: url('template/dashboard/places.svg')}
.dashboard_schedule {background-image: url('template/dashboard/schedule.svg')}
.dashboard_messages {background-image: url('template/dashboard/messages.svg')}
.dashboard_reservoir {background-image: url('template/dashboard/reservoir.svg')}
.dashboard_data {background-image: url('template/dashboard/data.svg')}
.dashboard_import {background-image: url('template/dashboard/import.svg')}
.dashboard_testing {background-image: url('template/dashboard/testing.svg')}
.dashboard_production {background-image: url('template/dashboard/production.svg')}
.dashboard_pie {background-image: url('template/dashboard/pie.svg')}
.dashboard_password {background-image: url('template/dashboard/password.svg')}
.dashboard_events {background-image: url('template/dashboard/events.svg')}
.dashboard_files {background-image: url('template/dashboard/files.svg')}
.dashboard_percentages {background-image: url('template/dashboard/percentages.svg')}
.dashboard_allocation {background-image: url('template/dashboard/allocation.svg')}
.dashboard_diagnostic {background-image: url('template/dashboard/diagnostic.svg')}
.dashboard_chartstest {background-image: url('template/dashboard/chartstest.svg')}
.dashboard_comingSoon {background-image: url('template/dashboard/comingSoon.svg')}
.dashboard_equipments {background-image: url('template/dashboard/equipments.svg')}
.dashboard_contractors {background-image: url('template/dashboard/contractors.svg')}
.dashboard_depthchart {background-image: url('template/dashboard/depthchart.svg')}
.dashboard_reports{background-image: url('template/dashboard/reports.svg')}
.dashboard_planning{background-image: url('template/dashboard/planning.svg')}
.dashboard_rigs{background-image: url('template/dashboard/rigs.svg')}
.dashboard_codes{background-image: url('template/dashboard/codes.svg')}
.dashboard_bha{background-image: url('template/dashboard/bha.svg')}
.dashboard_achievement{background-image: url('template/dashboard/achievement.svg')}
.dashboard_hourly{background-image: url('template/dashboard/hourly.svg')}
.dashboard_contract{background-image: url('template/dashboard/contract.svg')}
.dashboard_news{background-image: url('template/dashboard/radio.svg')}
.dashboard_sendmail{background-image: url('template/dashboard/sendmail.svg')}
.dashboard_tender{background-image: url('template/dashboard/tender.svg')}
.dashboard_tc{background-image: url('template/dashboard/tc.svg')}
.dashboard_maintenance{background-image: url('template/dashboard/maintenance.svg')}
.dashboard_observation{background-image: url('template/dashboard/observation.svg')}
.dashboard_assets{background-image: url('template/dashboard/assets.svg')}
.dashboard_locations{background-image: url('template/dashboard/locations.svg')}
.dashboard_byWell{background-image: url('template/dashboard/byWell.svg')}
.dashboard_intervention{background-image: url('template/dashboard/intervention.svg')}
.dashboard_prediction{background-image: url('template/dashboard/prediction.svg')}
.dashboard_leave{background-image: url('template/dashboard/leave.svg')}
.dashboard_departments{background-image: url('template/dashboard/departments.svg')}
.dashboard_staff{background-image: url('template/dashboard/staff.svg')}

.active {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('template/admin/visible.png');
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

.deactive {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('template/admin/hidden.png');
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

thead {
	background: #dddddd;
	font-size: 8pt;
}

.eye {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url('template/admin/eye.png');
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

.cancelLink {
	float: right;
	font-size: 8pt;
	color: #aaaaaa;
	display: inline-block;
	line-height: 30px;
}


.addLink {
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
	background: #328700;
	color: #ffffff;
	border: 1px solid #bbbbbb;
	border-radius: 5px;

}

.addLink:hover {
	color: #ffffed
}

.whiteLink{	
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
	background: #ffffff;
	color: #000000;
	border: 1px solid #bbbbbb;
	border-radius: 5px;}
.whiteLink:hover {
	color: #000000
}

.addButton {
	border: 1px solid #000000;
	cursor: pointer;
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	text-align: center;
	line-height: 12px;
	color: #000000;
	cursor: pointer;
}

.shadow {
	box-shadow: 0 0px 1px 0px rgba(0, 0, 0, 0.2);
	transition: all 0.2s;

}

.shadow:hover {
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.shadow_disabled{
	cursor:not-allowed;
	opacity:0.5;
	filter: grayscale(100%);
}

.topSignout {
	margin-top: 20px;
	min-width: 60px;
	padding-left: 5px;
	display: inline-block;
	color: #444444;
	font-size: 9pt;
	margin-right: 10px;
	margin-left: 20px;
	font-weight:bold;
}

.menuItem {
	border: 1px solid #aaaaaa;
	padding: 15px;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.menuItem:hover {
	transform: translateY(-2px);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.menuItem:hover>.menuConfig {
	opacity: 1
}

.menuConfig {
	display: inline-block;
	float: right;
	opacity: 0.3;
	text-align: right;
}

.menuConfig a {
	margin-left: 8px;
	margin-right: 8px;
}

::placeholder {
	opacity: 0.6;
}

/* Classes for modal */

#modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(10, 10, 10, 0.65);
}

.modalContent {
	display: none;
}

.openModal {
	cursor: pointer;
}

#closeModal {
	color: #aaa;
	float: right;
	text-align: center;
	line-height: 26px;
	font-size: 22pt;
	cursor: pointer;
	display: inline-block;
	width: 26px;
	height: 26px;
	border: 0px solid #aaaaaa;
	border-radius: 50%;
	position: relative;
	top: 13px;
	right: 13px;
	background: #ffffff;
	box-shadow: -0px 0px 5px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;

}

/* End of modal */


.dataFilterBox {
	display: inline-block;
	margin: 3px;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	background: #ffffff;
	text-align: center;
	font-size: 9pt;
	padding-left: 6px;
	padding-right: 6px;
	cursor: pointer;
}

.reservoirFilterBox {}


[data-well] {
	display: inline-block;
	margin: 3px;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	text-align: center;
	font-size: 9pt;
	padding-left: 6px;
	padding-right: 6px;
	cursor: pointer;
}

[data-well=yes] {
	background: #D3F5D5;
}

[data-well=no] {
	background: #ffffff;
}


[data-reservoir] {
	display: inline-block;
	margin: 3px;
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	text-align: center;
	font-size: 9pt;
	padding-left: 6px;
	padding-right: 6px;
	cursor: pointer;
}

[data-reservoir=yes] {
	background: #D3F5D5;
}

[data-reservoir=no] {
	background: #ffffff;
}


.filterAnchor {
	display: inline-block;
	background: url('template/icons/filter.png') no-repeat;
	background-position: 10px center;
	background-size: 12px 12px;
	background-color: #ffffff;
	border: 1px solid #aaaaaa;
	padding-left: 30px;
	border-radius: 5px;
	padding-right: 15px;
	color: #333333;
	line-height: 30px;
	margin-right: 10px;
	height: 35px;
}

.filterAnchor:hover {
	color: #444444;
}

.myDateRangeInput {
	font-size: 9pt;
	border: 0px solid #aaaaaa;
	;
	width: 80px;
}

.wait {
	height: 30px;
	background: url('template/wait.svg') no-repeat center center;
	background-size: contain;
}

.datePicker {
	width: 120px;
	text-align: center;
	background: url(template/calendar.png);
	background-size: 12px 12px;
	background-position: 5px 10px;
	background-repeat: no-repeat;
}

.datePickerED {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url('template/enabled.png');
	vertical-align: middle;
	background-size: contain;
	content: ".";
}

.inlineFilters {
	display: inline-block;
	white-space: nowrap;
	border: 1px solid #999999;
	margin-left: 5px;
	margin-right: 5px;
	padding: 5px;
	box-sizing: border-box;
	min-height: 80px;
	vertical-align: bottom;
	zoom:0.9;
}


/*Clases for image popup*/

.imagePopup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	overflow: hidden;
}


/* Style for the image inside the popup */
#popupImage {
	display: block;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: move;
	/* fallback if grab cursor is unsupported */
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

#popupImage:active {
	cursor: grabbing;
}

[data-image] {
	cursor: pointer;
}

.image-popup-zoom-links {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: white;
	text-align: center;
}

.image-popup-zoom-links a {
	display: inline-block;
	padding: 5px 10px;
	background-color: #333;
	color: white;
	text-decoration: none;
	margin-right: 10px;
	cursor: pointer;
}

.image-popup-zoom-links a:hover {
	background-color: #555;
}

[data-disabled="1"] {
	opacity: 0.4;
	pointer-events: none;
	cursor: not-allowed;
}


/*STyles for popup */

.popup {
	position: fixed;
	top: 10px;
	left: 10px;
	width: 400px;
	height: 300px;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
	z-index: 50000;
}

.popup-header {
	background-color: #333;
	color: #fff;
	padding: 5px;
	cursor: move;
	height: 30px;
}

.popup-title {
	margin: 0;
}

.popup-close-button {
	width:25px;height:25px;
	font-family:tahoma;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	float: right;
}

.popup-content {
	overflow-y: auto;
	padding: 10px;
	height: calc(100% - 75px);
	/*100% minus 30 header + 20 footer + 15 resize icon;*/
}

.ui-resizable {
	position: fixed;
}

.ui-resizable-handle {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url('template/resize.png');
	background-size: contain;
	cursor: se-resize;
}

.ui-resizable-se {
	position: absolute;
	bottom: 0;
	right: 0;
}


.dateShortcut {
	display: inline-block;
	width: 150px;
	text-align: left;
	border: 1px solid #aaaaaa;
	padding: 10px;
	margin:5px;
	cursor:pointer;
	background:#eeeeee;
	color:#444444;
}

.dateShortcut:hover{background:#dddddd;color:#000000}

.dateShortcutSmall {
	display: inline-block;
	font-size:9pt;
	width: 90px;
	text-align: center;
	border: 1px solid #aaaaaa;
	padding: 5px;
	margin:2px;
	cursor:pointer;
	background:#eeeeee;
	color:#444444;
	height:40px;
	line-height:40px;
	vertical-align:middle;
}

.divAlert{
	background: #ff8800;
	color:#000;
	padding:10px;
}
.divSuccess{
	background-color: green;
	color:white;
	padding:10px;
}
.divError{
	background-color: red;
	color:white;
	padding:10px;
}



/*Production Edit Form styles*/

#targetDiv input,#targetDiv select{
	box-sizing:border-box;
	width:100%;
}

.content-editable {
	border: 1px solid #ccc;
	padding: 10px;
	min-height: 100px;
}
form {
	margin: 0;
	padding: 0;
}
.table80 td{width:80px;box-sizing:border-box;}
.table80 input{width:100%;box-sizing:border-box;}

.updateReload{
	background:url('template/icons/updateReload.png');
	background-size:contain;
	width:18px;
	height:18px;
	display:inline-block;
}



.myGrid {
	max-width:100%;
	display: grid;
	gap: 1px;
	font-size:9pt;
}
.myGrid > div{
	border:1px solid #dddddd;margin:-1px;
	padding-right:3px;
	padding-left:3px;
	box-sizing:border-box;
	padding-top:2px;
	padding-bottom:2px;
	}
.oddBold div:nth-child(odd){
	font-weight:bold;
}

.myGrid:hover {
  background-color: #f9f9f9;
}	

/*Style for small font size select 2*/
.myFont{font-size:8pt;}
/*Style for inline edit in production:*/
.myForm input,.myForm select{width:100%;padding:1px;margin:0;vertical-align:top;}

/*For mandatory fields */
.redStar::before {
	display:inline-block;
	position:relative;
	content:'*';
	color:red;
	margin-right:5px;
}


.sticky {
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
}

.refresh{
	display:inline-block;
	background-size:contain;
	background-image:url('template/refresh.svg');
	width:18px;
	height:18px;
}

.refreshWhite{
	display:inline-block;
	background-size:contain;
	background-image:url('template/refreshWhite.svg');
	width:18px;
	height:18px;
}

.clock{
	display:inline-block;
	background-size:contain;
	background-image:url('template/icons/clock.svg');
	width:18px;
	height:18px;
}

.alignMiddle{vertical-align:middle}

.prevNextText{
	font-size:10pt;
	color:#444444;
}

.prevNextText:hover{
	font-size:10pt;
	color:#ff8800;
}

.parameters_print{
	display:inline-block;
	border:1px solid #aaaaaa;
	padding-right:5px;
	padding-left:5px;
	margin:2px;
	font-size:9pt;
	white-space:no-wrap;
	border-radius:5px;
}


.reportListH1 {
	background-color: #7b7b7b;
	font-size: 16pt;
	padding-left: 20px;
	border: 1px solid #aaaaaa;
	border-bottom: 0;
	color: #ffffff;
	user-select: none;
	display:block;
	cursor: pointer
}
.reportListH1:hover{color:#dddddd;}

.reportListH2 {
	background-color: #ffc400;
	color:#000000;
	font-size: 11pt;
	line-height:40px;
	padding-left: 20px;
	border: 1px solid #aaaaaa;
	border-bottom: 0;
	user-select: none;
	display:block;
	cursor: pointer;
}
.reportListH2:hover{color:#444444;}




.tab{
	display:inline-block;
	border:0px solid #cccccc;
	border-top-right-radius:5px;
	border-top-left-radius:5px;
	border-bottom:0;
	color:#555555;
	font-size:9pt;
	padding-top:5px;
	padding-left:10px;
	padding-right:10px;
	cursor:pointer;
	background:#ffffff;
	box-sizing:border-box;
	vertical-align: top;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
	line-height:28px;
}

.tab-active{
	border-width:1px;
	color:#111111;
}

.tab:not(.tab-active):hover{
	background:#eeeeee;
}

.tab:hover{
	color:#111111
}

.tab-content{
	border:1px solid #cccccc;
	display:none;
	padding:20px;
	margin-top:-1px;

}

.contractControls{
	display:inline-block;
	border-radius:5px;
	padding-left:10px;
	padding-right:10px;
	margin:5px;
	background:#007b80;
	color:#444444;
	text-align:center;
	min-width:100px;
	color:#ffffff;

}
.contractControls:hover{color:#eeeeee}


.newsTitle{
	background:#05465a;
	font-size:12pt;
	font-weight:normal;
	color:#ffffff;
	padding:10px;
	box-sizing:border-box;
}
.newsTitle span {float:right;font-size:10pt;}
.newsBox img,.newsBox table{
	max-width:100%;
}

.contractOptions{
	display:inline-block;
	padding-left:5px;
	min-width:95px;
	text-align: center;
	padding-right:5px;
	background:#ffffff;
	border:1px solid #aaaaaa;
	border-radius:5px;
	margin:2px;
}

.whiteButton{
	display:inline-block;
	padding-left:10px;
	padding-right:10px;
	min-width:100px;
	text-align: center;
	border-radius:20px;
	font-size:9pt;
	color:#333333;
	transition:all 0.3s linear;
	background:white;
	border:1px solid #aaaaaa;
	cursor:pointer;
}

.whiteButton:hover{
	color:#555555;
	box-shadow:0px 5px 5px rgba(0,0,0,0.5);
}

.addRecipient{
	font-size:9pt;
	border:1px solid #aaaaaa;
	padding-left:15px;
	padding-right:15px;
	border-radius:10px;
	position:relative;
}
.addRecipient:before {
	font-family: 'Times New Roman';
	display: inline-block;
	content: '+';
	font-size: 9pt;
	margin-right: 5px;
}

.assetsTable{
	margin:auto;border-collapse: collapse;
}

.assetsTable td div.SN{
	color:#999999; display:inline-block;font-size:9pt;
}
.assetsTable td {
	padding:5px; border-bottom:1px solid #dddddd;
}

.maintenanceOptions {
  position: relative;
  display: inline-block;
}

.maintenanceOptions-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.maintenanceOptions-dropdown {
  display: none;
  position: absolute;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-direction: column;
  min-width: 150px;
  z-index: 100;
}

.maintenanceOptions-dropdown a {
  display: block;
  padding: 8px 12px;
  color: rgb(107, 107, 107);
  text-decoration: none;
  font-size:9pt;
}

.maintenanceOptions-dropdown a:hover {
  background: #f0f0f0;
}

.starOn{display:inline-block;
	width:16px;
	height:16px;
	background:url('template/icons/starOn.svg');
	background-size:contain;
	vertical-align:middle;
	cursor:pointer;}	
.starOff{display:inline-block;
	width:16px;
	height:16px;
	background:url('template/icons/starOff.svg');
	background-size:contain;
	vertical-align:middle;
	cursor:pointer;
}



.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px;
}

.grid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px;
}
@media (max-width: 780px) {
    .grid2 {
        grid-template-columns: 1fr; 
    }

    .grid4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid6 {
        grid-template-columns: repeat(3, 1fr);
    }    

}

@media (max-width: 480px) {
    .grid3 {
        grid-template-columns: 1fr;
    }

    .grid4 {
        grid-template-columns: 1fr;
    }
}


.intListItem{
    display:inline-block;
    border:1px solid #aaaaaa;
    padding:10px;
    padding-top:5px;
    padding-bottom:5px;
    margin:5px;
    box-sizing:border-box;
    min-width:100px;
    text-align:center;
    color:#444444;
    cursor:pointer;
}
.intListItem:hover{
    background:#fffbd5;
    color:#000000;
}

.linkout {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #aaaaaa;
    position: relative;
    color:#777777;
    margin-left:10px;
    border-radius:2px;
    background:#ffffff;
}

.linkout:hover {
    border-color: #777777;
    color:#777777
}

.linkout::after {
    content: "↗";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 6px;
    height: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12pt;
    line-height: 1;
}