

/*BLOCO DE DESCRICAO DAS OPCOES QUANDO O MOUSE PASSA ENCIMA*/

[data-tooltip] {
    position: relative;
    font-weight: bold;
  }
  
  [data-tooltip]:after {
    display: none;
    position: absolute;
    /*top: -5px;*/
    top: -35px;
    padding: 3px;
    border-radius: 0px;
    /*border-radius: 3px;*/
    left: calc(100% + 5px);
    content: attr(data-tooltip);
    white-space: nowrap;
   /* background-color: #0095ff;*/
   background-color: #0095ff;
    color: White;
  }
  
  [data-tooltip]:hover:after {
    display: block;
  }
  /* FINAL DO BLOCO*/
  
  body{
      display: block;
      margin:auto;
      text-align:center;
      width:900px;
      font-size:14px;
      font-family: Calibri;
      background-color: #F5F5DC;
      color:#13293d;
      
  /*
      13293d escuro
      F5F5DC  claro
      d2d2d2
      dcdcdc
  */
      
  }
  div{
      font-family: Calibri;
      margin-top:5px;
      margin-bottom:5px;
      border:0px;
  }
  .titulo{
      padding:12px;
      font-size:16px;
      text-align:center;
      color: #ffffff;
      font-weight: bold;
      background-color:#13293d;
      border-radius:5px;
  }
  .campos{
      display: inline-block
  }
  input{
      border:0px;
      box-shadow: 3px 3px 3px #DCDCDC;
  }
  
  #esp_serv{
  padding:0px 10px 0px 10px;
  }
  #bt{
      color:#13293d;
      font-weight: bold;
      height:30px;
      padding: 0px 10px 0px 10px;
      margin-left: 20px;
  }
  #rb{
     margin:auto 10px;
  }
  #cb{
    margin:auto 20px;
  }