/* Generic styles */

.padded_vertical {
  padding-top: 5px; padding-bottom: 5px;
}
.center {
  text-align: center; margin-left: auto; margin-right: auto;
}
.prominent {
  font: 15px/normal normal normal Tahoma,sans-serif;
  padding-top: 3px;
}
.white_on_black {
  font: 14px/normal normal normal Tahoma,sans-serif;
}
.yellow {
  font: 14px/normal bold bold Tahoma,sans-serif;
 }
.office_picture {
  padding: 3px;
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: center; margin-left: auto; margin-right: auto;
}


/* Dark theme */

body.dark-theme a {
  color: white;
}
body.dark-theme .prominent {
  color:#FDCD35;
}
body.dark-theme .white_on_black {
  color: white;
  background-color: black;
}
body.dark-theme .yellow {
  color:#FDB813;
 }
body.dark-theme .office_picture {
  border: 2px solid #FDB813;
}


/* Light theme */

body.light-theme a {
  color: black;
}
body.light-theme .prominent {
  color:#CCA52B;
}
body.light-theme .white_on_black {
  color: black;
  background-color: white;
}
body.light-theme .yellow {
  color: #CC940F;
 }
body.light-theme .office_picture {
  border: 2px solid #CC940F;
}


