table.jCalendar {
	border: 0px solid #fff;
	background: #fff;
    border-collapse: separate;
    border-spacing: 1px;
	border-color:#fff;
	font-size:9px;
	font-weight: bold;		
}
table.jCalendar th {
	background: #D4D4D4;
	color: #000;
	/*padding: 2px 4px;*/
	width:23px;
	font-weight: bold;	
}
table.jCalendar td {
	background: #C5CEDC;
	color: #FE1E7F;
	padding: 1px 0px;
	text-align: center;
	width:23px;
}
table.jCalendar td.other-month {
	background: #E4E4E4;
	color: #E4E4E4;
}
table.jCalendar td.today {
	background: #C5CEDC;
	color: #FE1E7F;
}
table.jCalendar td.selected {
	/*background: #f66;*/
	background:#C2E2CA;
	color: #0231E3;
}

table.jCalendar td.selected:hover {
	background: #FE1E7F;
	color: #929DE8;
}
table.jCalendar td:hover, table.jCalendar td.dp-hover {
	background: #929BE3;
	color: #FE1E7F;
}

table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
	background: #BFCEE5;
	color: #FE1E7F;
}

/* For the popup */

/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */

div.dp-popup {
	position: relative;
	background: #fff;
	font-size: 10px;
	font-family: arial, sans-serif;
	padding: 0;
	width: 161px;
	line-height: 0.9em;
	margin:0 auto;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}
div.dp-popup h2 {
	display:none; /* daf */
	font-size: 12px;
	text-align: center;
	margin: 2px 0;
	padding: 0;
}
a#dp-close {
	font-size: 11px;
	padding: 4px 0;
	text-align: center;
	display: block;
}
a#dp-close:hover {
	text-decoration: underline;
}
div.dp-popup a {
	color: #000;
	text-decoration: none;
	padding: 3px 2px 0;
}
div.dp-popup div.dp-nav-prev {
	display:none; /* daf */
	position: absolute;
	top: 2px;
	left: 4px;
	width: 100px;

}
div.dp-popup div.dp-nav-prev a {
	float: left;
	text-decoration: none;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
	cursor: pointer;
	
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
	cursor: default;
}
div.dp-popup div.dp-nav-next {
	display:none; /* daf */
	position: absolute;
	top: 2px;
	right: 4px;
	width: 100px;

}
div.dp-popup div.dp-nav-next a {
	float: right;
	text-decoration: none;	
}
div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}