/*
  A red, white, and grey theme.
  
  AUTHOR: Geoffrey Grosenbach http://nubyonrails.com
*/

.calendar {
  width: 440px; 
  margin: auto;
}

.calendar td{
  width: 42px; 
  height: 42px;
}

.calendar th{
  text-align: center;
}

.calendar a, .calendar a:visited, .calendar a:hover {
  color: black;
  text-decoration: underline;
}

.monthName th {
  font-weight: normal;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 0.7em;
}

.dayName th {
  font-size: 0.7em;
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  background-color: #346699;
  color: #fff;
}

.otherMonth, .day, .specialDay {
  /*border-right: 1px solid white;*/
}

.otherMonth {
  color: #666;
}

.weekendDay {
  background-color: #8fcdf4;
}

.day, .specialDay {
  text-align: center;
  border-bottom: 1px dotted #bbbbbb;
}

.specialDay {
  background-color: #feb403;
  color: #000;
  font-weight:bold;
}

.specialDay a, .specialDay a:visited, .specialDay a:hover {
  color: #000;
  text-decoration: underline;
  font-weight:bold;
}

.specialDay a:hover {
  color: #666;

}
.today {
  background-color: #1e90ff;
  color: white;
  font-weight:bold;
}

.today a, .today a:visited, .today a:hover {
  color: white;
  text-decoration: underline;
  font-weight:bold;
}

.today a:hover {
  color: black;
}