/* DatePicker Container */
.ui-datepicker {
    width: 254px;
    height: auto;
    margin: 20px auto 20px;
    margin-left: 70px;
    font: 9pt Arial, sans-serif;
    padding: 0;
    border: 1px solid #636363;
}
.ui-datepicker a {
    text-decoration: none;
}
/* DatePicker Table */
.ui-datepicker table {
    width: 100%;
    margin: 0;
}
.ui-datepicker-header {
    background: #636363;
    color: white;
    font-weight: bold;
    line-height: 30px;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #111;
    text-transform: uppercase;
    font-size: 16px;
}
.ui-datepicker-title {
    text-align: center;
}
.ui-datepicker .ui-datepicker-prev span{
    background-image: url('../images/icon-chevron-gauche-blanc.png');
    background-position: top center;
}
.ui-datepicker .ui-datepicker-next span {
    background-image: url('../images/icon-chevron-droite-blanc.png');
    background-position: top center;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover, .ui-datepicker .ui-datepicker-next.ui-state-hover {
    background-color: transparent;
    border: none;
}
.ui-datepicker thead {
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top,  #f7f7f7 0%, #f1f1f1 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#f1f1f1));
    background-image: -webkit-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
    background-image: -o-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
    background-image: -ms-linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
    background-image: linear-gradient(top,  #f7f7f7 0%,#f1f1f1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
    border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
    text-transform: uppercase;
    font-size: 6pt;
    padding: 5px 0;
    color: #666666;
    text-shadow: 1px 0px 0px #fff;
    filter: dropshadow(color=#fff, offx=1, offy=0);
}
.ui-datepicker tbody td {
    padding: 0;
    border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
    border-right: 0px;
}
.ui-datepicker tbody tr {
    border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
    border-bottom: 0px;
}
.ui-datepicker td span, .ui-datepicker td a {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    width: 35px;
    height: 34px;
    line-height: 34px;
    color: #666666;
    text-shadow: none;
    margin: 0;
    padding: 0;
}
.ui-datepicker-calendar .ui-state-default {
    background: white;
    color: #636363;
    border: none;
}
.ui-datepicker-calendar .ui-state-hover {
    background: #636363;
    color: white;
}
.ui-datepicker-calendar .ui-state-active {
    background: #636363;
    color: white;
}
.ui-datepicker-unselectable .ui-state-default {
    background: #efefef;
    color: #636363;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
    width: 35px;
    margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
    width: 35px;
    margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
    height: 35px;
    margin-bottom: 0;
}