/* creates a little calendar icon
 * instead of a text link for "Choose date"
 */
 
a.dp-choose-date {
	width: 16px;
	height: 16px;
	border: none;
	padding: 0;
	margin: -20px 0 0 104px;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background: url(calendar.png) 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: 90px;
	margin: 2px 4px 0 0;
	padding: 2px 4px;
	font-size: 11px;
	color: #4f4f4f;
}