﻿/* Main CSS styles go here */

/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../images/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(../images/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#alert {
	width:300px;
	height:220px;
}

#alert div.close {
	top:0;
	right:0;
}

#alert h2 {
	background-image:url(../images/overlay/alert.png);
	background-position:6px center;
	background-repeat:no-repeat;
	padding:10px 0 10px 60px;
	margin-top:-10px;
}

/* simple css-based tooltip */
div.tooltip {
	background-color:#000;
	outline:1px solid #669;
	border:2px solid #fff;
	padding:10px 15px;
	width:200px;
	display:none;
	color:#fff;
	text-align:left;
	font-size:12px;
	
	z-index: 9999;

	/* outline radius for mozilla/firefox only */
	outline-radius:4px;
	-moz-outline-radius:4px;
	-webkit-outline-radius:4px;
}


.alert_dica
{
	padding: 15px;
	padding-left: 45px;
	margin-bottom: 10px;
	color: #000;
	background: #fff0c6;
	vertical-align: baseline;
	background-image: url(../images/ico_aviso_dicas.png);
	background-repeat: no-repeat;
	background-position: center left;
}

.alert_erro 
{
	padding: 15px;
	padding-left: 45px;
	margin-bottom: 10px;
	color: #000;
	background: #f2e2e2;
	vertical-align: baseline;
	background-image: url(../admin/images/ico_aviso_erro.png);
	background-repeat: no-repeat;
	background-position: center left;	
}

.alert_atencao 
{
	padding: 15px;
	padding-left: 45px;
	margin-bottom: 10px;
	color: #000;
	background: #fefce0;
	vertical-align: baseline;
	background-image: url(../admin/images/ico_aviso_alerta.png);
	background-repeat: no-repeat;
	background-position: center left;	
}

.alert_ok 
{
	padding: 15px;
	padding-left: 45px;
	margin-bottom: 10px;
	color: #000;
	background: #e5f9d5;
	vertical-align: baseline;
	background-image: url(../admin/images/ico_aviso_ok.png);
	background-repeat: no-repeat;
	background-position: center left;		
}

.alert_dica img,
.alert_erro img,
.alert_atencao img,
.alert_ok img
{
	margin-right: 10px;
}
