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

#aToolTip .aToolTipContent {
	position:relative;
	margin:0;
	padding:0;
}
/* 
	END: Required Styles
*/
/**
	Default Theme
*/
/* separating line */
div .aToolTipSpacer {
	
	height:2px; 
	width:100%; 
	background-color:#FFCB05; 
	margin-top:4px;
	margin-bottom:4px;
}

.mobileTheme {
	border:1px solid #444;
	background:#000000;
	color:#FFF;
	margin:0;
	padding:6px 12px;	
	width: 80%;
	margin-left: 4.54545454545%;
	margin-right: 4.54545454545%;
	-moz-border-radius: 12px 0px 12px 0px; /* 12px 12px 0px 12px */
	-webkit-border-radius: 12px 0px 12px 0px; /* 12px 12px 12px 0 */
	-khtml-border-radius: 12px 0px 12px 0px;
	border-radius: 12px 0px 12px 0px;
	
	-moz-box-shadow: 2px 2px 10px #222; /* for Firefox 3.5+ */
	-webkit-box-shadow: 2px 2px 10px #222; /* for Safari and Chrome */
	box-shadow: 2px 2px 10px #222; /* for Safari and Chrome */
}
@media screen and (min-width: 800px){
	.mobileTheme{
		width:55%;
	}
}
.mobileTheme #aToolTipCloseBtn {
	display:block;
	height:18px;
	width:18px;
	background:url(../Images/closeBtn.png) no-repeat;
	text-indent:-9999px;
	outline:none;
	position:absolute;
	top:-20px;
	left:-30px;
	margin:2px;
	padding:4px;
}

.defaultTheme {
	border:1px solid #444;
	background:#0C3E57;
	color:#fff;
	margin:0;
	padding:6px 12px;	
	max-width: 350px;
	
	-moz-border-radius: 12px 0px 12px 0px; /* 12px 12px 0px 12px */
	-webkit-border-radius: 12px 0px 12px 0px; /* 12px 12px 12px 0 */
	-khtml-border-radius: 12px 0px 12px 0px;
	border-radius: 12px 0px 12px 0px;
	
	-moz-box-shadow: 2px 2px 10px #222; /* for Firefox 3.5+ */
	-webkit-box-shadow: 2px 2px 10px #222; /* for Safari and Chrome */
	box-shadow: 2px 2px 10px #222; /* 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;
}