/* tooltip styling. uses a background image (the yellow arrow) */
/* tooltip styling. uses a background image (a black box with an arrow) */ 
#trigger:hover {
	color:#000;
}


div.tooltip { 
    background:transparent url(tooltip_bk2.png) no-repeat scroll 0 0; 
    height:50px; 
    width:200px; 
    font-size:10px; 
	padding: 5px 0px 5px 5px;
		filter:alpha(opacity=75);
-moz-opacity:0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
    display:none; 
    color:#313131;
	z-index:15;
} 
div.tooltiptop { 
    background:transparent url(globo2.png) no-repeat scroll 0 0; 
    height:145px; 
    width:200px; 
    font-size:10px; 
	padding: 5px 0px 5px 5px;
		filter:alpha(opacity=75);
-moz-opacity:0.75;
-khtml-opacity: 0.75;
opacity: 0.75;
    display:none; 
    color:#e5e5e5;
	z-index:1000;
	font-size:24px;
	text-align:center;

} 

 
/* tooltip title element (h3) */ 
span.tooltip_content { 
width:auto;
    margin-right:30px;
	margin-left: 10px;
	display:block;
}

/* use a semi-transparent image for the overlay */
#overlay {
	background-image:url(/img/overlay/transparent.png);
	color:#efefef;
}

/* container for external content. uses vertical scrollbar, if needed */
div.wrap {
	height:441px;
	overflow-y:auto;
}

/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../img/overlay/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../img/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

div.overlay.tooltiptop {
	background:url(../img/overlay/globo2.png) no-repeat !important;
	color:#fff;
}
/* black */
div.overlay.black {
	background:url(../img/overlay/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(../img/overlay/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}
