/* 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: 5px 3px 0;
display: block;
text-indent: -2000px;
overflow: hidden;
background: url(./kalendaars.png) no-repeat;
cursor: pointer;
}
*html a.dp-choose-date{
	background-image: url('./template/spacer.png');
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./css/kalendaars.png', sizingMethod=scale);
	} 
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
 */
fieldset {
	margin: 1em 0;
	padding: 0 10px;
	width: 220px;
}
#chooseDateForm li {
	list-style: none;
	padding: 5px;
	clear: both;
}
select {
	width: 100px;
}
input {
	margin: 5px 0;
}

input.dp-applied {
width: 140px;
float: left;
}
