@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)
*
**/
.mintip a{
	cursor: context-menu;
}
#MinimalTip {
	font-family: Helvetica, Sans-Serif;
	font-size: 18px;
	color: #EEE;

	border: 1px solid #000;

	background: #222;

	position: absolute;
    padding: 10px 20px;
	display: none;

	max-width: 360px;
	
	z-index: 3001; /* Aumente ou diminua se for necessário */

	box-shadow: 1px 1px 2px #000;
	-moz-box-shadow: 1px 1px 2px #000;
	-webkit-box-shadow: 1px 1px 2px #000;
	filter: progid:DXImageTransform.Microsoft.Shadow(strength = 1, direction = 135, color = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength = 1, Direction = 135, Color = '#000000')";

	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: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #000;
	top: -6px;
}

#MinimalTip.arrow-up:after {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #222;
	border-bottom-color: #222;
	top: -5px;
}

#MinimalTip.arrow-down:before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #000;
	bottom: -6px;
}

#MinimalTip.arrow-down:after {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #222;
	border-top-color: #222;
	bottom: -5px;
}
