/*
  A red, white, and grey theme.
  
  AUTHOR: Geoffrey Grosenbach http://nubyonrails.com
*/

.calendar {
  margin: auto;
  margin-top: 2px;
}
.calendar thead {
  background-color: #bf0061;
}

.monthName th {
  font-weight: normal;
  text-align: right;
  padding-top: 1em;
  padding-bottom: 0.7em;
}

.dayName th {
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  background-color: #ffffff;
  color: #BF0000;
}

.otherMonth, .day, .specialDay {
  padding: 0.3em 1em;
  border-right: 1px solid white;

}

.otherMonth {
  color: #eeeeee;
}
.weekendDay {
  background-color: #eeeeee;
}

.day, .specialDay, .selectedDay {
  text-align: center;
  border-bottom: 1px dotted #bbbbbb;
}

.selectedDay {
  background-color: #f7e1e1;
}

.specialDay a, .specialDay a:visited, .specialDay a:hover {
  font-weight: bold;
  color: #bf0000;
}
.specialDay a:hover {
  font-weight: bold;
  color: #000000;
}
.today {
	font-weight: bold;
}
