/* Para o tooltip do bootstrap aparecer dentro da MODAL */
.ui-tooltip {
	z-index: 1050 !important;
}

/* Para Tooltips Personalizados com a dica do Campo! */
[data-tip] {
	position: relative;

}

/* Para melhorar o espaçamento nas classes for-row */
form .form-group{
	margin-bottom: 13px !important;
}
form .form-row{
	margin-bottom: 3px !important;
}

/* PARA DESTACAR A LINHA SELECIONADA DA TABELA */
.selected {
    background-color: rgb(255, 255, 213) !important;
}

/* Para os input de pesquisa ficarem mais juntos */
.inputpesquisa{
	margin-bottom: 8px;
}

/* Conf da Seta em cima */
[data-tip]:before {
	content: '';
	/* hides the tooltip when not hovered */
	display: none;
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #1a1a1a;
	position: absolute;
	top: 32px;
	left: 5%;
	z-index: 8;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
}

[data-tip]:after {
	display: none;
	content: attr(data-tip);
	position: absolute;
	top: 38px;
	left: 5px;
	padding: 5px 8px;
	background-image: -moz-linear-gradient(top, #c0c6cc6e, #cccccc);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c0c6cc6e), color-stop(1, #cccccc));
	background-image: -webkit-linear-gradient(top, #c0c6cc6e, #cccccc);
	background-image: -moz-linear-gradient(top, #c0c6cc6e, #cccccc);
	background-image: -ms-linear-gradient(top, #c0c6cc6e, #cccccc);
	background-image: -o-linear-gradient(top, #c0c6cc6e, #cccccc);
	color: rgb(17, 17, 17);
	z-index: 9;
	font-size: 0.75em;
	/* height:18px; */
	line-height: 18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	white-space: nowrap;
	word-wrap: normal;
	opacity: 0.9;
	width: auto;
	white-space: normal;
	font-family: 'Century Schoolbook';
}

[data-tip]:hover:before,
[data-tip]:hover:after {
	display: block;
}

/* Conteúdo da linha da tabela no meio (verticalmente) */
td {
	vertical-align: middle !important;
}

/* Ajuste dos Aviso */
ul.alert {
	margin-bottom: 1.1px !important;
	margin-left: 1px !important;
	padding-left: 19px !important;
	padding-bottom: 1.1px !important;
	padding-top: 1.1px !important;
}