
/***************************** TOOLTIP BUTTON *****************************/

.tooltipButton  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border: 2px outset #889eca;
	color: #FFFFFF;
	text-decoration: none;
	letter-spacing: .1em;
	background: #6680b3;
	font-weight: bold;
	padding: 2px 3px 1px 5px;
	margin: 0px;
	cursor: hand; 
	cursor: pointer;
}


/**
.tooltipButton {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFF;
	background-color: #6680b3;
	text-align:center;
	font-weight: bold;
	letter-spacing: .1em;
	margin: 0px;
	padding: 3px 4px 2px 5px;
	cursor: hand; 
	cursor: pointer;
}**/

.tooltipButton:hover {
	background: #39F;
}






/***************************** TOOLTIP POP-UP BOX *****************************/

.jquery-gdakram-tooltip { /**** Box Attributes ****/
	width: 420px;/**** must be 60px more than width below ****/
	position: absolute;
	z-index: 10000;
	top: 0px;
	left: 0px;
	display: none;
}

.jquery-gdakram-tooltip div.content {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: white;
	text-align: left;
	padding: 10px 10px 10px 20px;
	margin: 0px;
/**** Above Text Attributes / More Below Box Attributes ****/
	
	background-color: #000;
	min-height: 20px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border: thick solid #7a7a7a;
	width: 360px;/**** must be 60px less than width about ****/
	min-height: 50px;
	float: left;
}

.jquery-gdakram-tooltip div.content h1 { /**** Head Title ****/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color: white;
	font-weight: bold;
	border-bottom: 1px solid #F1F1F1;
	padding-bottom: 5px;

}

/************ Arrow Attributes ****/

.jquery-gdakram-tooltip div.up_arrow {
  background : url('images/up_arrow.png') 200px 0px no-repeat;
  width: 100%;
  height: 20px;
}

.jquery-gdakram-tooltip div.down_arrow {
  background : url('images/down_arrow.png') 200px 0px no-repeat;
  width: 100%;
  height: 20px;
}

.jquery-gdakram-tooltip div.left_arrow {
  height: 100%;
}

.jquery-gdakram-tooltip div.left_arrow {
  float:left;
  background : url('images/left_arrow.png') 0px 0px no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  top: 40px;
  left: 0px;
}


