body {
	background-image: url(/bilder/background.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: Consolas;
	font-size: 18px;
	padding-top: 80px;
	padding-left: 80px;
}
table {
	border-top: 0px dotted red;
	border-right: 0px dotted red;
	border-bottom: 0px dotted red;
	border-left: 2px dotted red;
}

td {
	border-top: 0px dotted red;
	border-right: 2px dotted red;
	border-bottom: 0px dotted red;
}

table.nobo {
	border-top: 0px dotted red;
	border-right: 0px dotted red;
	border-bottom: 0px dotted red;
	border-left: 0px dotted red;
}

td.nobo {
	border-top: 0px dotted red;
	border-right: 0px dotted red;
	border-bottom: 0px dotted red;
}

a {
	position: relative;
    text-decoration: none;
}

a:link{
	color:FF0000;
}

a:visited{
	color:FF0000;
}

a:hover{
	color:FF0000;
}

a:active{
	color:FF0000;
}

a[data-tooltip]:before {
  position: absolute;
  left: 0;
  top: -40px;
  background-color: #ff0000;
  color: #ffffff;
  width: 650px;
  line-height: 30px;
  border-radius: 5px;
  padding: 0 15px;
  content: attr(data-tooltip);

  display: none;
}

a[data-tooltip]:after {
  position: absolute;
  left: 15px;
  top: -10px;
  border-top: 7px solid #ff0000;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: none;
}

a[data-tooltip]:hover:after, a[data-tooltip]:hover:before {
  display: block;
}


