
/*------tabla contenedor -----------*/
table.jCalendar {
	
	background-color:#FFF;
	/*background: #aaa;*/
    border-collapse: separate;
    border-spacing: 2px;
}

/*------fila dias semana -----------*/
table.jCalendar th {
	background:#fff;
	color:#333;
	font-weight: bold;
	padding: 3px 5px;
}

/*------dias disponibles -----------*/
table.jCalendar td {
	background:#666;
	color: #FFF;
	padding: 3px 5px;
	text-align: center;
}

/*------dias del siguiente mes -----------*/
table.jCalendar td.other-month {
	background: #ddd;
	color: #FFF;
}

/*------ dia actual  -----------*/
table.jCalendar td.today {
	background:#0b3877;
	color: #fff;
}


/*------ dia elegido  -----------*/

table.jCalendar td.selected {
	background:#ed7f00;
	color: #fff;
}
table.jCalendar td.selected.dp-hover {
	background: #ed7f00;
	color: #fff;
}

/*------ casilla dia hover  -----------*/
table.jCalendar td.dp-hover,
table.jCalendar tr.activeWeekHover td {
	background:#ed7f00;
	color:#000;
}

table.jCalendar tr.selectedWeek td {
	background: #f66;
	color: #fff;
}

/*------ dias no disponibles  -----------*/
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
	background: #bbb;
	color: #fff;
}

table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
	background: #bbb;
	color: #888;
}

/* For the popup */

/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */

/*------ Contenedor calendario  -----------*/

div.dp-popup {
	position: relative;
	background: #FFF;
	border: 1px solid #ed7f00;
	font-size: 10px;
	font-family: arial, sans-serif;
	padding: 5px;
	width: 169px;
	line-height: 1.2em;
}

div#dp-popup {
	position: absolute;
	z-index: 199;
}

/*------ fila titulo mes  -----------*/
div.dp-popup h2 {
	font-size: 11px;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin: 2px 0;
	padding:2px;
	background-color:#666;
	height:11px;
	color:#FFF;
}

a#dp-close {
	font-size: 11px;
	padding: 4px 0;
	text-align: center;
	display: block;
	
}

a#dp-close:hover {
	text-decoration: underline;
}

div.dp-popup a {
	color: #000;
	text-decoration: none;
	padding: 3px 2px 0;
}

/*------ flecha anterior  -----------*/

div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 5px;
	left: 4px;
	width: 30px;
	background:#666;
	border-right:1px solid #FFF;
}

div.dp-popup div.dp-nav-prev a {
	float: left;
	color:#FFF;
}

/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
	cursor: pointer;
	
}

div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
	cursor: default;
	color:#999;
	
}

/*------ flecha siguiente  -----------*/

div.dp-popup div.dp-nav-next {
	position: absolute;
	top: 5px;
	right: 4px;
	width: 30px;
	background:#666;
	border-left:1px solid #FFF;
}

div.dp-popup div.dp-nav-next a {
	float: right;
	color:#FFF;
}

div.dp-popup a.disabled {
	cursor: default;
	color:#CCC;
}

div.dp-popup td {
	cursor: pointer;
}

div.dp-popup td.disabled {
	cursor: default;
	color:#999;
}
