h1 {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 20pt;
  color: #005CAA;
}
h2 {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 15pt;
  color: #005CAA;
}

body {
  background-color: white;
  color: black;
  font-family: "MuseoSans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 12pt;
}

a:active {
  color: #005CAA;
}

a:hover {
  color: B8DAE3;
}

a:link {
  color: #005CAA;
}

a:visited {
  color: #005CAA;
}

input[type=text], select {
  padding: 12px 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 15pt;
  background-color: white;
}

input[type=number], select {
  padding: 12px 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 15pt;
  background-color: white;
}
{
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=submit] {
  background-color: #4BA3C7;
  color: white;
  padding: 12px 20px;
  margin: 1px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15pt;
  font-weight: bold;
}

input[type=submit]:hover {
  background-color: #62BDE3;
  font-weight: bold;
}

table, th, td {
  text-align: left;
  padding-top: 6px;
  padding-bottom: 6px;
}

tr:nth-child(even) {
background-color: #f2f2f2;
}

.hide {
	color: #c0c0c0;
	font-size: 8pt;   
	bottom: 0%;
    position: fixed;
	margin-bottom: 10px;
	}

/*spoiler*/

.spoilerbutton {
    display:block;
    margin: 5px 0;
}
.spoiler {
    overflow:hidden;
    /*background: #f5f5f5;*/
}
.spoiler > div {
    -webkit-transition: all 0.2s ease;
    -moz-transition: margin 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: margin 0.2s ease;
}
.spoilerbutton[value="Näytä"] + .spoiler > div {
    margin-top:-250%;
}
.spoilerbutton[value="Piilota"] + .spoiler > div {
    padding:5px;
}
