
/* TOOLTIPS
----------- */
.tooltipContainer {
	position: relative;
}

.formField .tooltipContainer {
	float: left;
	margin-left: 2px;
}

.tooltip {
	position: absolute;
	display: none; /* keeps the popup hidden if no JS available */
}

.formField .tooltip {
	margin: 0 0 -75px -8px;
}

.tooltip .body {
	background: #ffffff;
	border: 3px #d5d5d5 solid;
	font-size: 12px;
	line-height: normal;
	min-width: 120px;
	padding: 5px;
}

.formField .tooltip .body {
	width: 200px;
}

.tooltip .body .title {
	font-weight: bold;
}

.tooltip a {
	font-weight: bold;
}

.tooltip .hook {
	background-repeat: no-repeat;
	height: 15px;
	width: 15px;
}

.tooltip .hook.bottomLeft {
	background-image: url(https://assets.aarp.org/refresh/images/tooltips/hook_bottom_left.gif);
	margin: -3px 0 0 5px;
}

.trigger.help {
	background-image: url(https://assets.aarp.org/refresh/images/icons/help.png);
	background-position: 0 0;
	cursor: pointer;
	display: block;
	height: 16px;
	width: 16px;
}

/* OVERLAYS
----------- */
.ui-widget-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #333333;
	opacity: .50;
	filter:Alpha(Opacity=50);
}

.ui-dialog-titlebar {
	display: none;
}

.dialog {
	border: none;
	display: none;
	min-height: inherit !important;
}

.overlay {
	background: #ffffff;
	border: 3px #d5d5d5 solid;
	padding: 15px;
	text-align: left;
}

.overlay .title {
	color: #4c4c4c;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: left;
}

.overlay .body {
	color: #2b2b2b;
	float: none;
	font-size: 13px;
	margin: 0;
	min-width: 100%;
	padding: 0;
	text-align: left;
}

.overlay .buttons {
	height: 22px;
	margin-top: 30px;
}

