
#calendarBox {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 222px;
    height: auto;
    margin-left: -106px;
    z-index: 1000;
    transform: translateX(-50%);
}
.calendar {
    width: 222px;
    min-height: 245px;
    background: #fff;
    padding: 5px;
    border: 1px solid #999;
    border-radius: 4px;
}
.loading {
  position: relative;
  width: 100%;
  height: 255px;
  background-image: url('../img/loading.gif');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
}
.calendar div.after,
.calendar div.before{
    color:silver;
}
.day {
    float:left;
    width:28px;
    height:28px;
    line-height: 28px;
    font-size: 12px;
    text-align: center;
    margin: 1px;
}
.day.headline {
    font-size: 12px;
    color: #333;
    font-weight: bold;
}
.day.current {
    font-weight:bold;
    border: 1px solid #c33;
}
.day.normal {
    font-weight: normal;
    border:1px solid #ccc;
}
.day.active {
    cursor: pointer;
}
.day.normal, .day.current {
    border-radius: 3px;
    background:#eee;
}
.clear {
    clear:left;
}
.pagination {
    text-align: center;
    height:30px;
    font-weight: bold;
    border: 1px solid #999;
    border-radius: 4px;
    margin-bottom: 5px;
    background: #cccccc url("../js/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
}
.pagihead { 
   display:inline-block;
   width: 160px;
   height: 28px;
   color: black;
}
.pagibutton { 
    display:inline-block;
    width:18px;
    height:18px;  
    padding-top: 7px;
    background-repeat: no-repeat;
}
.pagibutton .prev {
    background-image: url("../js/jquery-ui/images/ui-icons_454545_256x240.png");
    background-position: -80px -192px;
}
.pagibutton .nolink {
    background-image: url("../js/jquery-ui/images/ui-icons_888888_256x240.png");
    background-position: -80px -192px;
}
.pagibutton .next {
    background-image: url("../js/jquery-ui/images/ui-icons_454545_256x240.png");
    background-position: -48px -192px;
}
.pagibutton .prev, .pagibutton .next {
    cursor: pointer;
}
.pagibutton .prev:hover, .pagibutton .next:hover {
    background-color: #ddd;
    border: 1px solid #999;
    border-radius: 3px;
    margin-top: -2px;
}

.calendar-footer {
    height: 30px;
    margin-top: 10px;
    padding: 5px;
    border-top: 1px solid #999;
}
