.tooltip a {
    position: relative;
    text-decoration: none;
    text-align: left;
	}

.tooltip a span {
    display: none;
    padding: 5px;
	}

.tooltip a:hover {
     /* ie bug */
    text-indent: 0;
    text-decoration: none;
	}

.tooltip a:hover span {
    display: block;
    position: absolute;
    top: -45px;
    left: 45px;
    border: 1px solid #036;
    background: #39c;
    color: #fff;
    width: 10em;
    font-size: 12px;
    text-decoration: none;
    z-index: 1;
    padding: 6px;
    width: 245px;
	}


