/* Calendar CSS */
@charset "UTF-8";
#calendar_container {
 text-align:left;
 width:220px;
}	 
table.calendar {
   border-collapse:collapse;
   font-size:1em;
   font-family: sans-serif;
   height:220px;
   text-align:center;
}
table.calendar thead tr {
   font-weight:bold;
   border: 1px solid #5B9796;
}
td.day {
     border: 1px solid #5B9796;
     cursor:pointer; 
}
td.today {
     border: 1px solid #0ff;
     font-weight:bold;
     cursor:pointer; 
}
td.day_grey {
     background:#bbb;
     border: 1px solid #5B9796;
} 
td.day_head {
     background:#bbb;
     width:12.3%;
     color:#00D;
     border: 1px solid #5B9796;
}    
td.day:hover {
      background: #FFFF00;
}
td.today:hover {
      background: #FFFF00;
}
td.month:hover {
     color: #f00;
}
td.month {
     cursor:pointer;
     font-size:130%;
}           
