Buscar

apol2


Esta é uma pré-visualização de arquivo. Entre para ver o arquivo original

PAP Uninter
 
 
 
 Ava Univirtus
 
 
 
 
 
 
 
 
 
 
 
 
 EDUCAÇÃO
CONTINUADA
 
 
 
 Ava Univirtus
 
 
 
 
 
 Voltar
 
 
 
 JULIO JÚNIOR
 
 
 RU: 4733521
 
 
 
 
 
 
Avisos
Contatos
 
 
 
 
 
 
 
 
 		Curso: CST ANÁLISE E DESENVOLVIMENTO DE SISTEMAS - DISTÂNCIA
 
 
 
 
 Lógica de Programação e Algoritmos 
 
 
 
 
 
 
 
 
 
 
 
 Roteiro de Estudo
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 Avaliações
 
 
 
 
 1Trabalhos
Livro da Disciplina
Central de Vídeos
Aula Ao Vivo
Tutoria
Fórum
Chat
Avisos
 
 
 
	
				
						
				Created with Raphaël 2.1.0
			
					Avaliação
		novo
 
 
 
 
 
 
 
		
		
		
		
 
 
 × Gabarito completo disponível somente após prazo final da avaliação ou quando esgotar todas as tentativas.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 JULIO ANTONIO DE MOURA JÚNIOR - RU: 4733521
 
 
 Nota:
 100
 
 
 PROTOCOLO: 20240503473352168D3585
 
 
 
 
 Disciplina(s): 
 
 Lógica de Programação e Algoritmos
 
 
 		Data de início: 		
 03/05/2024
 02:59
 
		Prazo máximo entrega:		
 -
 
 
		Data de entrega:		
 03/05/2024
 03:06
 
 
 
 
 
 
 
 
Atenção. Este gabarito é para uso exclusivo do aluno e não deve ser publicado ou compartilhado em redes sociais ou grupo de mensagens.
O seu compartilhamento infringe as políticas do Centro Universitário UNINTER e poderá implicar sanções disciplinares, com possibilidade de desligamento do quadro de alunos do Centro Universitário, bem como responder ações judiciais no âmbito cível e criminal. 
 
 Questão 1/10 - Lógica de Programação e Algoritmos
Na AULA 4 aprendemos a construir laços de repetição empregando while e for.
A seguir você encontra um código que não está sendo implementado com um laço.
Assinale a alternativa que, CORRETAMENTE, resolve o mesmo problema e gera a mesma saída, mas agora empregando um laço de repetição do tipo while, em linguagem Python.				A		Você assinalou essa alternativa (A)
				B		
				C		
				D		
				E		
Questão 2/10 - Lógica de Programação e Algoritmos
Na AULA 4 você aprendeu a trabalhar com a estrutura de repetição while (enquanto). A seguir você encontra um código com o while que deveria apresentar na tela impresso todos os valores de 10 até 100.
Porém, o código apresentado contém um problema. Assinale a alternativa que CORRETAMENTE explica qual o problema e a solução para ele.				A		O problema no código é que a variável de controle não está sendo iterada, gerando um loop infinito e fazendo com que o laço nunca se encerre. A solução para o problema é retirar a linha do print de dentro do while, colocando após o laço, e criando uma instrução dentro do laço para iterar a variável de controle.
				B		O problema no código é que expressão lógica colocada no laço está incorreta. A solução para o problema é alterar a condição lógica do laço para x >= 100. 
				C		O problema no código é que a variável de controle não está sendo iterada, gerando um loop infinito e fazendo com que o laço nunca se encerre. A solução para o problema é alterar a condição lógica do laço para x >= 100. 
				D		O problema no código é que a variável de controle não está sendo iterada, gerando um loop infinito e fazendo com que o laço nunca se encerre. A solução para o problema é adicionar uma linha que incremente a variável de controle dentro do while. A linha deve ser inserida antes o print.
				E		O problema no código é que a variável de controle não está sendo iterada, gerando um loop infinito e fazendo com que o laço nunca se encerre. A solução para o problema é adicionar uma linha que incremente a variável de controle dentro do while. A linha deve ser inserida após o print.Você assinalou essa alternativa (E)
Questão 3/10 - Lógica de Programação e Algoritmos
Aprendemos a trabalhar na AULA 4 com estruturas de repetição aninhadas. Observe o código a seguir que contém um exemplo disso empregando dois laços for.
Acerca deste código, assinale a alternativa que contém uma afirmação CORRETA sobre este código.				A		O laço de repetição for interno será executado 10 vezes ao longo da execução de todo o programa.
				B		O print do resultado para i = 3 e j = 5 será o valor 2.
				C		Se alterássemos o laço for externo para um do tipo while, a linha de código corresponde ao laço poderia ser: while(x < 20). Sendo necessário também a inclusão de mais duas linhas para inicialização e incremento da variável de controle. Você assinalou essa alternativa (C)
				D		O laço de repetição externo trabalha com um passo de 20.
				E		O laço de repetição interno trabalha com um passo unitário.
Questão 4/10 - Lógica de Programação e Algoritmos
Na AULA 4 você aprendeu a trabalhar com laços de repetição empregado while e também o for. Acerca do for e suas características, observe as afirmativas a seguir
I - A estrutura for funciona também da mesma maneira que o while, ou seja, enquanto uma condição se mantiver verdadeira, o laço continua executando.
II - O laço for é comumente empregado em situações em que o número de iterações é finito e bem definido.
III - O laço for trabalha com uma variável de controle do laço de maneira implícita.
Acerca das afirmativas apresentadas, assinale somente as CORRETAS:				A		I, somente.
				B		II, somente.
				C		I e II, somente.
				D		I e III, somente.
				E		I, II e III.Você assinalou essa alternativa (E)
Questão 5/10 - Lógica de Programação e Algoritmos
Na AULA 4 aprendemos a trabalhar com as instruções de break e continue dentro dos laços de repetição. Sobre este assunto, analise as afirmativas a seguir:
I - A instrução continue é capaz de fazer com
que o laço de repetição garanta que a próxima iteração irá acontecer, pois ele ignora o próximo teste lógico do loop.
II - A instrução break é capaz de fazer o loop retornar ao seu inicio, recomeçando o laço.
III - É permitido combinarmos estruturas de break e continue dentro de um mesmo laço de repetição
Acerca das afirmativas apresentadas, assinale somente as CORRETAS:				A		I, apenas.
				B		II, apenas.
				C		III, apenas.Você assinalou essa alternativa (C)
				D		I e III, apenas.
				E		II e III, apenas.
Questão 6/10 - Lógica de Programação e Algoritmos
Na AULA 4 aprendemos sobre variáveis do tipo contadores e também as acumuladores dentro de laços de repetição. A seguir temos um exemplo de algoritmo que trabalha com estes conceitos:
Acerca deste algoritmos apresentado e seu funcionamento, assinale a alternativa CORRETA:				A		No código, a linha 5 poderia ser substituída pela instrução cont += 1, sem prejuízo no seu funcionamento.
				B		A variável de controle do laço de repetição é a variável soma.
				C		O algoritmo apresentado tem como objetivo calcular e apresentar na tela o somatório de todos os valores múltiplos de 5 até 25.Você assinalou essa alternativa (C)
				D		O algoritmo apresentado tem como objetivo calcular e apresentar na tela o somatório de todos os valores de 5 até 25, com passo unitário.
				E		A variável cont é uma variável acumuladora, enquanto que a variável soma é uma contadora.
Questão 7/10 - Lógica de Programação e Algoritmos
Na AULA 4 aprendemos o conceito de estrutura de repetição. Sobre este conteúdo, analise as afirmativas a seguir:
I - Estruturas de repetição tem como um de seus objetivos o de auxiliar na redução da quantidade de instruções redundantes em um algoritmo.
II - Estruturas de repetição são também chamadas de estruturas iterativas, ou de laço de repetição.
III - Uma estrutura de repetição é uma recurso em programação que faz com que todas as instruções dentro dela se repitam de maneira indefinida, até que uma condição seja satisfeita.
IV - Existe uma só maneira de criarmos estruturas de repetição em linguagem Python, que seria a estrutura chamada de while (ou enquanto, em pseudocódigo).
Acerca das afirmativas apresentadas, assinale somente a alternativa contendo as corretas:				A		I e II, apenas.
				B		I, II e III, apenas.Você assinalou essa alternativa (B)
				C		I e III, apenas.
				D		I e III e IV, apenas.
				E		I, II, III e IV.
Questão 8/10 - Lógica de Programação e Algoritmos
Na AULA 4 você aprendeu o laço while e o laço for. A seguir você está vendo um laço implementado com for.
Assinale a alternativa que, CORRETAMENTE, gera a mesma saída que o código apresentado, mas agora implementando com laço while.
				A		
				B		Você assinalou essa alternativa (B)
				C		
				D		
				E		
Questão 9/10 - Lógica de Programação e Algoritmos
Na AULA 4, você aprendeu a trabalhar com o laço for. Suponha que você precisa realizar o print na tela de valores numéricos iniciando no 7 e imprimindo até o 25, de 3 em 3.
Assinale a alternativa que contém o laço for que realize o que está sendo proposto no enunciado.				A		
				B		
				C		
				D		Você assinalou essa alternativa (D)
				E		
Questão 10/10 - Lógica de Programação e Algoritmos
Na AULA 4 você aprendeu o laço while e o laço for. A seguir você está vendo um laço implementado com while.
Assinale a alternativa que, CORRETAMENTE, gera a mesma saída que o código apresentado, mas agora implementando com laço for.
				A		Você assinalou essa alternativa (A)
				B		
				C		
				D		
				E		
 
 
 Orientações para realização da avaliação.
 
 
 
 
 
 Dicas da coordenação:
 
 
 
 Tempo máximo:
 0
 
Verifique o horário de funcionamento de seu polo
 
 
 
 
 A prova que você irá realizar é individual.
 As imagens e áudios capturados poderão ser auditados e sua prova poderá ser cancelada caso essa regra seja violada.
 Precisa de ajuda com as provas on-line? Clique aqui
 
 
 Se esta for a prova da sua última disciplina do curso, as tentativas de prova só poderão ser utilizadas se forem realizadas no mesmo dia. 
 Caso atinja a média mínima para aprovação na disciplina (nota 70,0 com a composição da nota da APOL), o sistema exportará sua nota ao final do dia e automaticamente sua grade será fechada, não permitindo novas tentativas.
 Boa Prova!
 
 
 Deseja iniciar a prova agora?
 
 
 
 
 
 
 
 NÃO
 
 
 SIM, quero iniciar
 
 
 
 
 
 
 
 Para realizar essa avaliação é necessária a autorização do polo através da geração do token.
 Caso você esteja no polo, solicite o token para esta avaliação.
 
 RU
 
 
 
 
 
 Senha
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
	
 
 
 
 
 		 
 
 
 
 
 
 
 
 
 
 ×
 Finalizar a avaliação
 A avaliação será finalizada e não poderá ser alterada.
Deseja finalizar a avaliação?
 SimNão
 
 
 
 
 
 
 
 
 
 
 
 
 
@charset "utf-8";
.video-js { width: 300px; height: 150px; }
.vjs-fluid { padding-top: 56.25%; }
@charset "utf-8";
.videoReprise-dimensions { width: 100px; height: 80px; }
.videoReprise-dimensions.vjs-fluid { padding-top: 56.25%; }
@charset "utf-8";
.videoReprise-dimensions { width: 100px; height: 80px; }
.videoReprise-dimensions.vjs-fluid { padding-top: 56.25%; }
@charset "utf-8";
.MathJax_Hover_Frame { border-radius: 0.25em; box-shadow: rgb(136, 51, 170) 0px 0px 15px; display: inline-block; position: absolute; border: 1px solid rgb(170, 102, 221) !important; }
.MathJax_Menu_Button .MathJax_Hover_Arrow { position: absolute; cursor: pointer; display: inline-block; border: 2px solid rgb(170, 170, 170); border-radius: 4px; font-family: "Courier New", Courier; font-size: 9px; color: rgb(240, 240, 240); }
.MathJax_Menu_Button .MathJax_Hover_Arrow span { display: block; background-color: rgb(170, 170, 170); border: 1px solid; border-radius: 3px; line-height: 0; padding: 4px; }
.MathJax_Hover_Arrow:hover { color: white !important; border: 2px solid rgb(204, 204, 204) !important; }
.MathJax_Hover_Arrow:hover span { background-color: rgb(204, 204, 204) !important; }
@charset "utf-8";
#MathJax_About { position: fixed; left: 50%; width: auto; text-align: center; border: 3px outset; padding: 1em 2em; background-color: rgb(221, 221, 221); color: black; cursor: default; font-family: message-box; font-size: 120%; font-style: normal; text-indent: 0px; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; overflow-wrap: normal; white-space: nowrap; float: none; z-index: 201; border-radius: 15px; box-shadow:
rgb(128, 128, 128) 0px 10px 20px; }
#MathJax_About.MathJax_MousePost { outline: none; }
.MathJax_Menu { position: absolute; background-color: white; color: black; width: auto; padding: 2px; border: 1px solid rgb(204, 204, 204); margin: 0px; cursor: default; font-style: ; font-variant: normal; font-weight: ; font-stretch: ; font-size: ; font-family: ; font-optical-sizing: ; font-kerning: ; font-feature-settings: ; font-variation-settings: ; text-align: left; text-indent: 0px; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; overflow-wrap: normal; white-space: nowrap; float: none; z-index: 201; box-shadow: rgb(128, 128, 128) 0px 10px 20px; }
.MathJax_MenuItem { padding: 2px 2em; background: transparent; }
.MathJax_MenuArrow { position: absolute; right: 0.5em; padding-top: 0.25em; color: rgb(102, 102, 102); font-size: 0.75em; }
.MathJax_MenuActive .MathJax_MenuArrow { color: white; }
.MathJax_MenuArrow.RTL { left: 0.5em; right: auto; }
.MathJax_MenuCheck { position: absolute; left: 0.7em; }
.MathJax_MenuCheck.RTL { right: 0.7em; left: auto; }
.MathJax_MenuRadioCheck { position: absolute; left: 1em; }
.MathJax_MenuRadioCheck.RTL { right: 1em; left: auto; }
.MathJax_MenuLabel { padding: 2px 2em 4px 1.33em; font-style: italic; }
.MathJax_MenuRule { border-top: 1px solid rgb(204, 204, 204); margin: 4px 1px 0px; }
.MathJax_MenuDisabled { color: graytext; }
.MathJax_MenuActive { background-color: highlight; color: highlighttext; }
.MathJax_MenuDisabled:focus, .MathJax_MenuLabel:focus { background-color: rgb(232, 232, 232); }
.MathJax_ContextMenu:focus { outline: none; }
.MathJax_ContextMenu .MathJax_MenuItem:focus { outline: none; }
#MathJax_AboutClose { top: 0.2em; right: 0.2em; }
.MathJax_Menu .MathJax_MenuClose { top: -10px; left: -10px; }
.MathJax_MenuClose { position: absolute; cursor: pointer; display: inline-block; border: 2px solid rgb(170, 170, 170); border-radius: 18px; font-family: "Courier New", Courier; font-size: 24px; color: rgb(240, 240, 240); }
.MathJax_MenuClose span { display: block; background-color: rgb(170, 170, 170); border: 1.5px solid; border-radius: 18px; line-height: 0; padding: 8px 0px 6px; }
.MathJax_MenuClose:hover { color: white !important; border: 2px solid rgb(204, 204, 204) !important; }
.MathJax_MenuClose:hover span { background-color: rgb(204, 204, 204) !important; }
.MathJax_MenuClose:hover:focus { outline: none; }
@charset "utf-8";
.MathJax_Preview .MJXf-math { color: inherit !important; }
@charset "utf-8";
.MJX_Assistive_MathML { top: 0px; left: 0px; clip: rect(1px, 1px, 1px, 1px); user-select: none; position: absolute !important; padding: 1px 0px 0px !important; border: 0px !important; height: 1px !important; width: 1px !important; overflow: hidden !important; display: block !important; }
.MJX_Assistive_MathML.MJX_Assistive_MathML_Block { width: 100% !important; }
@charset "utf-8";
#MathJax_Zoom { position: absolute; background-color: rgb(240, 240, 240); overflow: auto; display: block; z-index: 301; padding: 0.5em; border: 1px solid black; margin: 0px; font-weight: normal; font-style: normal; text-align: left; text-indent: 0px; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; overflow-wrap: normal; white-space: nowrap; float: none; box-sizing: content-box; box-shadow: rgb(170, 170, 170) 5px 5px 15px; }
#MathJax_ZoomOverlay { position: absolute; left: 0px; top: 0px; z-index: 300; display: inline-block; width: 100%; height: 100%; border: 0px; padding: 0px; margin: 0px; background-color: white; opacity: 0; }
#MathJax_ZoomFrame { position: relative; display: inline-block; height: 0px; width: 0px; }
#MathJax_ZoomEventTrap { position: absolute; left: 0px; top: 0px; z-index: 302; display: inline-block; border: 0px; padding: 0px; margin: 0px; background-color: white; opacity: 0; }
@charset "utf-8";
.MathJax_Preview { color: rgb(136, 136, 136); }
#MathJax_Message { position: fixed; left: 1em; bottom: 1.5em; background-color: rgb(230, 230, 230); border: 1px solid rgb(149, 149, 149); margin: 0px; padding: 2px 8px; z-index: 102; color: black; font-size: 80%; width: auto; white-space: nowrap; }
#MathJax_MSIE_Frame { position: absolute; top: 0px; left: 0px; width: 0px; z-index: 101; border: 0px; margin: 0px; padding: 0px; }
.MathJax_Error { color: rgb(204, 0, 0); font-style: italic; }
@charset "utf-8";
.MJXp-script { font-size: 0.8em; }
.MJXp-right { transform-origin: right center; }
.MJXp-bold { font-weight: bold; }
.MJXp-italic { font-style: italic; }
.MJXp-scr { font-family: MathJax_Script, "Times New Roman", Times, STIXGeneral, serif; }
.MJXp-frak { font-family: MathJax_Fraktur, "Times New Roman", Times, STIXGeneral, serif; }
.MJXp-sf { font-family: MathJax_SansSerif, "Times New Roman", Times, STIXGeneral, serif; }
.MJXp-cal { font-family: MathJax_Caligraphic, "Times New Roman", Times, STIXGeneral, serif; }
.MJXp-mono { font-family: MathJax_Typewriter, "Times New Roman", Times, STIXGeneral, serif; }
.MJXp-largeop { font-size: 150%; }
.MJXp-largeop.MJXp-int { vertical-align: -0.2em; }
.MJXp-math { display: inline-block; line-height: 1.2; text-indent: 0px; font-family: "Times New Roman", Times, STIXGeneral, serif; white-space: nowrap; border-collapse: collapse; }
.MJXp-display { display: block; text-align: center; margin: 1em 0px; }
.MJXp-math span { display: inline-block; }
.MJXp-box { display: block !important; text-align: center; }
.MJXp-box::after { content: " "; }
.MJXp-rule { display: block !important; margin-top: 0.1em; }
.MJXp-char { display: block !important; }
.MJXp-mo { margin: 0px 0.15em; }
.MJXp-mfrac { margin: 0px 0.125em; vertical-align: 0.25em; }
.MJXp-denom { display: inline-table !important; width: 100%; }
.MJXp-denom > * { display: table-row !important; }
.MJXp-surd { vertical-align: top; }
.MJXp-surd > * { display: block !important; }
.MJXp-script-box > * { display: table !important; height: 50%; }
.MJXp-script-box > * > * { display: table-cell !important; vertical-align: top; }
.MJXp-script-box > :last-child > * { vertical-align: bottom; }
.MJXp-script-box > * > * > * { display: block !important; }
.MJXp-mphantom { visibility: hidden; }
.MJXp-munderover { display: inline-table !important; }
.MJXp-over { display: inline-block !important; text-align: center; }
.MJXp-over > * { display: block !important; }
.MJXp-munderover > * { display: table-row !important; }
.MJXp-mtable { vertical-align: 0.25em; margin: 0px 0.125em; }
.MJXp-mtable > * { display: inline-table !important; vertical-align: middle; }
.MJXp-mtr { display: table-row !important; }
.MJXp-mtd { text-align: center; padding: 0.5em 0px 0px 0.5em; display: table-cell !important; }
.MJXp-mtr > .MJXp-mtd:first-child { padding-left: 0px; }
.MJXp-mtr:first-child > .MJXp-mtd { padding-top: 0px; }
.MJXp-mlabeledtr { display: table-row !important; }
.MJXp-mlabeledtr > .MJXp-mtd:first-child { padding-left: 0px; }
.MJXp-mlabeledtr:first-child > .MJXp-mtd { padding-top: 0px; }
.MJXp-merror { background-color: rgb(255, 255, 136); color: rgb(204, 0, 0); border: 1px solid rgb(204, 0, 0); padding: 1px 3px; font-style: normal; font-size: 90%; }
.MJXp-scale0 { transform: scaleX(0); }
.MJXp-scale1 { transform: scaleX(0.1); }
.MJXp-scale2 { transform: scaleX(0.2); }
.MJXp-scale3 { transform: scaleX(0.3); }
.MJXp-scale4 { transform: scaleX(0.4); }
.MJXp-scale5 { transform: scaleX(0.5); }
.MJXp-scale6 { transform: scaleX(0.6); }
.MJXp-scale7 { transform: scaleX(0.7); }
.MJXp-scale8 { transform: scaleX(0.8); }
.MJXp-scale9 { transform: scaleX(0.9); }
.MathJax_PHTML .noError { font-size: 90%; text-align: left; color: black; padding: 1px 3px; border: 1px solid; }
@charset "utf-8";
.mjx-chtml { display: inline-block; line-height: 0; text-indent: 0px; text-align: left;
text-transform: none; font-style: normal; font-weight: normal; font-size: 100%; letter-spacing: normal; overflow-wrap: normal; word-spacing: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0px; min-height: 0px; border: 0px; margin: 0px; padding: 1px 0px; }
.MJXc-display { display: block; text-align: center; margin: 1em 0px; padding: 0px; }
.mjx-chtml[tabindex]:focus, body :focus .mjx-chtml[tabindex] { display: inline-table; }
.mjx-math { display: inline-block; border-collapse: separate; border-spacing: 0px; }
.mjx-math * { display: inline-block; text-align: left; }
.mjx-numerator { display: block; text-align: center; }
.mjx-denominator { display: block; text-align: center; }
.MJXc-stacked { height: 0px; position: relative; }
.MJXc-stacked > * { position: absolute; }
.MJXc-bevelled > * { display: inline-block; }
.mjx-stack { display: inline-block; }
.mjx-op { display: block; }
.mjx-under { display: table-cell; }
.mjx-over { display: block; }
.mjx-over > * { padding-left: 0px !important; padding-right: 0px !important; }
.mjx-under > * { padding-left: 0px !important; padding-right: 0px !important; }
.mjx-stack > .mjx-sup { display: block; }
.mjx-stack > .mjx-sub { display: block; }
.mjx-prestack > .mjx-presup { display: block; }
.mjx-prestack > .mjx-presub { display: block; }
.mjx-delim-h > .mjx-char { display: inline-block; }
.mjx-surd { vertical-align: top; }
.mjx-mphantom * { visibility: hidden; }
.mjx-merror { background-color: rgb(255, 255, 136); color: rgb(204, 0, 0); border: 1px solid rgb(204, 0, 0); padding: 2px 3px; font-style: normal; font-size: 90%; }
.mjx-annotation-xml { line-height: normal; }
.mjx-menclose > svg { fill: none; stroke: currentcolor; }
.mjx-mtr { display: table-row; }
.mjx-mlabeledtr { display: table-row; }
.mjx-mtd { display: table-cell; text-align: center; }
.mjx-label { display: block; }
.mjx-box { display: inline-block; }
.mjx-block { display: block; }
.mjx-span { }
.mjx-char { display: block; white-space: pre; }
.mjx-itable { display: inline-table; }
.mjx-row { display: table-row; }
.mjx-cell { display: table-cell; }
.mjx-table { display: table; width: 100%; }
.mjx-line { display: block; height: 0px; }
.mjx-strut { width: 0px; padding-top: 1em; }
.mjx-vsize { width: 0px; }
.MJXc-space1 { margin-left: 0.167em; }
.MJXc-space2 { margin-left: 0.222em; }
.MJXc-space3 { margin-left: 0.278em; }
.mjx-chartest { display: block; visibility: hidden; position: absolute; top: 0px; line-height: normal; font-size: 500%; }
.mjx-chartest .mjx-char { display: inline; }
.mjx-chartest .mjx-box { padding-top: 1000px; }
.MJXc-processing { visibility: hidden; position: fixed; width: 0px; height: 0px; overflow: hidden; }
.MJXc-processed { display: none; }
.mjx-test { display: block; font-style: normal; font-weight: normal; font-size: 100%; text-indent: 0px; text-transform: none; letter-spacing: normal; word-spacing: normal; overflow: hidden; height: 1px; }
.mjx-ex-box-test { position: absolute; width: 1px; height: 60ex; }
#MathJax_CHTML_Tooltip { background-color: infobackground; color: infotext; border: 1px solid black; box-shadow: rgb(170, 170, 170) 2px 2px 5px; padding: 3px 4px; z-index: 401; position: absolute; left: 0px; top: 0px; width: auto; height: auto; display: none; }
.mjx-chtml .mjx-noError { line-height: 1.2; font-size: 90%; text-align: left; color: black; padding: 1px 3px; border: 1px solid; }
.MJXc-TeX-unknown-R { font-family: STIXGeneral, "Cambria Math", "Arial Unicode MS", serif; font-style: normal; font-weight: normal; }
.MJXc-TeX-unknown-I { font-family: STIXGeneral, "Cambria Math", "Arial Unicode MS", serif; font-style: italic; font-weight: normal; }
.MJXc-TeX-unknown-B { font-family: STIXGeneral, "Cambria Math", "Arial Unicode MS", serif; font-style: normal; font-weight: bold; }
.MJXc-TeX-unknown-BI { font-family: STIXGeneral, "Cambria Math", "Arial Unicode MS", serif; font-style: italic; font-weight: bold; }
.MJXc-TeX-ams-R { font-family: MJXc-TeX-ams-R, MJXc-TeX-ams-Rw; }
.MJXc-TeX-cal-B { font-family: MJXc-TeX-cal-B, MJXc-TeX-cal-Bx, MJXc-TeX-cal-Bw; }
.MJXc-TeX-frak-R { font-family: MJXc-TeX-frak-R, MJXc-TeX-frak-Rw; }
.MJXc-TeX-frak-B { font-family: MJXc-TeX-frak-B, MJXc-TeX-frak-Bx, MJXc-TeX-frak-Bw; }
.MJXc-TeX-math-BI { font-family: MJXc-TeX-math-BI, MJXc-TeX-math-BIx, MJXc-TeX-math-BIw; }
.MJXc-TeX-sans-R { font-family: MJXc-TeX-sans-R, MJXc-TeX-sans-Rw; }
.MJXc-TeX-sans-B { font-family: MJXc-TeX-sans-B, MJXc-TeX-sans-Bx, MJXc-TeX-sans-Bw; }
.MJXc-TeX-sans-I { font-family: MJXc-TeX-sans-I, MJXc-TeX-sans-Ix, MJXc-TeX-sans-Iw; }
.MJXc-TeX-script-R { font-family: MJXc-TeX-script-R, MJXc-TeX-script-Rw; }
.MJXc-TeX-type-R { font-family: MJXc-TeX-type-R, MJXc-TeX-type-Rw; }
.MJXc-TeX-cal-R { font-family: MJXc-TeX-cal-R, MJXc-TeX-cal-Rw; }
.MJXc-TeX-main-B { font-family: MJXc-TeX-main-B, MJXc-TeX-main-Bx, MJXc-TeX-main-Bw; }
.MJXc-TeX-main-I { font-family: MJXc-TeX-main-I, MJXc-TeX-main-Ix, MJXc-TeX-main-Iw; }
.MJXc-TeX-main-R { font-family: MJXc-TeX-main-R, MJXc-TeX-main-Rw; }
.MJXc-TeX-math-I { font-family: MJXc-TeX-math-I, MJXc-TeX-math-Ix, MJXc-TeX-math-Iw; }
.MJXc-TeX-size1-R { font-family: MJXc-TeX-size1-R, MJXc-TeX-size1-Rw; }
.MJXc-TeX-size2-R { font-family: MJXc-TeX-size2-R, MJXc-TeX-size2-Rw; }
.MJXc-TeX-size3-R { font-family: MJXc-TeX-size3-R, MJXc-TeX-size3-Rw; }
.MJXc-TeX-size4-R { font-family: MJXc-TeX-size4-R, MJXc-TeX-size4-Rw; }
@font-face { font-family: MJXc-TeX-ams-R; src: local("MathJax_AMS"), local("MathJax_AMS-Regular"); }
@font-face { font-family: MJXc-TeX-ams-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-cal-B; src: local("MathJax_Caligraphic Bold"), local("MathJax_Caligraphic-Bold"); }
@font-face { font-family: MJXc-TeX-cal-Bx; src: local("MathJax_Caligraphic"); font-weight: bold; }
@font-face { font-family: MJXc-TeX-cal-Bw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-frak-R; src: local("MathJax_Fraktur"), local("MathJax_Fraktur-Regular"); }
@font-face { font-family: MJXc-TeX-frak-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-frak-B; src: local("MathJax_Fraktur Bold"), local("MathJax_Fraktur-Bold"); }
@font-face { font-family: MJXc-TeX-frak-Bx; src: local("MathJax_Fraktur"); font-weight: bold; }
@font-face { font-family: MJXc-TeX-frak-Bw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-math-BI; src: local("MathJax_Math BoldItalic"), local("MathJax_Math-BoldItalic"); }
@font-face { font-family: MJXc-TeX-math-BIx; src: local("MathJax_Math"); font-weight: bold; font-style: italic; }
@font-face { font-family: MJXc-TeX-math-BIw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf")
format("opentype"); }
@font-face { font-family: MJXc-TeX-sans-R; src: local("MathJax_SansSerif"), local("MathJax_SansSerif-Regular"); }
@font-face { font-family: MJXc-TeX-sans-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-sans-B; src: local("MathJax_SansSerif Bold"), local("MathJax_SansSerif-Bold"); }
@font-face { font-family: MJXc-TeX-sans-Bx; src: local("MathJax_SansSerif"); font-weight: bold; }
@font-face { font-family: MJXc-TeX-sans-Bw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-sans-I; src: local("MathJax_SansSerif Italic"), local("MathJax_SansSerif-Italic"); }
@font-face { font-family: MJXc-TeX-sans-Ix; src: local("MathJax_SansSerif"); font-style: italic; }
@font-face { font-family: MJXc-TeX-sans-Iw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-script-R; src: local("MathJax_Script"), local("MathJax_Script-Regular"); }
@font-face { font-family: MJXc-TeX-script-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-type-R; src: local("MathJax_Typewriter"), local("MathJax_Typewriter-Regular"); }
@font-face { font-family: MJXc-TeX-type-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-cal-R; src: local("MathJax_Caligraphic"), local("MathJax_Caligraphic-Regular"); }
@font-face { font-family: MJXc-TeX-cal-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-main-B; src: local("MathJax_Main Bold"), local("MathJax_Main-Bold"); }
@font-face { font-family: MJXc-TeX-main-Bx; src: local("MathJax_Main"); font-weight: bold; }
@font-face { font-family: MJXc-TeX-main-Bw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-main-I; src: local("MathJax_Main Italic"), local("MathJax_Main-Italic"); }
@font-face { font-family: MJXc-TeX-main-Ix; src: local("MathJax_Main"); font-style: italic; }
@font-face { font-family: MJXc-TeX-main-Iw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-main-R; src: local("MathJax_Main"), local("MathJax_Main-Regular"); }
@font-face { font-family: MJXc-TeX-main-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-math-I; src: local("MathJax_Math Italic"), local("MathJax_Math-Italic"); }
@font-face { font-family: MJXc-TeX-math-Ix; src: local("MathJax_Math"); font-style: italic; }
@font-face { font-family: MJXc-TeX-math-Iw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-size1-R; src: local("MathJax_Size1"), local("MathJax_Size1-Regular"); }
@font-face { font-family: MJXc-TeX-size1-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-size2-R; src: local("MathJax_Size2"), local("MathJax_Size2-Regular"); }
@font-face { font-family: MJXc-TeX-size2-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-size3-R; src: local("MathJax_Size3"), local("MathJax_Size3-Regular"); }
@font-face { font-family: MJXc-TeX-size3-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf") format("opentype"); }
@font-face { font-family: MJXc-TeX-size4-R; src: local("MathJax_Size4"), local("MathJax_Size4-Regular"); }
@font-face { font-family: MJXc-TeX-size4-Rw; src: url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff") format("woff"), url("https://univirtus.uninter.com/ava/web/js/vendor/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf") format("opentype"); }
@charset "utf-8";
@font-face { font-family: "Open Sans"; src: url("../fonts/open_sans/OpenSans-Regular.ttf") format("truetype"); font-weight: normal; font-style: normal; }
@font-face { font-family: "Open Sans"; src: url("../fonts/open_sans/OpenSans-Bold.ttf") format("truetype"); font-weight: bold; font-style: normal; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; height: 0px; }
[hidden], template { display: none; }
html { font-family: sans-serif; text-size-adjust: 100%; }
body { margin: 0px; }
a { background: transparent; }
a:focus { outline: dotted thin; }
a:active, a:hover { outline: 0px; }
h1 { font-size: 2em; margin: 0.67em 0px; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
hr { box-sizing: content-box; height: 0px; }
mark { background: rgb(255, 255, 0); color: rgb(0, 0, 0); }
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
pre { white-space: pre-wrap; }
q { quotes: "“" "”" "‘" "’"; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img { border: 0px; }
svg:not(:root) { overflow: hidden; }
figure { margin: 0px; }
fieldset {
border: 1px solid rgb(192, 192, 192); margin: 0px 2px; padding: 0.35em 0.625em 0.75em; }
legend { border: 0px; padding: 0px; }
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0px; }
button, input { line-height: normal; }
button, select { text-transform: none; }
button, html input[type="button"], input[type="reset"], input[type="submit"] { appearance: button; cursor: pointer; }
button[disabled], html input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0px; }
input[type="search"] { appearance: textfield; box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { appearance: none; }
textarea { overflow: auto; vertical-align: top; }
table { border-collapse: collapse; border-spacing: 0px; }
@media print {
 * { text-shadow: none !important; color: rgb(0, 0, 0) !important; background: transparent !important; box-shadow: none !important; }
 a, a:visited { text-decoration: underline; }
 a[href]::after { content: " (" attr(href) ")"; }
 abbr[title]::after { content: " (" attr(title) ")"; }
 a[href^="javascript:"]::after, a[href^="#"]::after { content: ""; }
 pre, blockquote { border: 1px solid rgb(153, 153, 153); break-inside: avoid; }
 thead { display: table-header-group; }
 tr, img { break-inside: avoid; }
 img { max-width: 100% !important; }
 @page { margin: 2cm 0.5cm; }
 p, h2, h3 { orphans: 3; widows: 3; }
 h2, h3 { break-after: avoid; }
 select { background: rgb(255, 255, 255) !important; }
 .navbar { display: none; }
 .table td, .table th, .table-style td, .table-style th, .table-style2 td, .table-style2 th, table.list td, table.list th, table.table-activities td, table.table-activities th, .upload-manager table.upload-manager-file-list td, .upload-manager table.upload-manager-file-list th { background-color: rgb(255, 255, 255) !important; }
 .btn > .caret, .dropup > .btn > .caret { border-top-color: rgb(0, 0, 0) !important; }
 .label { border: 1px solid rgb(0, 0, 0); }
 .table, .table-style, .table-style2, table.list, table.table-activities, .upload-manager table.upload-manager-file-list { border-collapse: collapse !important; }
 .table-bordered th, .table-bordered td, .table-style2 th, .table-style2 td, table.table-activities th, table.table-activities td { border: 1px solid rgb(221, 221, 221) !important; }
}
*, ::before, ::after { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
body { font-family: "Open Sans", Helvetica, Arial, sans-serif; font-size: 12px; line-height: 1.42857; color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); }
input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
a { color: rgb(1, 126, 186); text-decoration: none; }
a:hover, a:focus { color: rgb(1, 74, 110); text-decoration: underline; }
a:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px; }
img { vertical-align: middle; }
.img-responsive { display: block; max-width: 100%; height: auto; }
.img-rounded { border-radius: 0px; }
.img-thumbnail { padding: 4px; line-height: 1.42857; background-color: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221); border-radius: 0px; transition: all 0.2s ease-in-out 0s; display: inline-block; max-width: 100%; height: auto; }
.img-circle { border-radius: 50%; }
hr { margin-top: 12px; margin-bottom: 12px; border-width: 1px 0px 0px; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image: initial; border-top-style: solid; border-top-color: rgb(238, 238, 238); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; }
p { margin: 0px 0px 6px; }
.lead { margin-bottom: 12px; font-size: 13px; font-weight: 200; line-height: 1.4; }
@media (min-width: 768px) {
 .lead { font-size: 18px; }
}
small, .small { font-size: 85%; }
cite { font-style: normal; }
.text-muted { color: rgb(153, 153, 153); }
.text-primary { color: rgb(66, 112, 161); }
.text-primary:hover { color: rgb(51, 87, 125); }
.text-warning { color: rgb(192, 152, 83); }
.text-warning:hover { color: rgb(164, 126, 60); }
.text-danger { color: rgb(185, 74, 72); }
.text-danger:hover { color: rgb(149, 59, 57); }
.text-success { color: rgb(70, 136, 71); }
.text-success:hover { color: rgb(53, 102, 53); }
.text-info { color: rgb(58, 135, 173); }
.text-info:hover { color: rgb(45, 105, 135); }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-middle { vertical-align: middle; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Open Sans", Helvetica, Arial, sans-serif; font-weight: 500; line-height: 1.1; color: inherit; }
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: rgb(153, 153, 153); }
h1, h2, h3 { margin-top: 12px; margin-bottom: 6px; }
h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small { font-size: 65%; }
h4, h5, h6 { margin-top: 6px; margin-bottom: 6px; }
h4 small, h5 small, h6 small, h4 .small, h5 .small, h6 .small { font-size: 75%; }
h1, .h1 { font-size: 31px; }
h2, .h2 { font-size: 25px; }
h3, .h3 { font-size: 21px; }
h4, .h4 { font-size: 15px; }
h5, .h5 { font-size: 12px; }
h6, .h6 { font-size: 11px; }
.page-header { padding-bottom: 5px; margin: 24px 0px 12px; border-bottom: 1px solid rgb(238, 238, 238); }
ul, ol { margin-top: 0px; margin-bottom: 6px; }
ul ul, ol ul, ul ol, ol ol { margin-bottom: 0px; }
.list-unstyled { padding-left: 0px; list-style: none; }
.list-inline { padding-left: 0px; list-style: none; }
.list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; }
.list-inline > li:first-child { padding-left: 0px; }
dl { margin-bottom: 12px; }
dt, dd { line-height: 1.42857; }
dt { font-weight: bold; }
dd { margin-left: 0px; }
@media (min-width: 768px) {
 .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
 .dl-horizontal dd { margin-left: 180px; }
 .dl-horizontal dd::before, .dl-horizontal dd::after { content: " "; display: table; }
 .dl-horizontal dd::after { clear: both; }
 .dl-horizontal dd::before, .dl-horizontal dd::after { content: " "; display: table; }
 .dl-horizontal dd::after { clear: both; }
}
abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted rgb(153, 153, 153); }
abbr.initialism { font-size: 90%; text-transform: uppercase; }
blockquote { padding: 6px 12px; margin: 0px 0px 12px; border-left: 5px solid rgb(238, 238, 238); }
blockquote p { font-size: 15px; font-weight: 300; line-height: 1.25; }
blockquote p:last-child { margin-bottom: 0px; }
blockquote small { display: block; line-height: 1.42857; color: rgb(153, 153, 153); }
blockquote small::before { content: "— "; }
blockquote.pull-right { padding-right: 15px; padding-left: 0px; border-right: 5px solid rgb(238, 238, 238); border-left: 0px; }
blockquote.pull-right p, blockquote.pull-right small, blockquote.pull-right .small { text-align: right; }
blockquote.pull-right small::before, blockquote.pull-right .small::before { content: ""; }
blockquote.pull-right small::after, blockquote.pull-right .small::after { content: " —"; }
blockquote::before, blockquote::after { content: "";
}
address { margin-bottom: 12px; font-style: normal; line-height: 1.42857; }
code, kbd, pre, samp { font-family: Monaco, Menlo, Consolas, "Courier New", monospace; }
code { padding: 2px 4px; font-size: 90%; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); white-space: nowrap; border-radius: 0px; }
pre { display: block; padding: 5.5px; margin: 0px 0px 6px; font-size: 11px; line-height: 1.42857; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); background-color: rgb(245, 245, 245); border: 1px solid rgb(204, 204, 204); border-radius: 0px; }
pre code { padding: 0px; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0px; }
.pre-scrollable { max-height: 340px; overflow-y: scroll; }
.container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; }
.container::before, .container::after { content: " "; display: table; }
.container::after { clear: both; }
.container::before, .container::after { content: " "; display: table; }
.container::after { clear: both; }
.row { margin-left: -15px; margin-right: -15px; }
.row::before, .row::after { content: " "; display: table; }
.row::after { clear: both; }
.row::before, .row::after { content: " "; display: table; }
.row::after { clear: both; }
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; }
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 { float: left; }
.col-xs-12 { width: 100%; }
.col-xs-11 { width: 91.6667%; }
.col-xs-10 { width: 83.3333%; }
.col-xs-9 { width: 75%; }
.col-xs-8 { width: 66.6667%; }
.col-xs-7 { width: 58.3333%; }
.col-xs-6 { width: 50%; }
.col-xs-5 { width: 41.6667%; }
.col-xs-4 { width: 33.3333%; }
.col-xs-3 { width: 25%; }
.col-xs-2 { width: 16.6667%; }
.col-xs-1 { width: 8.33333%; }
.col-xs-pull-12 { right: 100%; }
.col-xs-pull-11 { right: 91.6667%; }
.col-xs-pull-10 { right: 83.3333%; }
.col-xs-pull-9 { right: 75%; }
.col-xs-pull-8 { right: 66.6667%; }
.col-xs-pull-7 { right: 58.3333%; }
.col-xs-pull-6 { right: 50%; }
.col-xs-pull-5 { right: 41.6667%; }
.col-xs-pull-4 { right: 33.3333%; }
.col-xs-pull-3 { right: 25%; }
.col-xs-pull-2 { right: 16.6667%; }
.col-xs-pull-1 { right: 8.33333%; }
.col-xs-pull-0 { right: 0px; }
.col-xs-push-12 { left: 100%; }
.col-xs-push-11 { left: 91.6667%; }
.col-xs-push-10 { left: 83.3333%; }
.col-xs-push-9 { left: 75%; }
.col-xs-push-8 { left: 66.6667%; }
.col-xs-push-7 { left: 58.3333%; }
.col-xs-push-6 { left: 50%; }
.col-xs-push-5 { left: 41.6667%; }
.col-xs-push-4 { left: 33.3333%; }
.col-xs-push-3 { left: 25%; }
.col-xs-push-2 { left: 16.6667%; }
.col-xs-push-1 { left: 8.33333%; }
.col-xs-push-0 { left: 0px; }
.col-xs-offset-12 { margin-left: 100%; }
.col-xs-offset-11 { margin-left: 91.6667%; }
.col-xs-offset-10 { margin-left: 83.3333%; }
.col-xs-offset-9 { margin-left: 75%; }
.col-xs-offset-8 { margin-left: 66.6667%; }
.col-xs-offset-7 { margin-left: 58.3333%; }
.col-xs-offset-6 { margin-left: 50%; }
.col-xs-offset-5 { margin-left: 41.6667%; }
.col-xs-offset-4 { margin-left: 33.3333%; }
.col-xs-offset-3 { margin-left: 25%; }
.col-xs-offset-2 { margin-left: 16.6667%; }
.col-xs-offset-1 { margin-left: 8.33333%; }
.col-xs-offset-0 { margin-left: 0px; }
@media (min-width: 768px) {
 .container { width: 100%; }
 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 { float: left; }
 .col-sm-12 { width: 100%; }
 .col-sm-11 { width: 91.6667%; }
 .col-sm-10 { width: 83.3333%; }
 .col-sm-9 { width: 75%; }
 .col-sm-8 { width: 66.6667%; }
 .col-sm-7 { width: 58.3333%; }
 .col-sm-6 { width: 50%; }
 .col-sm-5 { width: 41.6667%; }
 .col-sm-4 { width: 33.3333%; }
 .col-sm-3 { width: 25%; }
 .col-sm-2 { width: 16.6667%; }
 .col-sm-1 { width: 8.33333%; }
 .col-sm-pull-12 { right: 100%; }
 .col-sm-pull-11 { right: 91.6667%; }
 .col-sm-pull-10 { right: 83.3333%; }
 .col-sm-pull-9 { right: 75%; }
 .col-sm-pull-8 { right: 66.6667%; }
 .col-sm-pull-7 { right: 58.3333%; }
 .col-sm-pull-6 { right: 50%; }
 .col-sm-pull-5 { right: 41.6667%; }
 .col-sm-pull-4 { right: 33.3333%; }
 .col-sm-pull-3 { right: 25%; }
 .col-sm-pull-2 { right: 16.6667%; }
 .col-sm-pull-1 { right: 8.33333%; }
 .col-sm-pull-0 { right: 0px; }
 .col-sm-push-12 { left: 100%; }
 .col-sm-push-11 { left: 91.6667%; }
 .col-sm-push-10 { left: 83.3333%; }
 .col-sm-push-9 { left: 75%; }
 .col-sm-push-8 { left: 66.6667%; }
 .col-sm-push-7 { left: 58.3333%; }
 .col-sm-push-6 { left: 50%; }
 .col-sm-push-5 { left: 41.6667%; }
 .col-sm-push-4 { left: 33.3333%; }
 .col-sm-push-3 { left: 25%; }
 .col-sm-push-2 { left: 16.6667%; }
 .col-sm-push-1 { left: 8.33333%; }
 .col-sm-push-0 { left: 0px; }
 .col-sm-offset-12 { margin-left: 100%; }
 .col-sm-offset-11 { margin-left: 91.6667%; }
 .col-sm-offset-10 { margin-left: 83.3333%; }
 .col-sm-offset-9 { margin-left: 75%; }
 .col-sm-offset-8 { margin-left: 66.6667%; }
 .col-sm-offset-7 { margin-left: 58.3333%; }
 .col-sm-offset-6 { margin-left: 50%; }
 .col-sm-offset-5 { margin-left: 41.6667%; }
 .col-sm-offset-4 { margin-left: 33.3333%; }
 .col-sm-offset-3 { margin-left: 25%; }
 .col-sm-offset-2 { margin-left: 16.6667%; }
 .col-sm-offset-1 { margin-left: 8.33333%; }
 .col-sm-offset-0 { margin-left: 0px; }
}
@media (min-width: 992px) {
 .container { width: 100%; }
 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 { float: left; }
 .col-md-12 { width: 100%; }
 .col-md-11 { width: 91.6667%; }
 .col-md-10 { width: 83.3333%; }
 .col-md-9 { width: 75%; }
 .col-md-8 { width: 66.6667%; }
 .col-md-7 { width: 58.3333%; }
 .col-md-6 { width: 50%; }
 .col-md-5 { width: 41.6667%; }
 .col-md-4 { width: 33.3333%; }
 .col-md-3 { width: 25%; }
 .col-md-2 { width: 16.6667%; }
 .col-md-1 { width: 8.33333%; }
 .col-md-pull-12 { right: 100%; }
 .col-md-pull-11 { right: 91.6667%; }
 .col-md-pull-10 { right: 83.3333%; }
 .col-md-pull-9 { right: 75%; }
 .col-md-pull-8 { right: 66.6667%; }
 .col-md-pull-7 { right: 58.3333%; }
 .col-md-pull-6 { right: 50%; }
 .col-md-pull-5 { right: 41.6667%; }
 .col-md-pull-4 { right: 33.3333%; }
 .col-md-pull-3 { right: 25%; }
 .col-md-pull-2 { right: 16.6667%; }
 .col-md-pull-1 { right: 8.33333%; }
 .col-md-pull-0 { right: 0px; }
 .col-md-push-12 { left: 100%; }
 .col-md-push-11 { left: 91.6667%; }
 .col-md-push-10 { left: 83.3333%; }
 .col-md-push-9 { left: 75%; }
 .col-md-push-8 { left: 66.6667%; }
 .col-md-push-7 { left: 58.3333%; }
 .col-md-push-6 { left: 50%; }
 .col-md-push-5 { left: 41.6667%; }
 .col-md-push-4 { left: 33.3333%; }
 .col-md-push-3 { left: 25%; }
 .col-md-push-2 { left: 16.6667%; }
 .col-md-push-1 { left: 8.33333%; }
 .col-md-push-0 { left: 0px; }
 .col-md-offset-12 { margin-left: 100%; }
 .col-md-offset-11 { margin-left: 91.6667%; }
 .col-md-offset-10 { margin-left: 83.3333%; }
 .col-md-offset-9 { margin-left: 75%; }
 .col-md-offset-8 { margin-left: 66.6667%; }
 .col-md-offset-7 { margin-left: 58.3333%;
}
 .col-md-offset-6 { margin-left: 50%; }
 .col-md-offset-5 { margin-left: 41.6667%; }
 .col-md-offset-4 { margin-left: 33.3333%; }
 .col-md-offset-3 { margin-left: 25%; }
 .col-md-offset-2 { margin-left: 16.6667%; }
 .col-md-offset-1 { margin-left: 8.33333%; }
 .col-md-offset-0 { margin-left: 0px; }
}
@media (min-width: 1024px) {
 .container { width: 100%; }
 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 { float: left; }
 .col-md-12 { width: 100%; }
 .col-md-11 { width: 91.6667%; }
 .col-md-10 { width: 83.3333%; }
 .col-md-9 { width: 75%; }
 .col-md-8 { width: 66.6667%; }
 .col-md-7 { width: 58.3333%; }
 .col-md-6 { width: 50%; }
 .col-md-5 { width: 41.6667%; }
 .col-md-4 { width: 33.3333%; }
 .col-md-3 { width: 25%; }
 .col-md-2 { width: 16.6667%; }
 .col-md-1 { width: 8.33333%; }
 .col-md-pull-12 { right: 100%; }
 .col-md-pull-11 { right: 91.6667%; }
 .col-md-pull-10 { right: 83.3333%; }
 .col-md-pull-9 { right: 75%; }
 .col-md-pull-8 { right: 66.6667%; }
 .col-md-pull-7 { right: 58.3333%; }
 .col-md-pull-6 { right: 50%; }
 .col-md-pull-5 { right: 41.6667%; }
 .col-md-pull-4 { right: 33.3333%; }
 .col-md-pull-3 { right: 25%; }
 .col-md-pull-2 { right: 16.6667%; }
 .col-md-pull-1 { right: 8.33333%; }
 .col-md-pull-0 { right: 0px; }
 .col-md-push-12 { left: 100%; }
 .col-md-push-11 { left: 91.6667%; }
 .col-md-push-10 { left: 83.3333%; }
 .col-md-push-9 { left: 75%; }
 .col-md-push-8 { left: 66.6667%; }
 .col-md-push-7 { left: 58.3333%; }
 .col-md-push-6 { left: 50%; }
 .col-md-push-5 { left: 41.6667%; }
 .col-md-push-4 { left: 33.3333%; }
 .col-md-push-3 { left: 25%; }
 .col-md-push-2 { left: 16.6667%; }
 .col-md-push-1 { left: 8.33333%; }
 .col-md-push-0 { left: 0px; }
 .col-md-offset-12 { margin-left: 100%; }
 .col-md-offset-11 { margin-left: 91.6667%; }
 .col-md-offset-10 { margin-left: 83.3333%; }
 .col-md-offset-9 { margin-left: 75%; }
 .col-md-offset-8 { margin-left: 66.6667%; }
 .col-md-offset-7 { margin-left: 58.3333%; }
 .col-md-offset-6 { margin-left: 50%; }
 .col-md-offset-5 { margin-left: 41.6667%; }
 .col-md-offset-4 { margin-left: 33.3333%; }
 .col-md-offset-3 { margin-left: 25%; }
 .col-md-offset-2 { margin-left: 16.6667%; }
 .col-md-offset-1 { margin-left: 8.33333%; }
 .col-md-offset-0 { margin-left: 0px; }
}
@media (min-width: 1200px) {
 .container { width: 100%; }
 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 { float: left; }
 .col-lg-12 { width: 100%; }
 .col-lg-11 { width: 91.6667%; }
 .col-lg-10 { width: 83.3333%; }
 .col-lg-9 { width: 75%; }
 .col-lg-8 { width: 66.6667%; }
 .col-lg-7 { width: 58.3333%; }
 .col-lg-6 { width: 50%; }
 .col-lg-5 { width: 41.6667%; }
 .col-lg-4 { width: 33.3333%; }
 .col-lg-3 { width: 25%; }
 .col-lg-2 { width: 16.6667%; }
 .col-lg-1 { width: 8.33333%; }
 .col-lg-pull-12 { right: 100%; }
 .col-lg-pull-11 { right: 91.6667%; }
 .col-lg-pull-10 { right: 83.3333%; }
 .col-lg-pull-9 { right: 75%; }
 .col-lg-pull-8 { right: 66.6667%; }
 .col-lg-pull-7 { right: 58.3333%; }
 .col-lg-pull-6 { right: 50%; }
 .col-lg-pull-5 { right: 41.6667%; }
 .col-lg-pull-4 { right: 33.3333%; }
 .col-lg-pull-3 { right: 25%; }
 .col-lg-pull-2 { right: 16.6667%; }
 .col-lg-pull-1 { right: 8.33333%; }
 .col-lg-pull-0 { right: 0px; }
 .col-lg-push-12 { left: 100%; }
 .col-lg-push-11 { left: 91.6667%; }
 .col-lg-push-10 { left: 83.3333%; }
 .col-lg-push-9 { left: 75%; }
 .col-lg-push-8 { left: 66.6667%; }
 .col-lg-push-7 { left: 58.3333%; }
 .col-lg-push-6 { left: 50%; }
 .col-lg-push-5 { left: 41.6667%; }
 .col-lg-push-4 { left: 33.3333%; }
 .col-lg-push-3 { left: 25%; }
 .col-lg-push-2 { left: 16.6667%; }
 .col-lg-push-1 { left: 8.33333%; }
 .col-lg-push-0 { left: 0px; }
 .col-lg-offset-12 { margin-left: 100%; }
 .col-lg-offset-11 { margin-left: 91.6667%; }
 .col-lg-offset-10 { margin-left: 83.3333%; }
 .col-lg-offset-9 { margin-left: 75%; }
 .col-lg-offset-8 { margin-left: 66.6667%; }
 .col-lg-offset-7 { margin-left: 58.3333%; }
 .col-lg-offset-6 { margin-left: 50%; }
 .col-lg-offset-5 { margin-left: 41.6667%; }
 .col-lg-offset-4 { margin-left: 33.3333%; }
 .col-lg-offset-3 { margin-left: 25%; }
 .col-lg-offset-2 { margin-left: 16.6667%; }
 .col-lg-offset-1 { margin-left: 8.33333%; }
 .col-lg-offset-0 { margin-left: 0px; }
}
table { max-width: 100%; background-color: transparent; }
th { text-align: left; }
.table, .table-style, .table-style2, table.list, table.table-activities, .upload-manager table.upload-manager-file-list { width: 100%; margin-bottom: 12px; }
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td, .table-style > thead > tr > th, .table-style > tbody > tr > th, .table-style > tfoot > tr > th, .table-style > thead > tr > td, .table-style > tbody > tr > td, .table-style > tfoot > tr > td, .table-style2 > thead > tr > th, .table-style2 > tbody > tr > th, .table-style2 > tfoot > tr > th, .table-style2 > thead > tr > td, .table-style2 > tbody > tr > td, .table-style2 > tfoot > tr > td, table.list > thead > tr > th, table.list > tbody > tr > th, table.list > tfoot > tr > th, table.list > thead > tr > td, table.list > tbody > tr > td, table.list > tfoot > tr > td, table.table-activities > thead > tr > th, table.table-activities > tbody > tr > th, table.table-activities > tfoot > tr > th, table.table-activities > thead > tr > td, table.table-activities > tbody > tr > td, table.table-activities > tfoot > tr > td, .upload-manager table.upload-manager-file-list > thead > tr > th, .upload-manager table.upload-manager-file-list > tbody > tr > th, .upload-manager table.upload-manager-file-list > tfoot > tr > th, .upload-manager table.upload-manager-file-list > thead > tr > td, .upload-manager table.upload-manager-file-list > tbody > tr > td, .upload-manager table.upload-manager-file-list > tfoot > tr > td { padding: 8px; line-height: 1.42857; vertical-align: top; border-top: 1px solid rgb(221, 221, 221); }
.table > thead > tr > th, .table-style > thead > tr > th, .table-style2 > thead > tr > th, table.list > thead > tr > th, table.table-activities > thead > tr > th, .upload-manager table.upload-manager-file-list > thead > tr > th { vertical-align: bottom; border-bottom: 4px solid rgb(221, 221, 221); font-weight: normal; text-transform: uppercase; }
.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td, .table-style > caption + thead > tr:first-child > th, .table-style > colgroup + thead > tr:first-child > th, .table-style > thead:first-child > tr:first-child > th, .table-style > caption + thead > tr:first-child > td, .table-style > colgroup + thead > tr:first-child > td, .table-style > thead:first-child > tr:first-child > td, .table-style2 > caption + thead > tr:first-child > th, .table-style2 > colgroup + thead > tr:first-child > th, .table-style2 > thead:first-child > tr:first-child > th, .table-style2 > caption + thead > tr:first-child > td, .table-style2 > colgroup + thead > tr:first-child > td, .table-style2 > thead:first-child > tr:first-child > td, table.list > caption + thead > tr:first-child > th, table.list > colgroup + thead > tr:first-child > th, table.list > thead:first-child > tr:first-child > th, table.list > caption + thead > tr:first-child > td, table.list > colgroup + thead > tr:first-child > td, table.list > thead:first-child > tr:first-child > td, table.table-activities > caption + thead > tr:first-child > th, table.table-activities
> colgroup + thead > tr:first-child > th, table.table-activities > thead:first-child > tr:first-child > th, table.table-activities > caption + thead > tr:first-child > td, table.table-activities > colgroup + thead > tr:first-child > td, table.table-activities > thead:first-child > tr:first-child > td, .upload-manager table.upload-manager-file-list > caption + thead > tr:first-child > th, .upload-manager table.upload-manager-file-list > colgroup + thead > tr:first-child > th, .upload-manager table.upload-manager-file-list > thead:first-child > tr:first-child > th, .upload-manager table.upload-manager-file-list > caption + thead > tr:first-child > td, .upload-manager table.upload-manager-file-list > colgroup + thead > tr:first-child > td, .upload-manager table.upload-manager-file-list > thead:first-child > tr:first-child > td { border-top: 0px; }
.table > tbody + tbody, .table-style > tbody + tbody, .table-style2 > tbody + tbody, table.list > tbody + tbody, table.table-activities > tbody + tbody, .upload-manager table.upload-manager-file-list > tbody + tbody { border-top: 2px solid rgb(221, 221, 221); }
.table .table, .table-style .table-style, .table-style2 .table-style2, table.list table.list, table.table-activities table.table-activities, .upload-manager table.upload-manager-file-list .upload-manager table.upload-manager-file-list { background-color: rgb(255, 255, 255); }
.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; }
.table-bordered, .table-style2, table.table-activities { border: 1px solid rgb(221, 221, 221); }
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td, .table-style2 > thead > tr > th, .table-style2 > tbody > tr > th, .table-style2 > tfoot > tr > th, .table-style2 > thead > tr > td, .table-style2 > tbody > tr > td, .table-style2 > tfoot > tr > td, table.table-activities > thead > tr > th, table.table-activities > tbody > tr > th, table.table-activities > tfoot > tr > th, table.table-activities > thead > tr > td, table.table-activities > tbody > tr > td, table.table-activities > tfoot > tr > td { border: 1px solid rgb(221, 221, 221); }
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-style2 > thead > tr > th, .table-style2 > thead > tr > td, table.table-activities > thead > tr > th, table.table-activities > thead > tr > td { border-bottom-width: 2px; }
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th { background-color: rgb(249, 249, 249); }
.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th, .table-style > tbody > tr:hover > td, .table-style > tbody > tr:hover > th, table.list > tbody > tr:hover > td, table.list > tbody > tr:hover > th, .upload-manager table.upload-manager-file-list > tbody > tr:hover > td, .upload-manager table.upload-manager-file-list > tbody > tr:hover > th { background-color: rgba(66, 112, 161, 0.15); }
.table-hover-solid > tbody > tr:hover > td, .table-hover-solid > tbody > tr:hover > th { background-color: rgb(238, 242, 246); }
table col[class*="col-"] { float: none; display: table-column; }
table td[class*="col-"], table th[class*="col-"] { float: none; display: table-cell; }
.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th, .table-style > thead > tr > td.active, .table-style > tbody > tr > td.active, .table-style > tfoot > tr > td.active, .table-style > thead > tr > th.active, .table-style > tbody > tr > th.active, .table-style > tfoot > tr > th.active, .table-style > thead > tr.active > td, .table-style > tbody > tr.active > td, .table-style > tfoot > tr.active > td, .table-style > thead > tr.active > th, .table-style > tbody > tr.active > th, .table-style > tfoot > tr.active > th, .table-style2 > thead > tr > td.active, .table-style2 > tbody > tr > td.active, .table-style2 > tfoot > tr > td.active, .table-style2 > thead > tr > th.active, .table-style2 > tbody > tr > th.active, .table-style2 > tfoot > tr > th.active, .table-style2 > thead > tr.active > td, .table-style2 > tbody > tr.active > td, .table-style2 > tfoot > tr.active > td, .table-style2 > thead > tr.active > th, .table-style2 > tbody > tr.active > th, .table-style2 > tfoot > tr.active > th, table.list > thead > tr > td.active, table.list > tbody > tr > td.active, table.list > tfoot > tr > td.active, table.list > thead > tr > th.active, table.list > tbody > tr > th.active, table.list > tfoot > tr > th.active, table.list > thead > tr.active > td, table.list > tbody > tr.active > td, table.list > tfoot > tr.active > td, table.list > thead > tr.active > th, table.list > tbody > tr.active > th, table.list > tfoot > tr.active > th, table.table-activities > thead > tr > td.active, table.table-activities > tbody > tr > td.active, table.table-activities > tfoot > tr > td.active, table.table-activities > thead > tr > th.active, table.table-activities > tbody > tr > th.active, table.table-activities > tfoot > tr > th.active, table.table-activities > thead > tr.active > td, table.table-activities > tbody > tr.active > td, table.table-activities > tfoot > tr.active > td, table.table-activities > thead > tr.active > th, table.table-activities > tbody > tr.active > th, table.table-activities > tfoot > tr.active > th, .upload-manager table.upload-manager-file-list > thead > tr > td.active, .upload-manager table.upload-manager-file-list > tbody > tr > td.active, .upload-manager table.upload-manager-file-list > tfoot > tr > td.active, .upload-manager table.upload-manager-file-list > thead > tr > th.active, .upload-manager table.upload-manager-file-list > tbody > tr > th.active, .upload-manager table.upload-manager-file-list > tfoot > tr > th.active, .upload-manager table.upload-manager-file-list > thead > tr.active > td, .upload-manager table.upload-manager-file-list > tbody > tr.active > td, .upload-manager table.upload-manager-file-list > tfoot > tr.active > td, .upload-manager table.upload-manager-file-list > thead > tr.active > th, .upload-manager table.upload-manager-file-list > tbody > tr.active > th, .upload-manager table.upload-manager-file-list > tfoot > tr.active > th { background-color: rgb(66, 112, 161); color: rgb(255, 255, 255); }
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th, .table-style > thead > tr > td.success, .table-style > tbody > tr > td.success, .table-style > tfoot > tr > td.success, .table-style > thead > tr > th.success, .table-style > tbody > tr > th.success, .table-style > tfoot > tr > th.success, .table-style > thead > tr.success > td, .table-style > tbody > tr.success > td, .table-style > tfoot > tr.success > td, .table-style > thead > tr.success > th, .table-style > tbody > tr.success > th, .table-style > tfoot > tr.success > th, .table-style2 > thead > tr > td.success, .table-style2 > tbody > tr > td.success, .table-style2 > tfoot > tr > td.success, .table-style2 > thead > tr > th.success, .table-style2 > tbody > tr > th.success, .table-style2 > tfoot > tr > th.success, .table-style2 > thead > tr.success > td, .table-style2
> tbody > tr.success > td, .table-style2 > tfoot > tr.success > td, .table-style2 > thead > tr.success > th, .table-style2 > tbody > tr.success > th, .table-style2 > tfoot > tr.success > th, table.list > thead > tr > td.success, table.list > tbody > tr > td.success, table.list > tfoot > tr > td.success, table.list > thead > tr > th.success, table.list > tbody > tr > th.success, table.list > tfoot > tr > th.success, table.list > thead > tr.success > td, table.list > tbody > tr.success > td, table.list > tfoot > tr.success > td, table.list > thead > tr.success > th, table.list > tbody > tr.success > th, table.list > tfoot > tr.success > th, table.table-activities > thead > tr > td.success, table.table-activities > tbody > tr > td.success, table.table-activities > tfoot > tr > td.success, table.table-activities > thead > tr > th.success, table.table-activities > tbody > tr > th.success, table.table-activities > tfoot > tr > th.success, table.table-activities > thead > tr.success > td, table.table-activities > tbody > tr.success > td, table.table-activities > tfoot > tr.success > td, table.table-activities > thead > tr.success > th, table.table-activities > tbody > tr.success > th, table.table-activities > tfoot > tr.success > th, .upload-manager table.upload-manager-file-list > thead > tr > td.success, .upload-manager table.upload-manager-file-list > tbody > tr > td.success, .upload-manager table.upload-manager-file-list > tfoot > tr > td.success, .upload-manager table.upload-manager-file-list > thead > tr > th.success, .upload-manager table.upload-manager-file-list > tbody > tr > th.success, .upload-manager table.upload-manager-file-list > tfoot > tr > th.success, .upload-manager table.upload-manager-file-list > thead > tr.success > td, .upload-manager table.upload-manager-file-list > tbody > tr.success > td, .upload-manager table.upload-manager-file-list > tfoot > tr.success > td, .upload-manager table.upload-manager-file-list > thead > tr.success > th, .upload-manager table.upload-manager-file-list > tbody > tr.success > th, .upload-manager table.upload-manager-file-list > tfoot > tr.success > th { background-color: rgb(223, 240, 216); }
.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-style > tbody > tr > td.success:hover, .table-style > tbody > tr > th.success:hover, .table-style > tbody > tr.success:hover > td, .table-style > tbody > tr.success:hover > th, table.list > tbody > tr > td.success:hover, table.list > tbody > tr > th.success:hover, table.list > tbody > tr.success:hover > td, table.list > tbody > tr.success:hover > th, .upload-manager table.upload-manager-file-list > tbody > tr > td.success:hover, .upload-manager table.upload-manager-file-list > tbody > tr > th.success:hover, .upload-manager table.upload-manager-file-list > tbody > tr.success:hover > td, .upload-manager table.upload-manager-file-list > tbody > tr.success:hover > th { background-color: rgb(208, 233, 198); }
.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th, .table-style > thead > tr > td.danger, .table-style > tbody > tr > td.danger, .table-style > tfoot > tr > td.danger, .table-style > thead > tr > th.danger, .table-style > tbody > tr > th.danger, .table-style > tfoot > tr > th.danger, .table-style > thead > tr.danger > td, .table-style > tbody > tr.danger > td, .table-style > tfoot > tr.danger > td, .table-style > thead > tr.danger > th, .table-style > tbody > tr.danger > th, .table-style > tfoot > tr.danger > th, .table-style2 > thead > tr > td.danger, .table-style2 > tbody > tr > td.danger, .table-style2 > tfoot > tr > td.danger, .table-style2 > thead > tr > th.danger, .table-style2 > tbody > tr > th.danger, .table-style2 > tfoot > tr > th.danger, .table-style2 > thead > tr.danger > td, .table-style2 > tbody > tr.danger > td, .table-style2 > tfoot > tr.danger > td, .table-style2 > thead > tr.danger > th, .table-style2 > tbody > tr.danger > th, .table-style2 > tfoot > tr.danger > th, table.list > thead > tr > td.danger, table.list > tbody > tr > td.danger, table.list > tfoot > tr > td.danger, table.list > thead > tr > th.danger, table.list > tbody > tr > th.danger, table.list > tfoot > tr > th.danger, table.list > thead > tr.danger > td, table.list > tbody > tr.danger > td, table.list > tfoot > tr.danger > td, table.list > thead > tr.danger > th, table.list > tbody > tr.danger > th, table.list > tfoot > tr.danger > th, table.table-activities > thead > tr > td.danger, table.table-activities > tbody > tr > td.danger, table.table-activities > tfoot > tr > td.danger, table.table-activities > thead > tr > th.danger, table.table-activities > tbody > tr > th.danger, table.table-activities > tfoot > tr > th.danger, table.table-activities > thead > tr.danger > td, table.table-activities > tbody > tr.danger > td, table.table-activities > tfoot > tr.danger > td, table.table-activities > thead > tr.danger > th, table.table-activities > tbody > tr.danger > th, table.table-activities > tfoot > tr.danger > th, .upload-manager table.upload-manager-file-list > thead > tr > td.danger, .upload-manager table.upload-manager-file-list > tbody > tr > td.danger, .upload-manager table.upload-manager-file-list > tfoot > tr > td.danger, .upload-manager table.upload-manager-file-list > thead > tr > th.danger, .upload-manager table.upload-manager-file-list > tbody > tr > th.danger, .upload-manager table.upload-manager-file-list > tfoot > tr > th.danger, .upload-manager table.upload-manager-file-list > thead > tr.danger > td, .upload-manager table.upload-manager-file-list > tbody > tr.danger > td, .upload-manager table.upload-manager-file-list > tfoot > tr.danger > td, .upload-manager table.upload-manager-file-list > thead > tr.danger > th, .upload-manager table.upload-manager-file-list > tbody > tr.danger > th, .upload-manager table.upload-manager-file-list > tfoot > tr.danger > th { background-color: rgb(242, 222, 222); }
.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-style > tbody > tr > td.danger:hover, .table-style > tbody > tr > th.danger:hover, .table-style > tbody > tr.danger:hover > td, .table-style > tbody > tr.danger:hover > th, table.list > tbody > tr > td.danger:hover, table.list > tbody > tr > th.danger:hover, table.list > tbody > tr.danger:hover > td, table.list > tbody > tr.danger:hover > th, .upload-manager table.upload-manager-file-list > tbody > tr > td.danger:hover, .upload-manager table.upload-manager-file-list > tbody > tr > th.danger:hover, .upload-manager table.upload-manager-file-list > tbody > tr.danger:hover > td, .upload-manager table.upload-manager-file-list > tbody > tr.danger:hover > th { background-color: rgb(235, 204, 204); }
.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th, .table-style > thead > tr > td.info, .table-style > tbody > tr > td.info, .table-style > tfoot > tr > td.info, .table-style > thead > tr > th.info, .table-style > tbody > tr > th.info, .table-style > tfoot > tr > th.info, .table-style > thead > tr.info > td, .table-style > tbody > tr.info > td, .table-style > tfoot > tr.info > td, .table-style > thead > tr.info > th, .table-style > tbody > tr.info

Teste o Premium para desbloquear

Aproveite todos os benefícios por 3 dias sem pagar! 😉
Já tem cadastro?

Mais conteúdos dessa disciplina