.Bold {
	font-weight: bold;
}

.Italic {
	font-style:italic;
}

.Underlined {
	text-decoration:underline;
}

.Centered {
	text-align:center;
}

.Clear {
	clear:both;
}

.ClearLeft {
	clear:left;
}

.ClearRight {
	clear:right;
}

.Left {
	float:left;
}

.Right {
	float:right;
}

.BodyPictureLeft {
	float:left;
	margin-right:15px;
}

.BodyPictureRight {
	float:right;
	margin-left:15px;
}

.TextLeft {
	text-align:left;
}

.TextRight {
	text-align:right;
}

.TextCenter {
	text-align:center;
}

.First {
	margin-top:0;
}

.NoWrap {
	white-space:nowrap;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: -0%;
    left: 138%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}

/*
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 8%;
    left: 104%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}
*/

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.multiselect {
  width: 200px;
}

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
  font-weight: bold;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes {
  display: none;
  border: 1px #dadada solid;
}

#checkboxes label {
  display: block;
}

#checkboxes label:hover {
  background-color: #1e90ff;
}