
#popupcalendar {
  position:absolute;
  left:1%;
  top:1%;
  //width:20%;
  //height:20%;
  //padding:10px;
  z-index:2;
  background: url("normal-bg.gif");
  border:1px;
  border-style:solid;
  border-color:#705610;
}

.calendar, .calendar table {
  border: 1px solid #bdb2bf;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: url("normal-bg.gif");
  font-family: "trebuchet ms",verdana,tahoma,sans-serif;
}

.calendar {
  border-color: #797979;
}

/* 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: url("title-bg.gif") repeat-x 0 100%; color: #000;
  font-weight: bold;
}

.calendar .nav {
  font-family: verdana,tahoma,sans-serif;
}

.calendar .nav div {
  //background: transparent url("menuarrow.gif") no-repeat 100% 100%;
}

.calendar thead tr { background: url("title-bg.gif") repeat-x 0 100%; color: #000; }

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  padding: 2px;
  background: url("title-bg.gif") repeat-x 0 100%;
  color: #000;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.dayname { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #797979;
  padding: 2px;
  text-align: center;
  color: #000;
}

.daynameweekend { /* How a weekend day name shows in header */
  border-bottom: 1px solid #797979;
  padding: 2px;
  text-align: center;
  color: #c44;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: url("dark-bg.gif");
}

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

td.wn { /* First cell with week number */
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #797979;
  background: url("dark-bg.gif");
}

.day { /* Cells showing weekend days */
  padding: 4px;
}
.dayweekend { /* Cells showing weekend days */
  color: #c44;
  padding: 4px;
}
//td.today { font-weight: bold; /* background: url("today-bg.gif") no-repeat 70% 50%; */ }



