/*
CDCEC6  80BE1F
*/
table.jCalendar {
    background: none repeat scroll 0 0 #F1F1F1;
    border-collapse: separate;
    border-spacing: 2px;
    padding: 5px;
	font-size:14px;
    width: 100%;
}
table.jCalendar th {
    color: #0180C5;
    font-weight: bold;
    padding: 3px 5px;
}
table.jCalendar td {
	background: #fff;
	color: #333;
	padding: 8px;
	text-align: center;
}
table.jCalendar td.other-month {
	background: #e8e8e8;
	color: #bababa;
}
table.jCalendar td.today {
	background: #666;
	color: #fff;
}
table.jCalendar td.selected {
	background: #006CB1;
	color: #fff;
}
table.jCalendar td.selected:hover {
	background: #006CB1;
	color: #fff;
}
table.jCalendar td:hover, table.jCalendar td.dp-hover {
	background: none repeat scroll 0 0 #006CB1 !important;
	color:#fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
	background: #fff;
	color: #ccc;
	text-decoration:line-through;
}

/* 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 #FFFFFF;
    box-shadow: 0 0 3px #666666;
	-moz-box-shadow: 0 0 3px #666666;
	-o-box-shadow: 0 0 3px #666666;
	-webkit-box-shadow: 0 0 3px #666666;
    font-family: arial,sans-serif;
    font-size: 12px;
    line-height: 1.2em;
    padding: 2px;
    width: 260px;
    z-index: 100;
	border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
	-webkit-border-radius:5px;
}
div#dp-popup {
	position: absolute;
	z-index:1002;
}
div.dp-popup h2 {
	font-size: 14px;
	text-align: center;
	margin: 2px 0;
	padding:4px 0;
	color:#0180c5;
}
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: #fff;
	text-decoration: none;
	padding: 0px 2px 0;
	text-indent:-99999px
}
div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 2px;
	left: 4px;
	width: 100px;
}
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: 2px;
	right: 4px;
	width: 100px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
}
div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
}
a.dp-choose-date {
    float: left;
    height: 25px;
    margin-left: 10px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: -2000px;
    top: -2px;
    width: 30px;
}
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: 80px;*/
	float: left;
}

.dp-nav-prev-month
{
	background:url(../imgs/prev.png) no-repeat center;
	height:25px;
	width:30px;
}
.dp-nav-next-month
{
	background:url(../imgs/next.png) no-repeat center;
	height:25px;
	width:30px;
}
.disabled
{
	background:url(../imgs/prev_dis.png) no-repeat center;
}

/*Test*/
a.dp-choose-date {
	float: left;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 5px 3px 0;
	display: none;
	text-indent: -2000px;
	overflow: hidden;
}
a.dp-choose-date.dp-disabled {
	background-position: 0 -20px;
	cursor: default;
}

#calendar-me {
	margin: 20px;
}
pre.sourcecode {
	border: 2px dashed #ccc;
	padding: 10px;
	width: 734px;
	overflow: auto;
	margin: 0 0 20px;
}