
div.calendar
{
  font-size: smaller;
  color: #444444;
}

div.calendar.popup
{
  margin-left: -40px;
  margin-top: -100px;
   z-index: 110;
}

div.calendar table
{
  background-color: #eee;
  border: 1px solid  gray;
  border-spacing: 0;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px; 
	-webkit-box-shadow: 3px 3px 6px rgba(70, 70, 70, 0.55);
	-moz-box-shadow:    3px 3px 6px rgba(70, 70, 70, 0.55);
	box-shadow:         3px 3px 6px rgba(70, 70, 70, 0.55);		 
}

div.calendar thead {
  background-color: white;
}

div.calendar th
{
  padding: 3px;
  text-align: center;

}

div.calendar td

{
  padding: 3px;
  text-align: center; 

}

div.calendar > table thead:first-child tr:first-child td:first-child {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;  
}

div.calendar td.title
{
  font-weight: bold;
}

div.calendar th
{
  background: #ddd;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  font-weight: bold;
  color: #555;
}

div.calendar tr.days td {
  width: 2em;
  color: #555;
  text-align: center;
  cursor: pointer;
}

div.calendar tr.days td,
div.calendar td.button
{
	-webkit-transition:  all .2s ease-in;
	transition: transform  all .2s ease-in;
}

div.calendar tr.days td:hover,
div.calendar td.button:hover
{
  background-color: #24B5FF;
  cursor: pointer;
}

div.calendar tr.days td:active
div.calendar td.button:active
{
  background-color: #cde;
}

div.calendar tr.days td.selected
{
  font-weight: bold;
  background-color: #fff;
  color: #000;
}

div.calendar tr.days td.today
{
  font-weight: bold;
  color: #D50000;
}

div.calendar tr.days td.otherDay
{
  color: #bbb;
}
