/* CSS Document */


/*- the cell that contains the month */
.cal_title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #7A96E0;
}

/* - right hand arrow */
.cal_title_r {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #990000;
	text-decoration: none;
}

/* - left hand arrow*/
.cal_title_l  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #990000;
	text-decoration: none;
}

/*  - cells that show the day names*/
.cal_day_head {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #333333;
	background-color: #ECE9D8;
	margin: 0px;
	padding: 0px;
}

/*- general date cells */
.cal_day {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #666666;
	margin: 0px;
	padding: 0px;
}

/*- current day cell */
.cal_day_current {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #990000;
	background-color: #ECE9D8;
	margin: 0px;
	padding: 0px;
}

/*- outer table */
.calendar {
	height: 150px;
	width: 150px;
	margin: 0px;
	padding: 0px;
	border: 1px solid #7A93DF;
	background-color: #FFFFFF;
}

