

table.jCalendar {
	font-size: 11px;
	empty-cells: show;
}
table.jCalendar th {
	border-top: 1px solid #8fbecf;
	border-bottom: 1px solid #8fbecf;
	padding: 3px 5px;
}
table.jCalendar td {
	padding: 3px 5px;
}
table.jCalendar td.weekday, table.jCalendar td.weekend {
	border-bottom: 1px solid #cce1e8;
}
table.jCalendar td.other-month {
	color: #cce1e8;
}
table.jCalendar td.today {
	background: #f7941e;
	color: #fff;
}
table.jCalendar td.selected {
	background: #f7941e;
	color: #fff;
}
table.jCalendar td.selected:hover {
	background: #f7941e;
	color: #fff;
}
/*table.jCalendar td:hover, table.jCalendar td.dp-hover {*/
table.jCalendar td.weekday:hover, table.jCalendar td.weekend:hover, table.jCalendar td.dp-hover {
	background: #e5eff3;
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
	color: #cce1e8;
}

/* 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: #ffffff;
	border: 1px solid #d2dfe4;
	font-size: 10px;
	font-family: arial, sans-serif;
	padding: 4px 4px 9px 4px;
	width: 184px;
	height: 160px;
	line-height: 1.2em;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}
div.dp-popup h2 {
	font-size: 11px;
	font-weight: bold;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
	background: #e5eff4;
	margin: 0 0 8px 0;
	padding: 3px 0 2px 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 {
	display: block;
	width: 14px;
	height: 13px;
}
div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 7px;
	left: 7px;
	width: 30px;
}
div.dp-popup div.dp-nav-prev a {
	float: left;
	background: url(/images/quicktrip/Bt_CalendarBack2.gif) no-repeat 0px 0px;
}
/* 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: 7px;
	right: 7px;
	width: 30px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
	background: url(/images/quicktrip/Bt_CalendarNext2.gif) no-repeat 0px 0px;
}
div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
	background-position: 0 -13px !important;
}
div.dp-popup td.weekday, div.dp-popup td.weekend {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}

/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	float: left;
	width: 19px;
	height: 20px;
	padding: 0;
	margin: 0px 3px 0;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background: url(/images/quicktrip/Ico_Calendar.gif) no-repeat; 
}
a.dp-choose-date.dp-disabled {
	background-position: 0 -20px;
	cursor: default;
}
/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied {
	width: 140px;
	float: left;
}