html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, table, th, td {
    padding: 0;
    margin: 0;
}

body {
    font-family: Tahoma, Verdana, sans-serif;
    color: #2f2f2f;
    background: #000070;
    font-size: 0.9em; /* Noin 11 pt */
}

/* Otsikot */
h1 { font-size: 1.5em; font-weight: normal; color: #2f2f2f; margin: 5px 0 4px 0; }
h2 { font-size: 1.4em; font-weight: normal; color: #2f2f2f; margin: 5px 0 4px 0; }
h3 { font-size: 1.3em; font-weight: normal; color: #2f2f2f; margin: 5px 0 4px 0; }
h4 { font-size: 1.15em; font-weight: normal; color: #2f2f2f; margin: 5px 0 4px 0; }
h5 { font-size: 0.95em; font-weight: bold; color: #2f2f2f; margin: 5px 0 3px 0; }
h6 { font-size: 0.75em; font-weight: bold; color: #2f2f2f; margin: 5px 0 3px 0; }

/* tekstin välistys */
p {
    margin-top: 0;
    margin-bottom: 1.17em;
    font-size: 0.95em; /* Teksti noin 11 pt */
    line-height: 1.5em;
}

p.bullet {
	margin-top: 0;
	margin-bottom: 0px;
}

#content ul {
	margin-left: 15px;
}

#content ul li {
	padding: 2px 0 1px 0;
}


a:link { text-decoration: none; color: #0270bd; }
a:visited { text-decoration: none; color: #667e94; }
a:active { text-decoration: none; }
a:hover { text-decoration: underline; color: #0000ff; }

p.ingressi {
    font-size: 116%;
    line-height: 1.4em;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #2f2f2f;
}

p.linkvasen {
	font-size: 80%;
}

/* Kuvien responsiivisuus */
img {
    max-width: 100%; /* Kuva skaalautuu näytön leveyteen */
    height: auto; /* Säilyttää kuvasuhteen */
    display: block; /* Poistaa alareunan välin */
    margin-bottom: 20px;
}

hr {
  margin: 2em 0;
  border: none;
  border-bottom: dashed 1px #cccccc;
}

hr.navi {
	margin: 1.35em 0;
	border-bottom: 1px solid #cccccc;
}

.kuva_right { 
	float: right; 
	margin: 20px 20px 0px 10px; 
}

/* Layout */

#wrapper {
    margin: 20px auto;
    max-width: 1000px; /* Maksimileveys 1000 px */
    width: 100%;
    background: #ffffff;
    border: 4px solid #434343;
    padding: 10px;
    box-sizing: border-box; 
}

#header {
   /* text-align: center; */
    padding: 10px 0;
}

.logo { padding: 40px 0 0 20px; }

/* Navigaatiot */
/* Päänavigaatio */

#navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    border-top: 1px #2f2f2f solid;
	border-bottom: 1px #2f2f2f solid;
}

#navigation ul li {
    margin: 6px 0px;
}

#navigation ul li a {
    padding: 6px 15px;
    background-color: transparent;
    color: #2f2f2f;
    text-decoration: none;
    border-right: 1px solid #cccccc;
    font-weight: bold;
}

#navigation ul li a:hover {
    color: #000070;
    text-decoration: underline;
}

#navigation ul li a.location {
    background: #2f2f2f;
    color: #ffffff;
}

#content_wrapper {
    padding: 20px;
}

#content {
    width: 100%;
}

#footer {
    text-align: left;
    padding: 15px 0 0 20px;
    background: #fffefe;
    border-top: 1px solid #2f2f2f;
    font-size: 75%;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    #navigation ul {
        flex-direction: column;
    }

    #navigation ul li a {
        border-right: none;
        border-bottom: 0px solid #cccccc;
    }

    #content_wrapper {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #wrapper {
        margin: 10px auto;
        padding: 5px;
    }

    #header {
        padding: 5px 0;
    }

    #navigation ul li a {
        padding: 5px 10px;
    }

    #content_wrapper {
        padding: 5px;
    }
    
    img.kuva_right {
        float: none;
        margin: 20px auto;
        display: block;
    }
    
    hr.navi {
	margin: 1em 0;
	border-bottom: 1px solid #cccccc;
	}
}