/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 29 Mar 2021, 13:26:22
    Author     : alan
*/
div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 110px;
}

div.gallery img {
  width: 100%;
  height: auto;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px), (min-height: 601px) {
	.header {
		text-align: center;
		color: #FF8CAD;
		font-size: 3em;
		font-family: Georgia, "Times New Roman", Times, serif;
		font-weight: bold;
		font-style: italic;
		padding-bottom: .2em;
	}
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px), (max-height: 600px) {
	.header {
		text-align: center;
		color: #FF8CAD;
		font-size: 1.5em;
		font-family: Georgia, "Times New Roman", Times, serif;
		font-weight: bold;
		font-style: italic;
		padding-bottom: .1em;
	}
	.header img{
		height: 34px;
		width: 64px;
	}
}

nav{
	z-index: 5;
}

/*Set the parent <li>’s CSS position property to ‘relative’.*/
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #FF8CAD;
	line-height: 4px;
	z-index: 4;
}

nav ul li {
	display: block;
	position: relative;
	float: left;
	background: #FF8CAD;
}

/*The CSS to hide the sub menus.*/
nav li ul {
	display: none;
}

nav ul li a {
	display: block;
	padding: 10px;
	text-decoration: none;
	white-space: nowrap;
	color: black;
	font-size: small
}

nav ul li a:hover {
	background: deeppink;
}

/*Displays the dropdown menu on hover.*/
nav li:hover > ul {
	display: block;
	position: absolute;
}

nav li:hover li {
	float: none;
}

nav li:hover a {
	background: #FF8CAD;
}

nav li:hover li a:hover {
	background: deeppink;
}

.nav li ul li {
	border-top: 0;
}

/*Displays second level dropdown menus to the right of the first level dropdown menu.*/
nav ul ul ul {
	left: 100%;
	top: 0;
}

/*Simple clearfix.*/
nav ul:before,
nav ul:after {
	content: " "; /* 1 */
	display: table; /* 2 */
}

nav ul:after {
	clear: both;
}

welcome {
	text-align: center;
	color: #FF8CAD;
	font-size: 3em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-style: italic;
	padding-bottom: .2em;
}

.stoppress {
	text-align: center;
	font-weight: bold;
	padding-bottom: .2em;
	font-size: 1.2em;
	border-style: solid;
	background-color: #FF8CAD;
}

.collapsible {
	background-color: #FF8CAD;
	color: black;
	cursor: pointer;
	padding: .5em;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
}

.active, .collapsible:hover {
	background-color: deeppink;
}

.collapsible:after {
	content: '\002B';
	color: black;
	font-weight: bolder;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2212";
}

.content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: #f1f1f1;
}

footer {
	text-align: center;
	font-weight: bold;
	margin-bottom: 0px;
}

.news {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.news-item{
	background-color: #FF8CAD;
	margin-bottom: 2px;
}

.news-card {
	margin: .5em;
}

.table-zebra tbody tr:nth-child(even) {
	background-color: #f1f1f1;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px), (min-height: 601px) {
	h3 {
		font-size: 1.5em;
		font-weight: bold;
		text-align: center;
	}
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px), (max-height: 600px) {
	h3 {
		font-size: 1em;
		font-weight: bold;
		text-align: center;
	}
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* Scrollable table */
.table-scroll {
  position: relative;
  width:100%;
  z-index: 1;
  margin: auto;
  overflow: auto;
}
.table-scroll table {
  width: 100%;
  min-width: 1280px;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
}
.table-scroll th,
.table-scroll td {
  border: 1px solid #FF8CAD;
  vertical-align: top;
	text-align: center;
}
.table-scroll thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
	background-color: white; /* alan */
}
#main-table th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 2;
	background-color: white; /* alan */
}
#main-table thead th:first-child {
  z-index: 3;
	background-color: white; /* alan */
}

.swindle td,th{
	border: 1px solid white;
}

.reportTable{
	border-style: solid;
	border-color: #FF8CAD;
	border-collapse: collapse;
	margin-left: auto;
  margin-right: auto;
}
.reportTable,th{
	border-style: solid;
	border-color: #FF8CAD;
	border-collapse: collapse;
}
.reportTable,thead{
	border-style: solid;
	border-color: #FF8CAD;
	border-collapse: collapse;
}
.btncenter {
  margin: 0;
  position: absolute;
  /*top: 50%;*/
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}