/* style-my-tootltips plugin, tooltip styling
http://manos.malihu.gr/style-my-tooltips-jquery-plugin
 */
#s-m-t-tooltip{
	/* basic */
	max-width:300px;
	z-index:10;
	margin:24px 14px 7px 12px;
	/* style and design */
	border: grey 1px solid;
	padding:8px;
	background:#222; /* fallback if rgba not supported */
	background:rgba(0,0,0,0.8);
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border-radius:7px;
	-moz-box-shadow:0px 0px 2px 2px rgba(0,0,0,0.15),-1px -1px 0px 0px rgb(0,0,0), -1px -1px 2px 0px white,0px 0px 3px 0px rgb(255,255,255) inset;
	-webkit-box-shadow:0px 0px 2px 2px rgba(0,0,0,0.15),-1px -1px 0px 0px rgb(0,0,0), -1px -1px 2px 0px white,0px 0px 3px 0px rgb(255,255,255) inset;
	box-shadow:0px 0px 2px 2px rgba(0,0,0,0.15),-1px -1px 0px 0px rgb(0,0,0),-1px -1px 2px 0px white,0px 0px 3px 0px rgb(255,255,255) inset;
	/* font */
	font-family:Verdana,Geneva,sans-serif;
	font-size:11px;
	line-height:16px;
	color:#fff;
}