table.talgo {
	font-family: 'Ubuntu Mono', monospace; 
	padding: 20px;
	margin: 40px auto;
	background: #fff;
	border-collapse: collapse;
	border: 1px solid #666;
}

table.talgo td {
	font-size: 16px;
	padding: 15px;
	margin: 5px;
	border-collapse: collapse;
	border: 1px solid #666;
}

table.talgo tr.title th {
	font-size: 16px;
	padding: 15px;
	margin: 5px;
	border-collapse: collapse;
	border: 1px solid #222;
	width: 750px;
}

table.talgo tr.title {
	font-size: 16px;
	font-weight: bold;
	background: #c63;
	text-align: center;
}


table.talgo tr.title th {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

table.talgo td.input {
	font-size: 16px;
	font-weight: bold;
	background: #333;
	color: #bead8b;
}

table.talgo td.output {
	font-size: 16px;
	font-weight: bold;
	background: #333;
	color: #bead8b;
}

table.talgo td.local {
	font-size: 16px;
	font-weight: bold;
	color: #bead8b;
	background: #333;
}

table.talgo td.descr {
	font-size: 16px;
	font-weight: bold;
	color: #bead8b;
	background: #333;
}

table.talgo td .algo {
	border: 0;
	padding: 0;
	margin: 2px;
	text-align: left;
	background: #363;
	color: #fdf6e3;
}

table.talgo td.algo div.code_geshi {
	margin: 0 auto;
	padding: 0;
	background: #333;
}

table.talgo td.algo div.code_geshi div.algo {
	margin: 0;
	padding: 0;
	background: #333;
	border: 1px solid #000;
}

.algo {
	background: #333;
	color: #fdf6e3;
	padding: 4px;
	margin: 10px 5px 10px 5px;
}

.algo_inst {
	color: #fcc67a; background: #333; font-weight: bold; 
	padding: 2px;
}

.algo_op {
	color: #4585b6; font-weight: bold; 
	padding: 2px;
}

.algo_type {
	color: #2bab06; font-weight: bold; 
	padding: 2px;
}


.python {
	background: #fdf6e3;
	margin: 10px 5px 10px 5px;
}

.code_geshi {
	margin: 10px auto;
	border: 1px solid #000;
}

.term {
	font-family: 'Ubuntu Mono', monospace;
	font-weight: bold; 
	color: #634;
}

.clickable_img {
	border: 1px solid #78a;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext ul {
	margin: 0;
	padding: 0;
}

.tooltip .tooltiptext ul li {
	margin: 2px;
	padding: 2px;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

