html, body {
    margin: 0px;
	padding: 0px;
	width: 100%;
	font-size: 18px;
	font-family: arial;
	color: #666666;
	/*background-color: #f1f1f1;*/
	background-color: #FFFFFF;
	/*line-height: 100%;*/
}

h1 {
	font-size: 24px;
	/*color: #000000;*/
	color: #800000;
	font-weight: 800;
}

.leftTopbarDiv > h1 {
	color: #f1f1f1
}

h2 {
	font-size: 20px;
	color: #000000;
	font-weight: 700;
}

h3 {
	font-size: 18px;
	color: #000000;
}

a:link {
	color: #4d0000;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	color: #4d0000;
	text-decoration: none;
}

a:active {
	color: #c42d2d;
	text-decoration: none;
}

a:hover {
	color: #c42d2d;
	text-decoration: none;
}

div	{
	border: 0px solid #73AD21; 
	margin: 0px;
	padding: 0px;
}

.leftTopbarDiv {
    display: inline-block;
    width: 74%;
    height: 100px;
	background-color: black;
	color: #f1f1f1;
	text-indent: 30px;
	float: left;
}

.leftTopbarDiv > h1 {
	font-size: 250%;	/*Pääotsikon fonttikoko*/
}

.centerTopbarDiv {
    display: inline-block;
    width: 1%;
    height: 100px;
	background-color: black;
	float: left
	
}

.rightTopbarDiv {
    display: inline-block;
    width: 25%;
    height: 100px;
	text-align: right;
	background-color: black;
	float: left;
}

.rightTopbarDiv > img {
	height:95px;
	padding-top:5px;
	padding-right:20px;
}

.breadcrumbDiv {
    width: 100%;
    height: 40px;
	text-align: left;
	background-color: black;
	color: #c42d2d;
	text-indent: 0%;
	float: left;
}

.menuDiv {
    width: 100%;
    height: 40px;
	float: right;
	text-align: left;
	font-size: 18px;	/*Menu-itemien fonttikoko*/
}

.leftContentDiv {
	display: inline-block;
    width: 5%;
    height: 400px;
	float: left;
}

.contentDiv {
    display: inline-block;
    width: 74%;
    height: 400px;
	text-align: justify;
	float: left;
}

.rightContentDiv {
    display: inline-block;
    width: 20%;
    height: 400px;
	float: left;
}

/* HORIZONTAL MENU - 3 levels - nav-elementin määritykset -  Begin */
nav {
    background-color: #f1f1f1; /*Menun päätason taustaväri */
    border: 1px solid #f1f1f1;
    color: #fff;
    display: block;
    margin: 0;
    overflow: hidden;
}

nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
	z-index: 100; //Estää menuvalikoiden avautumisen muiden divien alle.
}

nav ul li {
    margin: 0;
    display: inline-block;
    list-style-type: none;
    transition: all 0.2s;
	color: #333333; /*Menun 3-tason fontin väri*/
	font-weight: 800;
	
}

nav > ul > li > a {
    color: #aaa; /*vaalean harmaa*/
    display: block;
    line-height: 2em;
    padding: 0.0em 2em;
    text-decoration: none;
	
	
}

nav li > ul{
    display : none;
    margin-top:-1px;
	margin-left:0px;
    background-color: #bbb; /* 2-tason alavalikon taustaväri */
}

nav li > ul li{
    display: block;
}

nav  li > ul li a {
    color: #111;
    display: block;
    line-height: 2em;
    padding: 0.5em 2em;
    text-decoration: none;
	background-color: #E5E5E5; 	/*??? Menun 2-tason taustaväri */
	text-align: left;			/* ???Menun 2-3 -tasojen tekstien tasaus */
}

nav li:hover {
    background-color: white; /* Paatason valikokohdan/linkin taustaväri */
}


nav ul li:hover > a{
    background-color: white; /* ?????Alatason (2-3) valikkokohtien/linkkien taustaväri */
}


nav li:hover > ul{
    position:absolute;
    display : block;
}

nav li > ul > li ul  {
    display: none;
    background-color: #E5E5E5; /*Menun 3-tason taustaväri */
}
nav li > ul > li:hover > ul  {
    position:absolute;
    display : block;
    margin-left:95%;
    margin-top:-3em;
	width:300px;
}
/*Horizontal menu - 3 levels - End



/* Style the BREADCRUMBS list - BEGIN*/
ul.breadcrumb {
    list-style: none;
    background-color: black;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
    font-size: 18px;
	font-weight: bold;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: #c42d2d;
    content: ">>";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #c42d2d;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #c42d2d;
}
/* Style the BREADCRUMBS list - END*/


/*KUVAKARUSELLIN CSS ALLA - BEGIN*/
/* {box-sizing:border-box}*/ 

/* Slideshow container */
.slideshow-container {
	max-width: 40%;		/*Slide-kuvien leveys */
	position: relative;	
	margin: auto;
	padding-top: 60px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* OMA LISÄYS --> Tehty ao. div, joka sisältää <> buttonit */
.slideButtons {
	opacity: 0.5;
	position: relative;
	/*margin-top: -70px;*/
	cursor: pointer;
	color: #333333;	/* Next & previous buttons ( < > ) color */
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	text-align: center;
	
}

/* Next & previous buttons 
.prev, .next {
	cursor: pointer;
	position: relative;
	top: -40px;
	width: auto;
	margin-top: 0px;
	padding: 16px;
	color: #333333;	/* Next & previous buttons ( < > ) color *'/
	font-weight: bold;
	font-size: 22px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}*/

.prev {
	
}

/* Position the "next button" to the right */
.next {
  
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #333333;
}

/* Caption text */
.text {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 0px;
  /*position: absolute;*/
  bottom: 5px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
  padding: 0px;
  top: 0px;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 40px 2px;
  background-color: #c42d2d;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: red;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
/*KUVAKARUSELLIN CSS YLLÄ - END*/