/*ATVAn muotoilut*/

/**********************************************************************/
/* SIVUPOHJA                                                          */
/**********************************************************************/
html, body{
	min-width: 200px;
	margin: 0px;
}
body{
	background-color: #3c5ca5;
	font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}
#sivu{
	background-color: #d7dff1;
	width: 500px;
	max-width: 100%;
	text-align: center;
	margin: auto;
}
div.otsikkoteksti{
	font-size: 52px;
    font-weight: bold;
    display: inline-block;
}
img.otsikkokuva{
	height: 96px;
	margin-top: 30px;
}
#sisalto{
	font-size: 18px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 15px;
    padding-bottom: 15px;
}
#alapalkki{
	text-align: center;
	font-weight: bold;
	padding: 12px;
}
@media (max-width:600px){
	div.otsikkoteksti{
		font-size: 9vw;
		margin-left: 2vw;
	}
	img.otsikkokuva{
		width: 50%;
		height: auto;
		margin-right: 3vw;
		margin-top: 2vw;
	}
	#sivu{
		background-color: #d7dff1;
		width: 100%;
		position: relative;
		top: 0px;
		left: 0px;
		margin: 0px;
		height: initial;
		padding-bottom: 1px;
	}
}
/**********************************************************************/
/* LINKIT                                                             */
/**********************************************************************/
/*Yleislinkit*/
a{
	color: #3c5ca5;
    font-weight: bold;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
#alapalkki a{
    text-decoration: none;
    color: #000000;
}
a.kevytlinkki{
	color: #000000;
    font-size: 12px;
}
/**********************************************************************/
/* PAINIKKEET                                                         */
/**********************************************************************/
.painike{
	display: inline-block;
    background-color: #3c5ca5;
    color: #ffffff;
    font-family: 'Segoe UI Symbol','Segoe UI',Arial,Helvetica,sans-serif;
    font-size: 18px;
    text-decoration: none;
    font-weight: normal;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
    height: 30px;
    width: 200px;
    line-height: 30px;
    white-space: nowrap;
    border: 0 solid #ffffff;
    box-sizing: border-box;
    margin-bottom: 16px;
    text-align: center;
    margin: 6px;
    cursor: pointer;
}
.painike:hover,
.painike:active{
	text-decoration: none;
	font-style: normal;
	background-color: #233561;
}
.painike.ei-kaytossa,
.painike.disabled{
	background-color: #505050;
    color: #c2c2c2;
	pointer-events: none;
    cursor: default;
}
/**********************************************************************/
/* LOMAKEKENTÄT                                                       */
/**********************************************************************/
.lomakevirheilmoitus{
	color: #ff0000;
    font-weight: bold;
}
form input{
	width: 100%;
    box-sizing: border-box;
    border: 2px solid #3c5ca5;
	font-size: 18px;
    padding-left: 5px;
}
/**********************************************************************/
/* TAULUKOT                                                           */
/**********************************************************************/
table{
	text-align: left;
	width: 100%;
}
/*Lomakkeiden asettelutaulukko (esim. arkistoon kirjautuminen)*/
table.lomaketaulukko{
	padding-top: 15px;
}
td.lomaketaulukkonimike{
	text-align: right;
	font-weight: bold;
	width: 10px; /*HUOM: minimikoko, venyy sopivan kokoiseksi automaattisesti*/
	padding-right: 5px;
	padding-bottom: 15px;
}
td.lomaketaulukkokentta{
	text-align: left;
	padding-bottom: 10px;
}
@media (max-width:600px){
	table.lomaketaulukko td{
		display: inline-block;
		width: 100%;
		text-align: center;
		padding-bottom: 5px;
	}
}