/*
 * DatePicker
 * @author Rick Hopkins
 * @modified by Micah Nolte and Martin Vašina
 * @modified for this website requirements by Miguel Palazzo
 * @version 0.3.2
 * @classDescription A date picker object. Created with the help of MooTools v1.11
 * MIT-style License.
*/

/*input[type="text"].calendario {
	background-image: url(/~wwwsapi/backdoor/images/iconos/fecha.png);
	background-position: center right;
	background-repeat: no-repeat;
	cursor: pointer;
	width: 80px;
}*/

.dp_container {
	position: relative;
	padding: 0;
	z-index: 500;
	
}

.dp_cal {
	background-color: #FFF;
	border: 1px solid #333;
	position: absolute;
	width: 177px;
	top: 24px;
	left: -40px;
	margin: 0px 0px 3px 0px;
}

.dp_cal table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.dp_cal select {
	margin: 2px 3px;
}

.dp_cal select option {
	padding: 1px 3px;
}

.dp_cal th, .dp_cal td {
	width: 14.2857%;
	text-align: center;
	padding: 2px 0;
}

.dp_cal th {
	border: solid #006399;
	border-width: 1px 0;
	color: #FFF;
	background: #006399;
	font-weight: bold;
}

.dp_cal td {
	cursor: pointer;
}

.dp_cal thead th {
	background: #006399;
}

.dp_cal td.dp_roll {
	color: #000;
	background: #006399;
}

/* must have this for the IE6 select box hiding */
.dp_hide {
	visibility: hidden;
}

.dp_empty {
	background: #EEE;
}

.dp_today {
	background: #EEE;
}

.dp_selected {
	color: #000;
	background: #DDD;
}
