/* Calendar Style sheet */

/* The outer border color of the calendar
    It also includes the are where the month and the year is written */
.parent_table {
	background-color:#EBEEF9;  border-width:1; border-style:solid; border-color:B8C0DE;
}

/* Cells in which the dayname alphabets are printer */
.day_names {
	background-color:white;
}

/* The Day alphabets */
.day_names_text {
	font-family:verdana,sans-serif; font-weight:bold; font-size:10; color:rgb(102,102,102);
}

/* Calendar title. MonthName+Year */
.cal_title {
	font-family:verdana,sans-serif; text-align:center; font-weight:bold; font-size:10; color:rgb(102,102,102);
}

/* Cells in which the dates are printed */
.dates {
	background-color:#EBEEF9;
}

/* Numerical Dates */
.date_num {
	font-family:verdana,sans-serif; font-size:10; color:rgb(102,102,102);
}

/* Numerical dates on which post were made */
.date_active {
	font-family:verdana,sans-serif; font-size:10; color:rgb(102,102,102); font-weight:bold; text-decoration:underline;
}