﻿/*!
 * MonthYearPicker JavaScript Library v1.0.1
 * http://www.kvcodes.com/
 *  http://www.kvcodes.com/2018/04/simple-javascript-month-year-picker
 * Dual licensed under the MIT or GPL Version 2 licenses.
 */
#CalendarControlIFrame {
  display: none;
  left: 0px;
  position: absolute;
  top: 0px;
  height: 250px;
  width: 250px;
  z-index: 99;
}

#CalendarControl {
  position: absolute;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  display: none;
  z-index: 100;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

  #CalendarControl table {
    font-size: 8pt;
  }

  #CalendarControl th {
    font-weight: normal;
  }

    #CalendarControl th a {
      font-weight: normal;
      text-decoration: none;
      color: #000;
      padding: 1px 5px;
      font-weight: 600;
      font-size: 12px;
    }

  #CalendarControl td {
    text-align: center;
  }

  #CalendarControl .cal_header {
    background-color: #eceeed;
    color: #000;
    height: 30px;
  }

  #CalendarControl .weekday {
    background-color: #ffffff;
    color: #333;
  }

  #CalendarControl .weekend {
    background-color: #ffffff;
    color: #333;
  }

  #CalendarControl .current {
    background-color: #aa1735;
    color: #fff;
  }

  #CalendarControl .weekday, #CalendarControl .weekend, #CalendarControl .current {
    display: block;
    text-decoration: none;
    line-height: 25px;
    padding: 7px 20px;
    border-radius: 3px;
    font-size: 13px;
    margin: 2px;
  }

  #CalendarControl .cl_header {
    text-align: center;
    background: #eceeed;
    line-height: 25px;
  }

  #CalendarControl .weekday:hover, #CalendarControl .weekend:hover, #CalendarControl .current:hover {
    color: #000;
    background-color: #f2f2f2;
  }

  #CalendarControl .previous, #CalendarControl .next {
    padding: 1px 3px 1px 3px;
    font-size: 1.4em;
  }

    #CalendarControl .previous a, #CalendarControl .next a {
      color: #000;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
    }

  #CalendarControl .title {
    text-align: center;
    font-weight: bold;
    color: #000;
    font-size: 14px;
  }

  #CalendarControl .empty {
    background-color: #d1e3f9;
  }

.CalenderButton {
  margin-top: 0px;
}

#dpMonthYear {
  width: calc(100% - 30px);
}
