/* qTip2 v2.1.1 None | qtip2.com | Licensed MIT, GPL | Mon Sep 02 2013 09:38:27 */
.qtip {
	max-width: none;
	font-size: 12px;
}

.qtip-default {
	border-width: 0px;
	border-style: solid;
	border-color:#ffffff;
	border-radius: 4px;
	background-color:#ffffff;
	color:#000000;
	
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.35);
	-moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.35);
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.35);
}

.qtip-content {
	padding: 0;
	overflow-x: auto;
	overflow-y: auto;
}

.qtip-default .qtip-body {
	position: relative;
	padding: 4px 8px;
	overflow: hidden;

	text-align: left;
	word-wrap: break-word;
}

.qtip-default .qtip-footer {
	padding: 4px;
	zoom: 1;
	background-color: #e6e6e6;
	border-top-width: 1px;
	border-top-color: #a7a7a7;
	border-top-style: solid;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	overflow: auto;
}

.qtip-fullheight {
	bottom: 0;
}

.qtip-content td {
	white-space: nowrap;
}

.qtip-content td.note-body {
	white-space: normal;
}

/* Selector not strong enough to override default - unused*/
.qtip-default.qtip-pinned .qtip-body {
	overflow:auto;
	height:128px;
}

/*********************************
* qTip Extras
**********************************/

#qtip-mask {
	position: fixed;
	top: 8px;
	bottom: 8px;
	left: 8px;
	right: 8px;
	z-index: -1;
}

#action-container {
	height: 100%;
	vertical-align: top;
}

#action-container .form {
	box-shadow: none;
}

#header .qtip {
	/* Causes qTips to scroll off screen when scrolling window */
	/*position: fixed;*/
	z-index: 20000 !important;
}

/* PPW CUSTOM END */

/*********************************
* FIXED SIZE SCROLLING
**********************************/
.qtip-scroll > .qtip-content {
	padding:0;
	overflow: auto;
	max-height: 200px;
	
    position: relative;
}

.qtip-scroll .qtip-body {
	overflow:auto;
	
	position: relative;
	padding: 4px 8px;

	text-align: left;
	/*word-wrap: break-word;*/
}

/*********************************
* FLUID SIZE SCROLLING
**********************************/
.qtip-constrain {
	width: 128px;
	height: 64px;
}

.qtip-constrain > .qtip-content {
	height:100%;
	padding:0;
	overflow: auto;
}

.qtip-constrain > .qtip-content > .qtip-body {
	overflow: visible;
	white-space:nowrap;
}

/*********************************
* FLUID SIZE INNER SCROLLING
**********************************/

.qtip-constrain-inner .qtip-body {
	overflow: visible;
	white-space:nowrap;
	display:inline-block;
	padding: 0;
	margin: 8px;
}

.qtip-constrain-inner .qtip-footer {
	overflow:hidden;
	clear:both;
}

.qtip-constrain-inner .scroll-container {
	overflow: auto;
}

.qtip-constrain-inner .tr {
	display:table-row;
	width: 100%;
}

.qtip-constrain-inner .tc {
	display:table-cell;
}

.qtip-constrain-inner .scroll {

	overflow: auto;
	clear:both;
	
	white-space:nowrap;

}

.qtip-topmost {
	z-index: 20000 !important;
}