#tooltip
{
	font-family:font-family:'NanumGothic', '나눔고딕', sans-serif;
	font-size: 12px;
	text-align: left;
	text-shadow: 0 1px rgba( 0 0,0,0.0 );
	line-height: 17px;
	color: #777777;
	border:1px solid #d8d1aa;
	background-color:#fffadc;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 0 1px 2px rgba( 0,0,0,0.0 );
	-moz-box-shadow: 0 1px 2px rgba( 0,0,0,0.0 );
	box-shadow: 0 1px 2px rgba( 0,0,0,0.0 );
	position: absolute;
	z-index: 100;
	padding: 8px 11px 10px 11px;
}

	#tooltip:after
	{
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top-color: #d8d1aa;
		border-top: 5px solid #d8d1aa;
		content: '';
		position: absolute;
		left: 50%;
		bottom: -5px;
		margin-left: -5px;
	}

		#tooltip.top:after
		{
			border-top-color: transparent;
			border-bottom-color: #d8d1aa;
			border-bottom: 5px solid #d8d1aa;
			top: -20px;
			bottom: auto;
		}

		#tooltip.left:after
		{
			left: 5px;
			margin: 0;
		}

		#tooltip.right:after
		{
			right: 5px;
			left: auto;
			margin: 0;
		}