.dp-calendar {
    border: 1px solid #cccccc;
    margin-top: 15px;
}

table.jCalendar {
	background: none repeat scroll 0 0 #e4e4e4;
    width: 100%;
}
table.jCalendar th {
	background: none;
	color: #404040;
    font-weight: bolder;
    padding: 3px 5px;
}
table.jCalendar td {
	background: none repeat scroll 0 0 #e4e4e4;
    color: #404040;
    padding: 3px 5px;
    text-align: center;
}
table.jCalendar td.other-month {
	background: #ddd;
	color: #aaa;
}
table.jCalendar td.today {
	background: #cccccc;
	color: #00265d;
}
table.jCalendar td.selected {
	background: #f66;
	color: #fff;
}
table.jCalendar td.selected.dp-hover {
	background: #f33;
	color: #fff;
}
table.jCalendar td.dp-hover,
table.jCalendar tr.activeWeekHover td {
	background: #fff;
}
table.jCalendar tr.selectedWeek td {
	background: #f66;
	color: #fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
	background: #bbb;
	color: #888;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
	background: #bbb;
	color: #888;
}

/* 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 {
	background: none repeat scroll 0 0 #00265d;
    font-size: 10px;
    line-height: 1.2em;
    padding: 11px 0px 0px;
    position: relative;
    width: 171px;
}
div#dp-popup {
	position: absolute;
	z-index: 199;
}
div.dp-popup h2 {
	color: #ffffff;
    font-size: 16px;
    font-weight: lighter;
    margin: 2px 0;
    padding: 0;
    text-align: center;
}
a#dp-close {
	font-size: 11px;
	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 {
	font-size: 14px;
    font-weight: lighter;
    left: 4px;
    padding-top: 10px;
    position: absolute;
    top: 2px;
    width: 100px;
}
div.dp-popup div.dp-nav-prev a {
	color: #ffffff;
    float: left;
    font-weight: bolder;
}
/* 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 {
	font-size: 14px;
    font-weight: lighter;
    padding-top: 10px;
    position: absolute;
    right: 4px;
    top: 2px;
    width: 100px;
}
div.dp-popup div.dp-nav-next a {
    color: #ffffff;
    float: right;
    font-weight: bolder;
}
div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}