/* 
Calendario Flores 2010 para Coolest DHTML Calendar
Autor: Edmundo Pérez Caro
Copyright Dynarch.com 2010, www.dynarch.com
*/

/* The main calendar widget.  DIV containing a table. */

div.calendar { position: relative; }
.calendar, .calendar table { border: 1px solid #c7c7c7; font-size: 10pt; color: #5a5a5a; cursor: default; background:#fff; font-family:"Arial Narrow", Arial, Helvetica, sans-serif; }
.calendar { 	border-color: #78a23d; }

/* Header part -- contains navigation buttons and day names. */

/* "<<", "<", ">", ">>" buttons have this class */
.calendar .button { text-align: center; padding: 2px; background: #65A020; color:#fff; font-weight: bold; }
.calendar .nav { font-family:"Arial Narrow", Arial, Helvetica, sans-serif; }
.calendar .nav div { background: transparent; }
.calendar thead tr { color: #5a5a5a; }
/* This holds the current "month, year" */
.calendar thead .title { font-weight: bold; text-align: center; padding: 2px; background:#65A020; color: #fff; }
/* Row <TR> containing navigation buttons */
.calendar thead .headrow { background:transparent; }
/* Cells <TD> containing the day names */
.calendar thead .name { border-bottom: 1px solid #c7c7c7; padding: 2px; text-align: center; color: #5a5a5a; }
/* How a weekend day name shows in header */
.calendar thead .weekend { color: #c44; }
/* How do the buttons in header appear when hover */
.calendar thead .hilite { padding: 2px; }
/* Active (pressed) buttons in header */
.calendar thead .active { color: #fff; padding: 2px; }
/* Row <TR> containing the day names */
.calendar thead .daynames { background: #fff; }
/* The body part -- contains all the days in month. */
/* Cells <TD> containing month days dates */
.calendar tbody .day { border: 1px solid #fff; font-family:"Arial Narrow", Arial, Helvetica, sans-serif; 	width: 2em; color: #5a5a5a; text-align: right; padding: 2px; }
.calendar tbody .day.othermonth { color: #999; }
.calendar tbody .day.othermonth.oweekend { color: #f99; }
.calendar table .wn { padding: 2px; border-right: 1px solid #c7c7c7; }
.calendar tbody .rowhilite td, .calendar tbody .rowhilite td.wn { background:#fff; }
.calendar tbody td.today { background:#78a23d; color:#fff; font-weight: bold; }
/* Hovered cells <TD> */
.calendar tbody td.hilite { padding: 2px; border: 1px solid #78a23d; width: 2em; }
/* Active (pressed) cells <TD> */
.calendar tbody td.active { padding: 2px; }
/* Cells showing weekend days */
.calendar tbody td.weekend { color: #c44; }
/* Cell showing selected date */
.calendar tbody td.selected { font-weight: bold; 	border: 1px solid #78a23d; padding: 2px; }
.calendar tbody .disabled { color: #70649c; text-decoration:none;  }
/* Empty cells (the best is to hide them) */
.calendar tbody .emptycell { visibility: hidden; }
/* Empty row (some months need less than 6 rows) */
.calendar tbody .emptyrow { display: none; }
/* The footer part -- status bar and "Close" button */
/* The <TR> in footer (only one right now) */
.calendar tfoot .footrow { text-align: center; background: #565; color: #fff; }
/* Tooltip (status bar) cell <TD> */
.calendar tfoot .ttip { border-top: 1px solid #c7c7c7; padding: 2px; background: #fff; color: #5a5a5a; }
/* Hover style for buttons in footer */
.calendar tfoot .hilite { background: #afa; border: 1px solid #084; color: #5a5a5a; padding: 2px; }
/* Active (pressed) style for buttons in footer */
.calendar tfoot .active { background: #7c7; padding: 2px; }
/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo { position: absolute; display: none; top: 0px; left: 0px; width: 2em; cursor: default; border-width: 0 1px 1px 1px; border-style: solid; border-color: #78a23d; color: #5a5a5a; z-index: 100; }
.calendar .combo .label, .calendar .combo .label-IEfix { text-align: center; padding: 2px; }
.calendar .combo .label-IEfix { width: 2em; }
.calendar .combo .hilite { color: #5a5a5a; }
.calendar .combo .active { color: #fff; font-weight: bold; }
.calendar td.time { border-top: 1px solid #78a23d; padding: 2px; text-align: center; }
.calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm { padding: 0px 5px 0px 6px; font-weight: bold; color: #5a5a5a; }
.calendar td.time .hour, .calendar td.time .minute { font-family:monospace; }
.calendar td.time .ampm { text-align: center; }
.calendar td.time .colon { padding: 0px 2px 0px 3px; font-weight: bold; }
.calendar td.time span.hilite { color: #5a5a5a; }
.calendar td.time span.active { color: #fff; }