/* Default attributes of table container for entire calendar */
.table-style {
	font-family: Arial,verdana,helvetica,sans-serif;
	border-width: 1px;
	border-style: solid;
	border-color: #7F9DB9;
	background-color: #FFFFFF;
	font-size: 11px;
}

.table-style a,
.table-style a:hover,
.table-style a:link,
.table-style a:visited,
.table-style a:active
{
	color: #000000;
	text-decoration: none;
}

/* Default attributes of DIV containing table container for entire calendar. */
.div-style {
	z-index: 999;
	position: absolute;
	visibility: hidden;
	left: 0;
	top: 0;
}

/* Default attributes used in calendar title. */
.title-style {
	padding: 4px;
	font-family: arial;
	font-size: 11px;
	color: #000000;
	cursor: default;
	text-align: center;
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	background: #BAD0F7;
}

/* Appearance of buttons in calendar title. */
.title-button {
	cursor: default;
}

/* Appearance of month-year in calendar title. */
.title-month-year {
	font-family:Arial,verdana,helvetica,sans-serif;
	font-size:11px;
	font-weight:bold;
	text-align:center;
}

/* Default attributes of calendar body. */
.body-style {
	padding: 0px;
	background-color: white;
	font-family: verdana;
	font-size: 11px;
}

/* Default attributes used in day column titles.*/
.day-title-style {
	padding: 3px;
	background-color: #ECF2F9;
	text-align: center;
	vertical-align: middle;
}

/* Default attributes used in day cells.*/
.day-cell-style {
	padding: 3px;
	text-align: center;
	vertical-align: middle;
}

/* Attributes of current day in calendar body. */
.current-day-style {
	color: red;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	color: black;
	text-decoration: none;
	text-align: center;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style
{
	background-color: #FFE37D;
	border: solid 1px #7F9DB9;
	color: #000000;
	font-weight: bold;
	text-align: center;
}

/* Attributes of border around selected day in calendar body. */
.disabled-day-style
{
	color: #A6A6A6;
	text-decoration: none;
	text-align: center;
	cursor: default;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 3px;
	color: #000000;
	background-color: #ECF2F9;
	text-align: center;
	text-decoration: none;
}
