/* DHTML Calendar
 * Copyright (C) 2005, Bill Smith
 * ------------------------------
 *
 * This script is distributed under the GNU Lesser General Public License.
 * Read the entire license text here: http://www.gnu.org/licenses/lgpl.html
 *
 * DHTML Calendar contains some code from a  calender script by Mihai Bazon
 * that can be found at http://www.dynarch.com/projects/calendar
 */
 
.ex_calendarframe
{
  z-index:300;
  position:absolute;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.ex_calendar
{
  border:2px solid black;
  padding:0px;
  font-family: tahoma,verdana,sans-serif;
  font-size: 11px;
  background: #eed;
}

.ex_calendar .ex_titlerow
{
  text-align:center;
  background: #486cae;
  color: #fff;
}

.ex_calendar .ex_title
{
  text-align:center;
  font-weight: bold;
}

.ex_calendar .ex_headrow
{
  text-align:center;
  background: #486cae;
  color: #fff;
}

.ex_calendar .ex_button
{
  padding: 3px;
  cursor:pointer;
}

.ex_calendar .ex_daynames
{
  text-align:center;
  background: #bdf;
  color: #000;
}

.ex_calendar .ex_daysrow
{
  text-align: right;
}

.ex_calendar .ex_day
{
  border:1px solid #eed;
  width: 20px;
  padding: 1px 4px;
}

.ex_calendar .ex_hilite
{
  background:#eee;
  border-color:#ccc;
}

.ex_calendar .ex_name
{
  border-bottom:1px solid black;
  padding: 2px;
}

.ex_calendar .ex_weekend
{
  color: #900;
}

.ex_calendar .ex_ttip
{
  background: #fff;
  border-top:1px solid black;
  text-align:center;
  padding: 2px 3px;
}

.ex_calendar .ex_selected
{
  border:1px solid black;
  background: #efefef;
}

.ex_calendar .ex_today
{
  font-weight: bold;
}
