body {
  width: 1280px;
  margin: auto;
  background-color: rgb(75, 177, 224);
  font-family: "Optima", sans-serif;
  -webkit-text-size-adjust: 100%;
  /* No automatic text-size-adjustation on iOS Devices */
}

body.localhost {
  background-color: #1ba719;
}

body.beta {
  background-color: #c94d1c;
}

/*  Header  */

header {
  height: 150px;
  padding: 10px 10px 25px 25px;
  margin: 15px 15px 0 15px;
  background-color: white;
}

header img {
  float: left;
  height: 150px;
}

header h1 {
  display: inline-block;
  margin: 40px 0 0 50px;
  font-size: 5em;
}

header time {
  color: red;
  float: right;
  font-size: 2.5em;
  margin: 23px 23px 0px 0px;
  text-align: center;
  line-height: 1.3em;
}

/* Menu  */

nav {
  padding: 2px 15px 2px 15px;
  font-size: 1.2em;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav ul:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}

nav ul, nav ul li {
  background-color: white;
}

nav ul li {
  list-style: none;
  float: left;
}

nav ul li a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 10px 10px 10px 10px;
  -webkit-transition: background 0.3s ease-out 0s;
  -moz-transition: background 0.3s ease-out 0s;
  -o-transition: background 0.3s ease-out 0s;
  transition: background 0.3s ease-out 0s;
}

nav ul li:hover>ul {
  visibility: visible;
}

nav ul li ul {
  display: inline;
  visibility: hidden;
  position: absolute;
  padding: 0;
}

nav ul li ul li {
  float: none;
}

nav ul li:hover a, nav ul li:hover>ul li a {
  background-color: rgba(75, 177, 224, 1.0);
}

nav ul li:hover a.deactivated, nav ul li:hover>ul li a.deactivated {
  background-color: lightgrey;
  color: white;
}

nav ul li:hover>a {
  color: white;
  cursor: pointer;
}

nav ul li ul li a {
  color: white;
}

nav ul li ul li a:hover {
  color: #000000;
  background-color: white;
}

nav ul li a.actual {
  background-color: rgba(75, 177, 224, 1.0);
  color: white;
}

nav ul li a.deactivated {
  background-color: white;
  color: lightgrey;
}

nav ul li ul li a.deactivated:hover {
  color: black;
}

nav ul li ul li a.actual {
  background-color: white;
  color: #000000;
}

nav ul li:last-child {
  float: right;
}

nav ul li ul li:last-child {
  float: none;
}

/* Content */

main {
  min-height: 500px;
  overflow: auto;
  padding: 25px;
  margin: 0 15px 15px 15px;
  background-color: white;
}

#main {
  width: 75%;
  float: left;
}

#sidebar {
  width: 25%;
  float: right;
}

/* Tables */

table {
  width: 100%;
  margin-bottom: 15px;
  border: 2px solid rgb(75, 177, 224);
}

table tbody td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid rgb(75, 177, 224);
}

table thead tr {
  border: 2px solid rgb(75, 177, 224);
}

table thead th {
  border: 1px solid rgb(75, 177, 224);
  font-size: 1.3em;
  line-height: 1.5em;
}

table caption {
  font-size: 1.5em;
  line-height: 2em;
  text-align: left;
}

/* Table Inscriptions */

table.inscriptions {
  text-align: center;
  font-weight: bold;
  border: none;
}

table.inscriptions tr.slots td:first-child {
  border-left: none;
  border-top: none;
  border-right: 2px solid rgb(75, 177, 224);
  background: none;
}

table.inscriptions tr.slots:not(:first-child) td:first-child {
  border-top: 2px solid rgb(75, 177, 224);
}

table.inscriptions tr.slots td {
  border-top: 2px solid rgb(75, 177, 224);
  border-bottom: 2px solid rgb(75, 177, 224);
  background-color: rgba(75, 177, 224, 0.2);
}

table.inscriptions tr:first-child td:last-child {
  border-right: 2px solid rgb(75, 177, 224);
}

table.inscriptions tr td:first-child {
  border-left: 2px solid rgb(75, 177, 224);
  border-right: 2px solid rgb(75, 177, 224);
  background-color: rgba(75, 177, 224, 0.2);
}

table.inscriptions tr td:last-child {
  border-right: 2px solid rgb(75, 177, 224);
}

table.inscriptions tr:last-child td {
  border-bottom: 2px solid rgb(75, 177, 224);
}

table.inscriptions .inscribed {
  background-color: rgb(144, 238, 144);
}

table.inscriptions .closed {
  background-color: rgba(177, 177, 177, 0.5);
}

table.inscriptions .reserve {
  background-color: rgb(186, 85, 211);
}

table.inscriptions .inscribed.closed {
  background-color: rgba(144, 238, 144, 0.5);
}

table.inscriptions .reserve.closed {
  background-color: rgba(186, 85, 211, 0.7);
}

table.inscriptions .shift {
  background-color: rgb(238, 154, 0);
}

table.inscriptions .shift.closed {
  background-color: rgba(238, 154, 0, 0.5);
}

table.inscriptions .shift.removal {
  background-color: rgb(222, 49, 66);
}

table.inscriptions .closed.shift.removal {
  background-color: rgba(222, 49, 66, 0.5);
}

table.inscriptions .missing {
  color: red;
}

/* Table Permanence */

table.permanence tr.first-row {
  border-top: 2px solid rgb(75, 177, 224);
}

table.permanence tr.first-row td:first-child {
  width: 15%;
  text-align: center;
  font-weight: bold;
}

table.permanence tbody td {
  height: 20px;
  width: 25%;
}

table.permanence tbody td img {
  max-height: 16px;
  max-width: 25px;
  vertical-align: middle;
}

table.permanence tbody tr.actual {
  background-color: rgba(173, 216, 230, 0.75)
}

table.permanence tbody td.own {
  color: red;
  font-weight: bold;
}

/* Table Permanence Ambulance */

table.ambulance tr {
  border-bottom: 2px solid rgb(75, 177, 224);
}

table.ambulance tr td:first-child {
  width: 15%;
  text-align: center;
  font-weight: bold;
}

table.ambulance tbody td {
  height: 20px;
  width: 25%;
}

table.ambulance tbody td img {
  max-height: 16px;
  max-width: 25px;
  vertical-align: middle;
}

table.ambulance tbody tr.actual {
  background-color: rgba(173, 216, 230, 0.75)
}

table.ambulance tbody td.own {
  color: red;
  font-weight: bold;
}

/* Table Permanence Admin */

table.admperma tr.first-row {
  border-top: 2px solid rgb(75, 177, 224);
}

table.admperma tr.first-row td:first-child {
  width: 15%;
  text-align: center;
  font-weight: bold;
}

table.admperma tbody td {
  height: 20px;
  width: 25%;
}

table.admperma tbody td img {
  max-height: 16px;
  max-width: 25px;
  vertical-align: middle;
}

table.admperma tbody td input {
  width: 50px;
  font-size: 1em;
}

table.admperma tbody td.mod {
  font-weight: bold;
  color: red;
}

table.admperma tbody td s {
  position: relative;
}

table.admperma tbody td s::after {
  border-bottom: 5px solid black;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 40%;
}

table.admperma tbody td.mod input {
  border: 3px solid red;
}

/* Table Mes permanences */

table.own tr.first-row {
  border-top: 2px solid rgb(75, 177, 224);
}

table.own tr.first-row td:first-child {
  width: 15%;
  text-align: center;
  font-weight: bold;
}

table.own tbody td {
  height: 20px;
  width: 25%;
}

table.own tbody td img {
  max-height: 16px;
  max-width: 25px;
  vertical-align: middle;
}

table.own tbody tr.actual {
  background-color: rgba(173, 216, 230, 0.75)
}

table.own tbody td.own {
  color: red;
  font-weight: bold;
}

/* Table Groupe renfort */

table.groupe {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.groupe thead th {
  font-size: 1.5em;
}

table.groupe tbody td {
  font-size: 1.2em;
}

/* Table Membres */

table.membres {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.membres tbody td {
  border-left: none;
  border-right: none;
}

table.membres tbody td img {
  max-height: 16px;
  max-width: 25px;
  vertical-align: middle;
}

table.membres thead th {
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

table.membres thead th img {
  padding-top: 5px;
}

table.membres tbody tr:hover {
  cursor: pointer;
  color: rgb(75, 177, 224);
}

/* Table Calendar */

table.calendar {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.calendar caption {
  border: 2px solid rgb(75, 177, 224);
  border-bottom: none;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

table.calendar thead {
  border: 2px solid rgb(75, 177, 224);
}

table.calendar thead th {
  border: 1px solid rgb(75, 177, 224);
  padding: 5px;
  font-size: 1em;
}

table.calendar tbody td a:hover {
  color: rgb(75, 177, 224);
}

table.calendar td.out {
  color: lightgray;
}

table.calendar .selected a, table.calendar .selected {
  color: rgb(75, 177, 224);
  font-weight: bold;
}

/* Table Evenements */

table.events {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.events tbody td {
  border-left: none;
  border-right: none;
}

table.events thead th {
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

table.events thead th img {
  padding-top: 5px;
}

table.events tbody tr:hover {
  cursor: pointer;
  color: rgb(75, 177, 224);
}

/* Table Documents */

table.docs {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.docs tbody td {
  border-left: none;
  border-right: none;
}

table.docs thead th {
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

table.docs thead th img {
  padding-top: 5px;
}

table.docs tbody tr.hover:hover {
  cursor: pointer;
  color: rgb(75, 177, 224);
}

/* Table Plans */

table.plans {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.plans tbody {
  border: 2px solid rgb(75, 177, 224);
}

table.plans tbody td {
  border-left: none;
  border-right: none;
}

table.plans thead th {
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

table.plans thead th img {
  padding-top: 5px;
}

table.plans tbody tr.hover:hover {
  cursor: pointer;
  color: rgb(75, 177, 224);
}

/* Table Statistiques */

table.stats {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

table.stats thead th {
  font-size: 1.0em;
  vertical-align: middle;
  background-color: rgba(75, 177, 224, 0.2);
}

table.stats thead tr:nth-child(2) th {
  border-top: 1px;
}

table.stats tbody tr:nth-child(2n) {
  color: #666;
}

table.stats tr.first-row {
  border-top: 2px solid rgb(75, 177, 224);
}

/* Login & Activate Form  (login.php) */

form#login, form#activate {
  padding: 20px;
  width: 450px;
  display: block;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
}

form#login img {
  width: 100px;
  margin-right: 10px;
}

form#login h4 {
  padding-top: 1em;
  margin-bottom: 20px;
  flex: 1;
  text-align: center;
}

form#login .header {
  display: flex;
  flex-direction: row;
}

form#login fieldset, form#activate fieldset {
  padding: 10px;
}

form#login button, form#activate button {
  margin-top: 10px;
  margin-left: 210px;
  width: 200px;
}

form#login input, form#activate input {
  width: 200px;
  font-size: 1.1em;
}

form#login label, form#activate label {
  float: left;
  width: 200px;
  font-size: 1.4em;
  margin-top: 5px;
}

form#login label:last-child {
  width: 450px;
}

form#login fieldset.error {
  color: red;
}

form#login fieldset.error input {
  border-color: red
}

form#login fieldset a {
  padding-left: 200px;
}

form#activate {
  width: 540px;
}

form#activate button {
  margin-left: 260px;
}

form#activate input {
  width: 250px;
}

form#activate label {
  width: 250px;
}

form#activate label:last-child {
  width: 450px;
}

form#activate fieldset.error {
  color: red;
}

form#activate fieldset.error input {
  border-color: red
}

/* Form Membres */

form#membres {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

form#membres fieldset {
  padding: 10px;
}

form#membres input, form#membres select {
  width: 400px;
  font-size: 1.1em;
}

form#membres label {
  font-size: 1.4em;
  float: left;
  width: 280px;
}

form#membres button {
  margin: 20px 2px 5px 2px;
}

form#membres aside {
  padding-top: 20px;
}

form#membres ul li {
  padding-left: 210px;
  padding-top: 10px;
  color: red;
  font-size: 1.3em;
}

form#membres input[disabled=disabled] {
  background: #eee;
}

/* Form Mlists */

form#mlists {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

form#mlists fieldset {
  padding: 10px;
}

form#mlists input, form#mlists select {
  width: 400px;
  font-size: 1.1em;
}

form#mlists textarea {
  width: 400px;
  height: 120px;
  font-size: 1.1em;
}

form#mlists label {
  font-size: 1.4em;
  float: left;
  width: 280px;
}

form#mlists button {
  margin: 20px 2px 5px 2px;
}

form#mlists aside {
  padding-top: 20px;
}

form#mlists ul li {
  padding-left: 210px;
  padding-top: 10px;
  color: red;
  font-size: 1.3em;
}

/* Form Evenements/Notifications */

form#events {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

form#events fieldset {
  padding: 5px;
}

form#events input {
  width: 195px;
  font-size: 1.1em;
  padding: 1px;
}

form#events textarea {
  width: 650px;
  max-width: 700px;
  padding: 3px;
  font-size: 1.1em;
  font-family: "Optima", sans-serif;
}

form#events label {
  padding-top: 5px;
  width: 130px;
  font-size: 1.4em;
  float: left;
}

form#events button {
  padding: 9px;
  font-size: 1.1em;
  margin: 5px 2px 5px 2px;
}

form#events ul li {
  padding-left: 80px;
  padding-top: 10px;
  color: red;
  font-size: 1.3em;
}

/* Form Documents */

form#docs {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

form#docs fieldset {
  padding: 5px;
}

form#docs input {
  width: 300px;
  font-size: 1.1em;
  padding: 1px;
}

form#docs input[type=file] {
  color: white;
}

form#docs input[type=checkbox] {
  margin-top: 10px;
}

form#docs p {
  width: 275px;
  font-size: 1.1em;
  line-height: 1.2em;
  margin-top: 10px;
  color: red;
}

form#docs textarea {
  width: 600px;
  max-width: 600px;
  padding: 3px;
  font-size: 1.1em;
  font-family: "Optima", sans-serif;
}

form#docs label {
  padding-top: 5px;
  width: 150px;
  font-size: 1.4em;
  float: left;
}

form#docs button {
  padding: 9px;
  font-size: 1.1em;
  margin: 5px 2px 5px 2px;
}

form#docs ul li {
  padding-left: 90px;
  padding-top: 10px;
  color: red;
  font-size: 1.3em;
}

/* Form Plans */

form#plans {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

form#plans fieldset {
  padding: 10px;
}

form#plans input, form#plans select, form#membres select {
  width: 300px;
  font-size: 1.1em;
}

form#plans label {
  font-size: 1.4em;
  float: left;
  width: 380px;
}

form#plans button {
  margin: 20px 2px 5px 2px;
}

form#plans ul li {
  padding-left: 210px;
  padding-top: 10px;
  color: red;
  font-size: 1.3em;
}

/* Form PDF/Stats */

form#statForm fieldset {
  padding: 5px;
}

form#statForm input {
  width: 88px;
  font-size: 1em;
  padding: 1px;
}

form#statForm label {
  padding-top: 5px;
  padding-right: 5px;
  width: 34px;
  font-size: 1.3em;
}

form#statForm button {
  margin-top: 5px;
}

form#statForm fieldset:nth-child(3) label {
  width: 200px;
}

form#statForm fieldset:nth-child(3) input {
  margin-top: 5px;
  width: 20px;
}

form#statForm fieldset:nth-child(4) label {
  width: 120px;
  padding-right: 0;
}

form#statForm fieldset:nth-child(4) input {
  margin-top: 5px;
  width: 20px;
}

form#statForm fieldset:nth-child(4) {
  margin-top: 8px;
  margin-bottom: 8px;
}

form#statForm fieldset:nth-child(n+5) {
  width: 90px;
  padding: 0;
}

form#statForm fieldset:nth-child(5) label {
  width: 70px;
  color: red;
}

form#statForm fieldset:nth-child(6) label {
  width: 70px;
  color: black;
}

form#statForm fieldset:nth-child(n+5) input {
  margin-top: 5px;
  width: 20px;
}

form#statForm fieldset:nth-child(n+5) input:disabled+label {
  color: #ccc;
}

form#pdf fieldset {
  padding: 5px;
}

form#pdf input {
  width: 88px;
  font-size: 1em;
  padding: 1px;
}

form#pdf label {
  padding-top: 5px;
  padding-right: 5px;
  width: 34px;
  font-size: 1.2em;
}

form#pdf button {
  margin-top: 5px;
}

form#pdf fieldset:nth-child(3) label {
  width: 200px;
}

form#pdf fieldset:nth-child(3) input {
  margin-top: 5px;
  width: 20px;
}

form#pdf fieldset:nth-child(4) label {
  width: 120px;
  padding-right: 0;
}

form#pdf fieldset:nth-child(4) input {
  margin-top: 5px;
  width: 20px;
}

form#pdf fieldset:nth-child(4) {
  margin-top: 8px;
  margin-bottom: 8px;
}

form#pdf fieldset:nth-child(n+5) {
  width: 90px;
  padding: 0;
}

form#pdf fieldset:nth-child(5) label {
  width: 70px;
  color: red;
}

form#pdf fieldset:nth-child(6) label {
  width: 70px;
  color: black;
}

form#pdf fieldset:nth-child(n+5) input {
  margin-top: 5px;
  width: 20px;
}

form#pdf fieldset:nth-child(n+5) input:disabled+label {
  color: #ccc;
}

/* Headers */

h2 {
  font-size: 3em;
  text-align: center;
  color: rgb(75, 177, 224);
  margin-bottom: 50px;
  text-decoration: underline;
}

h3 {
  font-size: 2em;
  text-align: center;
  margin: 0 0 30px 0;
  text-decoration: underline;
}

h3 a {
  display: inline-block;
  text-decoration: none;
}

h4 {
  font-size: 1.8em;
  text-align: center;
}

h5 {
  font-size: 1.3em;
  float: left;
  text-decoration: underline;
  width: 14%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

h6 {
  font-size: 1.5em;
  text-align: center;
  text-decoration: underline;
}

/* Buttons */

button {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: white;
  border: 0;
  cursor: pointer;
  font-size: 1.3em;
  margin-bottom: 5px;
}

button.red {
  background-color: #FF5C5C;
}

button.red:hover {
  background-color: #F00;
}

button.red:active {
  background-color: #F00;
}

button.red[disabled] {
  background-color: rgba(255, 92, 92, 0.5);
  cursor: default;
}

button.green {
  background-color: #4DDB4D;
}

button.green:hover {
  background-color: #3EAF3E;
}

button.green:active {
  background-color: #3EAF3E;
}

button.green[disabled] {
  background-color: rgba(77, 219, 77, 0.5);
  cursor: default;
}

button.blue {
  background-color: rgb(75, 177, 224);
}

button.blue:hover {
  background-color: #0099FF;
}

button.blue:active {
  background-color: #0099FF;
}

/* Other stuff */

ul.inscriptions {
  display: inline-block;
  width: 85%;
  line-height: 1.5em;
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.inscriptions li {
  width: 70%;
  margin-left: 15px;
}

ul.inscriptions li[data-code]:hover {
  background-color: rgb(255, 217, 146);
}

ul.inscriptions li[data-code][data-other-manning]:hover {
  background-color: rgb(250, 151, 151);
}

ul.chiefs {
  margin-left: 20px;
  margin-top: 20px;
  line-height: 30px;
  font-size: 1.1em;
}

ul.chiefs li {
  text-align: left;
}

ul.chiefs li img {
  height: 20px;
  vertical-align: middle;
}

button.membres {
  margin-left: 10%;
}

p.groupe {
  margin: 20px 0 0 0;
  font-size: 1.8em;
}

a {
  text-decoration: none;
  color: rgb(75, 177, 224);
}

a:hover {
  color: #0099FF;
}

b {
  font-weight: bold;
}

hr {
  border: 1px solid rgb(75, 177, 224);
}

.right {
  float: right;
}

.left {
  float: left;
}

.copy {
  color: green;
  cursor: pointer;
}

.paste {
  color: red;
  cursor: pointer;
}

.controls {
  margin: 0 0 0 20px;
}

.stats {
  margin: 0 0 20px 20px;
  float: right;
}

.stats2 {
  margin: 0 0 20px 20px;
  display: inline;
  float: left;
}

.stats2 input[type=text] {
  width: 100px!important;
}

h3.stats {
  float: left;
  margin: 25px 0 0 150px;
}

h3.stats2 {
  float: left;
  margin: 30px 0 0 50px;
}

.stats p, .stats2 p, .controls p {
  font-size: 1.3em;
  padding-top: 8px;
  padding-bottom: 8px;
}

.stats select, .stats2 select, .controls select {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><polyline points='46.139,15.518 25.166,36.49 4.193,15.519'/></svg>");
  background-color: rgb(75, 177, 224);
  background-repeat: no-repeat;
  background-position: right 10px top 15px;
  background-size: 16px 16px;
  color: white;
  padding: 10px;
  padding-right: 30px;
  font-size: 1.3em;
  border-radius: 0;
  border: 0;
  margin-top: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.stats select:hover, .stats2 select:hover, .controls select:hover {
  background-color: #0099FF;
  cursor: pointer;
}

.ui-datepicker {
  width: 255px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: white;
  padding: 5px 5px 5px 0;
}

.ui-datepicker a {
  text-decoration: none;
  color: black;
}

.ui-datepicker-header {
  border: 2px solid rgb(75, 177, 224);
  border-bottom: none;
  line-height: 48px;
}

.ui-datepicker-title {
  font-size: 1.5em;
  text-align: center;
}

.ui-datepicker-prev {
  float: left;
  padding-left: 20px;
  font-size: 1.5em;
  cursor: pointer;
}

.ui-datepicker-next {
  float: right;
  padding-right: 20px;
  font-size: 1.5em;
  cursor: pointer;
}

.ui-datepicker-calendar thead {
  border: 2px solid rgb(75, 177, 224);
}

.ui-datepicker-calendar thead th {
  border: 1px solid rgb(75, 177, 224);
  padding: 5px;
  font-size: 1em;
}

.ui-datepicker-calendar tbody td.ui-datepicker-other-month a {
  color: lightgray;
}

.ui-datepicker-calendar tbody td.ui-datepicker-current-day a {
  color: rgb(75, 177, 224);
  font-weight: bold;
}

.ui-datepicker-calendar tbody td a.ui-state-hover {
  color: rgb(75, 177, 224);
}

.ui-datepicker-calendar tbody td span.ui-state-default {
  color: red;
}

#ui-datepicker-div {
  display: none
}

.ui-autocomplete {
  position: absolute;
  cursor: pointer;
}

.ui-menu {
  border: 1px solid #aaaaaa;
  background: white;
  font-size: 1.1em;
  line-height: 1.3em;
  padding: 5px 10px 5px 5px;
}

.ui-menu .ui-state-focus {
  color: red;
}

.otherShift {
  background: #ffff00;
}

.StatColumn--total {
  font-weight: bold;
}

.cgdis-red {
  font-family: sans-serif;
  font-weight: bold;
  color: #e30613;
}
