/* ===== RESET / BASE ===== */

* {
	box-sizing: border-box;
}

html {
	background-color: #000000;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background-color: #000000;
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
}

body,
td,
th {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Arial, Helvetica, sans-serif;
}

/* ===== TABLES ===== */

table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}

/* ===== IMAGES ===== */

img {
	display: block;
	margin: 20px auto;
	max-width: 100%;
	height: auto;
}

a img {
	border: 0;
}

/* ===== LINKS ===== */

a:link,
a:visited,
a:active {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ===== PRE ===== */

pre {
	padding: 2px 0;
	border-top: 1px dotted #35302a;
	border-bottom: 1px dotted #35302a;
}

/* ===== LISTS ===== */

ul {
	list-style-type: disc;
	padding-left: 40px;
	margin: 0;
}

/* ===== LEGACY STYLE CLASSES ===== */

.style51 {
	font-size: 12px;
}

.style104 {
	font-size: 36px;
	text-align: center;
}

.style37 {
	color: #FF0000;
	font-size: 12px;
}

.style105 {
	color: #CCCCCC;
	font-weight: bold;
}

.style46 {
	color: #FF0000;
	font-size: 12px;
	font-weight: bold;
}

.style49 {
	font-size: 9px;
}

.style1041 {
	left: auto;
}

.style106 {
	font-size: 24px;
}

/* ===== PAGE LAYOUT ===== */

#page {
	margin: 17px auto 10px;
	padding: 0;
	width: 1020px;
}

.content-box {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding-left: 14px;
	padding-right: 14px;
	box-sizing: border-box;
}

/* ===== HEADER / TITLE BOX ===== */

.hr {
	background-color: #22201d;
	border: 1px solid #363430;
	height: 110px;
	width: 1020px;
	margin: 1px 0 10px 0;
}

.title-box {
	background-color: #222222;
	border: 1px solid #555555;
	border-radius: 3px;
	padding: 18px 25px;
	margin: 10px auto;
	width: 100%;
	max-width: 900px;
	text-align: center;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
}

.main-title {
	font-size: 36px;
	font-weight: bold;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}

.sub-title {
	font-size: 16px;
	color: #cccccc;
	margin-top: 6px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	letter-spacing: 2px;
}

/* ===== IMAGE COMPARISON TOOL (CSS1 VERSION) ===== */

.container {
	position: relative;
	display: block;
	margin: 20px auto;
	cursor: ew-resize;
	overflow: hidden;
	max-width: 100%;
}

.container img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	height: auto;
}

.top {
	clip-path: inset(0 50% 0 0);
	transition: clip-path 0.05s ease-out;
}

/* ===== IMAGE COMPARISON TOOL (CSS2 VERSION) ===== */

.img-comp-container {
	position: relative;
	height: 600px;
}

.img-comp-img {
	position: absolute;
	width: auto;
	height: auto;
	overflow: hidden;
}

.img-comp-img img {
	display: block;
	vertical-align: middle;
}

.img-comp-slider {
	position: absolute;
	z-index: 9;
	cursor: ew-resize;
	width: 40px;
	height: 40px;
	background-color: #22201d;
	opacity: 0.7;
	border-radius: 50%;
}

/* ===== NAV BUTTONS ===== */

.nav-buttons-container {
	display: flex;
	margin-top: 24px;
	position: relative;
}

.nav-buttons-container .icon {
	width: 20px;
	height: 20px;
}

.nav-buttons-container .previous-button,
.nav-buttons-container .next-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: "Roboto", sans-serif;
	background: #023047;
	color: #fff;
	text-decoration: none;
	padding: 8px 24px;
	font-size: 16px;
	min-width: 100px;
}

.nav-buttons-container .next-button {
	position: absolute;
	right: 0;
}

.nav-buttons-container .previous-button:hover .icon {
	animation: nav-prev-anim 300ms alternate infinite;
}

.nav-buttons-container .next-button:hover .icon {
	animation: nav-next-anim 300ms alternate infinite;
}

/* ===== ANIMATIONS ===== */

@keyframes nav-prev-anim {
	to {
		transform: translateX(4px);
	}
}

@keyframes nav-next-anim {
	to {
		transform: translateX(-4px);
	}
}