/* The main calendar widget.  DIV containing a table. */

div.calendar { 


position: relative; 

width: 237px; 
height: 246px; 	

}

.calendar, .calendar table {
  /* border: 1px solid gray; */
  font-size: 15px;
  color: #000;
  cursor: default;
  background: white;    /* lila #eef */
  font-family: tahoma,verdana,sans-serif;
  	background-color: #fff;

border: 3px solid #d1cdcd;	 

 border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;

	-webkit-transition: color 0.1s ease-in-out;
	   -moz-transition: color 0.1s ease-in-out;
	     -o-transition: color 0.1s ease-in-out;
	        transition: color 0.1s ease-in-out;
  
}

.calendar table {
border:none;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing   background: #E4E4E4 url(menuarrow.gif) no-repeat 100% 100%;*/
    font-size: 18px;
}

.calendar .nav {
background:White;

}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #fff;
  color: #000;

}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
/* background: #E4E4E4; */
  color: #000;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: white;
    font-weight: bold;
  padding: 2px 2px 2px 2px;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  /*border-bottom: 1px solid #556;*/

  text-align: center;
    v-align: center;
  color: #000;

    padding: 9px 2px 2px 2px;
  height:12px;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #a66;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #77c;

}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: right;
    padding: 3px 3px 3px 3px;

}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
    padding: 3px 3px 3px 3px;
  /*border-right: 1px solid #000;
  background: #bdf;*/
    background: white;
	  font-weight: bold;
	  color:gray;
  
}

.calendar tbody .rowhilite td {
  background: #def;
}

.calendar tbody .rowhilite td.wn {
  background: #eef;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
background: #D6D6D6;

}

.calendar tbody td.active {
	/* Active (pressed) cells <TD> */
	background: #D6D6D6;
    padding: 3px 3px 3px 3px;
}

.calendar tbody td.selected {      /* Cell showing selected date */
  font-weight: bold;
  /* border: 1px solid #000;*/
    padding: 3px 3px 3px 3px;
  background: gray;
  color: white;
}



.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #a66;
}

.calendar tbody td.today {      /* Cell showing today date */ 
  font-weight: bold;
  color:  orange;
  
  
}

.calendar tbody .disabled { color: #999; }

.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;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #556;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #fff;
  color: #445;
  border-top: 1px solid light-gray;
    padding: 3px 3px 3px 3px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #aaf;
  border: 1px solid #04f;
  color: #000;
    padding: 3px 3px 3px 3px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #77c;
    padding: 3px 3px 3px 3px;
}

/* Combo boxes (menus that display months/years for direct selection) */



