/* calendar CSS */
 
table.calendar {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0px;
  padding: 0px;
  background-color: #ffffff;}
table.calendar th {
  	background: #F5F2EF;
  text-transform: none;
  color: #444444;
  padding: 4px;
  text-align: center;
  border: 1px solid #000; }
 
table.calendar th.cell-prev {
  text-align: left;
  background-color: #F0F0F0;
  }
table.calendar th.cell-prev a {
  color: #33708C;
  text-decoration: none;
}
table.calendar th.cell-prev a:hover {

  text-decoration: underline;
}
table.calendar th.cell-next a {
  color: #33708C;
  text-decoration: none;
}
table.calendar th.cell-next a:hover {
  text-decoration: underline;
}


table.calendar th.cell-next {
  text-align: right;
   background-color: #F0F0F0;
  }
table.calendar th.cell-header {
  width: 70px;
  border-bottom: 1px solid #E9E9E9;}
table.calendar td.cell-today {background-color: #E7F1E1;} /* today in the current month */
table.calendar td.cell-weekend {
  color:#666;
  background-color: #F4F5F1;
  border:1px solid #E3E3E3;
}
table.calendar td {
  border-top: 1px solid #F5F2EF;
	border-left: 1px solid #F5F2EF;
    	padding: 1px 1px 0 0;
    }

table.calendar td div.cell-number {
  text-align: right;
  font-size: 9px;
  color: #444444;
  display: block;

  }
table.calendar td div {display: block; font-size: 10px; text-align: left;}
table.calendar thead th {border: 1px solid #cccccc;}

