table.jCalendar {
	width: 176px;
}

table.jCalendar thead {
	background: #f8f4ed;
}

table.jCalendar th {
	font-size: 1.1em;
	color: #7b7b7b;
	font-weight: bold;
	padding: 6px 6px;
}

table.jCalendar td {
	font-size: 1.1em;
	color: #7b7b7b;
	padding: 6px 6px;
	text-align: center;
}

table.jCalendar td.other-month {
	font-weight: bold;
}
table.jCalendar td.selected {
	background: #f8f4ed;
	border: solid 1px #ccc;
	font-weight: bold;
	color: #008444;
}
table.jCalendar td.selected.dp-hover {
	color: #214232;
}
table.jCalendar td.dp-hover,
table.jCalendar tr.activeWeekHover td {
	background: #f8f4ed;
	text-decoration: underline;
}
table.jCalendar tr.selectedWeek td {
	background: #f66;
	color: #fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
	background: #bbb;
	color: #888;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
	background: #bbb;
	color: #888;
}

/* 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 {
	width: 176px;
	background: #fff;
	border: 1px solid #aaa;
	padding: 2px;
	position: relative;
	font-family: arial, helvetica, sans-serif;
	line-height: 1.2em;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}
div.dp-popup h2 {
	background: #214232;
	font-size: 1.3em;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 8px 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 div.dp-nav-prev a {
	width: 15px;
	height: 16px;
	background: url(/images/interface/ico/ico-arrows.gif) 0 0 no-repeat;
	position: absolute;
	top: 8px;
	left: 8px;
	display: block;
	float: left;
}

/* 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 a {
	width: 15px;
	height: 16px;
	background: url(../images/interface/ico/ico-arrows.gif) -15px -16px no-repeat;
	position: absolute;
	top: 8px;
	right: 8px;
	display: block;
	float: right;
}

div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}

