/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 09.10.2017, 20:58:08
    Author     : andrey
*/

#calendar2 {
  width: auto;
  font: monospace;
  line-height: 1.2em;
  font-size: 15px;
  text-align: center;
}
#calendar2 thead tr:nth-child(1) {
    height: 28px;
    color: black;
}
#calendar2 thead tr:last-child {
  font-size: small;
  color: rgb(85, 85, 85);
}
#calendar2 thead tr:nth-child(1) td:nth-child(2) {
  color: rgb(50, 50, 50);
}
#calendar2 thead tr:nth-child(1) td:nth-child(1):hover, 
#calendar2 thead tr:nth-child(1) td:nth-child(3):hover {
  cursor: pointer;
}
#calendar2 tbody td {
  color: #333;
}
#calendar2 tbody td:nth-child(n+6), 
#calendar2 .holiday {
  color: #bd2828;
}
#calendar2 tbody td.today {
  background: #9bf9ce;
  color: #000;
}
#calendar2 tr {
    height: 22px;
}
#calendar2 > thead > tr > td, 
#calendar2 > tbody > tr > td {
    width: 29px;
}