

table.jCalendar {
	border: 1px solid #FFFFFF;
	background: #FFFFFF;
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}
table.jCalendar th {
	background: #f2f3e9;
	color: #333;
	font-weight: normal;
	padding: 3px 5px;
}

table.jCalendar td {
	/* background: #ccc;
	color: #000; */
	background: #F2F3E9;
	color: #806040;
	padding: 3px 5px;
	text-align: center;
}
table.jCalendar td.other-month {
	/* background: #ddd;
	color: #aaa; */
	background: #F2F3E9;
	color: #806040;
}
table.jCalendar td.today {
	/* background: #666;
	color: #fff; */
	background: #e0e0ca;
	color: #000;
}
table.jCalendar td.selected {
	/* background: #f66;
	color: #fff; */
	background: #FFCCC6;
	color: #000;
}
table.jCalendar td.selected.dp-hover {
	background: #f33;
	color: #fff;
}
table.jCalendar td.dp-hover,
table.jCalendar tr.activeWeekHover td {
	background: #FFCCC6;
	color: #000;
}
table.jCalendar tr.selectedWeek td {
	background: #f66;
	color: #fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
	/* background: #bbb;
	color: #888; */
	background: #F2F3E9;
	color: #CCB8A3;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
	/* background: #bbb;
	color: #888; */
	background: #F2F3E9;
	color: #CCB8A3;
}

/* 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: #F2F3E9; */
	border: 1px solid #ef9d93;
	background: #ffccc6;
	color: #333;
	font-size: 12px;
	font-family: arial, sans-serif;
	padding: 19px 5px 5px;
	width: 190px;
	line-height: 1.2em;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}
div.dp-popup h2 {
	background: #FFFFFF;
	font-size: 12px;
	text-align: center;
	margin: 0 0 1px;
	padding: 3px 0 2px;
	font-weight: bold;
}
a#dp-close {
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 11px;
	width: 11px;
	height: 11px;
	padding: 0;
	text-align: center;
	display: block;
}
a#dp-close:hover {
	text-decoration: underline;
}
div.dp-popup a {
	color: #806040;
	text-decoration: none;
	padding: 3px 2px 0;
}
div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 19px;
	left: 4px;
	width: 100px;
}
div.dp-popup div.dp-nav-prev a {
	float: left;
	font-size: 125%;
	font-weight: bold;
}
/* 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 {
	position: absolute;
	top: 19px;
	right: 4px;
	width: 100px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
	font-size: 125%;
	font-weight: bold;
}
div.dp-popup a.disabled {
	cursor: default;
	/* color: #aaa; */
	color: #FFFFFF;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}
