/**************************************
 *
 * THE SPEECH BUBBLE
 * 
 *************************************/
p.triangle-isosceles {
	color: #AA3347;
  font-size: 13px;
  margin-top: 10px;
  
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.triangle-isosceles {
	position: relative;
  padding: 5px 10px;
  color: #000;
  background: #EE9494;
  border-radius: 5px;
}

/* Variant : for top positioned triangle
------------------------------------------ */

.triangle-isosceles.top, 
.triangle-isosceles.left {
  background-color: #EE9494;
}

/* THE TRIANGLE
------------------------------------------------------------------- */

/* creates triangle */
.triangle-isosceles:after {
  content: "";
  position: absolute;
  bottom: -15px; /* value = - border-top-width - border-bottom-width */
  left: 50px; /* controls horizontal position */
  border-width: 15px 15px 0; /* vary these values to change the angle of the vertex */
  border-style: solid;
  border-color: #EE9494 transparent;
  /* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}

/* Variant : top
------------------------------------------ */

.triangle-isosceles.top:after {
  top: -9px; /* value = - border-top-width - border-bottom-width */
  left: 10px; /* controls horizontal position */
  bottom: auto;
  border-width: 0 8px 9px; /* vary these values to change the angle of the vertex */
  border-color: #EE9494 transparent;
}

.triangle-isosceles.top.top-left:after {
  left: 10px;
  right: auto;
}

/* Variant : left
------------------------------------------ */
.triangle-isosceles.left:after {
  top: 11px; /* controls vertical position */
  left: -10px; /* value = - border-left-width - border-right-width */
  bottom: auto;
  border-width: 8px 10px 8px 0;
  border-color: transparent #EE9494;
}
