/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 5px 3px 0;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background: url(../images/calendar.png) no-repeat; 	
	float: left;
}
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: 140px;
	float: left;
*/
}

table.jCalendar { 
  background: #222; 
  border: 0; 
  margin: 0 auto;
}
table.jCalendar th { 
  background: #444;
}
table.jCalendar td { 
  background: #ccc; 
}
table.jCalendar td.other-month { 
  background: #eee;
  color: #888; 
}
table.jCalendar td.today { 
  background: #ccc; 
  color: #fff;
  font-weight: bold;
  font-size: larger; 
}

table.jCalendar td.selected { 
  background: #2361a1;
  color: #fff;
  font-weight: bold;
  font-size: larger; 
}

div.dp-popup { 
  background: #eee; 
  border-style: solid;
  border-width: 1px;
  border-color: #aaa;
  height: 143px;
}
div.dp-popup h2 { 
  color:  #555;
  font-weight: bold;
}