/* 
	Required Styles
*/
#aToolTip {
	position: absolute;
	display: none;
	z-index: 50000;
}

	#aToolTip .aToolTipContent {
		position:relative;
		margin:0;
		padding:0;
	}
/* 
	END: Required Styles
*/
/**
	Default Theme
*/
.defaultTheme {
	font-family:"Arial",  sans-serif;
	border:1px solid #999;
	background:#eee;
	opacity:0.6;
	color:#222;
	margin:0;
	font-size:11px;
	padding:2px 8px;	
	
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	-khtml-border-radius: 7px 7px 7px 7px;
	border-radius: 7px 7px 7px 7px;
	
	-moz-box-shadow: 1px 1px 1px #bcbcbc; /* for Firefox 3.5+ */
	-webkit-box-shadow: 1px 1px 1px #bcbcbc; /* for Safari and Chrome */
	box-shadow: 1px 1px 1px #bcbcbc; /* for Safari and Chrome */
}
	
	.defaultTheme #aToolTipCloseBtn {
		display:block;
		height:18px;
		width:18px;
		background:url(../images/closeBtn.png) no-repeat;
		text-indent:-9999px;
		outline:none;
		position:absolute;
		top:-20px;
		right:-30px;
		margin:2px;
		padding:4px;
	}