

/* FILE: calendarview.css */

div.calendar
{
  font-size: 14px;
  color: #000;
  z-index: 1;
  width: 340px;
}

div.calendar.popup
{
  margin-left: 0px;
  margin-top: -100px;
}

div.calendar table
{
  background-color: #eee;
  border: 1px solid #aaa;
  border-collapse: collapse;
}

div.calendar thead {
  background-color: white;
}

div.calendar td,
div.calendar th
{
  padding: 8px;
  text-align: center;
}

div.calendar td.title
{
  font-weight: bold;
}

div.calendar th
{
  background: #ddd;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  font-weight: bold;
  color: #555;
}

div.calendar tr.days td {
  width: 2em;
  color: #555;
  text-align: center;
  cursor: pointer;
}

div.calendar tr.days td:hover,
div.calendar td.cvbutton:hover
{
  background-color: #005091;
  color: #fff;
  cursor: pointer;
}


div.calendar tr td.closeButton:hover
{
  background-color: #005091;
  color: #fff;
  cursor: pointer;
}


div.calendar tr.days td:active
div.calendar td.cvbutton:active
{
  background-color: #cde;
}

div.calendar tr.days td.selected
{
  font-weight: bold;
  background-color: #fff;
  color: #000;
}

div.calendar tr.days td.today
{
  font-weight: bold;
  color: #D50000;
}

div.calendar tr.days td.otherDay
{
  color: #bbb;
}

div.calendar tr.days td.disabled,
div.calendar tr.days td.disabled:hover
{
  background-color: initial;
  color: #bbb;
  cursor: default;
  text-shadow: 1px 1px 0 white;
}

div.calendar .draggableHandler{
  cursor: move;
}

/*  styles for the date_picker Rails plugin */
span.date_picker a.date_label{
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}
span.date_picker a.date_label:hover{text-decoration: line-through;}

span.date_picker span.trigger:hover{
  cursor: pointer;
}

.calendar {
  border: none;
  background: none;
}
