/* Especiales para los días de vencimiento */
.Vencimiento {
	background-color:#FF9900;
	color:#FFFFFF;
}
/* The main calendar widget.DIV containing a table. */
div.calendar {
	position:relative;
}
.calendar, .calendar table {
	width:151px;
	font-size:9px;
	cursor:default;
	background:#364759;
}
/* Header part -- contains navigation buttons and day names. */
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	text-align:center; /* They are the navigation buttons */
	padding:2px; /* Make the buttons seem like they're pressing */
}
.calendar .nav { /* Botoncitos del navegador de meses y años, inactivos */
	/* background:#FF0000; */
}
.calendar thead .title { /* Barra título "Mes, Año" */
	font-weight:bold; /* Pressing it will take you to the current date */
	text-align:center;
	background:#000000;
	padding:2px;
}
.calendar thead tr { /* El <TR> que contiene los botones de navegación */
	/* background:#0000FF; */
	color:#FFFFFF;
}
.calendar thead .daynames { /* El <TR> que contiene los nombres de los días */
	background:#00FF00;
}
.calendar thead .name { /* Celdas <TD> que contienen los nombres de los días */
	padding:2px;
	text-align:center;
	background-color:#516B84;
	color:#000000;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
}
.calendar thead .weekend { /* Cómo se muestran los nombres de los días del fin de semana */
	color:#CCCCCC;
}
.calendar thead .hilite { /* How do the buttons in header appear when hover */
	background-color:#DADFE3;
	color:#516B84;
	border:1px solid #516B84;
	padding:1px;
}
.calendar thead .active { /* Active (pressed) buttons in header */
	color:#FFFFFF;
	background-color:#516B84;
	border:1px solid #364759;
	padding:2px 0px 0px 2px;
}
/* The body part -- contains all the days in month. */
.calendar tbody .day { /* Cells <TD> containing month days dates */
	color:#FFFFFF;
	text-align:right;
	padding:2px 2px 2px 2px;
}
.calendar table .wn {
	width:100px;
	padding:2px 2px 2px 2px;
	border-right:1px solid #000;
	color:#FFFFFF;
	background:#516B84;
}
.calendar tbody td.hilite { /* Hovered cells <TD> */
	background:#DADFE3;
	padding:1px 3px 1px 1px;
	border:1px solid #516B84;
	color:#000000;
}
.calendar tbody td.active { /* Active (pressed) cells <TD> */
	background:#FFFFFF;
	color:#FF9900;
	padding:2px 2px 0px 2px;
}
.calendar tbody td.selected { /* Cell showing today date */
	font-weight:bold;
	border:1px solid #516B84;
	padding:1px 3px 1px 1px;
	background:#DADFE3;
	color:#000000;
}
.calendar tbody td.weekend { /* Cells showing weekend days */
	color:#A2A2A2;
}
.calendar tbody td.today { /* Cell showing selected date */
	font-weight:bold;
	color:#FF0000;
}
.calendar tbody .disabled {
	color:#CCCCCC;
}
.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
	visibility:hidden;
}
.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
	/* display:none; */
}
/* The footer part -- status bar and "Close" button */
.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
	text-align:center;
}
.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
	background:#DBDCE2;
	color:#516B84;
	border-top:1px solid #516B84;
	padding:1px;
}
/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
	display:none;
}


