/* The main calendar widget.  DIV containing a table. */
div.calendar { 
	position: relative;
/*	margin:5px 0 0 5px; */
	text-align:center;
	width:216px; 
	padding: 0 25px 0 15px;
	background: url(../images/base_menu.jpg) no-repeat 0px 23px;
	margin-top:5px;
}

.calendar, .calendar table {
 	font-size: 95%;
  	cursor: default;
	border: 0px;
}

/* 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 */
  color: #6F0000;
  font-weight: bold;
}

/*.calendar .nav {  background: #778 url(menuarrow.gif) no-repeat 100% 100%;}*/

.calendar thead .title { /* This holds the current "month, year" *//* Pressing it will take you to the current date */
	/* cambiado */
	color: #000;
	font-size : 90%;
	text-align:left;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
	text-transform:uppercase;    
}

.calendar thead .daynames { /* Row <TR> containing the day names */
/*  background: #bdf; */
}

.calendar thead .name { /* Cells <TD> containing the day names */
	/* cambiado */
	color: #FFF;
	font-size : 80%;
	text-align:right;
	text-transform:capitalize;  
	line-height: 110%;
	padding:2px 2px 4px 2px;
	margin:1px;
	font-weight: bold;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
	/* cambiado */
  	color: #FFF;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
	color: #124D5F;
	cursor: pointer;
}

.calendar thead .active { /* Active (pressed) buttons in header */
	/* cambiado */
	color: #000;
}

/* The body part -- contains all the days in month. */

	/* 4 instancias según tipo --> cambiado */
.calendar tbody .day { /* Cells <TD> containing month days dates */
	font-family : verdana,arial,helvetica;
	font-size: 68%;  
	padding: 3px 5px; 
	text-align: right;
	/* cambiado */
/*	color: #39A9F0;*/
	color: #38A8ED;
	background-color: #000; 
}
.calendar tbody .dayfull { /* Cells <TD> containing month days dates */
	font-family : verdana,arial,helvetica;
	color: #272A2C;
	font-size: 68%;  
	padding: 3px 5px; 
	text-align: right;
	background-color: #C96F44; 
  
}

/* DANZA */
.calendar tbody .danza { /* Cells <TD> containing month days dates */
	font-family : verdana,arial,helvetica;
	color: #272A2C;
	font-size: 68%;  
	padding: 3px 5px; 
	text-align: right;
/*	background-color: #00ff00; */
	color: #00FF00;
	background-color: #000; 

}
.calendar tbody .danza.othermonth {
  color: #595F64;
}
.calendar tbody .danza.othermonth.oweekend {
  color: #595F64;
}
/* FIN DANZA */
/* MUSICA */
.calendar tbody .musica { /* Cells <TD> containing month days dates */
	font-family : verdana,arial,helvetica;
	color: #272A2C;
	font-size: 68%;  
	padding: 3px 5px; 
	text-align: right;
/*	background-color: #00ffff; */
	color: #FFF200;
	background-color: #000; 
}
.calendar tbody .musica.othermonth {
  color: #595F64;
}
.calendar tbody .musica.othermonth.oweekend {
  color: #595F64;
}
/* FIN MUSICA */
/* OTRO */
.calendar tbody .otro { /* Cells <TD> containing month days dates */
	font-family : verdana,arial,helvetica;
	color: #272A2C;
	font-size: 68%;  
	padding: 3px 5px; 
	text-align: right;
/*	background-color: #00ccff; */
	color: #ED145B;
	background-color: #000; 
}
.calendar tbody .otro.othermonth {
  color: #595F64;
}
.calendar tbody .otro.othermonth.oweekend {
  color: #595F64;
}
/* FIN otro */


.calendar tbody .day.othermonth {   color: #595F64; }
.calendar tbody .day.othermonth.oweekend {   color: #595F64; }

.calendar tbody .rowhilite td {}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #993300;
  color: #FFF;
/*  cursor: hand;*/
  cursor: pointer;   
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
/*  background: #993300; */
}

.calendar tbody td.selected { /* Cell showing today date */ /* creo que esto está confundido */
  font-weight: bold;
  background: #993300;
  color: #FFF;
}

.calendar tbody td.weekend { /* Cells showing weekend days */ }

.calendar tbody td.today { /* Cell showing selected date */ /* creo que esto está confundido */
/*  font-weight: bold;   color: #993300; */
}

.calendar tbody .disabled { 
	color: #595F64; 
	background-color: transparent;
}

.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;
}

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #292627;
  background: #FFDED2;
  color: #39A9F0;
  font-size: 80%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {   width: 4em; }
.calendar .combo .hilite {   background: #E25625;   color: #FFF; }

.calendar .combo .active {
  background: #E25625;
  font-weight: bold;
  color: #FFF;
}