/* 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: -17px 0 0 100px;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background-image: url(calendar.png);
	background-repeat: 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: 0px 4px 0px 0px;
	font:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:1px solid #9f029f;
}

/*div.demo-holder {
	float: left; 
	margin: 0em;
	font-size: 80%;
}
div.demo-holder input {
	width: 90px;
	margin: 0px 4px 0px 2px;
	font-size: 11px;
	color: #4f4f4f;
}*/

/* Date picker specific styles follow old version */
/* old version
a.date-picker {
	width: 16px;
	height: 16px;
	border: none;
	color: #fff;
	padding: 0;
	margin: 0;
	float: left;
	overflow: hidden;
	cursor: pointer;
	background: url(calendar.png) no-repeat;
}
a.date-picker span {
	margin: 0 0 0 -2000px;
}*/
/*
div.date-picker-holder, div.date-picker-holder * {
	margin: 0;
	padding: 0;
}
div.date-picker-holder {
	position: relative;
}
div.date-picker-holder input {
	float: left;
}
div.popup-calendar {
	display: none;
	position: absolute;
	z-index: 2;
	top: 0;
	left: -16px; /* value for IE *//*
	padding: 4px;
	border: 2px solid #000;
	background: #fff;
	color: #000;
	overflow:hidden;
	width: 163px;
}
html>body div.popup-calendar {
	left: -55px; /* value for decent browsers *//*
}
div.popup-calendar div.link-close {
	float: right;
}
div.popup-calendar div.link-prev {
	float: left;
}
div.popup-calendar h3 {
	font-size: 1.3em;
	margin: 2px 0 5px 3px;
}
div.popup-calendar div.link-next {
	float: right;
}
div.popup-calendar div a {
	padding: 1px 2px;
	color: #000;
}
div.popup-calendar div a:hover {
	background-color: #000;
	color: #fff;
}
div.popup-calendar table {
	margin: 0;
}
* html div.popup-calendar table {
	display: inline;
}
div.popup-calendar table th, div.popup-calendar table td {
	background: #eee;
	width: 21px;
	height: 17px;
	text-align: center;
	font-size: 11px;
}
div.popup-calendar table td.inactive {
	color: #aaa;
	padding: 1px 0 0;
	font-size: 11px;
}
div.popup-calendar table th.weekend, div.popup-calendar table td.weekend {
	background: #f6f6f6;
	font-size: 11px;
}
div.popup-calendar table td a {
	display: block;
	border: 1px solid #eee;
	width: 19px;
	height: 15px;
	text-decoration: none;
	color: #333;
}
div.popup-calendar table td.today a {
	border-color: #aaa;
	font-size: 11px;
}
div.popup-calendar table td a.selected, div.popup-calendar table td a:hover {
	background: #333; 
	color: #fff;
	font-size: 11px;
}*/

