/* Distributed as part of The Coolest DHTML Calendar
   Author: Mihai Bazon, www.bazon.net/mishoo
   Copyright Dynarch.com 2005, www.dynarch.com
*/

/* The main calendar widget.  DIV containing a table. */

div.amcalendar 
{
  position: relative;
  border: .1em solid #000;
  z-index: 6;
}

.amcalendar, .amcalendar table {
  font-size: 11px;
  color: #000;
  cursor: default;
  font-family: arial;
  witdh:107px;
  height:112px;
}

.amcalendar td
{
}

.amcalendar {
}

/* Header part -- contains navigation buttons and day names. */

.amcalendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  color:#81f249;
  font-family: verdana;
}

.amcalendar .nav {
  font-family: arial;
}

.amcalendar .nav div {
}

.amcalendar thead tr {
  color: #81f249;
  background-color:#8c8c8c;
}

.amcalendar thead .title { /* This holds the current "month, year" */
  text-align: center;
  color: #81f249;
  font-size:9px;
}

.amcalendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.amcalendar thead .name { /* Cells <TD> containing the day names */
  text-align: center;
  color: #FFF;
  font-weight:bold;
}

.amcalendar thead .weekend { /* How a weekend day name shows in header */
}

.amcalendar thead .hilite { /* How do the buttons in header appear when hover */
  color:#FFFFFF;
}

.amcalendar thead .active { /* Active (pressed) buttons in header */
  background-color:#8c8c8c;
  color:#FFFFFF;
}

.amcalendar thead .daynames { /* Row <TR> containing the day names */
  background-color:#81f249;
}

/* The body part -- contains all the days in month. */

.amcalendar tbody
{
  background-color:#FFF;
}

.amcalendar tbody .day { /* Cells <TD> containing month days dates */
  font-family: arial;
  color: #21621e;
  text-align: center;
}
.amcalendar tbody .day.othermonth {
  color: #999;
}
.amcalendar tbody .day.othermonth.oweekend {
  color: #999;
}

.amcalendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #797979;
  background: url("dark-bg.gif");
}

.amcalendar tbody .rowhilite td,
.amcalendar tbody .rowhilite td.wn {
}

.amcalendar tbody td
{
  width:15px;
}

.amcalendar tbody td.today { font-weight: bold; /* background: url("today-bg.gif") no-repeat 70% 50%; */ }

.amcalendar tbody td.hilite { /* Hovered cells <TD> */
  background: url("../images/calendar/hover-bg.gif") no-repeat;
}

.amcalendar tbody td.active { /* Active (pressed) cells <TD> */
}

.amcalendar tbody td.weekend { /* Cells showing weekend days */
}

.amcalendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  background: url("../images/calendar/active-bg.gif") no-repeat;
  background-position:center;
  color: #21621e;
}

.amcalendar tbody .disabled { color: #999; }

.amcalendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.amcalendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.amcalendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #565;
  color: #fff;
}

.amcalendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding: 2px;

}

.amcalendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #afa;

  color: #000;
  padding: 1px;
}

.amcalendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #7c7;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.amcalendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  cursor: default;
  z-index: 100;
  font-size: 90%;
}

.amcalendar .combo .label,
.amcalendar .combo .label-IEfix {
  text-align: center;
}

.amcalendar .combo .label-IEfix {
}

.amcalendar .combo .hilite {
}

.amcalendar .combo .active {
  background: url("../images/calendar/active-bg.gif"); color: #fff;
  font-weight: bold;
}

.amcalendar td.time {
  text-align: center;
}

.amcalendar td.time .hour,
.amcalendar td.time .minute,
.amcalendar td.time .ampm {
  font-weight: bold;
}

.amcalendar td.time .hour,
.amcalendar td.time .minute {
  font-family: monospace;
}

.amcalendar td.time .ampm {
  text-align: center;
}

.amcalendar td.time .colon {
  font-weight: bold;
}

.amcalendar td.time span.hilite {
}

.amcalendar td.time span.active {
}