/*
CDCEC6  80BE1F
*/
table.jCalendar {
    /* background: none repeat scroll 0 0 #F1F1F1;
    border-collapse: separate;
    border-spacing: 2px; */
    padding: 5px;
	font-size:13px;
    width: 100%;
	height:200px;
	border-right:#cccccc solid 1px;
	border-top:#cccccc solid 1px;
}
table.jCalendar th {
    color: #0175b7;
    font-weight: bold;
	vertical-align: middle;
    padding: 3px 5px;
}
table.jCalendar td {
	background: #fff;
	color: #333;
	padding: 4px 5px;
	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: #0175b7;
	color: #fff;
}
table.jCalendar td.selected:hover {
	background: #a8254d;
	color: #fff;
}
table.jCalendar td:hover, table.jCalendar td.dp-hover {
	background: none repeat scroll 0 0 #0175b7 !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: 11px;
    line-height: 1.2em;
   /*  padding: 2px; */
   
    z-index: 100;
	/* border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
	-webkit-border-radius:5px; */
}
.dp-applied
{
	/* width:210px; */
	float:left;
}
#dp-popup .dp-applied
{
	 width:280px; 
}
div#dp-popup {
	position: absolute;
	z-index:1000;
	/* min-width: 600px; */
	 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;
	width:543px;
	
}
div.dp-popup h2 {
	font-size: 15px;
	text-align: center;
	margin: 2px 0;
	padding:10px 0;
	color:#0175b7;
}
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: #015aaa;
	text-decoration: none;
	padding:6px 2px 0;	
	margin-top:3px;
	margin-left:0;
    font-size: 16px;
}
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;
        margin-left: 6px;
    }
/* 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;
    margin-right: 6px;
}
div.dp-popup a.disabled {
    cursor: default;
    /*color: #aaa;*/
    color: #fff;
    opacity: 0.4;
}
div.dp-popup td {
	cursor: pointer;
	vertical-align: middle;
}
div.dp-popup td.disabled {
	cursor: default;
}
a.dp-choose-date {
    background: url("images/calendar.png") no-repeat scroll 0 0 transparent;
    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: 125px;
	float: left;
	padding:3px;
}*/

.dp-nav-prev-month
{
	/*background:url(images/prev_arw.png) no-repeat center;
	height:23px;
	width:23px;*/    
}
.dp-nav-next-month
{
	/*background:url(images/next_arw.png) no-repeat center;
	height:23px;
	width:23px;*/
}
.disabled
{
	/*background:url(images/prev_arw_grey.png) no-repeat center;
	height:23px;
	width:23px;*/
}

/*Test*/
a.dp-choose-date {
	float: left;
	width: 24px;
	height: 24px;
	padding: 0;
	margin: 1px 6px 0;
	display: none;
	text-indent: -2000px;
	overflow: hidden;
	background: url(images/calendar.png) no-repeat; 
}
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;
}
.input_disable
{
	border:#999 solid 1px;
	background:#dcdcdc;
}