@charset "UTF-8";
/* CSS Document */


table.jCalendar {
    border-collapse: separate;
    border-spacing: 1px;
	padding: 0px;
	height: 190px;
}
table.jCalendar th {
	color: #333;
	font-weight: bold;
	padding: 5px 15px;
	text-align: center;
	font-size: 12px;
}
table.jCalendar td {
	color: #535353;
	padding: 5px 15px;
	text-align: right;
	font-size: 12px;
}
table.jCalendar td.other-month {
	visibility: hidden;
	color: #aaa;
}
table.jCalendar td.today {
	background: #85d8ff;
	color: #333333;
	font-weight: bold;
}
table.jCalendar td.selected {
	
}
table.jCalendar td.selected:hover {
	
}
table.jCalendar td:hover, table.jCalendar td.dp-hover {
	background: #85d8ff;
	color: #000;
}
table.jCalendar td.disabled, table.jCalendar td.disabled:hover {
	background-color: white;
	color: #e5e5e5;
	font-weight: bold;
}

table.jCalendar td.weekend, table.jCalendar td.weekend:hover {
	background-color: white;
	color: #e5e5e5;
}

/* 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 {
	display: block;
	position: relative;
	border: 1px solid #aaaaaa;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background-color: white;
	font-size: 10px;
	font-family: arial, sans-serif;
	padding: 2px 4px;
	width: 310px;
	/* height: 225px; */
	line-height: 1.6em;
	margin-bottom: 20px;
}
div#dp-popup {
	display: block;
	position: absolute;
	z-index: 199;
	height: 245px;
}
div.dp-popup h2 {
	background: #cccccc url(http://cdn.insidermedia.com/images/ui-bg_highlight-soft_75_cccccc_1x100.png) repeat-x scroll 50% 50%;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border: 1px solid #aaaaaa;
	font-size: 12px;
	line-height: 20px;
	height: 20px;
	color: #333;
	text-align: center;
	margin: 2px 0;
	padding: 0.2em 0;
	display: block;
}
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: #333;
	text-decoration: none;
	padding: 3px 2px 0;
}
div.dp-popup div.dp-nav-prev {
	display: block;
	position: absolute;
	top: 3px;
	left: 6px;
	width: 100px;
}
div.dp-popup div.dp-nav-prev a {
	float: left;
	text-indent: -999999px;
	width: 15px;
	height: 15px;
	background: transparent url(http://cdn.insidermedia.com/images/ui-datepicker-prev.png) no-repeat;
	margin: 0.7em;
}
/* 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 {
	display: block;
	position: absolute;
	top: 3px;
	right: 5px;
	width: 100px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
	text-indent: -999999px;
	width: 15px;
	height: 15px;
	background: transparent url(http://cdn.insidermedia.com/images/ui-datepicker-next.png) no-repeat;
	margin: 0.7em;
}
div.dp-popup a.disabled {
	cursor: default;
	color: #898989;
}
div.dp-popup td {
	cursor: pointer;
	font-weight: bold;
}
div.dp-popup td.disabled {
	cursor: default;
}

div.dp-calendar {
	display: block;
	text-align: center;
}

