/* The main calendar widget.  DIV containing a table. */

div.calendarEV { position: relative; height:250px; }

/*div.calendar-container{ position: relative; width: 180px; }*/
.calendarEV {
position: relative;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  font-family: Arial, Verdana, sans-serif;
}

.calendarEV table {
  font-size: 12px;
  color: #000;
  cursor: pointer;
  background: #F5F5F5;
  font-family: Arial, Verdana, sans-serif;
  float: right;
}

/* Header part -- contains navigation buttons and day names. */

.calendarEV .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  font-size: 12px;
  padding:3px;
  background-color:#A80000;
  color:#FFF;
  /*background: #AB0D13;*/
}

.calendarEV .nav {
  background: #cccccc ;
}

.calendarEV thead .title { /* This holds the current "month, year" */
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  background: #A80000;
  padding-left:58px;
}

.calendarEV thead .headrow { /* Row <TR> containing navigation buttons */
  padding:3px;
  background-color: #cccccc;
  font-weight: bold;
}

.calendarEV thead .daynames { /* Row <TR> containing the day names */
  padding:3px;
  font-weight: bold;
  text-align: center;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  padding:3px;
  text-align: center;
  font-weight: bold;
  color: #A80000;
}

.calendarEV thead .weekend { /* How a weekend day name shows in header */
 
  text-align: center;
  padding:3px;
  font-weight: bold;
  color: #A80000;
  
}

.calendarEV thead .hilite { /* How do the buttons in header appear when hover */
  padding:3px;
  background-color: #EBEBEB;
}

.calendarEV thead .active { /* Active (pressed) buttons in header */
  padding:3px;
  background-color: #ffffff;
}

/* The body part -- contains all the days in month. */

.calendarEV tbody .day
{
	width: 33px;
	height: 29px;
	text-align: center;
	border: 0px solid red;
	padding:3px;
	border-bottom: 1px solid #D8D8D8;
}
.calendarEV tbody .day.othermonth {
  font-size: 12px;
  color: #000;
}
.calendarEV tbody .day.othermonth.oweekend {
  color: #A80000;
}

.calendarEV table .wn {
  padding:3px;
  background: #10A22B;
  text-align: right;
   
}

.calendarEV tbody .rowhilite td {
  background: #f5f5f5;
  border: 0px solid green;
   border-bottom: 1px solid #D8D8D8;
}

.calendarEV tbody .rowhilite td.wn {
  background: #f5f5f5;
  border: 0px solid red;
    border-bottom: 1px solid #D8D8D8;
}

.calendarEV tbody td.hilite { /* Hovered cells <TD> */
  border: 0px solid;
  padding: 3px;  
  border: 0px solid red;
  font-size: 12px;
    border-bottom: 1px solid #D8D8D8;
}

.calendarEV tbody td.active { /* Active (pressed) cells <TD> */
  
  font-size: 12px;
    border-bottom: 1px solid #D8D8D8;
}

.calendarEV tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  font-size: 12px;
  padding: 1px;
  color:#A80000;
  border-bottom: 1px solid #D8D8D8;
}

.calendarEV tbody td.weekend { /* Cells showing weekend days */

  border-bottom: 1px solid #D8D8D8;
  font-weight: bold;
}

.calendarEV tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #A80000;
  font-size: 12px;
  border-bottom: 1px solid #D8D8D8;
   background: #D8D8D8;
   text-align:center;
   padding: 0px;
   width: 30px;
	height: 25px;
}

.calendarEV tbody .disabled {
color: #999999;

}

.calendarEV tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendarEV tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendarEV tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendarEV tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding:3px;
  border: 1px solid #000;
  background: #000;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
}

.calendarEV tfoot .hilite { /* Hover style for buttons in footer */

  border-bottom: 1px solid #000;
  background: green;
  padding: 1px;
  font-size: 12px;
}

.calendarEV tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 1px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #fff;
  font-size: 12px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendarEV .combo {
  position: absolute;
  display: none;
  width: 3em;
  top: 0px;
  left: 0px;
  cursor: pointer;
  background: #f5f5f5;
  font-size: 12;
  padding: 1px;
}

.calendarEV .combo .label,
.calendarEV .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendarEV .combo .label-IEfix {
  width: 3em;
  background: #FFFFFF;
}

.calendarEV .combo .active {
  background: #FFFFFF;
  padding: 1px;
}

.calendarEV .combo .hilite {
  background: red;
  color: #FFFFFF;
}

.calendarEV td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #e8f0f4;
}

.calendarEV td.time .hour,
.calendarEV td.time .minute,
.calendarEV td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendarEV td.time .ampm {
  text-align: center;
}

.calendarEV td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendarEV td.time span.hilite {
  border-color: #000;
  background-color: #667;
  color: #fff;
}

.calendarEV td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}
.cal-TextBox{
    color: Black;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12px;
    font-weight: normal;
	background: #ffffff;
    border: 1px solid #b2b2bd;
}

.special 
{ background: #EBEBEB;
  font-family: Arial, Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color:#A80000;
  
 }