.calendar-wrapper table {
    background-color: #FFFFFF;
    color: #272829;
    font-family: Tahoma;
    border-collapse: collapse;
}

/*Estilo para los dias de semana*/
.calendar-wrapper table tr.day td {
    font-size: 10pt;
    font-weight: ;
    color: gray;
}

.calendar-wrapper table tr#first-child td {
    width: 0;
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 10px 0;
}

td{
	padding: 4px;
}

/*Estilos para los dias*/
.DefaultDay, .Finde{
	border: 1px solid #CECECE ;
}

#first-child{
	margin-bottom: 100px;
}
.calendar-wrapper table .lalign {
    text-align: left;
}
.calendar-wrapper table .ralign {
    text-align: right;
}
.calendar-wrapper table td {
    width: 25px;
    height: 20px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}
/* button control */

.calendar-wrapper table button {
    border: 1px solid #E9E5E5;
    background: #FFFFFF;
    color: #272829;
    font-family: Courier, monospace;
    padding: 0px 1px;
    height: 20px;
    cursor: pointer;
}
.calendar-wrapper table tr.day td, .calendar-wrapper table tr.control td, .calendar-wrapper table button {
    border: none;
}
.calendar-wrapper {
    position: absolute;
    z-index: 1;
    left: 8px;
    top: 200px;
    display: none;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
    padding: 15px;
    -webkit-box-shadow: 0 0 3px #888;
    -moz-box-shadow: 0 0 3px #888;
    box-shadow: 0 0 3px #888;
    background-color: white;/*Background of the calendar*/
}
/* colors day */

.calendar-wrapper .Finde {
    background: #EDEDED;
}
.calendar-wrapper .DefaultDay {
    background: #FFFFFF;
}
.calendar-wrapper .CurrDay {
	border: 2px solid #13DAE4;
    background: inherit;
}

/*Select day*/
.calendar-wrapper .Select {
    background: #20D1D9;
    color: #FFFFFF;
}