/*
		File: 	tooltip.css
		Date: 	2014
		Auth:	Creativeink Design Group | web@creativeink.ca
		~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*---------------------------------------------------------------------------- 
TOOL TIP - IMAGE
-----------------------------------------------------------------------------*/
.thumbnail{
	position:relative;
	z-index: 0;
	height:inherit !important;
}
.thumbnail:hover{
	background-color: transparent;
	z-index: 50 !important;
}
.thumbnail span.tooltip_txt{ /*CSS for enlarged image*/
	position:absolute;
	visibility: hidden;
	text-decoration: none;
	
	border: 1px solid #666666;
	-webkit-box-shadow:1px 1px 8px rgba(0,0,0,0.8);
	-moz-box-shadow:1px 1px 8px rgba(0,0,0,0.8);
	background-color:#EEEEEE;
	padding: 10px;
	margin:0;
	
	text-align:left;
	font-size:11px; line-height:130%;
	color: black;
	
	width:500px; /* WIDTH */
	height:0px !important;
}
.thumbnail:hover span.tooltip_txt{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: -8px;
	left: 30px; /*position where enlarged image should offset horizontally */
	height:auto !important;
}
.thumbnail_holder { /* DIV */
	position:relative;
	height:100%;
	width:100%;
}

/*---------------------------------------------------------------------------- 
TOOLTIP
-----------------------------------------------------------------------------*/
.help {
	border:1px solid #222222;
	color:#FFFFFF;
	text-decoration:none;
	text-align:left;
	padding:8px;
}

.tooltip {
	border-bottom: 1px dotted #000000; color: #000000; outline: none;
	cursor: help; text-decoration: none;
	position: relative;
}
.tooltip span {
	margin-left: -999em;
	position: absolute;
	font-size:11px;
}
.tooltip:hover span {
	border-radius: 5px 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; 
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
	position: absolute; left: 1em; top: 2em;
	z-index: 99;
	margin:0 0 0 -233px; width: 250px;
}
.tooltip:hover img {
	border: 0; margin: -10px 0 0 -24px;
	float: left; position: absolute;
}
.tooltip:hover em {
	font-size: 1.5em; font-weight: bold;
	display: block; padding: 3px; border-bottom:1px dashed #FFFFFF;
}
* html a:hover { background: transparent; }