/* Default attributes of table container for entire calendar */
.calendar-table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-width: 1;
	border: solid;
	border-color: #a0a0a0;
	background-color: #ffffff;
	font-size: 80%;
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.calendar-div {
	z-index: +999;
	position: absolute;
}

/* Default attributes used in calendar title (month and year columns).*/
.calendar-title {
	color: #3a6ea5;
    font-size: 90%;
}

/* Default attributes used in calendar title background.*/
.calendar-title-background {
	background-color: #cee3ef;
}

/* Normal appearance of controls in calendar title. */
.calendar-title td {
	padding: 1px;
	border: solid;
	border-width: 1;
	border-color: #3a6ea5;
    font-weight: bold;
    text-align: center;
}

.calendar-title td.arrow {
	cursor: pointer;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.calendar-body {
	background-color: white;
/*	font-family: verdana;  */
    border-collapse:    collapse;
	font-size: 100%;
}

.calendar-body td {
    text-align: center;
    padding: 0.2em;
}

.calendar-body td.day-name {
    font-weight:    bold;
    border-bottom:  1px solid black;
}

/* Attributes of current day in calendar body. */
.calendar-current-day {
	color: red;
	font-weight: bold;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.calendar-end-of-weekday {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.calendar-normal-day {
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.calendar-selected-day {
	border: solid;
	border-width: 1px;
	border-color: #a0a0a0;
}

/* Default attributes of designated holidays. */
.calendar-holiday {
	background-color: #FFDDDD;
}

/* Attributes of today display at bottom on calendar */
.calendar-today {
	padding: 0px;
	color: black;
	background-color: #cee3ef;
	text-align: center;
	text-decoration: none;
}

/* Attributes of week number division (divider.gif) */
.calendar-weeknumber-div {
	background-color: #d0d0d0;
	padding: 0px;
}
