/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	margin: 0 0 0 10px;
	display: block;
	background: #4a8b9a;
	padding: 2px 4px 3px 4px;
	color: #fff;
	font: bold 11px/14px Verdana, sans-serif;
	text-decoration: none;
	position: absolute;
	top: 11px;
	right: 17px;
	height: 14px;
}
a.dp-choose-date:hover {
	background: #85933D;
}
a.dp-choose-date.dp-disabled {
	background: #e1dba3;
	color: #7d6d4b;
	cursor: default;
}
/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied label {
    	width: 140px;
	float: left;
}
