@CHARSET "UTF-8";

/* Default attributes of table container for entire calendar */
.table-style {
	border-width: 1px;
	border-style: solid;
	border-color: #a0a0a0;
	background-color: #aaaaac;
	font-size: 100%;
	color: #000000;
}

/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.div-style {
	z-index: +999;
	position: absolute;
	visibility: hidden;
	color: #000000;
}

/* Default attributes used in calendar title (month and year columns).*/
.title-style {
	padding: 2px;
	font-size: 100%;
	color: #369;
}
.title-style > b > span > a {
	text-decoration: none;
}

.title-style>b>span>a {
	text-decoration: none;
}

/* Default attributes used in calendar title background.*/
.title-background-style {
	background-color: #cee3ef;
}

/* 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 {
	border-style: solid;
	border-width: 1px;
	border-color: #3a6ea5;
	cursor: pointer;
}

/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	border-style: solid;
	border-width: 1px;
	border-color: #3a6ea5;
	cursor: pointer;
}

/* Default attributes of drop down lists (month and year). */
.dropdown-style {
	font-size: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: #a0a0a0;
	background-color: #cee3ef;
	color: #000000;
	cursor: pointer;
}
.dropdown-style a {
	font-size: 100%;
	font-weight: normal;
	text-decoration: none;
	background-color: inherit;
	color: #000000;
	cursor: pointer;
}
.dropdown-style a.calendrierSelection {
	font-weight: bold;
	color: red;
}

.dropdown-style a {
	font-size: 100%;
	font-weight: normal;
	text-decoration: none;
	background-color: inherit;
	color: #000000;
	cursor: pointer;
}

.dropdown-style a.calendrierSelection {
	font-weight: bold;
	color: #B3173E;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style {
	background-color: #369;
	color: white;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.dropdown-normal-style {
	background-color: #cee3ef;
}


/* Default attributes of calendar body (weekday titles and numbers). */
.body-style {
	padding: 5px;
	background-color: #cee3ef;
	font-size: 90%;
}

/* Attributes of current day in calendar body. */
.current-day-style {
	border-style: solid;
	border-width: 1px;
	border-color: #CEE3EF;
	color: #B3173E;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	border-style: solid;
	border-width: 1px;
	border-color: #CEE3EF;
	color: #636363;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	border-style: solid;
	border-width: 1px;
	border-color: #CEE3EF;
	color: black;
	text-decoration: none;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style {
	border-style: solid;
	border-width: 1px;
	border-color: #a0a0a0;
	text-decoration: none;
}

/* Default attributes of designated holidays. */
.holiday-style {
	background-color: #FFDDDD;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 0px;
	color: black;
	background-color: #cee3ef;
	text-align: center;
	text-decoration: none;
}

/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0;
	padding: 0px;
}

#selectMonth>table>tbody>tr>td, #selectYear>table>tbody>tr>td {
	padding: 0;
}

#selectMonth>table>tbody>tr>td>a, #selectYear>table>tbody>tr>td>a {
	display: block;
}

#selectMonth>table>tbody>tr>td>a:hover, #selectYear>table>tbody>tr>td>a:hover {
	background-color: #369;
	color: white;
}