@charset "utf-8";
/* CSS Document */


span.tool {
	position: relative;   /* this is key */
	cursor: pointer;
	/*font-size:12px;*/
}
 
span.tool span.tip {
  display: none;
 		        /* so is this */
}

/* tooltip will display on :hover event */
 
span.tool:hover span.tip {
  display: block;
  z-index: 100;
  position: absolute;
  top: 0.5em;
  left: 25px;
  width: 390px;
  padding: 3px 7px 4px 6px;
  border: 6px solid #79aef2;
  /*background-color: #f7f7ee;*/
  background-color: #fff;
  font: normal 0.9em/1.2em arial, helvetica, sans-serif;
  text-align: left;
  color: #000;
}

#content span.tool::after {
  padding-left: 2px;            /* eye candy */
  content: url(bubble.gif);
}

ul.a{
	text-indent: 5px;
	line-height: 1px;
	width: 450px;
}

ul.indent{
	text-indent: 50px;
	line-height: 1px;
}
li.indent1{
	text-indent: 15px;
	line-height: 1px;
	list-style-type: disc;
}

li.indent2{
	text-indent: 17px;
	line-height: 1px;
}


img.floatRight { 
    float: right; 
    margin: 4px; 
}
img.floatLeft { 
    float: left; 
    margin: 4px; 
}


