

table.jCalendar {
    border: 0px;
    background: #e0e0e0;
    border-collapse: separate;
    border-spacing: 1px;
    font-size:1.2em;
    width:100%;
}
table.jCalendar th {
	background: #f7f9fb;
	color: #555;
	font-weight: normal;
	padding: 3px;
}
table.jCalendar td {
	background: #fff;
	color: #00f;
	padding: 3px;
	text-align: center;
}
table.jCalendar td.other-month {
	background: #fff;
	color: #aaa;
}
table.jCalendar td.today {
	background: #666;
        border:solid 1px #000;
	color: #fff;
}
table.jCalendar td.selected {
	background: #ff9900;
	color: #fff;
}
table.jCalendar td.selected:hover {
	background: #fb3;
	color: #fff;
}
table.jCalendar td:hover, table.jCalendar td.dp-hover {
	background: #fe9;
	color: #000;
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
	background: #eeeeee;
	color: #999;
}

/* For the popup */

/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */

div.dp-popup {
	position: relative;
	background: #fff;
	font-size: 10px;
	font-family: arial, sans-serif;
	padding: 2px;
	width:165px;
	line-height: 1.2em;
  border:solid 1px #bbbbff;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}

div.dp-popup #caltitle {
 width:100%;
 overflow:hidden;
 clear:both;
 height:14px;
 border-bottom:solid 1px #eeeeee;
}

#caltitle h1{
 text-align:left;
 font-weight:bold;
 font-size:1em;
 margin:0px;
  width:70%;
  float:left;
}

#caltitle a.calx {
  width:17px;
  height:13px;
  float:right;
  background:url(/img/jquery/calx.gif) right no-repeat;
  /*text-indent:-5000px;*/
}

div.dp-popup h2 {
	font-size: 1.1em;
	text-align: center;
	color:#004c92;
	margin: 2px 0;
	padding: 0;
}
a#dp-close {
	font-size: 0.9em;
	padding: 4px 0;
	text-align: center;
	display: block;
}
a#dp-close:hover {
	text-decoration: underline;
}
div.dp-popup a {
	color: #000;
	text-decoration: none;
	padding: 3px 2px 0;
}
div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 19px;
	left: 3px;
	width: 120px;
}
div.dp-popup div.dp-nav-prev a {
	float: left;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
  cursor: pointer;
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
  cursor: default;
}
div.dp-popup div.dp-nav-next {
	position: absolute;
	top: 18px;
	right: 3px;
	width: 120px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
}
.dp-nav-next-month{
  width:9px;
  text-indent: -5000px;
  overflow: hidden;
  background: url(/img/jquery/calnx.gif) right no-repeat;
  float:right;
  margin-right:0px;
}

.dp-nav-prev-month{
  width:10px;
  text-indent: -5000px;
  overflow: hidden;
  background: url(/img/jquery/calpr.gif) no-repeat;
}

.dp-nav-prev-year,.dp-nav-next-year{
  display:none;
}

div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}

/**
* Create Button *
**/
a.dp-choose-date {
	float: left;
	width: 29px;
	height: 21px;
	padding: 0;
	margin: 0px 3px 0;
	display: block;
	text-indent: -2000px;
	overflow: hidden;
	background: url(/img/jquery/calbtn.gif) 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: 140px;
	float: left;
}