/*******************************************************************************
 container
*********************************************************************************/
.cal-container, #cal-container {
  background-color: #fff;
  border: 1px solid #0066B3;
  overflow:hidden;
  padding: 0px;
  position:absolute;
  width: 200px;
  z-index: 3000;
}

.cal-container iframe {
  border:none;
  height:100%;
  left:0px;
  margin:0;
  padding:0;
  position:absolute;
  top:0px;
  width:100%;
  z-index:0;
}

/*******************************************************************************
 calendar
*********************************************************************************/
table.cal-table {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.cal-header {
  background-color: #84AADE;
  color: #fff;
  text-align: center;
  padding: 3px;
}

.cal-body {
  padding: 5px;
  text-align: center;
}

.cal-footer {
}

.cal-weekday {
  background-color: #ADAAB5;
  text-align: center;
}

.cal-otherday {
  color: fff;
  background-color: #cccccc;
  text-align: center;
}

.cal-sunday {
  background-color: #F78E73;
  text-align: center;
}

.cal-saturday {
  background-color: #73A2DE;
  text-align: center;
}

.cal-holiday {
  background-color: #F78E73;
  text-align: center;
}

.cal-label-cell {
  color: ADAAB5;
  font-size: 75%;
}

.cal-label-row .cal-sunday {
  background-color: #fff;
  color: #F78E73;
  text-align: center;
}

.cal-label-row .cal-saturday {
  background-color: #fff;
  color: #73A2DE;
  text-align: center;
}

.cal-day-cell {
  border: 1px solid #fff;
  line-height: 1.2;
  width: 14%;
}
/*******************************************************************************
 link
*********************************************************************************/

.cal-next-btn {
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.cal-prev-btn {
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.cal-day-cell a:link,
.cal-day-cell a:visited,
.cal-day-cell a:active {
  color: #fff;
  display:block;
  text-decoration: none;
}

.cal-day-cell a:hover {
  background-color: #fff;
  color: #ADAAB5;
  text-decoration: none;
}

.cal-selected {
  background-color: #fff;
  color: #ADAAB5;
  font-weight: bold;
  text-align: center;
}

.cal-day-cell a:link.cal-selected,
.cal-day-cell a:visited.cal-selected,
.cal-day-cell a:active.cal-selected {
  color: #ADAAB5;
  display:block;
  text-decoration: none;
}

