#CalendarControlIFrame 
{
  display: none;
  position: absolute;
  margin-left: 150px; /* left position */
  margin-top: -10px; /* top position */
  height: 140px;
  width: 150px;
  z-index: 500;
}

#CalendarControl 
{
  display: none;
  position: absolute;
  /*background-color:#EEF4F6;*/ /* no background color should be there to control position*/
  padding: 0px;
  z-index: 600;
  
}

#CalendarControl table 
{
  background-color:#F3E1D7;
  font-family: verdana, helvetica, sans-serif;
  font-size: 11px;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  border-top: 1px solid #999999;
  position: relative;
  left: 150px;
  top: -10px;
  height: 140px;
  width: 160px;
  z-index: 700;
}

#CalendarControl th /* mon, tue...*/
{
  font-weight: bold;
  color: #A85C35;
}

#CalendarControl th a /* bottom "close" */
{
  font-weight: bold;
  text-decoration: none;
  font-size: 10px;
  color: #A85C35;
  padding: 1px;
}

#CalendarControl td
{
  text-align: center;
}

#CalendarControl .header 
{
  background-color: #DCBDAB;
}

#CalendarControl .weekday 
{
  background-color: #DDD;
  color: #000;
}

#CalendarControl .weekend
{
  background-color: #E3BBA2;
  color: #000;
}

#CalendarControl .current 
{
  border: 1px solid #999999;
  background-color: #DBB196;
  color: #333333;
}

#CalendarControl .weekday,
#CalendarControl .weekend,
#CalendarControl .current 
{
  display: block;
  text-decoration: none;
  border: 1px solid #FFF;
  padding: 1px;
  width: 2em;
}

#CalendarControl .weekday:hover,
#CalendarControl .weekend:hover,
#CalendarControl .current:hover {
  color: #333333;
  background-color: #D8BCAE;
  border: 1px solid #999999;
}

#CalendarControl .previous {
  text-align: left;
}

#CalendarControl .next {
  text-align: right;
}

#CalendarControl .previous,
#CalendarControl .next {
  padding: 1px 3px 1px 3px;
  font-size: 1.4em;
}

#CalendarControl .previous a,
#CalendarControl .next a {
  color: #B86A42;
  text-decoration: none;
  font-weight: bold;
}

#CalendarControl .title {
  text-align: center;
  font-size:11px;
  font-weight: bold;
  color: #B86A42;
}

#CalendarControl .empty {
  background-color: #ededed;
  border: 1px solid #FFF;
}

