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

.calendar {
	float: left;
}

.monthName {
	font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dayName th {
	background-color: #303030;
	color: white;
	font-size: 14px;
	padding-bottom: 5px;
	padding-top: 5px;
}

.otherMonth, .day, .specialDay {
	font-weight: bold;
	background-color: #FFFFFF;
	font-size: 14px;
	padding: 15px 15px;
	border-right: 1px solid white;
}

.otherMonth {
	color: #EEEEEE;
}

.weekendDay {
  background-color: #FFFFFF;
}

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

.specialDay {
	background-color: #d10a21;
  color: white;
}
.specialDay a, .specialDay a:visited, .specialDay a:hover {
  color: white;
  text-decoration: none;
  padding: 1em;
}
.specialDay a:hover {
  color: white;
  background-color: black;
}
.today {
	background-color: #1e90ff;
	color: white;
}