/* Default attributes of table container for entire calendar */
#calendar {
	position: absolute;
}

.table-style {
	font-family: arial;
	border-width: 1; 
	border-style: solid; 
	border-color: #a0a0a0; 
	background-color: #ffffff;
	font-family: arial; 
	font-size: 11px;
	width: 160px !important;
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.div-style {
	z-index: +998;
	position: absolute;
	visibility: hidden;
}

/* Default attributes used in calendar title (month and year columns).*/
.title-style {
	padding: 0px;
	font-family: arial;
	font-size: 11px;
	color: #000000;
}

.title-style td
{
	font-size: 11px;
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	/* background-color: #D4D0C8; */
	background-color: #EDEDE1;
}

/* Normal appearance of controls in calendar title. */
/* Note: The right, left and down icons are images, which must be edited if you need to change them. */
.title-control-normal-style {
	font-weight: bold;
	cursor: hand;
	cursor: pointer;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style {
	padding: 0px;
	background-color: #FFFFFF;
	font-family: verdana;
	font-size: 11px;
}

.body-style td
{
	padding: 3px;
	background-color: #f2f2f2;
	border: 1px solid #FFFFFF;
}

/* Attributes of current day in calendar body. */

.current-day-style A{
	text-decoration: none;
}

.current-day-style {
	background-color: #DDFFDD !important;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style A{
	color: #ff6600 !important;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style  A{
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style A{
	color: #FFFFFF;
	font-weight: bold;
}

.selected-day-style
{
	background-color: #5284ba !important;
}

.cdays td
{
	background-color: #FFFFFF;
}

