
/* wrapper for freq. occuring alleles, ref. allele set and 
MHC allele sequence */
#link-txtbox img {
	border:0;
	vertical-align:text-bottom;
}

/* frequently occurring alleles */
.freq {
	font-size:95%;
	font-style:italic;
}
#freq, #id_refset {
	vertical-align:text-bottom;
}
.freq_help {
	text-decoration:none;
}

/* table for selected alleles and lengths */
#tabName th, #tabName td {
	border:0;
	padding:0;
	margin:0;
}
table#tabName th {
	background:transparent;
	color:#222;
	font-size:90%;
	font-weight:normal;
	text-decoration:underline;
}
table#tabName td {
	padding:1px;
	text-align:center;
}

/* textbox for MHC protein sequence for NetMHCpan method */
#txtbox { 
	display:none; 
}


/* result table */
#result_table tr th {
	text-align:center;
}
#result_table tr td {
	border:1px solid #666;
}

.err_msg1 {
	text-align: right;
}

.err_msg2 {
	float: right;
	display: inline-block; 
    width: 55%;
    vertical-align: middle; 
	line-height: 21px;
	text-align: right; 
	overflow: hidden;
	white-space: nowrap;
}

/* ---------- INFORMATION BOX FROM THE RESULT TABLE ---------- */
.info-header {
  position: relative;
  border-bottom: 1px dotted black;
}

/* This creates little arrow on the bottom of display text */
.info-header:before {
  visibility: hidden;
  content: "";
  position: absolute;
  top: -42%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: rgba(24, 23, 23, 0.5) transparent transparent transparent;
  opacity: 0;
  transition: opacity 1s;
  display: block;
}

/* To give fade in effect to the arrow */
.info-header:hover::before {
	visibility: visible;
	opacity: 1;
}

/* Actual tooltip and description text */
.info-header .infoText {
  visibility: hidden;
  width: 120px;
  background-color:rgba(24, 23, 23, 0.5); /* originally was #666 */
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  margin-bottom: 8px;
  
  opacity: 0;
  transition: opacity 1s;

  font-family: "Helvetica Neue", Helvetica, Arial, Helvetica, sans-serif;
}

/* Fad in effect of the description text */
.info-header:hover .infoText{
  visibility: visible;
  opacity: 1;
}
