.chips{
}

.chips a:hover{ /*マウスが乗ったら*/
	position: relative;
	text-decoration: none;
}
.chipspop { /*吹き出し本体*/
	position: absolute;
	top:-80px;
	left:50px;
	display: none; /*何も表示しない*/
	padding: 5px; /*内側の余白*/
	width: 150px; /*文字飾り*/
	color: #333; /*文字色*/
	background-color: #CCC;
	text-align: left;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.3em;
	font-size: 100%;
}

a:hover .chipspop {
	display: block;
}
