/* Default attributes of table container for entire calendar */
/* контейнер, таблица */
.table-style {
	font-family: arial;
	border-width: 1;
	border-style: solid;
	border-color: #a0a0a0;
	background-color: #ffffff;
	font-size: 11px;
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style. */
/* контейнер, слой */
.div-style {
	font-family: arial;
	z-index: +998;
	position: absolute;
	visibility: hidden;
}

/* Default attributes used in calendar title (month and year columns).*/
/* заголовок */
.title-style {
	font-family: arial;
	padding: 0px;
	color: #000000;
	font-size: 12px;
}

/* Default attributes used in calendar title background.*/
/* фон заголовка */
.title-background-style {
	background-color: #EDEDE1;
	background-color: #D4D0C8;
}

/* 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-family: arial;
	font-weight: bold;
	cursor: pointer;
	font-size: 12px;
}

/* Default attributes of calendar body (weekday titles and numbers). */
/* ячейки дней месяца */
.body-style {
	font-family: verdana;
	font-family: arial;
	padding: 0px;
	background-color: #FFFFFF;
	font-size: 11px;
}

/* Attributes of current day in calendar body. */
/* текущий день */
A.current-day-style {
	font-family: arial;
	color: red;
	font-weight: bold;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
/* выходные */
A.end-of-weekday-style {
	font-family: arial;
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
/* дни месяца */
A.normal-day-style,A:visited.normal-day-style {
	font-family: arial;
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
/* ячейка выбранного дня */
A.selected-day-style {
	font-family: arial;
	border-style: solid;
	border-width: 1px;
	border-color: #a0a0a0;
	text-decoration: none;
}

