@charset "UTF-8";

/*===================================================
=            jQuery Minimal Tips (style)            =
===================================================*/

/**
*
* http://www.vinicius-stutz.com/
* Version: 0.1 of 19 Nov 2013
* Copyright 2013 - Vinícius Stutz
* Licensed under the MIT license
* 
* The CSS file of plugin (you can customize all features)
*
**/

#MinimalTip {
	font-size: 14px;
	color: #333;

	border: 1px solid #ddd;
	border-radius: 5px;
	background: #fff;

	position: absolute;
	padding: 5px 10px;
	display: none;

	max-width: 360px;
	
	z-index: 3001; /* Aumente ou diminua se for necessário */

	box-shadow: 1px 1px 2px #ddd;
	-moz-box-shadow: 1px 1px 2px #ddd;
	-webkit-box-shadow: 1px 1px 2px #ddd;
	filter: progid:DXImageTransform.Microsoft.Shadow(strength = 1, direction = 135, color = '#ddd');
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength = 1, Direction = 135, Color = '#ddd')";

	opacity: 0.9;
	-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
	filter: alpha(opacity=90);
	-moz-opacity:0.9;
	-webkit-opacity:0.9
}

/* Balão do tooltip (CSS3) */
#MinimalTip.arrow-up:after, #MinimalTip.arrow-down:after,
#MinimalTip.arrow-up:before, #MinimalTip.arrow-down:before {
	width: 0;
	height: 0;
	position: absolute;
	content: '';
	left: 10px;
}

#MinimalTip.arrow-up:before {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #ddd;
	top: -10px;
}

#MinimalTip.arrow-up:after {
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 9px solid #ddd;
	border-bottom-color: #ddd;
	top: -9px;
}

#MinimalTip.arrow-down:before {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #ddd;
	bottom: -10px;
}

#MinimalTip.arrow-down:after {
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-top: 9px solid #ddd;
	border-top-color: #ddd;
	bottom: -9px;
}
