table.calendar {
	position: absolute;
	border: 2px outset #fff;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	z-index: 1000;
}

table.calendar td.hovered {
	color: blue;
	border-color: blue;
	font-weight: bold;
}

table.calendar td {
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #fff #fff #ddd #ddd; 
	width: 1.4em;
	padding: 1px 3px;
	text-align: right;
	font: 11px sans-serif;
}

table.calendar td.current {
	color: #000!important;
	font-weight: bold;
	background-color: #ccc;
}

table.calendar td.todayButton {
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	color: blue!important;
	background: #eee;
}

table.calendar tr.dayMarker td {
	cursor: default;
	font-variant: small-caps;
	font-weight: bold;
	color: blue;
	background: #eee;
}

table.calendar td.weekEnd {
	color: #f00 !important;
}

table.calendar td.month {
	cursor: default;
	text-align: center;
	font-weight: bold;
	color: #333;
}

table.calendar td.year {
	cursor: default;
	text-align: center;
	font-weight: bold;
	color: #333;
}

table.calendar td.scroller {
	text-align: center;
	cursor: pointer;
}

table.calendar td.nextMonth, table.calendar td.previousMonth {
	color: #bbb!important
}

iframe#calendarShield {
	border-width: 0;
	z-index: 999;
	position: absolute;
	display: none;
	background-color: transparent;
}

