/*
  A red, white, and grey theme.
  
  AUTHOR: Geoffrey Grosenbach http://nubyonrails.com
*/
div#calendar {
	position: relative;
	margin: 5px 0 15px 0;
}
div#calendar a#previous_month,
div#calendar a#next_month {
	position: absolute;
	top: 6px;
	display: block;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	z-index: 10;
}
div#calendar a#previous_month {
	background: #1c5e93 url(/images/month_arrows.png) no-repeat;
	left: 2px;
}
div#calendar a#next_month {
	background: #1c5e93 url(/images/month_arrows.png) no-repeat -21px 0;
	right: 2px;
}
.calendar {
	margin: 0;
	width: 100%;
}
.monthName {
	background: #1c5e93;
	position: relative;
}
.monthName th {
	font-weight: bold;
  text-align: center;
  padding: .5em 0;
color: #fff;
}

.dayName th {
  font-size: 0.7em;
  padding-top: 0.6em;
  padding-bottom: 0.3em;
  background-color: #303030;
  color: white;
text-align: center;
font-size: .9em;
}

.otherMonth, .day, .specialDay {
  padding: .3em 0;
}

.otherMonth {
  color: #eeeeee;
}
.weekendDay {
  background-color: #eeeeee;
}

.day, .specialDay, .otherMonth {
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.specialDay {
  background-color: #d10a21;
  color: white;
	font-weight: bold;
}
.specialDay a, .specialDay a:visited, .specialDay a:hover {
  color: white;
  text-decoration: none;
  padding: 1em;
}
.specialDay a:hover {
  color: white;
  background-color: black;
}
