.process-barraSup {
    margin-top: -36px;
    text-align: right;
}
/* Padroniza tipo de fonte, tamanho da fonte e espaçamento entre linhas */
#corpopaginajurisprudencia select, #corpopaginajurisprudencia input, #corpopaginajurisprudencia input[type=text],
.juris-pesquisa select, .juris-pesquisa input, .juris-pesquisa input[type=text] {

	color: #656565;
}
th {
	background-color: #c3d1d9;
	font-size: 1.1em;
	padding:0.5em;
	text-align: center;
}
#corpopaginajurisprudencia {
/*	display: grid;
	grid-template-columns: 180px auto;*/
	margin-bottom: 3em;
}

.divJurisprudenciaTematicaFormulario,
.divJurisprudenciaTematicaLista,
.corpoPaginaPesquisa,
.corpoPaginaResultado,
#corpopaginajurisprudencia,
.detalheDocumento {
	font-family: Verdana;
	font-size: 13px;
	line-height: 1.5em;
	color: #414F55;
}

.corpoPaginaPesquisa a,
.corpoPaginaPesquisa a:link,
.corpoPaginaPesquisa a:active,
.corpoPaginaPesquisa a:visited,
.corpoPaginaPesquisa a:hover,
.corpoPaginaResultado a,
.corpoPaginaResultado a:link,
.corpoPaginaResultado a:active,
.corpoPaginaResultado a:visited,
.corpoPaginaResultado a:hover,
#corpopaginajurisprudencia a,
#corpopaginajurisprudencia a:link,
#corpopaginajurisprudencia a:active,
#corpopaginajurisprudencia a:visited,
#corpopaginajurisprudencia a:hover {
	color: #2465A4;
}
.barraIconesNavegacao a,
.barraIconesNavegacao a:link,
.barraIconesNavegacao a:active,
.barraIconesNavegacao a:visited,
.barraIconesNavegacao a:hover {
	color: #00658A;
}
a:hover {
	text-decoration: underline;
}
.onlyprint { display: none; }
.clsMensagemDeErro {
	color: #FF0000;
	font-weight: bold;
}
.highlightBrs,
.HIGHLIGHTBRS {
	color: #CE2424;
	font-weight: bold;
}
.corpoPaginaPesquisa .highlightBrs a, 
.corpoPaginaPesquisa .highlightBrs a:link,
.corpoPaginaPesquisa .highlightBrs a:hover,
.corpoPaginaPesquisa .highlightBrs a:active,
.corpoPaginaPesquisa .highlightBrs a:visited,
#corpopaginajurisprudencia .highlightBrs a,
#corpopaginajurisprudencia .highlightBrs a:link, 
#corpopaginajurisprudencia .highlightBrs a:active, 
#corpopaginajurisprudencia .highlightBrs a:hover, 
#corpopaginajurisprudencia .highlightBrs a:visited, 
.highlightBrs a,
.highlightBrs a:link,
.highlightBrs a:active,
.highlightBrs a:hover,
.highlightBrs a:visited,
.HIGHLIGHTBRS a,
.HIGHLIGHTBRS a:visited {
	color: #CE2424;
	text-decoration: underline;
}
.clsFormularioPesquisa {
}
.juris-pesquisa input[type=text],
.sum-pesquisa input[type=text] {
	font-size: 13px;
}
/*- Estilos para tabelas e formulários -*/
.divTable,
.divTabela,
.formularioDiv {
	display: table;
}
.divRow,
.divLinha,
.linhaform {
	display: table-row;
}
.divCell,
.linhaform > div {
	display: table-cell;
	vertical-align: top;
}
.documento .divTabela {
	width: 100%;
}
/*Custom checkbox e radio*/

/* The container */
.customCheckbox {
  overflow: auto;
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.customCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.customCheckbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #EEEEEE;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.customCheckbox:hover input ~ .checkmark {
  background-color: #CCCCCC;
  border-radius: 3px;
}

/* When the checkbox is checked, add a blue background */
.customCheckbox input:checked ~ .checkmark {
  background-color: #004164;
  border-radius: 3px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheckbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.customCheckbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.customCheckbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The container */
.customRadio {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.customRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.customRadio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #EEEEEE;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.customRadio:hover input ~ .checkmark {
  background-color: #CCCCCC;
}

/* When the radio button is checked, add a blue background */
.customRadio input:checked ~ .checkmark {
  background-color: #004164;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.customRadio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.customRadio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.customRadio .checkmark:after {
 	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/*-----------------------*/
#idFormSumulas {
	width: 100%;
}
#idBotoesOperadores {
	margin-top: 0.5em;
}
.hintOperador {
	position: absolute;
	display: none;
	color: rgb(86,86,86);
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    background-color:#FFFFFF;
    padding: 1em;
    margin-top: 0.5em;
    z-index: 2;
}
.clsFormularioPesquisa .label {
	color: rgb(36, 101, 164);
}
.clsFormularioPesquisa input[type=text]{
	display: inline-block;
	vertical-align: middle;
	font-size: 1em;
}
.clsFormularioPesquisa select {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px 7px 12px;
	font-size: 1em;
}
.clsFormularioPesquisa .linhaform > div {
	padding: 2px;
}
.clsFormularioPesquisa input[type=submit],
.clsFormularioPesquisa input[type=button] {
	font-size: 1em;
}
.clsFormularioPesquisa input[type=submit],
.clsFormularioPesquisa input[type=button],
.listadocumentos .clsSemFormatacao input[type=button],
.detalheDocumento .clsSemFormatacao input[type=button] {
    background-color:#c3d1d9;
    color:#2465a4;
}
/* Configurações específicas para a pesquisa da página principal*/
#idMostrarBotoesOperadores,
#idMostrarPesquisaAvancada {
	cursor: pointer;
}
#idBotoesOperadores {
	display: none;
}
#idPesquisaAvancada {
	width: 90%;
	padding: 0 1em 1em 1em;
	margin: 1em auto;
	display: none;
	font-size: 13px;
	border: 1px Solid rgba(229, 229, 229, 1);
	font-family: Verdana;
    background-color: #fcfcfc;
}
#idPesquisaAvancada #divTabelaRefLeg {
 	white-space: nowrap;
	overflow: hidden;
}
#idPesquisaAvancada #configuracoesPesquisa,
#idPesquisaAvancada #operadorPadrao {
    margin-left:3em;
    margin-top: 0.5em;
}
#idPesquisaAvancada #processo {
	width: 100%;
}
#idPesquisaAvancada #relator {
	width: 100%;
}
#idPesquisaAvancada #data_inicial,
#idPesquisaAvancada #data_final {
	width: 30.5%;
}
#idPesquisaAvancada #tipo_data {
	width: 30%;
	float: right;
}
#idPesquisaAvancada #orgao {
	width: 100%;
}
#idPesquisaAvancada #ementa {
	width: 100%;
}
#idPesquisaAvancada #getsiglajud {
	width: 100%;
}
#idPesquisaAvancada #siglajud {
	width: 68%;
}
#idPesquisaAvancada #numero_leg {
	width: 30%;
	float: right;
}
#idPesquisaAvancada #tipo1,
#idPesquisaAvancada #tipo2,
#idPesquisaAvancada #tipo3 {
	width: 14%;
}
#idPesquisaAvancada #numero_art1,
#idPesquisaAvancada #numero_art2,
#idPesquisaAvancada #numero_art3 {
	width: 14.5%;
}
#idPesquisaAvancada #numero_art1,
#idPesquisaAvancada #numero_art2,
#idPesquisaAvancada #numero_art3 {
	margin-right: 1.2%;
}
#idPesquisaAvancada #maisRef {
	float: right;
	padding: 6px 8px;
	margin-top: 1px;
}
#idPesquisaAvancada #nota {
	width: 100%;
}
#idPesquisaAvancada .clsColunaEsquerda {
	display: inline-block;
	width: 49%;
	vertical-align:top;
}
#idPesquisaAvancada .clsColunaDireita {
	display: inline-block;
	width: 50%;
	vertical-align:top;
}
.clsTituloAvancada {
	display: block;
	margin-top: 1em;
	padding: 4px;
}
#operadorPadrao .divCell {
	padding: 4px 8px;	
}
.btn_Tel img,
.btn_Zap img {
	/*width: 45px;
	height: 45px;*/
}
.divZap .btn-redondo-P,
.divTel .btn-redondo-P {
	margin-top: 0;
}
.divTel {
	margin-top: 0;
}
.divZap {
	margin-top: 1em;
}
#divIconeRamal {
	font-size: 1em;
}
#divIconeRamal .glyphicon {
	color: #FFFFFF;
	background-color: rgba(59, 92, 125, 1);
	border-radius: 50%;
	font-size: 34px;
	text-align: center;
	width: 77px;
	height: 77px;
	padding: 0.5em;
	text-shadow: 5px 8px 1px #34536d;
}
/* Coluna de pesquisa e filtros */
#formRefinamento {
  border-right:1px Solid rgba(229, 229, 229, 1);
  width: 290px;
}
/* Resultado da pesquisa */
/*#resultadoPesquisa {
	width: calc(100% - 300px);
}*/
.clsConteudoSemMenuLateral > h1.titulo {
	margin-bottom: 1em;
}
h1, h2, h3, h4, h5 {
    font-family: Ubuntu, Arial, sans-serif;
}
.barraOutrasBasesWrapper {
	display: table;
	background-color: #EEEEEF;
	width: 100%;
}
.barraOutrasBases {
	display: table-row;
}
.barraOutrasBases img {
	width: 22px;
	height: 22px;
}
.barraOutrasBases .tabBase,
.barraOutrasBases .tabVazia {
	display: table-cell;
	width: 25%;
	vertical-align: middle;
	padding: 1em;
	text-align: center;
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 15px;
}
.barraOutrasBases .tabBase:hover,
.barraOutrasBases .tabVazia:hover,
#idListaOutrosProdutos:hover {
 	background-color: #c3d1d9;
 	font-weight: 700;
}
.barraOutrasBases .ativo {
	background-color: #dfe7ed;
}
#idListaOutrosProdutos.ativo {
	background-color: #c3d1d9;
}
#idListaOutrosProdutos {
	position: relative;
	display: table-cell;
	width: 25%;
	vertical-align: middle;
	z-index: 1;
	font-family: Ubuntu, Arial, sans-serif;
}
#idListaOutrosProdutos  a {
	font-family: Ubuntu, Arial, sans-serif;
}
#mostraOutrosProdutos {
	padding: 1em;
}
#idListaOutrosProdutos ul {
	display: none;
	position: absolute;
	top: 100%;
	padding: 0;
	margin: 0;
	background-color: #c3d1d9;
}
#idListaOutrosProdutos li {
	display: inline-block;
	padding: 0.5em 1em;
	font-weight: normal;
	font-size: 14px;
}
#idListaOutrosProdutos li:hover,
#idListaOutrosProdutos li a:hover {
	font-weight: bold;
}
#mostraOutrosProdutos {
	cursor: pointer;
}
#mostraOutrosProdutos > a > span {
	display: inline-block;
	vertical-align: middle;
}
#mostraOutrosProdutos > a > span:nth-child(1){
	width: 80%;
}
#mostraOutrosProdutos > a > span:nth-child(2){
	width: 15%;
}
.divNavegaInfo {
	background-color: #dfe7ed;
	overflow: auto;
	font-size: 10pt;
	margin-left:0!important;
	margin-right:0!important;
}
div#divCriterioDePesquisa {
	display: inline-block;
}
#navegacao {
	padding: 1em;
	text-align: right;
	white-space:nowrap;
}
#navegacao.barraEnunciados{
	width: auto;
}
#infopesquisa {
	padding: 1em 1em 0 1em;
	display: block;
}
#infopesquisa .divCell {
	vertical-align:top;
}
#infopesquisa label {
	font-weight: bold;
	margin-right: 1em;
	white-space:nowrap;
}
#infopesquisa #divCriterioDePesquisa {
	max-height: 3em;
	overflow: auto;
}
#infopesquisa #divCriterioDePesquisa:hover {
	height: auto;
	max-height: 100%;
	overflow: auto;
}
#infopesquisa #divCriterioDePesquisa.pp {
	height: auto;
	max-height: 100%;
}
.barraIconesNavegacao a {
	color: #003f65;
}
.listadocumentos {
	padding: 0;
	margin-left: -15px;
	margin-right: -15px;
}
#listaSumulas.listadocumentos {
	margin:0;
}
.listadocumentos h3 {
	background-color: #003f65;
	color: #FFFFFF;
	display:block;
	font-size: 1.5em;
	padding: 0.25em;
	text-align:center;
}
.listadocumentos h3 a,
.listadocumentos h3 a:link,
.listadocumentos h3 a:active,
.listadocumentos h3 a:visited,
.listadocumentos h3 a:hover {
	color: #FFFFFF;
}
.listadocumentos .clsSemFormatacao,
.detalheDocumento .clsSemFormatacao {
	position: absolute;
	display: none;
	background-color: #dfe7ed;
	padding: 0.5em;
	z-index: 2;
	margin: 0.5em 2em;
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
}
.listadocumentos .clsSemFormatacao textarea,
.detalheDocumento .clsSemFormatacao textarea {
	font-size: 1em;
    border: 1px solid #a0a0a0;
    display: block;
    margin-bottom: 0.5em;
}
.listadocumentos .clsSemFormatacao {
	max-width: 95%;
}
.listadocumentos .clsSemFormatacao textarea{
	max-width: 100%;
}
.clsHint {
	font-size: 0.85em;
	font-weight: normal;
	display: none;
}
.clsHint h4 {
	font-size: 1.1em;
	background-color: transparent;
}
.showHint:hover .clsHint {
	display: block;
}
.hideHint:hover .clsHint {
	display: none;
}
.acoesdocumento {
	margin-top: 0.5em;
}
.acoesdocumento .iconeLupa {
	display: none;
}
.acoesdocumento a {
	display: inline-block;
	vertical-align: top;
	font-size: 0.85em;
	font-weight: bold;
	padding: 0.5em 2em;
}
.acoesdocumento .divCell {
	vertical-align: top;
}
.acoesdocumento .divCell a {
	/*max-width: 190px;*/
}
.acoesdocumento .icones {
	white-space: nowrap; 
}
.acoesdocumento .barraIconesNavegacao {
	display: block;
	float: right;
}
.acoesdocumento .barraIconesNavegacao a {
	font-size: 1em;
	padding: 0;
}
.acoesdocumentoSuce {
	display: block;
}
.acoesdocumentoSuce a {
	display: inline-block;
	vertical-align: top;
	font-size: 0.85em;
	font-weight: bold;
	padding: 0.5em 2em;
}
.tituloDocumento {
	font-family: Ubuntu, Arial, sans-serif;
	background-color: #003f65;
	color: #FFFFFF;
	display:block;
	font-size: 1.5em;
	padding: 0 1em;
	text-align:left;
	height: 3em;
	line-height: 3em;
}
#corpopaginajurisprudencia .tituloDocumento a,
#corpopaginajurisprudencia .tituloDocumento a:link,
#corpopaginajurisprudencia .tituloDocumento a:active,
#corpopaginajurisprudencia .tituloDocumento a:visited,
#corpopaginajurisprudencia .tituloDocumento a:hover {
	color: #FFFFFF;
}
.tituloDocumento .iconesAcoes {
	float: right;
	min-width: 160px;
}
.tituloDocumento img {
	height: 2em;
}
.docTitulo {
	padding: 0.5em;
	font-size: 1.1em;
	font-weight: bold;
	font-family: Ubuntu, Arial, sans-serif;
	border-bottom:1px Solid rgba(229, 229, 229, 1);
}
.docTexto {
	padding: 1em 2em;
	font-size: 1em;
	position: relative;
}
.corpoPaginaResultado pre,
.docTexto pre, 
.docTexto p {
	font-family: Verdana;
	font-size: 1em;
	padding: 0.5em 0;
	margin: 0;
/*	text-align: justify;*/
}
.docTexto pre:nth-child(1), 
.docTexto p:nth-child(1) {
	padding-top: 0;
}
.docTexto pre:last-child, 
.docTexto p:last-child {
	padding-bottom: 0;
}
.barraDocRepetitivo {
	background-color: #CE2424;
	color: #FFFFFF;
	padding: 1em 2em;
	font-weight: bold;
	position: relative;
}
#corpopaginajurisprudencia .barraDocRepetitivo a:link,
#corpopaginajurisprudencia .barraDocRepetitivo a:active,
#corpopaginajurisprudencia .barraDocRepetitivo a:hover,
#corpopaginajurisprudencia .barraDocRepetitivo a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
.barraDocAfetacao {
	background-color: #E2C846;
	padding: 1em 2em;
	font-weight: bold;
	position: relative;
}
.barraDocAfetacao a,.barraDocAfetacao a:visited {
	text-decoration: underline;
}
.barraTeseSuperada {
	background-color: #eeeeef;
	color: #666666;
	position: relative;
}
.barraTeseSuperada a,
.barraTeseSuperada a:visited {
	color: #666666;
}
.linkListaTodosOsSucessivos {
	display: block;
	padding: 0.5em 0;
	cursor: pointer;
}
.linkListaTodosOsSucessivos .glyphicon {
	margin-right: 0.25em;
}

.divListaTodosOsSucessivos {
	display: none;
}
/*Form refinamento*/
a.botaoEscondeFiltro {
	display: block;
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 1.2em;
}
a.botaoMostraFiltro {
	display: block;
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 1.2em;
}
a.botaoMostraFiltro:link,
a.botaoMostraFiltro:visited,
a.botaoMostraFiltro:active,
a.botaoMostraFiltro:hover {
	display: block;
	padding: 0.5em;
	margin: 0.5em 0;
	text-decoration: none;
	font-weight: bold;
	border:1px Solid rgba(229, 229, 229, 1);
}
a.botaoMostraFiltro .filtroUp,
a.botaoMostraFiltro #filtroRamoUp,
a.botaoMostraFiltro #filtroMinUp,
a.botaoMostraFiltro #filtroOrgUp {
	display: none;
	float: right;
	margin-top: 0.25em;
}
a.botaoEscondeFiltro .filtroUp,
a.botaoEscondeFiltro #filtroRamoUp,
a.botaoEscondeFiltro #filtroMinUp,
a.botaoEscondeFiltro #filtroOrgUp {
	display: inline-block;
	float: right;
	margin-top: 0.25em;
}
a.botaoEscondeFiltro:link,
a.botaoEscondeFiltro:visited,
a.botaoEscondeFiltro:active,
a.botaoEscondeFiltro:hover {
	display: block;
	padding: 0.5em;
	margin: 0.5em 0;
	text-decoration: none;
	font-weight: bold;
	border:1px Solid rgba(229, 229, 229, 1);
}
a.botaoEscondeFiltro .filtroDown,
a.botaoEscondeFiltro #filtroRamoDown,
a.botaoEscondeFiltro #filtroMinDown,
a.botaoEscondeFiltro #filtroOrgDown {
	display: none;
	float: right;
	margin-top: 0.25em;
}
a.botaoMostraFiltro .filtroDown,
a.botaoMostraFiltro #filtroRamoDown,
a.botaoMostraFiltro #filtroMinDown,
a.botaoMostraFiltro #filtroOrgDown {
	display: inline-block;
	float: right;
	margin-top: 0.25em;
}
.botaoMostraFiltro + .clsConteudoFiltro {
	display: none;
}
.botaoEscondeFiltro + .clsConteudoFiltro {
	display: block;
}
.clsConteudoFiltro {
	padding: 0.5em;
	margin: 0;
}
.clsConteudoFiltro select {
	width: 100%;
}
.clsConteudoFiltro #data_inicialRef,
.clsConteudoFiltro #data_finalRef {
	width: 40%;
}
.clsConteudoFiltro input[type=text]{
	padding: 2px 5px;
	font-size: 0.85em;
	margin: 2px 0;
	border-radius: 4px;
}
#formRefinamento #configuracoesPesquisa select,
.clsConteudoFiltro select {
	padding: 4px 2px;
	font-size: 0.85em;
	margin: 2px 0;
	border-radius: 4px;
}
#formRefinamento .customCheckbox {
	font-size: 0.85em;
}
#formRefinamento ul {
	padding: 0;
	margin: 0;
}
#formRefinamento li {
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
}
.invisivel {
	display: none;
}
#formRefinamento li.invisivel {
	display: none;
}
#formRefinamento label.customCheckbox {
	display: block;
}
#formRefinamento .indiceSumulas li {
	padding: 0.25em 1em;
}
#formRefinamento .indiceSumulas li .glyphicon {
	margin-right: 0.5em;
}
#formRefinamento label.customCheckbox span.nomeFiltro {
	display: inline-block;
	vertical-align: top;
	width: 70%;
	font-size: 0.9em;
}
#formRefinamento label.customCheckbox span.qtdDocs {
	display: block;
	float: right;
	vertical-align: top;
	width: 30%;
}
.clsFiltrarResultados {
	display: block;
 	padding: 0.5em;
 	margin: 0.5em 0;
 	text-decoration: none;
 	font-size: 1.3em;
 	font-weight: bold;
}
.clsFiltrarResultados a {
	display: block;
	font-family: Ubuntu, Arial, sans-serif;
}
.clsControlaFiltros {
	overflow: auto;
}
.clsControlaFiltros a {
	cursor: pointer;
    float: right;
    display: block;
    padding: 0.25em;
    font-size: 1.1em;
}
#filtroMinistro ul {
	max-height: 28em;
	overflow-y: auto;
}
#formRefinamento .botaoMostraFiltro img {
	width: 22px;
	height: 22px;
}
#limpaFiltroRamos, #limpaFiltroOrgaos, #limpaFiltroRepetitivos, #limpaFiltroMinistros,
#aplicaFiltroRamos, #aplicaFiltroOrgaos, #aplicaFiltroRepetitivos, #aplicaFiltroMinistros {
	cursor: pointer;
	float: right;
	display: block;
	padding:0.25em;
	font-size: 1.1em;
}
.linhaPar {
	background-color: #FFFFFF;
}
.linhaImpar {
	background-color: #EEEEEF;
}
.itemlistadocumentos {
	margin: 0;
}
.itemlistadocumentos > div{
	padding: 0.5em 0.25em;
	font-size: 1em;
}
.itemlistadocumentos .divCell:nth-child(1){
	width: 80px;
}
.itemlistadocumentos .divCell:nth-child(2){
	width: 180px;
}
.itemlistadocumentos .divCell:nth-child(3){
	width: auto;
}
.labelTeseRevisada {
	float: right;
	font-weight: bold;
	position: relative;
}	
.barraDocRepetitivo div.hintTeseRevisada,
.hintTeseRevisada {
	position: absolute;
	display: none;
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    background-color:#dfe7ed;
    padding: 1em;
    z-index: 2;
    top: 3em;
    left: 50%;
    font-weight: normal;
}
.seloTese {
	position: absolute;
	left: 60%;
	width: 40%;
}
.seloTese + .hintTeseRevisada {
	top: 15em;
}
.divVejaRepetitivos {
	margin-top: 1em;
}
.divVejaRepetitivos + .divVejaRepetitivos {
	margin-top: 0;
}

.corpoPaginaPesquisa {
	font-size: 13px;
	line-height: 1.3em;
	background : rgba(191, 195, 198, 0.10);
	padding: 2em;
}
#linkFeed {
	float: right;
	display: block;
	margin-top: -2em;
	font-size: 13px;
}
.corpoPaginaResultado .formularioDiv {
	width: 90%;
	margin: auto;
}
.corpoPaginaPesquisa .linhaform > div,
.corpoPaginaResultado .linhaform > div {
	padding: 0.5em;
}
.corpoPaginaPesquisa .label,
.corpoPaginaResultado .label {
    color: rgb(36, 101, 164);
}
.corpoPaginaPesquisa input[type=text], 
.corpoPaginaResultado input[type=text] { 
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	width: 90%;
	padding: 9px 15px;
}
.corpoPaginaPesquisa select, 
.corpoPaginaResultado select { 
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	width: 90%;
}
.corpoPaginaPesquisa .blocoCampos span,
.corpoPaginaResultado .blocoCampos span {
	display: inline-block;
	padding: 0.5em;
}
.corpoPaginaPesquisa input[type=button],
.corpoPaginaPesquisa input[type=submit],
.corpoPaginaPesquisa input[type=reset],
.corpoPaginaResultado input[type=button],
.corpoPaginaResultado input[type=submit],
.corpoPaginaResultado input[type=reset] {
    background-color:#c3d1d9;
    color:#2465a4;
    border: none;
	border-radius: 0.25rem;
	padding: 0.5em 1em;
	font-size: 1em;
}
.corpoPaginaPesquisa .divInformacoes {
	line-height: 1.5em;
	margin-top: 2em; 
}
.corpoPaginaResultado #infopesquisa{
	float: none;
	display: block;
}
.corpoPaginaResultado pre a {
	color: #00658A;
}
.textoAviso {
	padding: 1em 0;
	text-align: center;
	font-size: 12pt;
}
.textoAviso .glyphicon {
	color: #00658A;
}
.divJurisprudenciaTematicaFormulario h3 {
	font-size: 1.5em;
	background-color: #dfe7ed;
	text-align: center;
	padding: 0.5em; 
}
.divJurisprudenciaTematicaFormulario .col-md-6 .label {
	width: 35%;
}
.divJurisprudenciaTematicaFormulario .col-md-6 .col-md-12 {
	height: 50%;
}
.divJurisprudenciaTematicaLista .label {
	width: 20%;	
}
.divJurisprudenciaTematicaFormulario input[type=text],
.divJurisprudenciaTematicaFormulario select,
.divJurisprudenciaTematicaLista input[type=text],
.divJurisprudenciaTematicaLista select {
	width: 100%;
}
.divBloco {
	padding: 1em;
}
.divBloco > h3 {
	border-top: 1px Solid rgba(229, 229, 229, 1);
	border-left: 1px Solid rgba(229, 229, 229, 1);
	border-right: 1px Solid rgba(229, 229, 229, 1);
	margin-bottom:0;
}
.divBloco > div, .divBloco > table.tabelaSumario {
	border-bottom: 1px Solid rgba(229, 229, 229, 1);
	border-left: 1px Solid rgba(229, 229, 229, 1);
	border-right: 1px Solid rgba(229, 229, 229, 1);
	padding: 1em;
	height: calc(100% - 3em);
}
.divBloco > table.tabelaSumario {
	width: 100%;
}
.divJurisprudenciaTematicaFormulario .col-md-12 .formularioDiv {
	width: 90%;
	margin: auto;
}
.divJurisprudenciaTematicaFormulario .col-md-12 .formularioDiv .label{
	width: 25%;
}
.tabelaSumario {
}
.tabelaSumario td {
	padding: 0.5em;
}
.divBloco img {
	width: 60px;
}
.divJurisprudenciaTematicaLista .barraIconesNavegacao {
	background-color: #dfe7ed;
	overflow: auto;
	font-size: 10pt;
	margin: 1em 0;
	padding: 0.5em;
}
.divMateria {
	font-size: 1.5em;
	background-color: #003f65;
	text-align: center;
	color: #FFFFFF;
	padding: 0.5em;
	margin: 1em 0;
	line-height: 1.5em;
}
.divMateria a,
.divMateria a:visited,
.divMateria a:active,
.divMateria a:hover,
.divMateria a:link {
	color: #FFFFFF;
}
.divTitulo {
	padding: 0.5em; 
	font-size: 1.5em;
	background-color: #dfe7ed;
	padding: 0.5em;
	margin: 1em 0;
	line-height: 1.5em;
}
.divTema {
}
h4.tituloCampo {
	font-size: 13px;
}
.mostraTituloNota {
	position: relative;
}
.tituloNota {
	position: absolute;
	display: none;
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
 	background-color: #EEEEEF;
    padding: 1em;
    margin-top: 0.5em;
    z-index: 2;
    border: 1px solid #C0C0C0;
}
.texto_apresentacao {
	line-height: 1.5em;
}
.texto_apresentacao span {
	display: inline-block;
	vertical-align: middle;
	max-width: 80%;
}
.texto_apresentacao span.iconeInformativoJurisprudencia {
	display: inline-block;
	vertical-align: middle;
	margin-right:1em;
	margin-top: 0;
	background: url(/recursos/interfacevisual/internet2020/img/icon_informativo.svg) no-repeat;
    background-size: 100px 100px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
	background-color: #f5af00;
}

.texto_apresentacao span.btn_pesqPront {
	margin-right: 8px;
}
.corpoPaginaResultado {
	margin: 0;
}
.divListaAcordaos {
	margin: 0;
}
.corpoPaginaResultado .listadocumentos .docTexto,
.corpoPaginaResultado .listadocumentos .docTitulo{
	max-width: 700px;
	margin:auto;
}
#configVisualizacao {
	clear: both;
	display: block;
	padding: 1em;
}
#configVisualizacao input[type=button],
#configVisualizacao select,
#configVisualizacao label {
	display: inline-block;
	vertical-align: middle;
}
#configVisualizacao select {
	padding: 5px 5px 6px 5px;
	color: #414F55; 
}
#configVisualizacao label {
	margin: 0;
}
#tp_vis_lista_resumida,
#tp_vis_documento_completo {
	display: inline-block;
 	font-family: 'Glyphicons Halflings';
 	font-size: 24px;
}
#corpopaginajurisprudencia #tp_vis_lista_resumida,
#corpopaginajurisprudencia #tp_vis_documento_completo {
    color:rgba(189,189,189,1);
}
#corpopaginajurisprudencia #tp_vis_lista_resumida.ativo,
#corpopaginajurisprudencia #tp_vis_documento_completo.ativo {
  	color: #414F55;
}
.divAjuda {
	float: right;
}
.divAjuda span.glyphicon{
	font-size: 24px;
}
@media only screen and (max-width: 800px) {
	pre {
		white-space: normal;
	}
}
.saibaMais ul {
	padding: 0.5em 1em 0.5em 5em
}
.labelSaibaMais {
	font-weight: bold;
	margin-left: 3em;
}
#divArquivosDownload {
	text-align:center;
}
.divLinkPesquisa {
	text-align: right;
	font-style:italic;
	padding: 1em;
}
.divJurisprudenciaTematicaLista .divTema {
    font-weight: bold;
    padding: 1em;
    margin: 1em;
}
.divJurisprudenciaTematicaLista .divTema span b {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
}
.divJurisprudenciaTematicaLista .divTema pre {
    text-align: justify;
}
.divJurisprudenciaTematicaLista .divObservacoes {
	margin: 0 20%;
	font-style: italic;
}
.divJurisprudenciaTematicaLista .divLinkPesquisa {
    
    line-height: 1em;
    font-style: italic;
    margin-bottom: 1em;
    margin-top: 1em;
    text-align: right;
}

.paginaPesquisaPronta .colunaRefinamento {
	font-size: 13px;
}

.divJurisprudenciaTematicaLista .temas {
    text-align: justify;
    margin: 0 5%;
}

.divJurisprudenciaTematicaLista .temas p {
    padding: 0 5%; 
}

.divJurisprudenciaTematicaLista .divPrecedentes{
    margin: 0 5%;
    line-height: 1.8em;
}
.divPrecedentes h4 {
	text-align:left;
	padding: 0.5em 0;
}

.docRepetitivo, .listadocumentos .docRepetitivo {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
}

.saibaMais {
    line-height: 1.8em;
    text-align: left;
    font-size: 0.9em;
    margin: 1em 5% 1em 10%;
}

.saibaMais ul {
	margin-top: 0; 
	margin-bottom: 0; 
}

.saibaMais .tituloCampo {
    font-weight: bold;
    text-align: left;
    font-size: 1em;
    margin: 0;
}
.listaReferencias li {
	margin-bottom: 1em;
}
.divTema ul {
	margin-top: 0;
	margin-bottom: 0;
}

.divJurisprudenciaTematicaLista h2 {
    font-size: 1.2em;
    text-align: center;
}
.divArtigo {
	padding: 1em 5% 0 5%;
}
.mensagemReproducaoAutorizada {
	text-align: center;
	font-style: italic;
	font-weight: bold;
}
.contadorDeAcessos {
	text-align:center;
	font-size: 0.8em;
}
.divJurisprudenciaTematicaLista h2.tituloIndice {
	font-size:2em; 
}
.tituloIndice + .textoExplicativo {
	text-align:center;
	font-style:italic;
}
/* Clearable text inputs */
.clearable{
  background: #fff url("/recursos/imagens/x.gif") no-repeat right -10px center;
  /*border: 1px solid #999;*/
  /*padding: 3px 18px 3px 4px; */    /* Use the same right padding (18) in jQ! */
  /*border-radius: 3px;*/
  transition: background 0.4s;
}
.clearable.x  { background-position: right 5px center; } /* (jQ) Show icon */
.clearable.onX{ cursor: pointer; }              /* (jQ) hover cursor style */
.clearable::-ms-clear {display: none; width:0; height:0;} /* Remove IE default X */
.divAjuda {
	text-align: right;
	padding: 0.5em;
}
.divAjuda .mensagem {
	display: block;
	text-align: left;
}
.divAjuda .mensagem span {
	display: inline-block;
	vertical-align:top;
}
.divAjuda .mensagem span.atencao {
	color: #CE2424;
	font-weight: bold;
}
.divListaAcordaos td,
.divListaAcordaos th {
	padding: 0.5em;

}
/* formulário de pesquisa de súmulas */
.opcoesSumulas {
	padding: 1em;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	height: 8em;
}
.opcoesSumulas a {
    color: rgb(36, 101, 164);
    font-size: 1.2em;
    font-weight: bold;
    display: block;
}
.opcoesSumulas span {
	display: inline-block;
	vertical-align: top;
	max-width: 65%;
	padding: 0.5em;
}
.opcoesSumulas span.glyphicon {
	width: 48px;
	height: 48px;
	font-size: 24px;
	background-color: #FF0000;
	color: #FFFFFF;
	text-align:center;
	padding: 12px;
	margin-top: 0.25em;
	border-radius: 50%;
}
.opcoesSumulas #idEnunciados span.glyphicon {
	background-color: #00658A;
}
.opcoesSumulas #idSumulas span.glyphicon {
	background-color: #00258a;
}
.opcoesSumulas #idCanceladas span.glyphicon {
	background-color: #CE2424;
}
.opcoesSumulas #idAnotadas span.glyphicon {
	background-color: #1F5836;
}
.downloadSumulas {
	padding: 1em;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.downloadSumulas a {
    color: rgb(36, 101, 164);
    font-size: 1.1em;
    text-align: center;
    display: block;
}
.downloadSumulas span {
	display: inline-block;
	vertical-align: middle;
}
#filtroSumulas {
	margin-top: 2em;
}
#filtroSumulas .divCell{
	padding: 0.5em; 
}
.listadocumentos.enunciadosSumulas .divTitulo {
	background-color: #c3d1d9;
	margin-top:0;
	margin-bottom:0;
}
.listadocumentos.enunciadosSumulas .divMateria {
	margin-top:0;
	margin-bottom:0;
}
.listadocumentos.enunciadosSumulas .divTema:nth-child(even) {
	background-color: #EEEEEF;
	padding: 1em;
}
.listadocumentos.enunciadosSumulas .divTema:nth-child(odd) {
	background-color: #FFFFFF;
	padding: 1em;
}
.numeroSumula {
	font-weight: bold;
	color: #004164;
}
#ordenacao {
	padding: 1em;
    display: block;
    float: left;
    width: auto;
    text-align: left;	
}
#ordenacao select {
	padding: 8px 12px 8px 12px;
}
#ordenacao select,
#ordenacao label {
	display: inline-block;
	vertical-align:middle;
}
#ordenacao + #navegacao {
	clear: none;
}
#ordenacao a,
#ordenacao a:link,
#ordenacao a:active,
#ordenacao a:visited,
#ordenacao a:hover {
	font-size: 1.2em;
	display: inline-block;
	background-color: #FFFFFF;
	color: #656565;
    border: solid 1px rgba(191, 195, 198, 0.8);
    border-radius: 7px;
    padding: 0;
}
#listaSumulas .divMateria,
#listaSumulas .divTitulo {
	margin: 0;
}
.detalheDocumento .tituloDocumento {
	background-color: transparent;
	color: #003f65;
}
.ui-widget-content .documento a {
	color: #2465A4;
}
.ui-dialog-titlebar {
    font-family: Ubuntu, Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #003f65;
    font-weight: normal;
}
.ui-dialog .ui-dialog-titlebar-close {
	background-image: url('/recursos/imagens/glyphicons-halflings-white.png');
	background-position: -310px 2px;
	background-color: transparent;
	border: none;
	width: 18px;
	height: 18px;
}
.iconesAcoesSumulas {
	font-size: 2em;
	float: right;
	margin-top: 0.5em;
}
.ui-widget-content .documento .iconesAcoesSumulas a {
	color: #003f65;
}
.ramoSumula {
	display: block;
}
.numeroSumula .highlightBrs{
    font-weight: bold;
    color: #004164;
}
.juris_avisos a {
    color:rgba(219,197,83,1);
}
#divNenhumDocumento {
	width: auto;
	margin: 2em auto;
	border: 1px Solid rgba(229, 229, 229, 1);
}
#divNenhumDocumento .tituloMensagem {
	display: block;
	background-color: #003f65;
	color: #FFFFFF;
	padding: 1em;
	font-weight: bold;
}
#divNenhumDocumento .blocoMensagem {
	display: inline-block;
	width: 40%;
	padding: 5%;
}
#divNenhumDocumento a {
	display: inline-block;
}
#paginaajuda {
	margin: 2em;
}
#paginaajuda .alerta {
	padding: 1em;
}
#paginaajuda h3 {
	font-size: 1.8em;
	margin: 1em 0;
	background-color: #c3d1d9;
	padding: 1em;
}
#paginaajuda h4 {
	font-size: 1.5em;
	margin: 1em 0;
	padding: 1em;
}
#paginaajuda table {
	width: 100%;
}
#paginaajuda th, #paginaajuda td {
	padding: 0.5em;
}
#paginaajuda p {
	padding: 0.5em 1em;
	margin: 0;
}
#paginaajuda .link {
	text-align: right;
	display: block;
	margin-top: 1em;
}
#idCaptchaLinha { 
	position: absolute;
	z-index: 99;
	left:-66%;
	top: 1em;
}
.juris-pesquisa #idCaptchaLinha { 
	position: static;
	z-index: 99;
	left:0;
	top: 0;
}
#formPesquisaThesaurus {
	width: 90%;
}
#divListaTermosThesaurus {
	display: block;
	margin-top: 2em;
}
#divListaTermosThesaurus .divTabela {
	width: 90%;
}
#divListaTermosThesaurus .divTabelaHeader {
	font-weight: bold;
	padding:0.5em;
	background-color: #c3d1d9;
	/*width: 90%;*/
}
#divListaTermosThesaurus .divTabela .divCell {
	padding: 0.5em;
}
#divListaTermosThesaurus .divTabela .divCell:nth-child(1) {
	width: 30%;
}
#divListaTermosThesaurus .divTabela .divCell:nth-child(2) {
	width: 10%;
}
#divListaTermosThesaurus .divTabela .divCell:nth-child(3) {
	width: 60%;
}


#menuprincipal li a.ativo,
#menu_lateral li a.ativo {
    background-color: rgba(191, 195, 198, 0.35);
    display: inline-block;
    width: 100%;
}
#menuprincipal li a.ativo:hover{
    background-color: #414F55;
}


.colunaRefinamento {
	padding-right: 0!important;
	padding-left: 0!important;
	width: 300px;
}
#formRefinamento {
	/*margin-top: 3em;*/
	padding: 0 ;
}
#formRefinamento.formFixo {
	/*margin-top: 0;*/
}
#configuracoesPesquisa .col-md-4{
	padding:0;
}
#formRefinamento #frmConsulta {
	padding: 15px 15px 15px 0;
	/*border: 1px solid #FFFFFF;*/
}
#formRefinamento .formExpandido {
    width: 1000px;
    background-color: #FFFFFF;
  
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
}
.blocoPesquisaAvancada {
 	/*max-height: 600px;*/
    overflow-y: auto;
    -ms-overflow-y: auto;
}

.blocoPesquisaAvancada::-webkit-scrollbar { 
	background-color: transparent; 
}

.blocoPesquisaAvancada::-webkit-scrollbar-button:start { 
	background-image: url(/recursos/imagens/scroll-btn-up.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eeeeee;
    cursor:pointer;
}
.blocoPesquisaAvancada::-webkit-scrollbar-button:end { 
	background-image: url(/recursos/imagens/scroll-btn-down.png);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eeeeee;
    cursor:pointer;
}
.blocoPesquisaAvancada::-webkit-scrollbar-track { 
	background-color: transparent;
}
.blocoPesquisaAvancada::-webkit-scrollbar-track-piece { 
	background-color: transparent; 
}
.blocoPesquisaAvancada::-webkit-scrollbar-thumb { 
	background-color: #eeeeee; 
	width: 1em;
}
.blocoPesquisaAvancada::-webkit-scrollbar-corner { 
	background-color: transparent;
}
.blocoPesquisaAvancada::-webkit-resizer { 
	background-color: transparent;
}

.formExpandido + .clsFiltrarResultados {
	/*margin-top: 66px;*/
}
.formFixo {
    position:fixed;
    top: 0;
    width:296.75px;
    background-color: #FFFFFF;
    z-index: 100; 
}
.divListaAcordaos table {
	width: 70%;
}
.ui-dialog {
	max-width: 100%;
}
.window {
	border: 1px solid #003f65;
}
@media print {
	a {
		text-decoration:none!important;
		}
	.corpoPaginaResultado {
		width: 100%;
		max-width: 100%;
	}
	pre {
		border: none;
		page-break-inside:auto;
	}
	.mensagemReproducaoAutorizada {
		margin-top: 2em;
	}
	.listadocumentos {
		width: 100%;
		max-width: 100%;
	}
	.divCell,
	.itemlistadocumentos {
		page-break-inside:avoid;
	}
	.docSumula .iconesAcoesSumulas {
		display: none;
	}
}
#listaSumulas .docTexto {
	page-break-inside:avoid;
}
.temas b {
	margin:0;
	padding:0;
	display: block;
}
.indiceSumulas {
	margin-top: 2em;
}
#ministroRef, #orgaoJulgadorRef, #ministroRefAtivos, #ministroRefInativos {
 max-height: 22em;
 overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
#ministroRef::-webkit-scrollbar, 
#orgaoJulgadorRef::-webkit-scrollbar, 
#ministroRefAtivos::-webkit-scrollbar, 
#ministroRefInativos::-webkit-scrollbar {
  display: none;
}
.clsConteudoFiltro .customCheckbox span {
	display: block;
	float: left;
}
.clsConteudoFiltro .customCheckbox span.qtd {
	display: block;
	float: right;
}
.clsConteudoFiltro .customCheckbox span.nome {
	width: 65%;
}
.clsConteudoFiltro #ministroRefInativos {
	display: none;
}
#formRefinamento #fechaForm {
	display: none;
	color: rgba(178,31,36,1);
	cursor: pointer;
}
#formRefinamento .input-group {
	width: 99%;
}
#formRefinamento .formExpandido #fechaForm {
	display: block;
	top: 4px;
	right: 4px;
	position: absolute;
	padding: 0;
	border: none;
	font-weight: bold;
}
#formRefinamento .label {
	color: rgb(0, 63, 101);
	font-family: Ubuntu, Arial, sans-serif;
	font-weight: bold;
	font-size: 1.1em;
}
.clsFrmConsultaPP .blocoPesquisaAvancada,
.clsFrmConsultaINF .blocoPesquisaAvancada {
	border: 1px solid rgba(229, 229, 229, 1);
	padding: 1em;
	margin-top: 1em;
}

.divisoria {
	border-bottom: 1px solid #c0c0c0;
	font-size: 11px;
	text-align: right;
	font-style: italic; 
	color: #c0c0c0;
	text-transform: uppercase;
	margin-bottom: 4px;
	padding: 0 4px;
}
.clsFiltrarResultados .divCell:nth-child(2) {
	text-align: right;
}
.clsFiltrarResultados {
	display: table;
	width: 100%;
}
.clsFiltrarResultados > div {
	display: table-row;
	width: 100%;
}
.clsFiltrarResultados #idLinkFiltrar, 
.clsFiltrarResultados #botaoLimparTodosFiltros {
	display: table-cell;
}
.clsFiltrarResultados #botaoLimparTodosFiltros {
	text-align:right;
}
.clsFiltrarResultados span {
	display: inline-block;
	vertical-align: middle;
 	margin-right: 7px;
}
.clsFrmConsultaPP #botaoLimparTodosFiltros {
	float: right;
}
.blocoPesquisaAvancada {
	max-width: 400px;
}
.clsFiltrarResultados .labelLink {
	margin-left: 0.25em;
}
.clsFiltrarResultados a#botaoLimparTodosFiltros:nth-child(2) {
	display: none;
}
#botaoAplicarFiltrosMinistro, 
#botaoLimparFiltrosMinistro,
#botaoAplicarFiltrosOrgaoJulgador, 
#botaoLimparFiltrosOrgaoJulgador,
#botaoLimparTodosFiltros {
	display: none;
}
#MIN-ATIVOS,
#MIN-INATIVOS {
	cursor: pointer;
}
.clsHint {
	position: absolute;
	margin-top: 6px;
	background-color: #FDFDFD;
	background-color: #EEEEEF;
	display: none;
	z-index:2;
	font-size: 1em;
	font-weight: normal;
	padding:0.5em 1em;
	border: 1px solid #97A3AA;
	width: auto;
	max-width: 100%;
    -moz-box-shadow:0px 5px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow:0px 5px 10px 0px rgba(0,0,0,0.2);
    box-shadow:0 5px 10px 0 rgba(0,0,0,0.2);
}
.clsHint:before {
  border-bottom:1em solid #97A3AA;
  border-left:1em solid transparent;
  border-right:1em solid transparent;
  content:'';
  display:inline-block;
  position:absolute;
  top:-1em;
}
.clsHint h4 {
	margin: 0.5em 0;
	color: #B2101D;
	font-weight: bold;
}
#configuracoesPesquisa.configIE {
	display: block;
	overflow: auto;	
	width: 287.75px;
}
#configuracoesPesquisa.configIE > div {
	display: block;
	float: left;
	width: 33.3%;
}
#listaInteiroTeor div.row:nth-child(odd) {
	background-color: #f6f6f7;
}
#listaInteiroTeor div.row:nth-child(even) {
	background-color: #FFFFFF;
}
#listaInteiroTeor div.tableHeader,
#listaInteiroTeor div.tableHeader:nth-child(odd) {
	font-weight: bold;
	background-color: #D4D6D7;
}
.clsResizable,
.clsResizableINFJ,
.clsResizablePP {
	border: 1px solid rgba(229, 229, 229, 1);
	padding: 1em;
	z-index: 2;
	background-color: #FFFFFF;
	position: relative;
}
.wrapper-juris {
	/*margin-left: -15px;
	margin-right: -15px;*/
}
.colunaAcordaos .clsResizable {
	height: 78px;
}
.colunaAcordaos .clsResizable {
	height: 83px;
}
.divPesquisaNovaPagina {
	text-align: center;
	margin-top: 1em;
}
.divPesquisaNovaPagina img {
		width: 100%;
}
#esperaSUM{
	margin-left: 1em;
	margin-top: 1em;
	width: 22px;
	height: 22px;
}
#esperaORG,
#esperaMIN,
#esperaMIN-INATIVOS {
	width: 22px;
	height: 22px;
}
#divAjudaJuris a:before {
      content: "\eaa0";
        font-family: IcoFont!important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        line-height: 1;
        -webkit-font-feature-settings: "liga";
        -webkit-font-smoothing: antialiased;
}

div.tabelaSumario {
    column-count:2;
    column-gap:1em;

    -moz-column-count:2;
    -moz-column-gap:1em;
  
    -webkit-column-count:2;
    -webkit-column-gap:1em;

    line-height: 1.3em;
}
div.tabelaSumario .linha{
	padding: 0.25em 0.5em;
}
#corpopaginajurisprudencia .barraTeseSuperada a:link,
#corpopaginajurisprudencia .barraTeseSuperada a:active,
#corpopaginajurisprudencia .barraTeseSuperada a:hover,
#corpopaginajurisprudencia .barraTeseSuperada a:visited {
	color: #222222;
	text-decoration: underline;
}
@media only screen and (max-width: 480px) {
	.divTabela, .divLinha, .divCell, .clsInformativoLabel {
		display: block;
	}
}
.clsCaixaMensagem {
	font-style: italic;
	color: #FF0000;
	padding: 1em;
	text-align:center;
}
#idJurisprudenciaThesaurusFormularioBloco .divTabela{
	width: 80%;
	margin: auto;
	
}
#idJurisprudenciaThesaurusFormularioBloco .divCell{
	padding: 0.5em;
}
#idJurisprudenciaThesaurusFormularioBloco .divCell:nth-child(1){
	text-align: right;
}
#idJurisprudenciaThesaurusFormularioBloco input[type=text] {
	width: 100%;
	max-width: 100%;
}
#idLinkTopoPagina {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	display: none;
}
#idLinkTopoPagina > div {
	display: block;
	max-width: 1187px;
	margin: auto;
	text-align: right;
	height: 2em;
}
#idLinkTopoPagina a {
    background-color:#FFFFFF;
    border:solid 1px rgba(191, 195, 198, 0.8);
    border-radius:7px;
    padding:6px 8px;
    color:rgba(160,160,160,1);
    font-size:1em;
}


@media print {
	.noprint { display: none; }
	.onlyprint { display: block; }
	#formRefinamento { display: none; }
	#idLinkTopoPagina { display: none; }
}
.docSumula .docTexto b {
	display: block;
	padding: 0.25em 0;
}
.docSumula .iconesAcoesSumulas {
	font-size: 1.5em;
}
#dialogPopup {
	overflow: hidden;
}
.popupVideo {
	display: block;
	text-align: center;
	width: 100%;
}
.popupVideo p {
	padding: 1em;
	text-align: justify;
}
.popupVideo iframe {
  	width: 450px;
    height: 260px;
    margin: auto;
}
.popupVideo p iframe {
  	width: 130px;
    height: 78px;
    margin: auto 1em;
    display: inline-block;
	vertical-align: middle;
}
.popupVideo p span {
	display: inline-block;
	vertical-align: middle;
    margin: auto 1em;
}
.popupVideo p span.titulo {
	display: block;
	font-weight:bold;
	text-align:center;
    margin: auto;
}
#idLinkFiltrarResultadosSumulas {
	display: inline-block; 
	width: calc(100% - 25px);
}
#divOrgaosJulgadoresAvancada, #divMinistrosAvancada {
	border: solid 1px rgba(191, 195, 198, 0.8);
    border-radius: 7px;
    padding: 6px 12px;
    height: 33px;
    overflow: hidden;
}
#divOrgaosJulgadoresAvancada.aberta, #divMinistrosAvancada.aberta {
	height: auto;
}
#divOrgaosJulgadoresAvancada > div, #divMinistrosAvancada div.listaCheck {
    column-count:2;
    column-gap:1em;
	display: block;
	clear: both;
	margin-top: 8px;
	/*max-height: 232px;*/
	overflow: auto;
}
#divMinistrosAvancada .divide {
	margin-top: 1em;
	border-bottom: 1px solid #c0c0c0;
    font-size: 11px;
    text-align: right;
    font-style: italic;
    color: #c0c0c0;
    text-transform: uppercase;
    margin-bottom: 4px;
    padding: 0 4px;
    cursor: pointer;
}
#divOrgaosJulgadoresAvancada .icofont-rounded-down, #divMinistrosAvancada .icofont-rounded-down {
    font-size: 1.3em;
    text-align: right;
	float: right;
    display: block;
	margin-right: -12px;
	margin-top: 2px;
	cursor: pointer;
}
#relatorSelecionado, #orgaoSelecionado {
	display: inline-block;
	width: 95%;
	height: 19px;
	overflow: auto;
	color: #c0c0c0;
	cursor: pointer;
}
.clsFormularioPesquisa .linhaform > div.label {
	padding-top: 0.5em;
}
.juris_pesqAvancada {
	white-space: nowrap;
}

.ui-dialog-titlebar {
    background-color: #004164;
    border: 0;
}
 
.ui-dialog .ui-dialog-content {
    padding: 1.5em 1.5em;
}
 
.ui-dialog .ui-dialog-title {
    text-align: center;
    font-size: 1.2em;
}
.ui-widget-overlay {
    background: #3e3e3e;
}
/* PESQUISA PRONTA*/
#tabsPesquisaPronta.tabs {
	border: 1px solid rgba(229, 229, 229, 1);
	border:none;
	padding: 0;
	border-radius:0;
}
#tabsPesquisaPronta ul.ui-tabs-nav {
	padding: 0;
	border: none;
}
#tabsPesquisaPronta ul.ui-tabs-nav li {
	padding: 0;
	margin: 0;
	border: none;
	display: block;
	float:left;
	width: 50%;
}
#tabsPesquisaPronta ul.ui-tabs-nav li a {
	display: block;
	float: none;
	padding: 1em;
	font-size: 1.5em;
	background-color: #F1F2F3;
	color: #5A5A59;
	text-align: center;
}
#tabsPesquisaPronta ul.ui-tabs-nav li.ui-tabs-active a {
	background-color: #DFE7ED;
 	color: #003f65;
 	font-family: ubuntu, sans-serif;
 	font-weight: bold;
}

#tabASSUNTOS_RECENTES {
	display: block;
	padding: 1em 0.25em;
}
#tabASSUNTOS_RECENTES .slider {
	display: block;
	overflow: auto;
	min-height: 20em;
	white-space: nowrap;
	text-align: center;
}
#tabASSUNTOS_RECENTES .divCell {
	width: 18%;
}
#tabASSUNTOS_RECENTES .btnNavegacao {
	width: 5%;
}
#tabASSUNTOS_RECENTES .slider .item {
	display: block;
	margin: 0 4px;
	vertical-align:top;
	min-height: 28em;
	white-space: normal;
	border:  1px solid rgba(229, 229, 229, 1);
	border-top: 4px solid #B2101D;
	text-align: left;
}
#tabASSUNTOS_RECENTES .slider .item .headerItem {
	border-bottom:  1px solid rgba(229, 229, 229, 1);
	text-align: center;
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 13px;
	min-height: 9.5em;
	padding: 0.25em 0;
}
#tabASSUNTOS_RECENTES .slider .item .headerItem .materiaPP {
	padding: 0.25em 0.5em;
}
#tabASSUNTOS_RECENTES .slider .item .headerItem .tituloPP {
	padding: 0.25em 0.5em;
	font-weight: bold;
}
#tabASSUNTOS_RECENTES .slider .item .temasPP ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#tabASSUNTOS_RECENTES .slider .item .temasPP li {
	display: block;
	padding: 1em;
}
#tabASSUNTOS_RECENTES .slider .item .temasPP li a,
#tabASSUNTOS_RECENTES .slider .item .temasPP li a:link,
#tabASSUNTOS_RECENTES .slider .item .temasPP li a:hover,
#tabASSUNTOS_RECENTES .slider .item .temasPP li a:active,
#tabASSUNTOS_RECENTES .slider .item .temasPP li a:visited {
	color: #2465A4;
}
#tabASSUNTOS_RECENTES .slider .item .temasPP li a:hover{
	text-decoration: underline;
}

#tabCASOS_NOTORIOS {
	display: block;
	padding: 1em 0.25em;
}
#tabCASOS_NOTORIOS .slider {
	display: block;
	overflow: auto;
	min-height: 20em;
	white-space: nowrap;
}
#tabCASOS_NOTORIOS .divCell {
	width: 18%;
}
#tabCASOS_NOTORIOS .btnNavegacao {
	width: 5%;
	text-align: center;
}
#tabCASOS_NOTORIOS .slider .item {
	display: block;
	min-width: 110px;
	margin: 0 4px;
	vertical-align:top;
	white-space: normal;
	border:  1px solid rgba(229, 229, 229, 1);
	border-top: 4px solid #B2101D;
}
#tabCASOS_NOTORIOS .slider .item .headerItem {
	border-bottom:  1px solid rgba(229, 229, 229, 1);
	text-align: center;
	font-family: Ubuntu, Arial, sans-serif;
	font-size: 1.5em;
	line-height: 1.5em;
	padding: 0.25em 0;
}
#tabCASOS_NOTORIOS .slider .item .headerItem .anoPP {
	padding: 0.25em 0.5em;
	font-weight: bold;
}
#tabCASOS_NOTORIOS .slider .item .temasPP ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	overflow-y: auto;
	overflow-x: hidden;
	height: 20em;
	
	-ms-word-break: break-all;
    word-break: break-all;

 /* Non standard for webkit */
     word-break: break-word;

    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}
#tabCASOS_NOTORIOS .slider .item .temasPP li {
	display: block;
	padding: 0.5em 1em;
}
#tabCASOS_NOTORIOS .slider .item .temasPP li a,
#tabCASOS_NOTORIOS .slider .item .temasPP li a:link,
#tabCASOS_NOTORIOS .slider .item .temasPP li a:hover,
#tabCASOS_NOTORIOS .slider .item .temasPP li a:active,
#tabCASOS_NOTORIOS .slider .item .temasPP li a:visited {
	color: #2465A4;
}
#tabCASOS_NOTORIOS .slider .item .temasPP li a:hover{
	text-decoration: underline;
}
ul#filtroMateria {
/*	border:1px Solid rgba(229, 229, 229, 1);
	padding: 0.5em;
	max-height: 300px;
	overflow-y: auto;*/
}
#sliderCASOS_NOTORIOSLeft,
#sliderCASOS_NOTORIOSRight,
#sliderASSUNTOS_RECENTESLeft,
#sliderASSUNTOS_RECENTESRight {
	text-align: center;
	height: 32px;
	width: 32px;
	font-size: 1.5em;
	color: #2465A4;
	border: none;
	border-radius: 50%;
	background-color: #dfe7ed;
	display: none;
}
#sliderCASOS_NOTORIOSLeft:disabled,
#sliderCASOS_NOTORIOSRight:disabled,
#sliderASSUNTOS_RECENTESLeft:disabled,
#sliderASSUNTOS_RECENTESRight:disabled {
	color: #FFFFFF;
}
#tabsPesquisaPronta .slider {
	position: relative;
}
#tabCASOS_NOTORIOS .slider .item .temasPP div.saibaMais ul {
	height: auto;
}
#tabsPesquisaPronta li div.saibaMais .labelSaibaMais {
	margin: 0;
	padding: 0;
}
#tabsPesquisaPronta li div.saibaMais li.mostraTituloNota {
	height: auto;
	width: auto;
}
#tabsPesquisaPronta li div.saibaMais {
	display: none;
	text-align: left;
    border: #c0c0c0 1px dotted;
    padding: 1em;
    z-index: 100;
    background-color: #f0f0f0;
    left: 0px;
    margin: 10px;
    width: 250px;
    position: absolute;
    top: 10px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3em;
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
}
.corpoPaginaResultado .materiaPP {
	font-size: 1.5em;
	background-color: #003f65;
	text-align: center;
	color: #FFFFFF;
	padding: 0.5em;
	margin: 1em 0;
	line-height: 1.5em;
}
.corpoPaginaResultado .tituloPP {
	padding: 0.5em; 
	font-size: 1.5em;
	background-color: #dfe7ed;
	padding: 0.5em;
	margin: 1em 0;
	line-height: 1.5em;
}
.divJurisprudenciaTematicaLista > ul {
	list-style-type: none;
	padding-right: 40px;
	padding-left: 40px;
}
.divJurisprudenciaTematicaLista a.linkTema {
	display: block;
 	padding: 0.25em 0;
}
.colunaRefinamento {
	font-size: 13px;
}
.col300 {
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
}
.col900 {
    width: calc(100% - 300px);
}
pre {
	overflow: hidden;
}
.iconesSumulas {
	background : rgba(191, 195, 198, 0.10);
	padding: 2em;
}
.corpoPaginaPesquisaPronta .ui-tabs-active:after,
.corpoPaginaResultado .ui-tabs-active:after {
  border-top:8px solid #DFE7ED;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  content:'';
  display:inline-block;
  left:calc(50% - 8px);
  position:absolute;
  z-index:2;
}
.corpoPaginaPesquisaPronta .ui-tabs-panel{
	margin-top: 0.5em;
}
#formRefinamento .txtLabel {
	display: block;
}
.listaTitulos {
list-style-type: disc;
}
.listaTitulos li {
margin-bottom:10px
}
.corpoPaginaResultado .materiaPP {
 font-size: 1.2em;
 background-color: #003f65;
 text-align: center;
 color: #FFFFFF;
 padding: 0.5em;
 margin: 1em 0;
 line-height: 1.5em;
 font-family: 'Ubuntu';
}
.corpoPaginaResultado .tituloPP {
 padding: 0.5em;
 font-size: 1em;
 background-color: #dfe7ed;
 padding: 0.5em;
 margin: 1em 0;
 line-height: 1.5em;
 font-family: ubuntu;
 font-weight: bold;
}
.docSumula .tituloNota {
	position: relative;
}
.ui-widget-content .clsInformativoTexto a,
.ui-widget-content .clsInformativoTexto a:link,
.ui-widget-content .clsInformativoTexto a:active,
.ui-widget-content .clsInformativoTexto a:hover,
.ui-widget-content .clsInformativoTexto a:visited {
	color: #2465A4;
	text-decoration: underline;
}
#idEdicaoSelecionada {
}
.clsFormResponsive {
	display: none;
}
#iconeDownloadVerbetes a {
	float:right;
}
#iconeDownloadVerbetes{
	text-align: center;
}
#iconeDownloadVerbetes span {
	display: inline-block;
}
.listaODS img {
	width: 80px;
	height: 80px;
}
.divSituacaoTema ul {
	margin: 0;
	
}
#linkPesquisaCNJ {
	display: block;
	float: right;
	margin-left: 120px;
	font-size: 1.2em;
	line-height: 20px;
	cursor: pointer;
	font-weight: bold;
}
#linkPesquisaCNJ .bannerCNJ {
	top: 28px;
	position: absolute;
	display: none;
    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    z-index: 10;
	cursor: pointer;
}
#linkPesquisaCNJ:hover .bannerCNJ,
#linkPesquisaCNJ .bannerCNJ:hover {
	display: block;
}
.colunaRefinamento #idPesquisaAvancada {
	z-index: 100;
	margin: 4px 4px 4px -13px;
	width: 990px;	
    background-color: #FFFFFF;
/*    -moz-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    -webkit-box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    box-shadow:0 0.5em 1em 0 rgba(0,0,0,0.2);
    */
    border: none;
    
}
.colunaRefinamento #idPesquisaAvancada .showHint {
	padding-right: 1em;
}
.colunaRefinamento .clsHint {
	width: 300px;
}
.colunaRefinamento .juris_pesqAvancada {
	display: block;
}
.colunaRefinamento .juris_pesqAvancada span {
	font-size: 12px;
	padding-left: 5px;
	padding-top: 5px;
	display: inline-block;
}
