/****************** CSS **********************/

/*Candles*/
.top1 {
	padding-top: 0px;
}
.top2 {
	padding-top: 20px;
}
.top3 {
	padding-top: 40px;
}
.candle-box {
	width: 215px; 
	min-height: 250px; 
	float:left; 
	margin: 15px;
	z-index: 10;
}
.candle {
	overflow: hidden;
	height: 150px;
	text-align: center;
}
.candle > img {
	height: 200px;
	width: 125px;
}
.candle-shelf {
	height: 10px;
	width: 100%;
	display; block;
	background-color: #da8c0c;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px;
  padding:10px;
  border-radius:2px;
  box-shadow: 1px 1px 3px #000;
  background:#6e1e14;
  color: #fff;
  text-align:left;
  position: absolute;
  z-index: 1;
}

.tooltip .tooltiptext {
  width: 220px;
  top: 100%;
  left: 50%;
  margin-left: -110px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip .tooltiptext {
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}
/*End Candles*/
