/* Default attributes of table container for entire calendar */
.table-style {
	font-family: arial;
	border:1px solid #606060;
	background-color: #173185;
	font-family: arial; 
	font-size: 11px;
}

/* 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;
	left:70px;
	top:20px;
}

/* Default attributes used in calendar title (month and year columns).*/
.title-style {
	padding: 0px;
	font-family: arial;
	font-size: 11px;
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	/* background-color: #D4D0C8; */
	background-color: #173185;
}

/* 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 {
	cursor: pointer;
	color:#ffffff;
	font-family:Tahoma;
	font-size:13px;
	
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style {
	padding: 0px;
	background-color: #173185;
	font-family: arial;
	font-size: 10px;
	border-collapse:collapse;
	font-weight:normal;
}
.body-style td {  background:#173185; padding:3px;}
.body-style td:hover { background:#d94b01;}
.body-style td a:hover { color:#ffffff;}
/* Attributes of current day in calendar body. */
A.current-day-style {
	color: #fff;
	text-decoration: none;
	font-weight:normal;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
A.end-of-weekday-style {
	color: #909090;
	text-decoration: none;
	font-weight:normal;
}

/* Attributes of all other days in calendar body. */
A.normal-day-style {
	color: #C4D3EA;
	text-decoration: none;
	font-weight:normal;
}
.body-style a:visited { font-weight:normal; color: #C4D3EA;}

/* Attributes of border around selected day in calendar body. */
A.selected-day-style {
color:#fbac21;
}
