Buscar

Apol 1 - Estrutura de dados

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

PAP Uninter
 
 
 
 Ava Univirtus
 
 
 
 
 
 
 Ava Univirtus
 
 
 
 
 
 Voltar
 
 
 
 RONI ALVES
 
 
 RU: 2801488
 
 
 
 
 
 
Avisos
Contatos
 
 
 
 
 
 
 
 
 		Curso: CST ANÁLISE E DESENVOLVIMENTO DE SISTEMAS - DISTÂNCIA
 
 
 
 
 Estrutura de Dados 
 
 
 
 
 
 
 
 
 
 
 
 Roteiro de Estudo
 
 
 
 
 
 
 
 
 
 3
 
 
 
 
 Avaliações
 
 
 
 
 Conferências
Tutoria
Fórum
Trabalhos
Chat
Rádio Web
Avisos
 
 
 
	
				
						
				Created with Raphaël 2.1.0
			
					Avaliação
		novo
 
 
 
 
 
 
 
		
		
		
		
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 RONI PETERSON ALVES - RU: 2801488
 
 
 Nota:
 90
 
 
 PROTOCOLO: 20200316280148831832CD
 
 
 
 
 Disciplina(s): 
 
 Estrutura de Dados
 
 
 		Data de início: 		
 16/03/2020
 19:56
 
		Prazo máximo entrega:		
 -
 
 
		Data de entrega:		
 16/03/2020
 20:11
 
 
 
 
 
 
 
 
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 - Estrutura de Dados
No terceiro assunto de nossa disciplina estudamos estruturas de dados que se comportam como uma PILHA.
Acerca de PILHA, assinale a alternativa INCORRETA:Nota: 10.0
				A		Em uma pilha construída utilizando listas encadeadas. Desempilhar nela significa remover o primeiro elemento desta pilha.Sim. Remoção no topo.
				B		Uma pilha pode só pode ser construída empregando uma estrutura de dados que trabalhe de maneira não sequencial.Você acertou!
Podemos construir com vetores (sequencial) ou listas (não sequencial).
				C		Uma pilha trabalha com inserção e remoção no topo da pilha. Sendo impossível manipular qualquer outra posição da pilha.Sim. Estrutura do tipo FILO.
				D		Em uma pilha construída utilizando listas encadeadas. Empilhar nela significa inserir antes do primeiro elemento desta pilha.Sim. Inserção no topo.
				E		Em uma, a cada nova inserção, os elementos anteriores vão ficando para o final da pilha, só sendo possível removê-los desempilhando.Sim. FILO.
Questão 2/10 - Estrutura de Dados
Chamamos de análise assintótica de algoritmos quando encontramos a complexidade de um algoritmo de maneira aproximada através de uma curva de tendência. Este tipo de análise e é a mais adotada para compararmos desempenho de algoritmos.
Acerca da análise assintótica de um algoritmo, assinale a alternativa INCORRETA:Nota: 10.0
				A		Um algoritmo com três laços de repetição não encadeados contém uma complexidade assintótica, para o pior caso, O(n).
				B		Na análise assintótica, fazemos o conjunto de dados de entrada da função custo tender ao infinito, mantendo na equação somente o termo de maior grau, ou seja, aquele que mais cresce na equação.
				C		Um algoritmo com três laços de repetição aninhados contém uma complexidade assintótica, para o pior caso, O(n³).
				D		A complexidade assintótica para o pior caso, também conhecida como BigO, representa o pior cenário para um algoritmo, ou seja, quando mais instruções precisam ser executadas, levando mais tempo para finalizar a execução.
				E		A complexidade assintótica para o pior caso de um algoritmo contendo dois laços de repetição aninhados, sendo que o segundo laço só será executado caso uma condicional simples seja verdadeira, será O(n).Você acertou!
AULA 1 – TEMA 3. O pior caso (BigO) nos diz que todas as linhas devem ser executadas, ou seja, a condicional será sempre verdadeira, e ambos laços de repetição serão sempre executados, sendo assim, complexidade O(n²).
Questão 3/10 - Estrutura de Dados
No terceiro assunto de nossa disciplina estudamos uma nova estrutura de dados denominada de LISTA ENCADEADA. Um tipo de lista encadeada é a chamada de LISTA ENCADEADA SIMPLES, ou LISTA SIMPLESMENTE ENCADEADA.
Acerca de listas encadeadas simples, assinale a alternativa INCORRETA:Nota: 10.0
				A		Uma lista encadeada simples pode ser do tipo circular. Isto significa que o seu último elemento conterá um ponteiro não nulo e que apontará de volta para ele mesmo, fechando círculo.Você acertou!
O último elemento aponta para o início da lista de volta, e não para ele mesmo.
				B		Uma lista encadeada simples conterá, em cada seu elemento, uma variável do tipo ponteiro que manterá o endereço do próximo elemento da lista encadeada.
				C		O uso de ponteiros serve para que, embora cada elemento da lista encadeada esteja disperso na memória do programa, eles possam ser localizados e conectados em uma estrutura de dados.
				D		Uma lista encadeada simples pode ser do tipo não circular. Isto significa que o seu último elemento conterá um ponteiro nulo (vazio).
				E		Podemos realizar uma inserção em qualquer posição de uma lista encadeada, no início, no fim ou mesmo no meio desta lista.
Questão 4/10 - Estrutura de Dados
Uma função que implementa o algoritmo bubble sort pode ser vista abaixo. Todo o resto do algoritmo foi omitido para que analisemos somente o método de ordenação. No código, TAMANHOVETOR refere a um valor inteiro que corresponde a dimensão do vetor de dados.
1 - void BubbleSort(int vet[]) {
2 - int aux;
3 - for (int n = 1; n <= TAMANHOVETOR; n++) {
4 -      for (int i = 0; i < (TAMANHOVETOR - 1); i++) {
5 -           if (vet[i] < vet[i + 1]) {
6 -                aux = vet[i];
7 -                vet[i] = vet[i + 1];
8 -                vet[i + 1] = aux;
9 - } } } }
Acerca deste algoritmo, assinale a alternativa CORRETA:Nota: 10.0
				A
Na linha 5, o sinal de MENOR está incorreto. O algoritmo do bubble sort  deve apresentar um sinal de MAIOR nesta linha.Tanto faz o sinal. Invertendo sinal inverte a forma como irá ordenar, o que não caracteriza um erro.
				B		Não é possível substituir os laços de repetição do tipo PARA (FOR) por um laço do tipo REPITA (DO-WHILE).É possível implementar com qualquer laço de repetição.
				C		Não é possível substituir os laços de repetição do tipo PARA (FOR) por um laço do tipo ENQUANTO (WHILE).É possível implementar com qualquer laço de repetição.
				D		Na linha 3, seria possível fazer a variável n iniciar em zero e terminar em (TAMANHOVETOR-1)Você acertou!
CORRETO. AULA 2 – TEMA 2 e conceitos básicos de programação e algoritmos.
				E		A variável chamada de aux neste código tem como objetivo armazenar temporariamente o vetor de dados completo, para posteriormente ser ordenado.Ela serve para ajudar na troca individual de cada elemento.
Questão 5/10 - Estrutura de Dados
O segundo assunto de nossa disciplina diz respeito a algoritmos de ordenação de dados.
Acerca deste assunto, assinale a alternativa INCORRETA:Nota: 0.0
				A		Algoritmos de ordenação são empregados com o objetivo de ordenar conjuntos de dados a partir de uma determinada métrica, como por exemplo, ordenar nomes de pessoas em ordem alfabética crescente.
				B		Existem os mais diversos algoritmos de ordenação, sendo que cada um deles apresentará uma complexidade distinta em tempo de execução e de uso de memória e, portanto, devem ser minuciosamente escolhidos de acordo com a aplicação.
				C		A permuta de grandes quantidades de dados para ordenação tende a ser custoso computacionalmente. O uso de variáveis ponteiros servem para auxiliar e otimizar este processo ordenando somente os endereços ao invés de todo o conjunto de dados.
				D		Um algoritmo de ordenação é um método que descreve como é possível colocar, em uma ordem específica, um conjunto de dados qualquer.
				E		A lógica algorítmica de cada método de ordenação difere para cada tipo de estrutura de dados que se deseja manipular.AULA 2 – TEMA 1. A estrutura de dados não muda a lógica de funcionamento do algoritmo de ordenação, só muda a estrutura a ser manipulada.
Questão 6/10 - Estrutura de Dados
No terceiro assunto de nossa disciplina estudamos uma nova estrutura de dados denominada de LISTA ENCADEADA.
Acerca de listas encadeadas, assinale a alternativa CORRETA:Nota: 10.0
				A		Uma lista encadeada trabalha com alocação sequencial na memória. De maneira similar a uma estrutura de dados do tipo vetor.Uma lista é não sequencial.
				B		Uma lista encadeada trabalha com o conceito de índice. Ou seja, podemos acessar qualquer posição da lista usando o seu índice como referência.Não existe o conceito de índice em uma lista encadeada.
				C		O acesso a qualquer dado em uma lista pode ser feito com a mesma eficiência em tempo de execução, caracterizando uma complexidade de acesso aos dados como O(1).Complexidade de acesso é O(n).
				D		Podemos localizar o próximo elemento da lista encadeada através do uso de uma variável que armazena o endereço do próximo elemento da lista.Você acertou!
CORRETO. Basta usar uma variável do tipo ponteiro.
				E		Cada elemento de uma lista encadeada só poderá armazenar dados do tipo numérico. Não é permitido o uso de dados do tipo caractere ou lógico, por exemplo.Qualquer tipo de dados é permitido.
Questão 7/10 - Estrutura de Dados
O algoritmo de ordenação rápida, também conhecido como quick sort, é um dos algoritmos estudados na AULA 2.
Acerca deste algoritmo, assinale a alternativa CORRETA.Nota: 10.0
				A		A complexidade do quick sort é O(n²). Isso significa que ele sempre terá a mesma eficiência de um bubble sort.Somente o pior caso do bubble e do quick são iguais. Se considerarmos cenários melhores o quick sort se sai bem melhor que o bubble sort. Veja o experimento feito na AULA PRÁTICA 1 para mais detalhes.
				B		O quick sort trabalha com o conceito de pivô, que é o elemento usado nas comparações, comparando sempre o seu valor com todos os valores do lado direito do pivô, enquanto que o lado esquerdo permanece já ordenado.Ambos os lados são comparados, esquerdo e direito.
				C		O quick sort trabalha com o conceito de pivô, que é o elemento usado nas comparações, comparando sempre o seu valor com todos os valores do lado esquerdo do pivô, enquanto que o lado direito permanece já ordenado.Ambos os lados são comparados, esquerdo e direito.
				D		O quick sort trabalha com uma troca de valores utilizando uma variável auxiliar, da mesma maneira feita no bubble sort.Você acertou!
AULA 2 – TEMA 4 – CORRETO.
				E		O quick sort só pode ser executado para um tamanho de conjunto de dados máximo igual a 1000, pois mais do que isso o uso de memória pelo algoritmo é muito grande.O limite máximo dependerá da memória disponível, não sendo limitado ao valor de 1000.
Questão 8/10 - Estrutura de Dados
No terceiro assunto da disciplina estudamos a estrutura de dados do tipo lista encadeada. O código abaixo representa a inserção em uma posição específica da lista encadeada simples. 
1. NovoElemento->dado = numero
2. se (posicao == 0) então
3.      Head = NovoElemento 
4.      Head->prox = NULO
5. Senão
6.      ElementoVarredura = Head 
7.      para i de 0 até posicao faça
8.           ElementoVarredura = ElementoVarredura->prox
9.      Fimpara
10.    ElementoAuxiliar = ElementoVarredura->prox
11.    ElementoVarredura->prox = NovoElemento
12.    NovoElemento->prox = ElementoAuxiliar
13. Fimse
Considerando que NovoElemento é um novo elemento que será inserido nesta lista, ElementoVarredura é uma variável que servirá para localizar o local de inserção, ElementoAuxiliar é uma variável temporária para auxiliar na inserção do dado, Head caracteriza o primeiro elemento da lista e prox é o ponteiro para o próximo elemento da lista. Assinale a alternativa INCORRETA sobre este algoritmo.Nota: 10.0
				A		Nas linhas 7 a 9 temos o laço de repetição que localiza a posição em que o elemento será inserido.
				B		Na linha 8, a variável ElementoVarredura salta de elemento em elemento da lista, sempre utilizando como referencia o ponteiro para o próximo elemento.
				C		Nas linhas 10, 11 e 12 fazemos uma troca entre 2 valores da lista encadeada utilizando uma variável auxiliar.Você acertou!
Errado, pois não temos uma troca, mas sim a inserção do novo elemento.
				D		Na linha 10 uma variável auxiliar armazena temporariamente o elemento subsequente ao da posição desejada para inserção.
				E		Na linha 12, o novo elemento, agora já inserido na respectiva posição da lista, aponta para o elemento armazenado na variável auxiliar, que corresponde ao elemento subsequente ao da posição inserida.
Questão 9/10 - Estrutura de Dados
Assuma um vetor de dimensão 10 com dados numéricos e inteiros colocados na seguinte ordem: 
| 05 | 07 | 08 | 14 | 24 | 29 | 56 | 77 | 78 | 88 |
Suponha que você deseja implementar um algoritmo de busca para localizar algum dado neste vetor já ordenado de maneira crescente. Você resolve testar a busca sequencial e a busca binária.
Acerca destes algoritmos e analisando o vetor acima, assinale a alternativa CORRETA:Nota: 10.0
				A		No algoritmo de busca sequencial, o valor 24 seria localizado na 6ª tentativa, se fizermos uma varredura da esquerda para a direita.Na 5ª tentativa.
				B		No algoritmo de busca binária, o valor 24 seria localizado na 3ª tentativa.Na 1ª tentativa.
				C		No algoritmo de busca sequencial, o valor 77 seria localizado mais rapidamente que se comparado com a busca binária.Binária se sairia mais rápida.
				D		No algoritmo de busca sequencial, o valor 07 seria localizado mais rapidamente que se comparado com a busca binária.Você acertou!
CORRETO. Levará menos iterações.
				E		Em nenhum cenário de busca o algoritmo sequencial irá localizar o valor antes da busca binária.É possível que sim, a sequencial ache antes. Dependerá o valor buscado e onde ele se
localizado no vetor.
Questão 10/10 - Estrutura de Dados
Uma função que implementa parte do algoritmo quick sort pode ser vista abaixo. Todo o resto do algoritmo foi omitido para que analisemos somente este método. O algoritmo completo pode ser visto no material PDF da Aula 2.
No código, a função chamada de particao refere-se à função que localiza um pivô no vetor de dados e faz as respectivas trocas dos valores, ordenando seguindo algum critério. 
No código, vet é o vetor de dados, e troca é a função que realiza uma troca entre dois valores destoantes utilizando uma variável auxiliar.
1. int particao(int vet[], int p, int u) 
2. {
3. int pivo, pivo_pos, i, j;
4. pivo_pos = (p + u) / 2;
5. pivo = vet[pivo_pos];
6. 
7. i = p - 1;
8. j = u + 1;
9. while (i < j)
10. {
11.      do 
12.      {
13.           j--;
14.      } while (vet[j] > pivo);
15. 
16.      do 
17.      {
18.           i++;
19.       } while (vet[i] < pivo);
20. 
21.       if (i < j)
22.           troca(vet, i, j);
23.       }
24.      return j;
25. }
Acerca deste algoritmo, assinale a alternativa INCORRETA:
Nota: 10.0
				A		A variável pivo_pos localiza a posição a qual conterá o valor de referência para comparações com todos os outros valores do vetor.
				B		Na linha 11 até a linha 14 comparamos o pivô com todos os valores ao lado direito do mesmo. Caso um valor seja menor que o pivô, ele deve ser colocado para uma posição anterior a do pivô, ou no máximo, no local do pivô.
				C		Na linha 16 até a linha 19 comparamos o pivô com todos os valores ao lado esquerdo do mesmo. Caso um valor seja maior que o pivô, ele deve ser colocado para uma posição posterior a do pivô, ou no máximo, no local do pivô.
				D		A troca (linha 21 e 22) pode acontecer entre um valor do lado esquerdo e do lado direito, ou entre o próprio pivô e um dos valores destoantes de cada um dos lados.
				E		Na linha 4 acessamos a posição do pivô no vetor e na linha 5 acessamos a posição correspondente do vetor conforme calculado na linha 4.Você acertou!
Primeiro localizamos a posição (linha 4) e depois o valor daquela posição (linha 5).
 
 
 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
 
 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";
iframe#_hjRemoteVarsFrame { display: none !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
@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: 400 12px "Segoe UI"; text-align: left; text-indent: 0px; text-transform: none; 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 { text-align: center; display: block !important; }
.MJXp-box::after { content: " "; }
.MJXp-rule { margin-top: 0.1em; display: block !important; }
.MJXp-char { display: block !important; }
.MJXp-mo { margin: 0px 0.15em; }
.MJXp-mfrac { margin: 0px 0.125em; vertical-align: 0.25em; }
.MJXp-denom { width: 100%; display: inline-table !important; }
.MJXp-denom > * { display: table-row !important; }
.MJXp-surd { vertical-align: top; }
.MJXp-surd > * { display: block !important; }
.MJXp-script-box > * { height: 50%; display: table !important; }
.MJXp-script-box > * > * { vertical-align: top; display: table-cell !important; }
.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 { text-align: center; display: inline-block !important; }
.MJXp-over > * { display: block !important; }
.MJXp-munderover > * { display: table-row !important; }
.MJXp-mtable { vertical-align: 0.25em; margin: 0px 0.125em; }
.MJXp-mtable > * { vertical-align: middle; display: inline-table !important; }
.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";
@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"] { -webkit-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"] { -webkit-appearance: textfield; box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-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 > th, .table-style > tfoot > tr.info > th, .table-style2 > thead > tr > td.info, .table-style2 > tbody > tr > td.info, .table-style2 > tfoot > tr > td.info, .table-style2 > thead > tr > th.info, .table-style2 > tbody > tr > th.info, .table-style2 > tfoot > tr > th.info, .table-style2 > thead > tr.info > td, .table-style2 > tbody > tr.info > td, .table-style2 > tfoot > tr.info > td, .table-style2 > thead > tr.info > th, .table-style2 > tbody > tr.info > th, .table-style2 > tfoot > tr.info > th, table.list > thead > tr > td.info, table.list > tbody > tr > td.info, table.list > tfoot > tr > td.info, table.list > thead > tr > th.info, table.list > tbody > tr > th.info, table.list > tfoot > tr > th.info, table.list > thead > tr.info > td, table.list > tbody > tr.info > td, table.list > tfoot > tr.info > td, table.list > thead > tr.info > th, table.list > tbody > tr.info > th, table.list > tfoot > tr.info > th, table.table-activities > thead > tr > td.info, table.table-activities >
tbody > tr > td.info, table.table-activities > tfoot > tr > td.info, table.table-activities > thead > tr > th.info, table.table-activities > tbody > tr > th.info, table.table-activities > tfoot > tr > th.info, table.table-activities > thead > tr.info > td, table.table-activities > tbody > tr.info > td, table.table-activities > tfoot > tr.info > td, table.table-activities > thead > tr.info > th, table.table-activities > tbody > tr.info > th, table.table-activities > tfoot > tr.info > th, .upload-manager table.upload-manager-file-list > thead > tr > td.info, .upload-manager table.upload-manager-file-list > tbody > tr > td.info, .upload-manager table.upload-manager-file-list > tfoot > tr > td.info, .upload-manager table.upload-manager-file-list > thead > tr > th.info, .upload-manager table.upload-manager-file-list > tbody > tr > th.info, .upload-manager table.upload-manager-file-list > tfoot > tr > th.info, .upload-manager table.upload-manager-file-list > thead > tr.info > td, .upload-manager table.upload-manager-file-list > tbody > tr.info > td, .upload-manager table.upload-manager-file-list > tfoot > tr.info > td, .upload-manager table.upload-manager-file-list > thead > tr.info > th, .upload-manager table.upload-manager-file-list > tbody > tr.info > th, .upload-manager table.upload-manager-file-list > tfoot > tr.info > th { background-color: rgb(217, 237, 247); }
.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-style > tbody > tr > td.info:hover, .table-style > tbody > tr > th.info:hover, .table-style > tbody > tr.info:hover > td, .table-style > tbody > tr.info:hover > th, table.list > tbody > tr > td.info:hover, table.list > tbody > tr > th.info:hover, table.list > tbody > tr.info:hover > td, table.list > tbody > tr.info:hover > th, .upload-manager table.upload-manager-file-list > tbody > tr > td.info:hover, .upload-manager table.upload-manager-file-list > tbody > tr > th.info:hover, .upload-manager table.upload-manager-file-list > tbody > tr.info:hover > td, .upload-manager table.upload-manager-file-list > tbody > tr.info:hover > th { background-color: rgb(196, 227, 243); }
.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th, .table-style > thead > tr > td.warning, .table-style > tbody > tr > td.warning, .table-style > tfoot > tr > td.warning, .table-style > thead > tr > th.warning, .table-style > tbody > tr > th.warning, .table-style > tfoot > tr > th.warning, .table-style > thead > tr.warning > td, .table-style > tbody > tr.warning > td, .table-style > tfoot > tr.warning > td, .table-style > thead > tr.warning > th, .table-style > tbody > tr.warning > th, .table-style > tfoot > tr.warning > th, .table-style2 > thead > tr > td.warning, .table-style2 > tbody > tr > td.warning, .table-style2 > tfoot > tr > td.warning, .table-style2 > thead > tr > th.warning, .table-style2 > tbody > tr > th.warning, .table-style2 > tfoot > tr > th.warning, .table-style2 > thead > tr.warning > td, .table-style2 > tbody > tr.warning > td, .table-style2 > tfoot > tr.warning > td, .table-style2 > thead > tr.warning > th, .table-style2 > tbody > tr.warning > th, .table-style2 > tfoot > tr.warning > th, table.list > thead > tr > td.warning, table.list > tbody > tr > td.warning, table.list > tfoot > tr > td.warning, table.list > thead > tr > th.warning, table.list > tbody > tr > th.warning, table.list > tfoot > tr > th.warning, table.list > thead > tr.warning > td, table.list > tbody > tr.warning > td, table.list > tfoot > tr.warning > td, table.list > thead > tr.warning > th, table.list > tbody > tr.warning > th, table.list > tfoot > tr.warning > th, table.table-activities > thead > tr > td.warning, table.table-activities > tbody > tr > td.warning, table.table-activities > tfoot > tr > td.warning, table.table-activities > thead > tr > th.warning, table.table-activities > tbody > tr > th.warning, table.table-activities > tfoot > tr > th.warning, table.table-activities > thead > tr.warning > td, table.table-activities > tbody > tr.warning > td, table.table-activities > tfoot > tr.warning > td, table.table-activities > thead > tr.warning > th, table.table-activities > tbody > tr.warning > th, table.table-activities > tfoot > tr.warning > th, .upload-manager table.upload-manager-file-list > thead > tr > td.warning, .upload-manager table.upload-manager-file-list > tbody > tr > td.warning, .upload-manager table.upload-manager-file-list > tfoot > tr > td.warning, .upload-manager table.upload-manager-file-list > thead > tr > th.warning, .upload-manager table.upload-manager-file-list > tbody > tr > th.warning, .upload-manager table.upload-manager-file-list > tfoot > tr > th.warning, .upload-manager table.upload-manager-file-list > thead > tr.warning > td, .upload-manager table.upload-manager-file-list > tbody > tr.warning > td, .upload-manager table.upload-manager-file-list > tfoot > tr.warning > td, .upload-manager table.upload-manager-file-list > thead > tr.warning > th, .upload-manager table.upload-manager-file-list > tbody > tr.warning > th, .upload-manager table.upload-manager-file-list > tfoot > tr.warning > th { background-color: rgb(252, 248, 227); }
.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-style > tbody > tr > td.warning:hover, .table-style > tbody > tr > th.warning:hover, .table-style > tbody > tr.warning:hover > td, .table-style > tbody > tr.warning:hover > th, table.list > tbody > tr > td.warning:hover, table.list > tbody > tr > th.warning:hover, table.list > tbody > tr.warning:hover > td, table.list > tbody > tr.warning:hover > th, .upload-manager table.upload-manager-file-list > tbody > tr > td.warning:hover, .upload-manager table.upload-manager-file-list > tbody > tr > th.warning:hover, .upload-manager table.upload-manager-file-list > tbody > tr.warning:hover > td, .upload-manager table.upload-manager-file-list > tbody > tr.warning:hover > th { background-color: rgb(250, 242, 204); }
.table > thead > tr > td.default, .table > tbody > tr > td.default, .table > tfoot > tr > td.default, .table > thead > tr > th.default, .table > tbody > tr > th.default, .table > tfoot > tr > th.default, .table > thead > tr.default > td, .table > tbody > tr.default > td, .table > tfoot > tr.default > td, .table > thead > tr.default > th, .table > tbody > tr.default > th, .table > tfoot > tr.default > th, .table-style > thead > tr > td.default, .table-style > tbody > tr > td.default, .table-style > tfoot > tr > td.default, .table-style > thead > tr > th.default, .table-style > tbody > tr > th.default, .table-style > tfoot > tr > th.default, .table-style > thead > tr.default > td, .table-style > tbody > tr.default > td, .table-style > tfoot > tr.default > td, .table-style > thead > tr.default > th, .table-style > tbody > tr.default > th, .table-style > tfoot > tr.default > th, .table-style2 > thead > tr > td.default, .table-style2 > tbody > tr > td.default, .table-style2 > tfoot > tr > td.default, .table-style2 > thead > tr > th.default, .table-style2 > tbody > tr > th.default, .table-style2 > tfoot > tr > th.default, .table-style2 > thead > tr.default > td, .table-style2 > tbody > tr.default > td, .table-style2 > tfoot > tr.default > td, .table-style2 > thead > tr.default > th, .table-style2 > tbody > tr.default > th, .table-style2 > tfoot > tr.default > th, table.list > thead > tr > td.default, table.list > tbody > tr > td.default, table.list > tfoot > tr > td.default, table.list > thead > tr > th.default,

Teste o Premium para desbloquear

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

Continue navegando

Outros materiais