/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

/* ul {
	list-style: circle;
} */
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of reset */

body {
	font: normal normal 400;
	font-size: 85%;
	line-height: 1.5em;
	font-family: Verdana, sans-serif;
	margin-top: 1em;
	margin-left: 1em;
}

p {
	position: relative;
	left: 5%;
	margin-bottom: 0.7em;
	margin-right: 0;
	text-align: justify;
	width: 85%;
}

code {
	font: normal normal;
	font-size: 85%;
	font-family: Menlo, monospace, sans-serif;
	color: black;
	background-color: #f0f8ff; /* Added a light background for code snippets */
	padding: 0.2em 0.4em;
	border-radius: 4px;
}

p code {
	position: absolute;
	left: -14%;
}

ul { 
	position: relative;
	left: 8%;
	width: 85%;
	margin-bottom: 0em;
	margin-top: -0.5em;
}

ol {
    list-style: decimal;
	left: 8%;
	width: 85%;
	margin-bottom: 0em;
	margin-top: -0.5em;
	padding-left: 10em;
}

li {
    margin-bottom: 0.5em;
    text-indent: 0;
	padding-right: 2em; /* Adjusts the length of the line after the bullet */
    width: calc(85% - 2em); /* Shortens the width of the line after the bullet */
}

ol li {
	position: relative;
	left: 0;
	width: 100%;
	margin-top: 0.25em;
}

li ul {
	position: relative;
	left: 0;
	width: 100%;
	margin-top: 0.25em;
}

h1, h2, h3, h4 {
	font-weight: 400;
	font-family: Cousine, Verdana, sans-serif;
	width: 90%;
	position: relative;
	left: 5%;
}

h1 {
	text-align: left;
	font-size: 2.6em;
	line-height: 1em;
	margin-top: 1.0em;
	color: #003366; /* Changed to blue */
	letter-spacing: 0.05em; /* Added letter spacing for a sleek look */
	border-bottom: 2px solid #003366; /* Subtle border for emphasis */
	padding-bottom: 0.2em;
}

h1+p { 
	font-style: italic;
	font-size: 110%;
}

h2 {
	font-size: 180%;
	color: #0055a5; /* Changed to blue */
	margin-top: 0.8em;
	margin-bottom: 0.5em;
	top: 0.0em;
	text-align: left;
	width: 22%; /* Slightly wider */
	border-left: 5px solid #0055a5; /* Added a vertical border for style */
	padding-left: 0.5em;
}

h3 {
	font-size: 140%;
	line-height: 2em;
	top: 0.0em;
	margin-top: 0.5em;
	text-align: left;
	color: #333; /* Neutral color to balance */
}

h4 {
	font-size: 1em;
	text-align: right;
	margin-bottom: -1.5em;
	color: #006699; /* Slight blue accent */
}

a {
	color: inherit;
}

a:hover {
	color: #3366cc; /* Changed hover color to blue */
}

#webaddress {
	margin-top: 0.8em;
	position: relative;
	left: 5%;
	color: #006699; /* Blue for web address */
	font-family: Menlo, monospace, sans-serif;
	font-size: 80%;
}

#webaddress a {
	text-decoration: none;
}

em {
	font-weight: bold;
	font-style: italic;
	color: #0055a5; /* Blue for emphasis */
}

strong {
	font-weight: bold;
}

#address {
	display: none;
}

.subtle-icon {
    font-size: 0.6em;       /* Reduced size */
    color: inherit;         /* Inherits the color of surrounding text */
    margin-left: 0.15em;    /* Small margin for spacing */
    vertical-align: middle; /* Aligns icon with the text */
}



/* Media Query for mobile responsiveness */
@media only screen and (max-width: 480px) {
	body {
		font-size: 90%;
		margin: 0;
        padding: 0;
	}

	h1, h2, h3, h4 {
		font-size: 90%;
		width: 100%;
		left: 0;
		text-align: center;
	}
}

@media print {
    h1, h2, h3, h4 {
        white-space: nowrap; /* Prevents line breaks */
        width: 90%; /* Ensures titles take the full width of the page */
        overflow: visible; /* Prevents content from being cut off */
    }

    ol {
        margin-left: 5%;
		margin-right: 5%;
        padding-left: 2em;
		padding-right: 2em;
		width: auto; 
    }

	li {
		padding-right: 7em;
	}

	ol li {
		margin-left: 0;
		padding-left: 0em;
		text-indent: 0.0em;
	}	
}

