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

.button_for_calendar{
	 width: 16px; 
	 height: 16px; 
	 border: none; 
	 cursor: pointer; 
	 background: url(../images/pictos/calendar.png) no-repeat left top; }  
}


.calendar {
	position: relative;
	display: none;
	border:none; 
	cursor: default;
	background: #F0EEEF;
    color: #5A5750;
    font:13px "Myriad Pro",Tahoma,Arial,"sans-serif";
	z-index: 10;
}

.calendar table {
	border: 1px solid #5A5750;
	cursor: default;
	background: #F0EEEF; /*background date*/
	color: #5A5750;      /*color date*/
    font:13px "Myriad Pro",Tahoma,Arial,"sans-serif";
	margin:0 0px;
    width:300px;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  font: 11px "Myriad Pro",Tahoma;  
  color: #FFFFFF;   
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  background: #C6C7C7;  
  padding: 1px;
  text-align: center;
  color:#000000;
}

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

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #874141;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background: #C6BEA7;
  border: 1px solid #A2CDDD;   
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background: #C6BEA7;
  padding: 2px 0px 0px 2px;
}





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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}
.calendar table .wn {
  background: #C6C7C7;
  color: #000000;
}

.calendar tbody .rowhilite td {
  background: #A2CDE0;
  color:  #000000;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  border: 1px solid 000;
  background:#395B88;
  color:#FFF;
  font-weight:bold;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  border: 1px solid;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
 
  background: #C6C7C7;
  color: 000;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #874141;
}

.calendar tbody td.today { /* Cell showing today date */
    font-style:italic;

}

.calendar tbody td.disabled { color: GrayText; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

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




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

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  background: Menu;
  color: MenuText;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

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

.calendar .combo .active {
  padding: 0px;
}

.calendar .combo .hilite {
  background: Highlight;
  color: HighlightText;
}

.calendar td.time {
  padding: 1px 0px;
  text-align: center;
  background-color: ButtonFace;
}

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

.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: Highlight;
  color: HighlightText;
}

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