/* FOR REMOTE FORMS */

/* Some resets for compatibility with existing CSS */
.mv_date_selector, .mv_date_selector * {
	width: auto;
	height: auto;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	font: 12px verdana, arial;
}
.mv_date_selector {
	background: #F2F2F2;
	border: 1px solid #bbb;
	padding: 5px;
	margin: -1px 0 0 0;
	position: absolute;
	z-index: 100000;
	display: none;
}
.mv_date_selector_ieframe {
	position: absolute;
	z-index: 99999;
	display: none;
}
.mv_date_selector .nav {
	width: 200px;
}
.mv_date_selector .month_nav, .mv_date_selector .year_nav {
	margin: 0 0 3px 0;
	padding: 0;
	display: block;
	position: relative;
	text-align: center;
}
.mv_date_selector .month_nav {
	float: left;
	width: 60%;
}
.mv_date_selector .year_nav {
	float: right;
	width: 40%;
	margin-right: -8px; /* Compensates for cell borders */
}
.mv_date_selector .month_name, .mv_date_selector .year_name {
	font-weight: bold;
	line-height: 13px;
}
.mv_date_selector .button {
	display: block;
	position: absolute;
	top: 0;
	width: 18px;
	height: 18px;
	line-height: 13px;
	font-weight: bold;
	color: #003C78;
	text-align: center;
	font-size: 120%;
	overflow: hidden;
	border: 1px solid #F2F2F2;
}
.mv_date_selector .button:hover, .mv_date_selector .button.hover {
	background: none;
	color: #003C78;
	cursor: pointer;
	border-color: #ccc;
}
.mv_date_selector .prev {
	cursor: pointer;
	left: 0;
}
.mv_date_selector .next {
	cursor: pointer;
	right: 0;
}
.mv_date_selector table {
	border-spacing: 0;
	border-collapse: collapse;
	clear: both;
}
.mv_date_selector th, .mv_date_selector td {
	width: 16px;
	height: 16px;
	padding: 0;
	text-align: center;
	color: black;
}
.mv_date_selector th {
	font-size: 11px;
	width: 30px;
	font-weight: bold;
}
.mv_date_selector td {
	font-size: 10px;
	border: 1px solid #ccc;
	line-height: 1em;
	text-align: center;
	white-space: nowrap;
	color: #003C78;
	background: white;
}
.mv_date_selector td.today {
	background: #FFFEB3;
}
.mv_date_selector td.unselected_month {
	color: #ccc;
}
.mv_date_selector td.selectable_day {
	cursor: pointer;
}
.mv_date_selector td.selected {
	background: #D8DFE5;
	font-weight: bold;
}
.mv_date_selector td.selectable_day:hover, .mv_date_selector td.selectable_day.hover {
	background: #003C78;
	color: white;
}
