/* CSS Document */


/***** TABLA GENERAL *****/
table.table-calendar 
{
    margin:0;
    padding:0;
	font-family:arial;
	font-size:11px;
	border:1px solid #666666;
	background-color: #aaa8a8;
	width:210px;
}


/***** NOMBRE DEL MES Y AŅO SELECCIONADOS *****/
table.table-calendar td.month	{
	background-color:#972735;
	padding:5px 4px 5px 4px;
	font-size:12px;
	color:#ffffff;
	font-weight:bold;
	cursor:pointer;
}

table.table-calendar td.month span#spanMonth, table.table-calendar td.month span#spanYear
{
    color:#ffffff;
    font-size:12px;
}

/***** CONTENEDOR DE LOS DIAS DEL CALENDARIO *****/
table.table-calendar td.number	{
	background-color:#ffffff;
	padding:5px;
	font-size:10px;
}

/***** DIAS DEL CALENDARIO *****/
table.table-calendar td.number a	{
	text-decoration:none;
	color:#686868;	
	font-size:11px;
}

/***** ON MOUSE OVER DE DIAS DEL CALENDARIO *****/
table.table-calendar td.number a:hover	{
	text-decoration:none;
	color:#000000;	
	font-size:11px;
}

/***** TD DE CADA NUMERO *****/
table.table-calendar td.number td	{
	text-decoration:none;
	padding:3px;
	margin:0;
    font-size:11px;
}

/***** TD DE CADA NUMERO *****/
table.table-calendar td.number td span	{
	text-decoration:none;
	font-size:11px;
}

table.table-calendar td.number td span:hover	{
	text-decoration:none;
}

/***** DIA DE HOY, ABAJO DEL CALENDARIO *****/
table.table-calendar td.date	{
	background-color:#c3c3c3;
	padding:5px;
	text-align: center;
}

/***** DIA DE HOY, ABAJO DEL CALENDARIO (HOY ES...) *****/
table.table-calendar td.date a.date	{
	text-decoration:none;
	color:#000;	
}

/***** ON MOUSE OVER DE DIA DE HOY, ABAJO DEL CALENDARIO (HOY ES...) *****/
table.table-calendar td.date a.date:hover	{
	text-decoration: underline;
	color:#000;	
}


/***** CERRAR EL CALENDARIO *****/
table.table-calendar a.close	
{
	float:right;
	text-decoration:none;
}

/***** DIA SELECCIONADO *****/
table.table-calendar a.selectedDay	{
	border:1px solid #a0a0a0;
	text-decoration:none;
}

/***** ON MOUSE OVER PARA EL DIA SELECCIONADO *****/
table.table-calendar a.selectedDay:hover	{
	border:1px solid #a0a0a0;
	text-decoration:none;
}

/***** DIA DE HOY *****/
table.table-calendar .dateselect	
{
	color:#972735;
}


/***** DROP DOWNS DE MESES Y AŅOS *****/
.calendarSelect		
{
	font-size:10px;
	z-index:+999;
	position:absolute;
	visibility:hidden;
	border:0;
	padding:-2px 0px 0px 0px;
	margin:-2px 0px 0px 0px;
}

/***** DROP DE SELECCION DE MESES Y AŅOS ******/
.calendarSelect	table.table-drop	
{
    margin:0;
    padding:0;
	font-size:11px; 
	border:1px solid #a0a0a0;
	background-color:#f5f5f5; 
	width:auto;
}

/***** TD DE CADA MES Y AŅO ****/
.calendarSelect	table.table-drop td  
{
    color:#686868;
}	

/***** TD DEL MES Y AŅO, EN EL MOUSE OVER ****/
.calendarSelect	table.table-drop .dropSelect	
{
	background-color:#dbe8ee;
}

#spanDecMonth, #spanIncMonth
{
    color:#fff;
}

#spanIncMonth 
{
    left:180px;
    position:absolute;    
}
