/* 
    Created on : Jan 15, 2016, 11:16:55 PM
    Author     : chien
*/
.ui-datepicker {

    height: auto;
    margin: 5px auto 0;
    font: 9pt Arial, sans-serif;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
}

.ui-datepicker table{border-collapse: collapse;}

.ui-datepicker a {
    text-decoration: none;
}

.ui-datepicker table {
    width: 100%;
}

.ui-datepicker-header {
    background-color: #fff;
    color: #535555;  
    line-height: 15px;   
}

.ui-datepicker-title {
    text-align: center;
    text-transform: uppercase;
    height: 30px;
    padding-top: 10px;
    font-size: 16px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    font-size: 0;
}

.ui-datepicker-prev, .ui-datepicker-next {
   
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    line-height: 600%;
    overflow: hidden;
}
.ui-datepicker-prev {
    float: left;
    background-position: center -30px;
}
.ui-datepicker-next {
    float: right;
    background-position: center 0px;
}


.ui-datepicker thead {
    background-color: #000;
}

.ui-datepicker th {
    text-transform: uppercase;
    font-size: 16px;
    padding: 8px;
    font-weight: normal;
    color: #fff;
}

.ui-datepicker tbody td {
    padding: 0;
    border-right: 1px solid #ccc;
}

.ui-datepicker tbody td:last-child {
    border-right: none;
}

.ui-datepicker tbody tr {
    border-bottom: 1px solid #ccc;
}

.ui-datepicker tbody tr:last-child {
    border-bottom: none;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: inline-block;    
    text-align: center;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #535555;    
    font-size: 16px;
}

.ui-datepicker-calendar .ui-state-default {
    background: #fff;

}

.ui-datepicker-unselectable .ui-state-default {

    background: #fff;
    color: #b4b3b3;
}

.ui-datepicker-calendar .ui-state-hover {
    background: #000;
    color: #fff;
}

.ui-datepicker-calendar .ui-state-active {
    background: #000;
    color: #fff;
    border: 1px solid #55838f;
    position: relative;
    margin: -1px;    
}