@charset "utf-8";
/* CSS Document */

body {
    font-size: 100%;
    border-bottom: 1;
    margin: 20px;
    border-top-width: medium;
    border-top-color: black;
    max-width: 1080px;
    font-family: "Times New Roman", serif;
}
body h1 {
    font-size: 1.25em;
    font-family: "Tachoma", sans-serif;
    font-weight: bold;
    color: #264B82;
    margin-bottom: 10px;
    margin-top: 25px;
}
body h2 {
    font-size: 1.20em;
    font-weight: bold;
    font-family: "Tachoma", sans-serif;
    color: #313030;
    text-align: left;
    margin-bottom: 5px;
    margin-top: 15px;
}
body h3 {
    font-size: 1.15em;
    font-weight: bold;
    font-style: italic;
    font-family: "Tachoma", sans-serif;
    color: #393536;
    text-align: left;
    margin-bottom: 5px;
    margin-top: 12px;
}
body li {
    font-size: 1.05em;
    text-align: left;
    font-family: "Times New Roman", serif
}
body p {
    font-size: 1.17em;
    margin-bottom: 5px;
}


.title {
    font-size: 2em;
    font-family: "Tachoma", sans-serif;
    font-weight: bold;
    color: #264B87;
background: #D7E7FF;
    margin-top: 0;
}

.authors {
    font-size: 0.8em;
    font-family: "Tachoma", sans-serif;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.authors p {
    margin: 0;
}

p.correspondingauthor {
    font-size: 0.95em;
    font-family: "Tachoma", sans-serif;
    margin-top: 0;
    margin-bottom: 0;
}

.article-info {
	font-family: "Tachoma", sans-serif;
	margin-top: 0;
	margin-bottom: 0.1em;
}
.article-info p {
	font-size: 0.80em;
	margin: 0;
}
.article-info h1 {
	font-size: 1em;
	margin: 0;
	margin-bottom: 0.5em;
    margin-top: 0.8em;
}
	
.article-info li {
	font-size: 0.8em;
	font-family: "Tachoma", sans-serif;
	margin-top: 0;
	
}	
.article-info .keywords {
	font-size: 0.9em;
    margin-top: 1.1em;
}

.vline {
	border-right: 0.3em solid #86A6D7;
	padding-right: 1em;
}

a:link, a:visited {
  color: #3766BE;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #A6CE39;
  background-color: transparent;
  text-decoration: underline;
}

p.list {
    font-size: 0.9em;
    font-family: "Times New Roman", serif
}
p.tableTitle {
    text-align: center;
    font-family: "Times New Roman", serif;
    margin-top: -1em;
    margin-bottom: 0.5em;
}
table.Table {
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
table.Table td, table.Table th {
    border-top: 1px solid #AAAAAA;
    border-bottom: 1px solid #AAAAAA;
    padding: 2px 2px;
    font-size: 0.92em;
}
table.Table thead {
    border-bottom: 2px solid #444444;
}
table.Table thead th {
    font-weight: bold;
    text-align: center;
}
p.tablecolhead {
    font-family: "Times New Roman", serif;
    font-weight: bold;
}
figcaption {
    font-size: 1.05em;
    text-align: left;
    max-width: 90%;
	margin-left: auto;
	margin-right: auto;

}


#content {
    max-width: 75%; /* Adjust as needed */
	
    margin: 0 auto; /* Center horizontally */
    padding: 20px; /* Optional padding for spacing */
    display: grid;
    gap: 20px; /* Gap between grid items */
}
.image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Gap between grid items */
}
figure {
	
    text-align: center; /* Center image and caption */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
figure img {
    max-width: 75%; /* Ensure images don't exceed their container */
	width: 70%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
    margin: 0 auto; /* Center images horizontally */
}


@media (max-width: 768px) {
.image-row {
    grid-template-columns: 1fr; /* Single column layout */
}

body {font-size: 90%;
overflow-wrap: break-word;
}

.vline {
	border-right: 0;
	}

figure img {
    width: 90%; /* Take up full width of container */
    height: auto; /* Maintain aspect ratio */
    max-width: 75%; /* Ensure images don't exceed their container */
}
#content {
    max-width: 90%; /* Adjust content width for better mobile layout */
    margin: 0 auto; /* Center content horizontally */
    padding: 10px; /* Adjust padding as needed */
}
table.Table {
    width: 75%; /* Adjust the table width to 80% */
    margin: 0 auto; /* Center the table horizontally */
}
}

