/* ttwp style sheet - modify it as you please */ 
BODY      { font-family:sans-serif; }
P        { font-family:sans-serif; }
OL        { font-family:sans-serif; }
UL        { font-family:sans-serif; }
LI       { font-family:sans-serif; }
TD        { font-family:sans-serif; }
H1        { font-family:sans-serif; }
H2        { font-family:sans-serif; }
H3        { font-family:sans-serif; }
H4        { font-family:sans-serif; }
H5        { font-family:sans-serif; }
H6        { font-family:sans-serif; }
A:link    { color:#22437f; text-decoration: none;}
A:visited { color:#22437f; text-decoration: none;}
A:hover   { color:red; text-decoration: none;}
#address {
	text-align: center;
	font-family : serif;
	font-style : italic;
	font-size : small;
	}
#navigation { 
    background-color: #E6E6E6; 
    font-family : monospace;
    font-size : small;
    text-align: center; 
    border: solid 1px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
}
#content {
    background-color: #FFFFFF;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}
#content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9mm;
    margin-bottom: 9mm;
    max-width: 100%;
    height: auto;
}
/* Adjust spacing between specific images */
#content img[src='image1.png'] {
    margin-bottom: 6.5mm;
}
#content img[src='image2.png'] {
    margin-top: 6.5mm;
    margin-bottom: 12.5mm;
}
#content img[src='image3.png'] {
    margin-top: 12.5mm;
}
/* Fixed floating download button */
.download-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #22437f;
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: inline-block;
    line-height: 1.4;
}
.download-button:hover {
    background-color: #1a3460;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    color: white !important;
}
.download-button::before {
    content: "⬇ ";
    font-size: 18px;
}
