*{
  box-sizing: border-box;
  margin: 0;
}

body{
	background:url(https://hotsite.unisuam.edu.br/Documentos_Institucionais/Imagens/PNG/Background/background_Main_Papel.png) repeat-x fixed;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  word-wrap: break-word;
}

ul{
  padding: 0;
}

h1, h2, h3, h4, h5, h6{
  font-family: "PT Sans", sans-serif, arial !important;
}


/* Scrollbars */
body::-webkit-scrollbar {
	width: 5px;
	overflow: visible;
	background: #ffffff;
}
body::-webkit-scrollbar-track {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}
body::-webkit-scrollbar-thumb {
	border-radius: 1px;
	background-color: #666666;
	-webkit-box-shadow: none;
	box-shadow: none;
  border-left: solid 1px #ffffff;
}
body::-webkit-scrollbar-thumb:hover{
	background-color: #333333;
}


/* HEADER */
.conteudoTopo{
  width: 100%;
  margin: 0 auto;
  padding: 10px 25px;
	background:url(https://hotsite.unisuam.edu.br/Documentos_Institucionais/Imagens/PNG/Background/background_Header_Laranja_Claro_Escuro.png);
  background-size: cover;
  background-position: center;
}
.nomeTopo{
  font-size: 32px;
  text-align: center;
  padding: 1px 0;
  font-weight: bolder;
  color: #ffffff;
  text-transform: uppercase
}


/* MAIN */

/*botão*/
.conteudoMenu{
  margin: 20px auto;
  padding: 15px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 10px;
}
.linkMenu{
  margin: auto 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  color:#ffffff;
  padding: 10px;
  font-size: 16px;
  width: 30%;
  background: #EF7D00;
  text-transform: uppercase;
  font-weight: bolder;
}
.linkMenu:hover{
  background-color: #EA5A33;
}
.imgBotao{
  height: 16px;
  padding: 0px 10px;
}


/*conteudo*/
.calendario{
  margin: 2.5px auto;
  padding: 0px 15px;
  display: flex;
  border-radius: 8px;
}

.conteudoCalendario{
  width: 100%;
  display: block;
  overflow-x: scroll;
}
.conteudoCalendario::-webkit-scrollbar {
  width: 12px;
}
.conteudoCalendario::-webkit-scrollbar-track {
  background: #ffffff00;
}

.tabelaCalendario{
  margin: 10px auto;
  border-radius: 1px;
  background-color: #ffffff;
  padding: 4px;
}
td{
  padding: 7px;
}
.titulo{
  font-weight: bold;
  background-color: #666666;
  color: #ffffff;
}
.evento, .nomeTitulo{
  text-align: center;
}
.nomeTitulo{
  padding: 5px 10px;
}
.evento:nth-child(odd){
  background-color: #E0E0E0;
}
.evento:nth-child(even){
  background-color: #F0F0F0;
}
.descricao{
  color: #000000;
  text-align: left;
}
.dataInicio, .dataFim{
  color: #EF7D00;
}
.atividade .descricao{
  font-weight: bold;
}
.atividade .dataInicio, .atividade  .dataFim{
  color: #EA5A33;
  font-weight: bold;
}



@media only screen and (max-width: 630px){
  .linkMenu{
    width: auto;
  }
}
@media only screen and (max-width: 455px){
  .linkMenu{
    width: 35%;
  }
  .imgBotao{
    padding: 0px 12px;
    margin-bottom: 10px;
  }
}