/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	
	display: block;
	float: left;
	margin: 0px 0px 0px -1px;
	padding: 0px 0px;
	width: 18px;
	height: 18px;
	border: solid 1px #ccc;
	text-align: center;
	
	text-indent: -2000px;
	overflow: hidden;
	background: url(images/bg-go.jpg) 50% 40% 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 {
	float: left;
	width: 65px;
	padding-left:5px;
	margin: 0;
	height:18px;
	line-height:18px;
	background:#fff /*url(images/bg-date.jpg) 50% 40% no-repeat*/; 
}
