td {
	white-space: nowrap; /* Prevents line breaks */
	text-align: center;
}
td.a {
	white-space: wrap;
	text-align: center;
}
.arrow {
  color: red;
  display: flex;
  height: 85px;
  border: 3px solid green; 
}
.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
/* Unvisited link */
a:link {
  color: blue;
  text-decoration: underline;
}

/* Visited link */
a:visited {
  color: purple;
}

/* Mouse over link */
a:hover {
  color: hotpink;
  text-decoration: none; /* Removes underline on hover */
}

/* Selected link (during click) */
a:active {
  color: red;
}
body  {
  background-color: #dddddd  !important;
}
p.b {
  font-family: "Times New Roman", Times, serif;
}
li{
	text-align: left;
	}
ul{
	margin-left:40px
	}
input[type="checkbox"]
	{
         width: 30px;
         height: 30px;
    }


