#calendar {
    align: center;
	font-size: 9px;
	width: 100%;
	line-height: 14px;
}


#calendar td {
	text-align: center;
	padding: 0px;
	margin: 0px;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #F7F7F7;
	border-left: none;
}
#calendar td.tag {
	text-align: center;
	background-color: #b80032;
	color: #f9f9f9;
}
#calendar thead td {
	text-align: center;
	font-weight: bold;
}
#calendar thead td.month {
	font-weight: normal;
	text-align: left;
	letter-spacing: 2px;
}
#calendar thead td.year {
  font-weight: normal;
  text-align: right;
  letter-spacing: 2px;
}
#calendar tbody td:hover {
	border-top: 1px none black;
	border-right: 1px none black;
	border-bottom: 1px solid black;
	border-left: 1px none black;
}
#calendar tbody td.today {
	text-align: center;
	border-top: 1px none #000000;
	border-right: 1px none #000000;
	border-bottom: 1px solid #F7F7F7;
	border-left: 1px none #000000;
	text-decoration: underline;
}

#calendar tbody td.prevday, #calendar tbody td.nextday {
	text-align: center;
	color: #ccc;
}

#calendar tbody td.prevday:hover, #calendar tbody td.nextday:hover {
		border-top: 1px none white;
	border-right: 1px none #f9f9f9;
	border-bottom: 1px solid white;
	border-left: 1px none white;
}
