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


.calendar {
	width: 100%;
	cursor:pointer;
}

.calendar table {
border-collapse: collapse;
margin-bottom: 0;
width: 100%;
}


.calendar table td {
	margin:0px;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
}


.calendar thead .title { /* This holds the current "month, year" */
  text-align: right;
  /*padding-left: 32px;*/
   font-size: 1.75em;
   font-weight: bold;
   color: #4EBDDC;

}


.calendar thead .name { /* Cells <TD> containing the day names */
  color:#4EBDDC;
  padding: 2px;
  text-align: center;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
}

.calendar thead .active { /* Active (pressed) buttons in header */
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  text-align: center;
  padding: 5px;
  color: #4EBDDC;
}
.calendar tbody .day.othermonth {

}


.calendar table .wn {
}

.calendar tbody .rowhilite td {
}

.calendar tbody .rowhilite td.wn {
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
}
.calendar tbody td.active { /* Active (pressed) cells <TD> */
}

.calendar tbody td.selected { /* Cell showing selected date */

}

.calendar tbody td.weekend { /* Cells showing weekend days */
}

.calendar tbody td.today { /* Cell showing today date */
background: #92D1E2;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  padding:2px 4px 2px 2px;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
}

.calendar tbody .emptyrow .emptycell {
padding: 0px;
font-size: 3px;
}
/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
font-style: normal;
font-size: 11px;
color: #aaa !important;
background: #eee;

}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  font-weight: normal;
  text-transform:uppercase;
  font-size: 10px;
  text-align: right;
  

}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
 /* border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;*/
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
 /* border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;*/
}



/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
/*  position: absolute;
  width: 4em;
  top: 0px;
  left: 0px;*/
  cursor: default;
  display: none;
  /*border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;*/
  font-size: 90%;
  z-index: 100;
  min-height: 90px;
  height: 100%;
  cursor: pointer;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  margin: 7px;
  float: left;
  display: block;
  width: 30px;
  padding: 2px 5px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  /*border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;*/
  background: #FFFFFF;
}

.calendar .combo .hilite {
}

.calendar td.time {
  border-top: 1px solid #000;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  font-weight: bold;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  background-color: #667;
  color: #fff;
}

.calendar td.time span.active {
  background-color: #000;
  color: #0f0;
}



thead .button {
/*display: none;*/
color: #D2232A;
font-weight: bold;
text-transform: uppercase;
background:none;
}

.special {
	background-color: #c9dba6;
	color:			#4EBDDC;


}

.calendar .daynames, .calendar .daysrow {
font-size: 11px;
height: 28px;
font-weight: bold !important;
color: #fff;
}

.daynames {
/*border-bottom: 2px solid #EEE;
border-top: 2px solid #EEE;*/

}


.headrow .button {
font-size: 10px;
}

td {
vertical-align:middle;
}

.hilite {
  background: #9EC552 !important;
}

.daynames td {
/*background: #F9F9F9;*/
border-top: 1px solid #DDD;
border-bottom: 1px solid #F6F6F6;

}

.headrow td {
border-bottom: 1px solid #F6F6F6;
}

#calendar_display {
/* --- put your image here background: url(../img/) no-repeat scroll right bottom; */
font-weight: bold !important;
padding: 15px;
position: relative;
display: block;
z-index: 50;
margin-bottom: 2em;
float:right;
width: 250px;
margin-top:30px;
border:1px solid #BBBBAA;
background: #FFFFE5;
}

.calendar table td {
font-weight: normal;
font-size: 13px;
}


