@charset "utf-8";
/* --------------------------------------------------

	css/layout.css
	for Data Assimilation Research Team Web Site

-------------------------------------------------- */
/* SCALE-LETKF additional cstyles */

.buttonselected{
  border-width: 3px;
  border-style: solid;
/*  border-color: #0404B4; */
  border-color: black; 
}

.buttonnotselected{
  border-width: 1px;
  border-style: solid;
  border-color: black;
}

.helptext{
  display: inline-block; 
  color: blue;
  font-size: 120%;
  text-decoration: underline;
}
.helptext span{
  display : none;
}

.helptext:hover{
  position: relative;
  color: red;
}

.helptext:hover span {
  display: block;
  width: 450px;
  font-size: 70%;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 4px 4px;
  position: absolute;
  z-index: 1;
  bottom: -100%;
  left: 100%;
}


